You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
1.6 KiB
83 lines
1.6 KiB
2 years ago
|
//引入全局配置
|
||
|
@import "c/conf";
|
||
|
@import "c/mx";
|
||
|
@import "c/f";
|
||
|
@import "a/c";
|
||
|
|
||
|
.m-fm {
|
||
|
.fm {
|
||
|
margin-top: 1px;
|
||
|
background-color: #ffffff;
|
||
|
padding: 0 30rpx;
|
||
|
|
||
|
.switch {
|
||
|
font-size: 26rpx;
|
||
|
line-height: 40rpx;
|
||
|
margin: 30rpx 0 0;
|
||
|
|
||
|
.switch-text {
|
||
|
color: $fc1;
|
||
|
}
|
||
|
|
||
|
.switch-ico {
|
||
|
position: relative;
|
||
|
top: 8rpx;
|
||
|
display: inline-block;
|
||
|
margin-left: 20rpx;
|
||
|
width: 20rpx;
|
||
|
height: 20rpx;
|
||
|
border: 1px solid #999;
|
||
|
border-radius: 100%;
|
||
|
vertical-align: top;
|
||
|
transition: all $ad1 ease-in-out;
|
||
|
|
||
|
&.z-on {
|
||
|
border-color: #e70000;
|
||
|
background-color: #e70000;
|
||
|
|
||
|
@include ico_right(20rpx, 1px);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.switch-hint {
|
||
|
color: $fc3;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.btn {
|
||
|
display: block;
|
||
|
margin-top: 20rpx;
|
||
|
margin-left: auto;
|
||
|
margin-right: 30rpx;
|
||
|
padding: 0;
|
||
|
width: 110rpx;
|
||
|
height: 48rpx;
|
||
|
background: #e60000;
|
||
|
border-radius: 24rpx;
|
||
|
line-height: 48rpx;
|
||
|
border: none;
|
||
|
outline: none;
|
||
|
font-size: 26rpx;
|
||
|
font-family: PingFang SC;
|
||
|
font-weight: 500;
|
||
|
color: #ffffff;
|
||
|
background-color: rgba(230, 0, 0, 1);
|
||
|
color: #fff;
|
||
|
text-align: center;
|
||
|
transition: background-color 0.13s;
|
||
|
|
||
|
&.z-disabled {
|
||
|
background-color: lighten($c1, 20);
|
||
|
|
||
|
&:active {
|
||
|
background-color: lighten($c1, 15);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&:active {
|
||
|
background-color: darken($c1, 10);
|
||
|
}
|
||
|
}
|
||
|
}
|