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.
611 lines
13 KiB
611 lines
13 KiB
@charset "UTF-8";
|
|
.f-cb {
|
|
float: none;
|
|
clear: both;
|
|
height: 0;
|
|
}
|
|
.f-cs::after {
|
|
display: block;
|
|
visibility: hidden;
|
|
clear: both;
|
|
overflow: hidden;
|
|
height: 0;
|
|
content: '';
|
|
}
|
|
.f-hide {
|
|
display: none;
|
|
}
|
|
.f-fl {
|
|
float: left;
|
|
}
|
|
.f-fr {
|
|
float: right;
|
|
}
|
|
.f-bs1 {
|
|
box-shadow: 0 2rpx 8rpx 0 rgba(0, 0, 0, 0.1);
|
|
}
|
|
.f-bs2 {
|
|
box-shadow: 0 4rpx 12rpx 0 rgba(0, 0, 0, 0.16);
|
|
}
|
|
.f-bs3 {
|
|
box-shadow: 0 6rpx 18rpx 0 rgba(0, 0, 0, 0.22);
|
|
}
|
|
.f-blur {
|
|
filter: blur(3px);
|
|
}
|
|
.f-shield {
|
|
position: fixed;
|
|
z-index: 9999;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgba(0, 0, 0, 0.4);
|
|
backdrop-filter: blur(8rpx);
|
|
}
|
|
@keyframes fade_in {
|
|
0% {
|
|
opacity: 0;
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
@keyframes fade_in_up {
|
|
0% {
|
|
transform: translate3d(0, 360rpx, 0);
|
|
opacity: 0.3;
|
|
}
|
|
100% {
|
|
transform: translate3d(0, 0, 0);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
@keyframes fade_in_down {
|
|
0% {
|
|
transform: translate3d(0, -360rpx), 0;
|
|
opacity: 0.3;
|
|
}
|
|
100% {
|
|
transform: translate3d(0, 0, 0);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
@keyframes fade_in_right {
|
|
0% {
|
|
transform: translate3d(360rpx, 0, 0);
|
|
opacity: 0.3;
|
|
}
|
|
100% {
|
|
transform: translate3d(0, 0, 0);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
@keyframes fade_in_left {
|
|
0% {
|
|
transform: translate3d(-360rpx, 0, 0);
|
|
opacity: 0.3;
|
|
}
|
|
100% {
|
|
transform: translate3d(0, 0, 0);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
.a-fade-in {
|
|
animation: fade_in 0.27s ease-in;
|
|
}
|
|
.a-fade-in-up {
|
|
animation: fade_in_up 0.27s ease-in;
|
|
}
|
|
.a-fade-in-right {
|
|
animation: fade_in_right 0.27s ease-in;
|
|
}
|
|
.a-fade-in-left {
|
|
animation: fade_in_left 0.27s ease-in;
|
|
}
|
|
.a-fade-in-down {
|
|
animation: fade_in_down 0.27s ease-in;
|
|
}
|
|
@keyframes fade_out {
|
|
0% {
|
|
display: block;
|
|
opacity: 1;
|
|
}
|
|
100% {
|
|
display: block;
|
|
opacity: 0;
|
|
}
|
|
}
|
|
@keyframes fade_out_up {
|
|
0% {
|
|
display: block;
|
|
transform: translate3d(0, 0, 0);
|
|
opacity: 1;
|
|
}
|
|
100% {
|
|
display: block;
|
|
transform: translate3d(0, 360rpx, 0);
|
|
opacity: 0;
|
|
}
|
|
}
|
|
@keyframes fade_out_down {
|
|
0% {
|
|
display: block;
|
|
transform: translate3d(0, 0, 0);
|
|
opacity: 1;
|
|
}
|
|
100% {
|
|
display: block;
|
|
transform: translate3d(0, -360rpx, 0);
|
|
opacity: 0;
|
|
}
|
|
}
|
|
@keyframes fade_out_right {
|
|
0% {
|
|
display: block;
|
|
transform: translate3d(0, 0, 0);
|
|
opacity: 1;
|
|
}
|
|
100% {
|
|
display: block;
|
|
transform: translate3d(360rpx, 0, 0);
|
|
opacity: 0;
|
|
}
|
|
}
|
|
@keyframes fade_out_left {
|
|
0% {
|
|
display: block;
|
|
transform: translate3d(0);
|
|
opacity: 1;
|
|
}
|
|
100% {
|
|
display: block;
|
|
transform: translate3d(-360rpx, 0, 0);
|
|
opacity: 0;
|
|
}
|
|
}
|
|
.a-fade-out {
|
|
animation: fade_out 0.27s ease-out;
|
|
}
|
|
.a-fade-out-up {
|
|
animation: fade_out_up 0.27s ease-out;
|
|
}
|
|
.a-fade-out-right {
|
|
animation: fade_out_right 0.27s ease-out;
|
|
}
|
|
.a-fade-out-left {
|
|
animation: fade_out_left 0.27s ease-out;
|
|
}
|
|
.a-fade-out-down {
|
|
animation: fade_out_down 0.27s ease-out;
|
|
}
|
|
@keyframes scale_in {
|
|
0% {
|
|
opacity: 0;
|
|
transform: scale3d(0, 0, 0);
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
transform: scale3d(1, 1, 1);
|
|
}
|
|
}
|
|
@keyframes scale_in_left_up {
|
|
0% {
|
|
opacity: 0;
|
|
transform: translate3d(-50%, -50%, 0) scale3d(0, 0, 0);
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
|
|
}
|
|
}
|
|
@keyframes scale_in_right_down {
|
|
0% {
|
|
opacity: 0;
|
|
transform: translate3d(50%, 50%, 0) scale3d(0, 0, 0);
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
|
|
}
|
|
}
|
|
@keyframes scale_in_right_up {
|
|
0% {
|
|
opacity: 0;
|
|
transform: translate3d(50%, -50%, 0) scale3d(0, 0, 0);
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
|
|
}
|
|
}
|
|
@keyframes scale_in_left_down {
|
|
0% {
|
|
opacity: 0;
|
|
transform: translate3d(-50%, 50%, 0) scale3d(0, 0, 0);
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
|
|
}
|
|
}
|
|
.a-scale-in {
|
|
animation: scale_in 0.27s ease-in;
|
|
}
|
|
.a-scale-in-left-up {
|
|
animation: scale_in_left_up 0.27s ease-in;
|
|
}
|
|
.a-scale-in-right-up {
|
|
animation: scale_in_right_up 0.27s ease-in;
|
|
}
|
|
.a-scale-in-left-down {
|
|
animation: scale_in_left_down 0.27s ease-in;
|
|
}
|
|
.a-scale-in-right-down {
|
|
animation: scale_in_right_down 0.27s ease-in;
|
|
}
|
|
.m-hint {
|
|
text-align: center;
|
|
padding: 150rpx 50rpx;
|
|
line-height: 50rpx;
|
|
color: #999;
|
|
text-align: center;
|
|
font-size: 32rpx;
|
|
font-family: Source Han Serif SC;
|
|
font-weight: 500;
|
|
}
|
|
.m-select_publish_range {
|
|
position: fixed;
|
|
z-index: 9999;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgba(0, 0, 0, 0.4);
|
|
backdrop-filter: blur(8rpx);
|
|
z-index: 1000;
|
|
}
|
|
.m-select_publish_range .wrap {
|
|
position: absolute;
|
|
box-sizing: border-box;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 85%;
|
|
background-color: #fff;
|
|
border-radius: 10rpx 10rpx 0 0;
|
|
}
|
|
.m-select_publish_range .wrap2 {
|
|
box-sizing: border-box;
|
|
height: 100%;
|
|
padding-top: 10rpx;
|
|
padding-bottom: 120rpx;
|
|
overflow-y: scroll;
|
|
}
|
|
.m-select_publish_range .operate {
|
|
position: absolute;
|
|
z-index: 100;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100rpx;
|
|
background-color: #fff;
|
|
border-top: 1rpx solid #eee;
|
|
}
|
|
.m-select_publish_range .operate .btn {
|
|
float: left;
|
|
width: 50%;
|
|
text-align: center;
|
|
line-height: 100rpx;
|
|
background-color: #e60000;
|
|
color: #fff;
|
|
text-align: center;
|
|
font-size: 30rpx;
|
|
font-family: Source Han Serif SC;
|
|
font-weight: 500;
|
|
}
|
|
.m-select_publish_range .operate .btn.btn-off {
|
|
background-color: #fff;
|
|
color: #666;
|
|
}
|
|
.m-select_publish_range .title {
|
|
position: relative;
|
|
margin: 0 auto;
|
|
padding: 20rpx 0;
|
|
width: 710rpx;
|
|
line-height: 60rpx;
|
|
border-bottom: 1rpx solid #e7eeee;
|
|
font-size: 26rpx;
|
|
font-family: Source Han Serif SC;
|
|
font-weight: 500;
|
|
color: #979797;
|
|
}
|
|
.m-select_publish_range .title .row {
|
|
overflow: hidden;
|
|
}
|
|
.m-select_publish_range .title .title-ico {
|
|
position: relative;
|
|
width: 60rpx;
|
|
height: 60rpx;
|
|
}
|
|
.m-select_publish_range .title .title-ico image {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
margin: auto;
|
|
}
|
|
.m-select_publish_range .title .title-ico image.title-ico-back {
|
|
width: 19rpx;
|
|
height: 34rpx;
|
|
}
|
|
.m-select_publish_range .title .title-ico image.title-ico-close {
|
|
width: 35rpx;
|
|
height: 35rpx;
|
|
}
|
|
.m-select_publish_range .title .title-btn {
|
|
width: 140rpx;
|
|
height: 60rpx;
|
|
line-height: 60rpx;
|
|
background: #e60000;
|
|
border-radius: 30rpx;
|
|
font-size: 32rpx;
|
|
font-family: Source Han Serif SC;
|
|
font-weight: 500;
|
|
color: #fff;
|
|
text-align: center;
|
|
}
|
|
.m-select_publish_range .back-btn {
|
|
box-sizing: border-box;
|
|
margin: 15rpx 20rpx;
|
|
padding: 10rpx 5rpx;
|
|
width: 200rpx;
|
|
border: 1rpx solid #e5e5e5;
|
|
line-height: 60rpx;
|
|
border-radius: 10rpx;
|
|
font-size: 30rpx;
|
|
font-family: Source Han Serif SC;
|
|
font-weight: 500;
|
|
color: #ffa03c;
|
|
text-align: center;
|
|
}
|
|
.m-select_publish_range .menu-title {
|
|
margin-top: 20rpx;
|
|
padding: 0 20rpx;
|
|
line-height: 50rpx;
|
|
font-size: 28rpx;
|
|
font-family: Source Han Serif SC;
|
|
font-weight: 500;
|
|
color: #999;
|
|
}
|
|
.m-select_publish_range .menu {
|
|
box-sizing: border-box;
|
|
margin: 0 auto;
|
|
padding: 20rpx 10rpx;
|
|
width: 710rpx;
|
|
border-top: 1rpx solid #fefefe;
|
|
line-height: 40rpx;
|
|
}
|
|
.m-select_publish_range .menu::after {
|
|
display: block;
|
|
visibility: hidden;
|
|
clear: both;
|
|
overflow: hidden;
|
|
height: 0;
|
|
content: '';
|
|
}
|
|
.m-select_publish_range .menu .ico-fold {
|
|
display: inline-block;
|
|
margin-left: -20rpx;
|
|
padding: 4rpx 10rpx;
|
|
width: 32rpx;
|
|
height: 32rpx;
|
|
vertical-align: bottom;
|
|
transition: all 0.18s ease-in-out;
|
|
}
|
|
.m-select_publish_range .menu .ico-fold.z-unfold {
|
|
transform: rotate(90deg);
|
|
}
|
|
.m-select_publish_range .menu .name {
|
|
width: 400rpx;
|
|
font-size: 32rpx;
|
|
font-family: Source Han Serif SC;
|
|
font-weight: 500;
|
|
color: #333;
|
|
}
|
|
.m-select_publish_range .menu .num {
|
|
font-size: 26rpx;
|
|
font-family: Source Han Serif SC;
|
|
font-weight: 500;
|
|
color: #e60000;
|
|
}
|
|
.m-select_publish_range .menu .ico-go {
|
|
display: block;
|
|
margin: 10rpx 15rpx;
|
|
width: 13rpx;
|
|
height: 24rpx;
|
|
}
|
|
.m-select_publish_range .list {
|
|
margin-top: 30rpx;
|
|
}
|
|
.m-select_publish_range .list view .list-title {
|
|
font-size: 28rpx;
|
|
}
|
|
.m-select_publish_range .list-title {
|
|
margin: 5rpx 0;
|
|
padding: 20rpx;
|
|
font-size: 30rpx;
|
|
font-family: Source Han Serif SC;
|
|
font-weight: 500;
|
|
color: #333;
|
|
line-height: 32rpx;
|
|
}
|
|
.m-select_publish_range .list-title .ico {
|
|
position: relative;
|
|
top: -10rpx;
|
|
margin-left: -15rpx;
|
|
margin-right: 2rpx;
|
|
width: 50rpx;
|
|
height: 50rpx;
|
|
}
|
|
.m-select_publish_range .list-title .ico image,
|
|
.m-select_publish_range .list-title .ico::after {
|
|
position: absolute;
|
|
display: block;
|
|
box-sizing: border-box;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
margin: auto;
|
|
width: 20rpx;
|
|
height: 20rpx;
|
|
display: block;
|
|
}
|
|
.m-select_publish_range .list-title .ico::after {
|
|
content: '';
|
|
z-index: 1;
|
|
border: 1px solid #999;
|
|
border-radius: 1px;
|
|
}
|
|
.m-select_publish_range .list-title .ico image {
|
|
z-index: 2;
|
|
opacity: 0;
|
|
transform: scale(0);
|
|
transition: all 0.18s ease-in-out;
|
|
}
|
|
.m-select_publish_range .list-title .ico.z-on::after {
|
|
opacity: 0;
|
|
}
|
|
.m-select_publish_range .list-title .ico.z-on image {
|
|
opacity: 1;
|
|
transform: scale(1);
|
|
}
|
|
.m-select_publish_range .list-title > image {
|
|
display: inline-block;
|
|
margin: 0 10rpx;
|
|
width: 32rpx;
|
|
height: 32rpx;
|
|
vertical-align: bottom;
|
|
transition: all 0.18s ease-in-out;
|
|
}
|
|
.m-select_publish_range .list-title > image.z-unfold {
|
|
transform: rotate(90deg);
|
|
}
|
|
.m-select_publish_range .item {
|
|
overflow: hidden;
|
|
}
|
|
.m-select_publish_range .item .item-wrap {
|
|
box-sizing: border-box;
|
|
padding: 20rpx;
|
|
height: 90rpx;
|
|
line-height: 50rpx;
|
|
overflow: hidden;
|
|
border-bottom: 1rpx solid #fefefe;
|
|
}
|
|
.m-select_publish_range .item .item-wrap .ico {
|
|
position: relative;
|
|
margin-left: -15rpx;
|
|
margin-right: 2rpx;
|
|
width: 50rpx;
|
|
height: 50rpx;
|
|
}
|
|
.m-select_publish_range .item .item-wrap .ico image,
|
|
.m-select_publish_range .item .item-wrap .ico::after {
|
|
position: absolute;
|
|
display: block;
|
|
box-sizing: border-box;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
margin: auto;
|
|
width: 20rpx;
|
|
height: 20rpx;
|
|
display: block;
|
|
}
|
|
.m-select_publish_range .item .item-wrap .ico::after {
|
|
content: '';
|
|
z-index: 1;
|
|
border: 1px solid #999;
|
|
border-radius: 1px;
|
|
}
|
|
.m-select_publish_range .item .item-wrap .ico image {
|
|
z-index: 2;
|
|
opacity: 0;
|
|
transform: scale(0);
|
|
transition: all 0.18s ease-in-out;
|
|
}
|
|
.m-select_publish_range .item .item-wrap .ico.z-on::after {
|
|
opacity: 0;
|
|
}
|
|
.m-select_publish_range .item .item-wrap .ico.z-on image {
|
|
opacity: 1;
|
|
transform: scale(1);
|
|
}
|
|
.m-select_publish_range .item .item-wrap .avatar {
|
|
position: relative;
|
|
margin-right: 10rpx;
|
|
width: 50rpx;
|
|
height: 50rpx;
|
|
}
|
|
.m-select_publish_range .item .item-wrap .avatar image {
|
|
width: 50rpx;
|
|
height: 50rpx;
|
|
border-radius: 100%;
|
|
}
|
|
.m-select_publish_range .item .item-wrap .name {
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
word-wrap: normal;
|
|
width: 70%;
|
|
font-size: 28rpx;
|
|
font-family: Source Han Serif SC;
|
|
font-weight: 500;
|
|
color: #333;
|
|
}
|
|
.m-select_publish_range .item .item-wrap .name .z-stress {
|
|
position: relative;
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
padding: 0 5rpx;
|
|
height: 24rpx;
|
|
line-height: 24rpx;
|
|
border: 1rpx solid #bb1313;
|
|
border-radius: 12rpx;
|
|
font-size: 20rpx;
|
|
font-family: Source Han Serif SC;
|
|
font-weight: 500;
|
|
color: #bb1313;
|
|
}
|
|
.m-select_publish_range .item .item-wrap .else text {
|
|
font-size: 26rpx;
|
|
font-family: Source Han Serif SC;
|
|
font-weight: 500;
|
|
color: #999;
|
|
}
|
|
.m-select_publish_range .item .item-wrap .else image {
|
|
display: inline-block;
|
|
margin: 16rpx 12rpx;
|
|
width: 13rpx;
|
|
height: 24rpx;
|
|
vertical-align: bottom;
|
|
}
|
|
.m-select_publish_range .z-retract-1 {
|
|
padding-left: 25rpx;
|
|
}
|
|
.m-select_publish_range .z-retract-2 {
|
|
padding-left: 50rpx;
|
|
}
|
|
.m-select_publish_range .z-retract-3 {
|
|
padding-left: 75rpx;
|
|
}
|
|
.m-select_publish_range .z-retract-4 {
|
|
padding-left: 100rpx;
|
|
}
|
|
|