63 lines
1001 B
SCSS
63 lines
1001 B
SCSS
/* pages/createReport/createReport.wxss */
|
|
.form {
|
|
padding: 0rpx 54rpx;
|
|
|
|
.formItem {
|
|
font-size: 28rpx;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding-top: 40rpx;
|
|
padding-bottom: 40rpx;
|
|
|
|
&:not(:first-child) {
|
|
border-top: 2rpx solid #F3F5F8;
|
|
// margin-top: 40rpx;
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
.name {
|
|
text-align: right;
|
|
}
|
|
}
|
|
}
|
|
|
|
.column {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.title {
|
|
font-size: 36rpx;
|
|
font-family: PingFang SC;
|
|
font-weight: bold;
|
|
color: #000000;
|
|
margin-bottom: 30rpx;
|
|
padding: 48rpx 54rpx 0 54rpx;
|
|
}
|
|
|
|
.tip {
|
|
font-size: 24rpx;
|
|
font-family: PingFang SC;
|
|
font-weight: 500;
|
|
color: rgba(131, 131, 131, .61);
|
|
padding-left: 55rpx;
|
|
|
|
image {
|
|
width: 20rpx;
|
|
height: 20rpx;
|
|
margin-right: 12rpx;
|
|
}
|
|
}
|
|
|
|
.label {
|
|
font-size: 28rpx;
|
|
font-family: PingFang SC;
|
|
font-weight: 500;
|
|
color: #494949;
|
|
}
|
|
|
|
.btnLayout {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin: 270rpx auto;
|
|
} |