| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- /* pages/return-fee/pages/return-fee/detail.wxss */
- .header {
- font-size: 30rpx;
- color: #666;
- padding: 0 30rpx;
- background: #fff;
- }
- .header view {
- border-bottom: 2rpx solid #eee;
- }
- .cell {
- height: 116rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .button {
- width: 750rpx;
- height: 120rpx;
- position: fixed;
- left: 0;
- bottom: 0;
- padding: 0 30rpx;
- box-sizing: border-box;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .button view {
- height: 88rpx;
- width: 336rpx;
- font-size: 34rpx;
- text-align: center;
- line-height: 88rpx;
- color: #327ae1;
- background: #fff;
- border-radius: 10rpx;
- border: 2rpx solid rgba(50, 122, 225, 1);
- }
- .button view:last-child {
- color: #fff;
- background: linear-gradient(90deg, rgba(78, 171, 225, 1) 0%, rgba(49, 121, 225, 1) 100%);
- }
- .content {
- color: #333;
- font-size: 34rpx;
- padding: 20rpx 30rpx;
- }
- .cover {
- height: 100%;
- width: 100%;
- background: rgba(0, 0, 0, 0.4);
- position: fixed;
- left: 0;
- top: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .cover-content {
- height: 684rpx;
- width: 600rpx;
- position: relative;
- }
- .fee-img {
- height: 684rpx;
- width: 600rpx;
- position: absolute;
- left: 0;
- top: 0;
- }
- .fee-content {
- height: 684rpx;
- width: 600rpx;
- position: absolute;
- left: 0;
- top: 0;
- display: flex;
- flex-direction: column;
- justify-content: flex-end;
- align-items: center;
- }
- .fee-content-body {
- font-size: 34rpx;
- color: #333;
- margin-bottom: 48rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
- .fee-content-body view:last-child {
- color: #666;
- font-size: 28rpx;
- margin-top: 30rpx;
- }
- .fee-button {
- width: 336rpx;
- height: 88rpx;
- text-align: center;
- line-height: 88rpx;
- color: #fff;
- font-size: 34rpx;
- background: linear-gradient(90deg, rgba(113, 92, 255, 1) 0%, rgba(49, 121, 225, 1) 100%);
- border-radius: 44rpx;
- margin-bottom: 50rpx;
- }
|