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.
465 lines
9.0 KiB
465 lines
9.0 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;
|
|
}
|
|
page {
|
|
background-color: #f5f6f7;
|
|
}
|
|
.select {
|
|
background-color: #fff;
|
|
}
|
|
.select .m-crumbs {
|
|
padding: 20rpx;
|
|
line-height: 50rpx;
|
|
font-size: 32rpx;
|
|
font-family: Source Han Serif SC;
|
|
font-weight: 500;
|
|
color: #333;
|
|
}
|
|
.select .m-sizer {
|
|
padding: 20rpx;
|
|
background-color: #fff;
|
|
}
|
|
.select .m-sizer .picker {
|
|
box-sizing: border-box;
|
|
padding: 11rpx 15rpx;
|
|
height: 56rpx;
|
|
border-radius: 55rpx;
|
|
border: 1rpx solid #333;
|
|
line-height: 32rpx;
|
|
font-size: 26rpx;
|
|
color: #333;
|
|
}
|
|
.select .m-sizer .picker text {
|
|
vertical-align: bottom;
|
|
}
|
|
.select .m-sizer .picker image {
|
|
margin-left: 5rpx;
|
|
vertical-align: bottom;
|
|
width: 32rpx;
|
|
height: 32rpx;
|
|
}
|
|
.select .m-sizer .s-status {
|
|
display: flex;
|
|
margin: 30rpx 0 0 0;
|
|
}
|
|
.select .m-sizer .s-status .statis-picker {
|
|
text-align: center;
|
|
width: 186rpx;
|
|
}
|
|
.select .m-sizer .agency-picker {
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
word-wrap: normal;
|
|
text-align: left;
|
|
display: block;
|
|
}
|
|
.select .m-sizer .agency-picker > image {
|
|
float: right;
|
|
}
|
|
.select .m-sizer .btn-select {
|
|
box-sizing: border-box;
|
|
margin-left: auto;
|
|
height: 54rpx;
|
|
width: 110rpx;
|
|
line-height: 50rpx;
|
|
border-radius: 55rpx;
|
|
background-color: #22BDF0;
|
|
font-size: 26rpx;
|
|
font-family: Source Han Serif SC;
|
|
font-weight: 500;
|
|
color: #fff;
|
|
text-align: center;
|
|
}
|
|
.select .m-sizer .btn-select text {
|
|
vertical-align: bottom;
|
|
}
|
|
.m-order {
|
|
height: 46rpx;
|
|
padding: 20rpx 20rpx 5rpx 20rpx;
|
|
}
|
|
.m-order .num {
|
|
width: auto;
|
|
height: 46rpx;
|
|
padding: 0 15rpx;
|
|
float: left;
|
|
border-radius: 55rpx;
|
|
border: 1px solid #999;
|
|
background-color: #999;
|
|
font-size: 26rpx;
|
|
font-family: Source Han Serif SC;
|
|
font-weight: 500;
|
|
color: #fffefe;
|
|
line-height: 46rpx;
|
|
text-align: center;
|
|
}
|
|
.m-order .order {
|
|
box-sizing: border-box;
|
|
float: right;
|
|
padding: 10rpx 15rpx 0 15rpx;
|
|
height: 46rpx;
|
|
text-align: center;
|
|
line-height: 32rpx;
|
|
font-size: 26rpx;
|
|
font-family: Source Han Serif SC;
|
|
font-weight: 500;
|
|
color: #333;
|
|
}
|
|
.m-order .order text {
|
|
vertical-align: bottom;
|
|
}
|
|
.m-order .order image {
|
|
margin-left: 5rpx;
|
|
vertical-align: bottom;
|
|
width: 32rpx;
|
|
height: 32rpx;
|
|
}
|
|
.g-scroll_page {
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
height: calc(100vh - env(safe-area-inset-bottom) / 2);
|
|
}
|
|
.m-list {
|
|
min-height: 100rpx;
|
|
}
|
|
.m-list .item {
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
margin: 20rpx auto;
|
|
padding: 20rpx;
|
|
width: 710rpx;
|
|
background: #fff;
|
|
box-shadow: 0rpx 3rpx 24rpx 0rpx rgba(211, 211, 211, 0.26);
|
|
border-radius: 10rpx;
|
|
}
|
|
.m-list .item .row {
|
|
position: relative;
|
|
}
|
|
.m-list .item .row::after {
|
|
display: block;
|
|
visibility: hidden;
|
|
clear: both;
|
|
overflow: hidden;
|
|
height: 0;
|
|
content: '';
|
|
}
|
|
.m-list .item .arrow {
|
|
position: absolute;
|
|
display: block;
|
|
top: 15rpx;
|
|
right: 10rpx;
|
|
width: 13rpx;
|
|
height: 24rpx;
|
|
}
|
|
.m-list .item .status {
|
|
display: inline-block;
|
|
box-sizing: border-box;
|
|
padding: 5rpx 5rpx;
|
|
margin-right: 10rpx;
|
|
height: 36rpx;
|
|
width: 90rpx;
|
|
border-radius: 55rpx;
|
|
text-align: center;
|
|
font-size: 22rpx;
|
|
font-family: Source Han Serif SC;
|
|
font-weight: 500;
|
|
color: #fff;
|
|
vertical-align: text-bottom;
|
|
}
|
|
.m-list .item .status-no {
|
|
background-color: #ffc100;
|
|
}
|
|
.m-list .item .status-is {
|
|
background-color: #0c4a9d;
|
|
}
|
|
.m-list .item .title {
|
|
position: relative;
|
|
margin: 2rpx 0;
|
|
font-size: 38rpx;
|
|
font-family: Source Han Serif SC;
|
|
font-weight: 500;
|
|
color: #333;
|
|
line-height: 48rpx;
|
|
}
|
|
.m-list .item .date {
|
|
margin-bottom: 2rpx;
|
|
font-size: 26rpx;
|
|
font-family: Source Han Serif SC;
|
|
font-weight: 500;
|
|
color: #999;
|
|
line-height: 60rpx;
|
|
}
|
|
.m-list .item .sts {
|
|
margin: 5rpx 0;
|
|
font-size: 28rpx;
|
|
font-family: Source Han Serif SC;
|
|
font-weight: 500;
|
|
color: #333;
|
|
line-height: 40rpx;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
}
|
|
.m-list .item .detail {
|
|
font-size: 28rpx;
|
|
font-family: Source Han Serif SC;
|
|
font-weight: 500;
|
|
color: #999;
|
|
line-height: 38rpx;
|
|
}
|
|
.m-more {
|
|
margin-top: 10rpx;
|
|
padding-bottom: 10rpx;
|
|
height: 30rpx;
|
|
line-height: 30rpx;
|
|
color: #bbb;
|
|
font-size: 28rpx;
|
|
text-align: center;
|
|
}
|
|
|