You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
98 lines
1.7 KiB
98 lines
1.7 KiB
page,
|
|
.taro_router .taro_page {
|
|
background-color: #f1f8f6 !important;
|
|
font-family: PingFang SC-Bold, PingFang SC;
|
|
-webkit-overflow-scrolling: touch;
|
|
box-sizing: border-box;
|
|
padding-bottom: env(safe-area-inset-bottom);
|
|
}
|
|
|
|
body {
|
|
font-size: 32rpx;
|
|
}
|
|
|
|
.weui-cells_checkbox .weui-check:checked + .weui-icon-checked:before,
|
|
.taro-checkbox_checked {
|
|
color: #45D4A8 !important;
|
|
}
|
|
|
|
taro-button-core::after {
|
|
border: none !important;
|
|
}
|
|
|
|
.input {
|
|
background: #F5F8F7;
|
|
border-radius: 8px;
|
|
padding: 10rpx 20rpx;
|
|
}
|
|
|
|
.form {
|
|
.item {
|
|
margin-bottom: 10px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
border-bottom: 1px solid #F5F8F7;
|
|
height: 80px;
|
|
}
|
|
|
|
Input {
|
|
flex: 1;
|
|
text-align: right;
|
|
}
|
|
}
|
|
|
|
|
|
.card {
|
|
background: #fff;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
border-bottom: 1px solid #F5F8F7;
|
|
padding: 20rpx;
|
|
font-size: 30rpx;
|
|
|
|
&-content {
|
|
font-size: 27rpx;
|
|
color: #8c8c8c;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
}
|
|
|
|
.Textarea {
|
|
width: 100%;
|
|
border-radius: 10px;
|
|
overflow: hidden;
|
|
padding: 10px;
|
|
box-sizing: border-box;
|
|
border: 1px solid #ddd;
|
|
height: 200px;
|
|
text-align: left;
|
|
}
|
|
|
|
.button {
|
|
line-height: 76rpx;
|
|
background: #45D4A8;
|
|
border-radius: 10rpx;
|
|
color: #fff;
|
|
font-size: 32rpx;
|
|
}
|
|
|
|
/** 单行文本省略 */
|
|
.text-ellipsis {
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
-o-text-overflow: ellipsis;
|
|
}
|
|
|
|
/** 多行文本省略 */
|
|
.text-ellipsis-2 {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
-webkit-line-clamp: 2;
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
}
|
|
|