135 lines
3.0 KiB
Plaintext
135 lines
3.0 KiB
Plaintext
/* template/project-list-screen/project-list-screen.wxss */
|
|
/* 公共的 css 样式 */
|
|
.flexflex {
|
|
display: flex;
|
|
}
|
|
.flexcenter {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.flexjcenter {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
.flexacenter {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.flex1 {
|
|
flex: 1;
|
|
}
|
|
.flexcolumn {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.screen-mask {
|
|
background-color: rgba(0, 0, 0, 0.70588235);
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
display: flex;
|
|
align-items: flex-end;
|
|
z-index: 100;
|
|
}
|
|
.screen-mask .screen-box {
|
|
width: 100vw;
|
|
background-color: #FFFFFF;
|
|
padding-top: 43.5rpx;
|
|
border-radius: 45rpx 45rpx 0 0;
|
|
}
|
|
.screen-mask .screen-box .head {
|
|
font-family: 'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
|
|
font-weight: 650;
|
|
font-size: 30rpx;
|
|
color: #000000;
|
|
margin-bottom: 45rpx;
|
|
text-align: center;
|
|
}
|
|
.screen-mask .screen-box .box {
|
|
margin: 0 22.5rpx 30rpx;
|
|
background-color: #fbfbfb;
|
|
border: 1rpx solid #f2f2f2;
|
|
border-radius: 15rpx;
|
|
padding: 16.5rpx 18rpx 30rpx 18rpx;
|
|
}
|
|
.screen-mask .screen-box .box .title {
|
|
font-family: 'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
|
|
font-weight: 650;
|
|
font-size: 27rpx;
|
|
color: #000000;
|
|
margin-bottom: 45rpx;
|
|
}
|
|
.screen-mask .screen-box .box .major-box {
|
|
height: 72rpx;
|
|
line-height: 72rpx;
|
|
background-color: #ffffff;
|
|
border: 1rpx solid #ccd003;
|
|
border-radius: 112.5rpx;
|
|
padding-left: 30rpx;
|
|
padding-right: 22.5rpx;
|
|
}
|
|
.screen-mask .screen-box .box .major-box .text {
|
|
font-family: 'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
|
|
font-weight: 650;
|
|
font-size: 24rpx;
|
|
color: #9A9D02;
|
|
}
|
|
.screen-mask .screen-box .box .major-box .text.text-no {
|
|
color: #AAAAAA;
|
|
font-weight: 400;
|
|
}
|
|
.screen-mask .screen-box .box .major-box .icon {
|
|
width: 10.5rpx;
|
|
height: 18rpx;
|
|
}
|
|
.screen-mask .screen-box .box .list {
|
|
flex-wrap: wrap;
|
|
}
|
|
.screen-mask .screen-box .box .list .item {
|
|
min-width: 150rpx;
|
|
height: 72rpx;
|
|
line-height: 72rpx;
|
|
background-color: #f6f6f6;
|
|
border-radius: 112.5rpx;
|
|
font-size: 24rpx;
|
|
color: #555555;
|
|
margin-right: 15rpx;
|
|
padding: 0 15rpx;
|
|
margin-bottom: 10rpx;
|
|
}
|
|
.screen-mask .screen-box .box .list .item.pitch {
|
|
border: 1rpx solid #ccd003;
|
|
font-weight: 650;
|
|
color: #9A9D02;
|
|
background-color: #FFFFFF;
|
|
}
|
|
.screen-mask .screen-box .footer {
|
|
margin-top: 45rpx;
|
|
height: 201rpx;
|
|
border-top: 1rpx solid #ebebeb;
|
|
justify-content: space-between;
|
|
font-size: 30rpx;
|
|
padding: 45rpx 30rpx 0 30rpx;
|
|
}
|
|
.screen-mask .screen-box .footer .cancel {
|
|
width: 225rpx;
|
|
height: 96rpx;
|
|
background-color: rgba(207, 247, 255, 0);
|
|
border: 1rpx solid #d7d7d7;
|
|
border-radius: 112.5rpx;
|
|
color: #555555;
|
|
}
|
|
.screen-mask .screen-box .footer .confirm {
|
|
width: 435rpx;
|
|
height: 96rpx;
|
|
font-family: 'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
|
|
font-weight: 650;
|
|
color: #026277;
|
|
background-color: #cff7ff;
|
|
border: 1rpx solid #badee6;
|
|
border-radius: 112.5rpx;
|
|
}
|