| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- page{
- --border: 1px solid rgba(0, 0, 0, 0.1);
- --textColor: #111;
- --subColor: #A3A4A5;
- --statusColor: #F9A718;
- --tbH:22%;
- --fixedH:120rpx;
- }
- .add-con{
- background-color: #F2F2F2;
- padding-bottom: calc(40rpx + var(--fixedH));
- }
- .c-info,.c-more,.c-beizhu{
- background-color: #fff;
- padding: 0 40rpx;
- }
- .add-item{
- border-bottom: var(--border);
- line-height: 100rpx;
- height: 100rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- text-align: right;
- }
- .c-info .add-item:last-of-type{
- border-bottom: none;
- }
- .gsd{
- display: flex;
- align-items: center;
- }
- .gsd > text{
- color: var(--subColor);
- font-size: 18rpx;
- padding-left: 10rpx;
- }
- .rg-con radio{
- margin-left: 40rpx;
- }
- .star-con{
- width: 50%;
- }
- .star-con .vi-star{
- margin-left: 50rpx;
- vertical-align: middle;
- font-size: 40rpx;
- }
- .c-more,.c-beizhu{
- margin-top: 40rpx;
- }
- .range{
- width: 50%;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .range input{
- text-align: center;
- }
- .range > text{
- color: var(--subColor);
- display: inline-block;
- margin: 0 10rpx 0 20rpx;
- }
- .subtxt{
- color: var(--subColor);
- }
- .ta-con{
- padding-top: 20rpx;
- position: relative;
- }
- .ta-con .tip{
- position: absolute;
- bottom: 20rpx;
- right: 0;
- color: var(--subColor);
- }
- textarea{
- width: 100%;
- }
- .textarea {
- width: 100%;
- height: 300rpx;
- }
- .submit-con{
- padding: 20rpx 40rpx;
- position: fixed;
- bottom: 0;
- left: 0;
- box-shadow: 0 0 10rpx rgba(0, 0, 0, 0.2);
- width: 100%;
- background: #fff;
- z-index: 99;
- box-sizing: border-box;
- transition: ease .3s all;
- }
- .submit-active{
- transform:translateY(200rpx);
- }
- .submit-con .btn{
- width: 100%;
- background: #1FE4DC;
- }
- .pick-view{
- width: 100%;
- background: #F2F2F2;
- }
- .pick-view view{
- width: 100%;
- text-align: center;
- line-height: 100rpx;
- height: 100rpx;
- background: #fff;
- }
- .pick-view view:not(.p-cancel):not(:first-of-type){
- border-top: var(--border);
- }
- .pick-view .p-cancel{
- margin-top: 10rpx;
- }
|