123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- :global{
- .n-modal-mask{
- background-color: transparent;
- }
- }
- .setbox {
- position: relative;
- top: 0;
- display: flex;
- flex-direction: column;
- border-radius: 6px;
- background: #fff;
- overflow: hidden;
- }
- .head {
- position: relative;
- line-height: 53px;
- height: 53px;
- text-align: center;
- background: #F5F6FA;
- color: #131415;
- font-weight: 600;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 16px;
- flex-shrink: 0;
- .close {
- position: absolute;
- top: 50%;
- right: 20px;
- transform: translateY(-50%);
- }
- }
- .content {
- flex: 1;
- padding: 30px;
- overflow: hidden;
- }
- .lineTitle {
- height: 21px;
- font-size: 15px;
- font-weight: 600;
- color: #131415;
- line-height: 21px;
- margin-bottom: 10px;
- }
- .item {
- position: relative;
- text-align: center;
- font-size: 14px;
- font-weight: 400;
- color: #777;
- cursor: pointer;
- .itemImg {
- width: 100px;
- height: 100px;
- border: 2px solid #fff;
- border-radius: 18px;
- overflow: hidden;
- margin-bottom: 7px;
- }
- .icon {
- width: 100%;
- height: 100%;
- }
- &.itemActive {
- font-weight: 600;
- color: var(--primary-color);
- .itemImg {
- border-color: var(--primary-color);
- }
- .itemIcon{
- display: block;
- }
- }
- .itemIcon{
- position: absolute;
- right: 8px;
- top: 8px;
- display: none;
- width: 18px;
- height: 18px;
- }
- }
- .beatItem {
- position: relative;
- width: 195px;
- height: 110px;
- background: #F5F5F7;
- border-radius: 8px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
-
- .beatIcon {
- width: 80%;
- height: 60%;
- cursor: pointer;
- :global {
- .svg-icon {
- width: 100% !important;
- height: 100% !important;
- }
- }
- }
- :global {
- .n-input-number {
- width: 80%;
- }
- .n-input{
- border-radius: 6px !important;
- }
- }
- .speedIcon {
- font-size: 30px;
- }
- }
- .btnItem {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- border-radius: 6px;
- padding: 4px 8px;
- cursor: pointer;
- .btnItemIcon {
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 60px;
- }
- &:hover {
- background-color: rgba(0, 0, 0, 0.1);
- }
- .btnItemName {
- font-size: 12px;
- }
- &.active{
- background-color: #BADCFE;
- }
- }
- .btns {
- text-align: center;
- padding: 15px 0;
- :global {
- .n-button {
- width: 117px;
- height: 35px;
- padding: 0;
- text-align: center;
- font-size: 14px;
- margin: 0 15px;
- }
- }
- }
|