123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- /**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;
- }
-
- .userIcon {
- width: 96rpx;
- position: relative;
- overflow: hidden;
- border-radius: 100%;
- height: 96rpx;
- background: #eee;
- }
-
- .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 > view input {
- width: 100%;
- font-size: 26rpx;
- text-align: right;
- color: #666;
- }
-
- .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-color: #ccc;
- border-radius: 10rpx;
- }
-
- .btn.active text {
- background: #bb9c79;
- }
-
- .popup {
- width: 100%;
- position: absolute;
- left: 0;
- bottom: 0;
- top: 0;
- overflow: hidden;
- z-index: 1000;
- background: rgba(0, 0, 0, 0.6);
- }
-
- .popup > view {
- width: 100%;
- position: absolute;
- left: 0;
- bottom: 0;
- overflow: hidden;
- }
|