80 lines
1.3 KiB
Plaintext
80 lines
1.3 KiB
Plaintext
|
/* .top-select{
|
||
|
position: fixed;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
padding: 15rpx 0;
|
||
|
display: flex;
|
||
|
background: #fff;
|
||
|
}
|
||
|
.select-item{
|
||
|
flex: 1;
|
||
|
text-align: center;
|
||
|
border-right: 1px solid #ddd;
|
||
|
}
|
||
|
.select-item:last-child{
|
||
|
border: none;
|
||
|
} */
|
||
|
.match-list{
|
||
|
/* margin-top: 70rpx; */
|
||
|
padding: 0 30rpx 10rpx;
|
||
|
}
|
||
|
.match-box{
|
||
|
border: 1px solid #ddd;
|
||
|
border-radius: 10rpx;
|
||
|
padding: 10rpx;
|
||
|
margin-top: 10rpx;
|
||
|
}
|
||
|
.match{
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
}
|
||
|
.mathch-image{
|
||
|
width: 40%;
|
||
|
height: 200rpx;
|
||
|
}
|
||
|
.mathch-image image{
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
border-radius: 10rpx;
|
||
|
}
|
||
|
.match-info{
|
||
|
width: 58%;
|
||
|
height: 200rpx;
|
||
|
/* border-bottom: 1px solid #ddd; */
|
||
|
}
|
||
|
.match-text{
|
||
|
color: #888;
|
||
|
font-size: 28rpx;
|
||
|
line-height: 55rpx;
|
||
|
white-space: nowrap;
|
||
|
overflow: hidden;
|
||
|
text-overflow: ellipsis;
|
||
|
}
|
||
|
.sign-status{
|
||
|
padding: 10rpx 0;
|
||
|
text-align: right;
|
||
|
}
|
||
|
.status-info{
|
||
|
display: inline-block;
|
||
|
width: 150rpx;
|
||
|
padding: 10rpx 0;
|
||
|
color: #fff;
|
||
|
text-align: center;
|
||
|
border-radius: 40rpx;
|
||
|
}
|
||
|
.status-info.signing{
|
||
|
background: orange;
|
||
|
}
|
||
|
.status-info.sign-end{
|
||
|
background: #eee;
|
||
|
}
|
||
|
.page-title{
|
||
|
text-align: center;
|
||
|
padding: 10rpx;
|
||
|
background: linear-gradient(to bottom,#4B7AFE,rgb(161, 161, 243));
|
||
|
color: #fff;
|
||
|
font-size: 38rpx;
|
||
|
font-weight: bold;
|
||
|
margin-bottom: 10rpx;
|
||
|
}
|