123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- page{
- width: 100%;
- /* height: 100%; */
- background: #f5f5f5;
- }
- .body{
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .body .top{
- width: 100%;
- display: flex;
- align-items: center;
- flex-direction: column;
- background: white;
- position: fixed;
- top: 0;
- left: 0;
- }
- .body .time{
- width: 90%;
- }
- .body .yutang{
- width: 90%;
- display: flex;
- font-size: 28rpx;
- align-items: center;
- height: 80rpx;
- }
- .body .yutang view{
- width: 33.3%;
- display: flex;
- align-items: center;
- justify-content: center;
- position: relative;
- }
- .yutang view .text{
- position: absolute;
- bottom: -8rpx;
- left: 38%;
- width: 50rpx;
- height: 4rpx;
- background: greenyellow;
- }
- .yutang .active{
- color: red;
- }
- .picker{
- display: flex;
- align-items: center;
- }
- .list{
- width: 90%;
- display: flex;
- flex-direction: column;
- align-items: center;
- margin-top: 120rpx;
- padding-bottom: 50rpx;
- }
- .list .view{
- width: 100%;
- display: flex;
- background: white;
- margin-top: 20rpx;
- padding: 20rpx 0rpx;
- font-size: 28rpx;
- border-radius: 20rpx;
- justify-content: space-between;
- align-items: center;
- }
- .list .left{
- display: flex;
- flex-direction: column;
- padding-left: 20rpx;
- }
- .list .right{
- display: flex;
- flex-direction: column;
- align-items: center;
- padding-right: 30rpx;
- }
- .list .left text{
- padding: 8rpx 0rpx;
- }
- .list .right view{
- width: 140rpx;
- height: 60rpx;
- border-radius: 10rpx;
- background: #43E0B8;
- color: white;
- display: flex;
- align-items: center;
- justify-content: center;
- margin: 15rpx 0rpx;
- }
- .none{
- margin-top: 260rpx;
- color: #43E0B8;
- font-size: 28rpx;
- }
- .model {
- width: 470rpx;
- height: 400rpx;
- border-radius: 10rpx;
- position: fixed;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- z-index: 9999;
- background: white;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-between;
- }
- .model .title{
- padding: 15rpx 0rpx;
- font-size: 38rpx;
- font-weight: 800;
- }
- .model .bottom{
- width: 100%;
- display: flex;
- align-items: center;
- border-top: 2rpx solid #cccccc;
- }
- .model .bottom view{
- width: 50%;
- display: flex;
- align-items: center;
- justify-content: center;
- height: 80rpx;
- }
- .model input{
- border: 2rpx solid #cccccc;
- width: 80%;
- height: 60rpx;
- }
- .background {
- width: 100%;
- height: 100%;
- position: fixed;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%);
- background: rgba(0, 0, 0, 1);
- opacity: 0.4;
- z-index: 8887;
- }
|