123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- .calendar {
- background-color:white; /*背景色为白色*/
- padding-top: 20rpx; /*上内边距为10px*/
- border-radius: 30epx; /*添加边框圆角*/
- width: 100%;
- position: fixed;
- }
- .top {
- margin-top: 480rpx;
- }
- .logbox {
- margin-top: 20rpx;
- width: 100%;
- display: flex;
- flex-direction: row;
- }
- .datebox {
- flex: 2;
- display: flex;
- flex-direction: column;
- text-align: center;
- }
- .extractbox {
- flex:7;
- display: flex;
- flex-direction: column;
- text-align: left;
- }
- .rightbox {
- flex:1;
- text-align: center;
- }
- .imglistright {
- margin-top: 39rpx;
- height: 26rpx;
- width: 14rpx;
- }
- .txtday {
- font-size: 50rpx;
- font-weight: 500;
- color: #8B8B8B;
- }
- .txtmonth {
- font-size: 30rpx;
- font-weight: 400;
- color: #8B8B8B;
- }
- .txtstatus {
- font-size: 50rpx;
- font-weight: 500;
- color: #000000;
- }
- .txtextract {
- font-size: 30rpx;
- font-weight: 400;
- color: #8B8B8B;
- }
- .txtmoney {
- font-weight: 400;
- font-size: 30rpx;
- color: #DE9147;
- }
- .line {
- margin-top: 20rpx;
- width: 100%;
- height: 10rpx;
- background-color: #F2F2F2;
- }
- .calendar--cwj-icon {
- transform:scale(1.8);
- }
- .pay {
- height:170rpx;
- width: 100%;
- position: fixed;
- left:0;
- bottom:0rpx;
- background:#ffffff;
- z-index: 10;
- display: flex;
- flex-direction: row;
- justify-content: center;
- }
- .buttonextract {
- margin-top: 28rpx;
- width: 588rpx;
- height: 82rpx;
- background:linear-gradient(90deg,rgba(0,199,198,0.97) 0%,rgba(0,210,210,1) 100%);
- box-shadow:0px 14rpx 44rpx 2rpx rgba(0,199,198,0.2);
- border-radius:42rpx;
- text-align: center;
- font-size: 36rpx;
- font-weight: 500;
- color:#FFFFFF;
- line-height: 82rpx;
- }
- .load {
- width: 100%;
- height: 2400rpx;
- position: absolute;
- left: 0;
- top: 0;
- z-index: 9999;
- background-color: #ffffff;
- text-align: center;
- line-height: 1300rpx;
- }
- .loadimg {
- width: 200rpx;
- height: 200rpx;
- }
|