123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- /**index.wxss**/
- @import '../../app.wxss';
-
- .list {
- width: 100%;
- position: relative;
- overflow: hidden;
- background: #fff;
- margin-top: 20rpx;
- }
-
- .list > view {
- padding: 28rpx 50rpx;
- border-top: 1rpx solid #eee;
- align-items: center;
- }
-
- .list > view:first-child {
- border: none;
- }
-
- .list > view > text {
- font-size: 26rpx;
- line-height: 38rpx;
- margin-right: 10rpx;
- color: #666;
- }
-
- .list > view > text:first-child {
- min-width: 175rpx;
- }
-
- .list > view > text text {
- font-size: 26rpx;
- line-height: 38rpx;
- color: red;
- margin-right: 10rpx;
- }
-
- .list > view > picker text {
- font-size: 26rpx;
- line-height: 38rpx;
- margin-right: 10rpx;
- color: #666;
- }
-
- .list > view > view input {
- width: 100%;
- display: block;
- line-height: 38rpx;
- border: none;
- font-size: 26rpx;
- }
-
- .remark {
- display: block;
- padding: 0 50rpx;
- line-height: 32rpx;
- font-size: 20rpx;
- color: #fe4019;
- margin-top: 30rpx;
- }
-
- .btn {
- padding: 0 50rpx;
- position: relative;
- overflow: hidden;
- margin-top: 290rpx;
- margin-bottom: 40rpx;
- }
-
- .btn text {
- width: 100%;
- display: block;
- text-align: center;
- color: #fff;
- line-height: 88rpx;
- font-size: 28rpx;
- background: #bb9c79;
- border-radius: 10rpx;
- }
-
- .popup {
- width: 100%;
- position: absolute;
- left: 0;
- bottom: 0;
- top: 0;
- overflow: hidden;
- z-index: 1000;
- background: rgba(0, 0, 0, .6);
- }
-
- .popup > view {
- width: 100%;
- position: absolute;
- left: 0;
- bottom: 0;
- overflow: hidden;
- }
|