147 lines
1.9 KiB
Plaintext
147 lines
1.9 KiB
Plaintext
/**app.wxss**/
|
|
page {
|
|
font-family: PingFangSC-Regular;
|
|
background-color: #f3f6fa;
|
|
}
|
|
|
|
.yellow {
|
|
color: #ffc44f;
|
|
}
|
|
|
|
.red {
|
|
color: #ff1616;
|
|
}
|
|
|
|
.blue {
|
|
color: #194f82;
|
|
}
|
|
|
|
.light-blue {
|
|
color: #5cbaea;
|
|
}
|
|
|
|
.white {
|
|
color: #fff;
|
|
}
|
|
|
|
.red-bg {
|
|
background-color: #ff1616;
|
|
}
|
|
.gray-bg {
|
|
background-color: #f3f6fa;
|
|
}
|
|
|
|
.white-bg {
|
|
background-color: #fff;
|
|
}
|
|
|
|
.yellow-bg {
|
|
background-color: #ffc44f;
|
|
}
|
|
|
|
.blue-bg {
|
|
background-color: #194f82;
|
|
}
|
|
|
|
.light-blue-bg {
|
|
background-color: #5cbaea;
|
|
}
|
|
|
|
.light-orange-bg {
|
|
background-color: #ff6925;
|
|
}
|
|
|
|
/*theme color end*/
|
|
|
|
.flex-row {
|
|
display: flex;
|
|
}
|
|
|
|
.box-center {
|
|
-webkit-box-align: center;
|
|
}
|
|
|
|
.flex-col {
|
|
-webkit-box-flex: 1;
|
|
-ms-flex: 1;
|
|
flex: 1;
|
|
width: 100%;
|
|
text-align: left;
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-pack: left;
|
|
-webkit-box-align: left;
|
|
}
|
|
|
|
.flex-right {
|
|
-webkit-box-flex: 1;
|
|
-ms-flex: 1;
|
|
flex: 1;
|
|
width: 100%;
|
|
text-align: right;
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-pack: right;
|
|
-webkit-box-align: right;
|
|
}
|
|
|
|
.flex-center {
|
|
-webkit-box-flex: 1;
|
|
-ms-flex: 1;
|
|
flex: 1;
|
|
width: 100%;
|
|
text-align: center;
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-pack: center;
|
|
-webkit-box-align: center;
|
|
}
|
|
.container {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 200rpx 0;
|
|
box-sizing: border-box;
|
|
}
|
|
.tc{
|
|
text-align: center;
|
|
}
|
|
button::after{
|
|
border:none;
|
|
}
|
|
.fs0{
|
|
font-size: 0;
|
|
}
|
|
.space{
|
|
padding-left: 30rpx;
|
|
padding-right: 30rpx;
|
|
}
|
|
|
|
.box-wrap{
|
|
padding: 30rpx;
|
|
}
|
|
.pub-btn{
|
|
width: 90%;
|
|
/* height: 88rpx; */
|
|
margin: 0 auto;
|
|
border-radius: 10rpx;
|
|
background: #3D98FF;
|
|
font-size: 32rpx;
|
|
color: #fff;
|
|
}
|
|
.text-left{
|
|
text-align: left;
|
|
}
|
|
.arrow {
|
|
width: 10rpx;
|
|
height: 16rpx;
|
|
margin-left: 12rpx;
|
|
}
|
|
.mt10{
|
|
margin-top: 10rpx;
|
|
}
|
|
.mt20{
|
|
margin-top: 20rpx;
|
|
} |