92 lines
1.5 KiB
CSS
92 lines
1.5 KiB
CSS
* {
|
|
box-sizing: border-box;
|
|
}
|
|
textarea {
|
|
padding: 20upx;
|
|
border: 1upx solid #a2c1c3;
|
|
/* margin: 0 auto; */
|
|
border-radius: 6upx;
|
|
height: 182upx;
|
|
font-size: 24upx;
|
|
margin-top: 16upx;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
}
|
|
.text-area-box {
|
|
margin: 66upx 0 40upx 0;
|
|
}
|
|
.page-cont {
|
|
padding: 48upx 30upx;
|
|
}
|
|
.page-title {
|
|
margin-top: 24upx;
|
|
font-size: 32upx;
|
|
}
|
|
.page-select {
|
|
margin-top: 64upx;
|
|
padding: 32upx 40upx;
|
|
background-color: #fff;
|
|
}
|
|
.select-item {
|
|
height: 96upx;
|
|
line-height: 96upx;
|
|
border-bottom: 1upx solid #eee;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
.select-item + .select-item {
|
|
margin-top: 16upx;
|
|
}
|
|
.select-item span:last-child {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
button {
|
|
height: 80upx;
|
|
background-color: #4A4C5B;
|
|
/* width: 90%; */
|
|
margin: 112upx auto 0 auto;
|
|
font-size: 28upx;
|
|
line-height: 80upx;
|
|
color: #fff;
|
|
}
|
|
.select-btn {
|
|
color: #fff;
|
|
background-color: #4188F2;
|
|
border-radius: 4upx;
|
|
padding: 0 16upx;
|
|
font-size: 24upx;
|
|
height: 48upx;
|
|
line-height: 48upx;
|
|
}
|
|
.sign-tag-box {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
}
|
|
.sign-tag {
|
|
background-color: #f9f9f9;
|
|
color: #666;
|
|
margin-top: 8upx;
|
|
padding: 8upx 16upx;
|
|
border-radius: 3upx;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
font-size: 24upx;
|
|
}
|
|
.remove-tag {
|
|
margin-left: 32upx;
|
|
font-weight: 700;
|
|
font-size: 28upx;
|
|
height: 20upx;
|
|
line-height: 20upx;
|
|
}
|
|
.uni-icon-arrowright {
|
|
color: #777;
|
|
}
|
|
.select-unit {
|
|
display: flex;
|
|
align-items: center;
|
|
} |