43 lines
686 B
Plaintext
43 lines
686 B
Plaintext
.content{
|
|
background-color: #fff;
|
|
min-height: 100vh;
|
|
}
|
|
.banner {
|
|
width: 692rpx;
|
|
height: 202rpx;
|
|
padding-top: 15rpx;
|
|
margin: auto;
|
|
}
|
|
|
|
.options {
|
|
width: 692rpx;
|
|
margin: 10rpx auto 0 auto;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.options .option {
|
|
width: calc((692rpx - 15rpx) / 2);
|
|
padding: 26rpx 0;
|
|
margin-top: 15rpx;
|
|
margin-left: 15rpx;
|
|
border-radius: 20rpx;
|
|
color: #fff;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-evenly;
|
|
}
|
|
|
|
.options .option:nth-child(2n+1) {
|
|
margin-left: 0;
|
|
}
|
|
|
|
.options .option .title {
|
|
font-size: 30rpx;
|
|
}
|
|
|
|
.options .option .describe {
|
|
font-size: 22rpx;
|
|
padding-top: 10rpx;
|
|
} |