123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- .wrap {
- width: 100%;
- display: flex;
- flex-direction: column;
- padding: 20rpx 24rpx;
- box-sizing: border-box;
- }
- .list {
- width: 100%;
- display: flex;
- flex-direction: column;
- background-color: #fff;
- border-radius: 16rpx;
- }
- .item {
- width: 100%;
- min-height: 124rpx;
- display: flex;
- align-items: center;
- border-bottom: 1px solid #F6F6F6;
- box-sizing: border-box;
- padding: 0 24rpx;
- box-sizing: border-box;
- }
- .item:last-child {
- border-bottom: none;
- }
- .item-other {
- width: 100%;
- min-height: 184rpx;
- display: flex;
- align-items: flex-start;
- border-bottom: 1px solid #F6F6F6;
- box-sizing: border-box;
- padding: 38rpx 24rpx 0;
- box-sizing: border-box;
- }
- .label {
- width: 30%;
- color: #090909;
- font-size: 32rpx;
- }
- .input {
- flex: 1;
- font-size: 32rpx;
- }
- .placeholder {
- color: #919191
- }
- .btn-box {
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 40rpx 0;
- }
- .btn-box button {
- width: 100%;
- height: 90rpx;
- line-height: 90rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- background-color: #E0E0E0;
- color: #919191;
- font-size: 34rpx;
- border-radius: 100rpx;
- }
- .active {
- background-color: #F2501A !important;
- color: #fff !important;
- }
- button::after {
- border: none;
- }
- .back-icon {
- width: 12rpx;
- margin-left: 20rpx;
- }
- .open-btn {
- height: inherit;
- line-height: inherit;
- background-color: initial;
- padding: 0;
- display: flex;
- align-items: center;
- margin: 0 10rpx 0 0;
- color: #333333;
- font-size: 28rpx;
- }
- .open-btn image {
- width: 40rpx;
- height: 40rpx;
- margin-right: 20rpx;
- }
- .row-between {
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- color: #090909;
- font-size: 32rpx;
- }
- .textarea {
- flex: 1;
- color: #202020;
- font-size: 32rpx;
- height: 130rpx!important;
- }
- .picker{
- width: 60%;
- }
|