123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- /* dispatcher/pages/withdraw_detail/withdraw_detail.wxss */
- @import '../../../templates/nodata/nodata.wxss';
- @import '../../../templates/loading/loading.wxss';
- .list {
- padding: 0 0 98rpx 0;
- }
- .li {
- margin: 20rpx;
- padding: 30rpx;
- border-radius: 18rpx;
- background: #fff;
- }
- .li-label {
- display: inline-block;
- background: linear-gradient(90deg,rgba(81,206,255,1) 0%,rgba(0,183,255,1) 100%);
- font-size: 28rpx;
- color: #fff;
- padding: 8rpx 40rpx 8rpx 30rpx;
- margin: 0 0 10rpx -30rpx;
- position: relative;
- }
- .li-label::before {
- content: "";
- position: absolute;
- top: 0;
- right: 0;
- border-top: solid 14rpx #fff;
- border-right: solid 14rpx #fff;
- border-bottom: solid 14rpx transparent;
- border-left: solid 14rpx transparent;
- }
- .li-label::after {
- content: "";
- position: absolute;
- bottom: 0;
- right: 0;
- border-top: solid 14rpx transparent;
- border-right: solid 14rpx #fff;
- border-bottom: solid 14rpx #fff;
- border-left: solid 14rpx transparent;
- }
- .li-title {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding-bottom: 30rpx;
- margin-bottom: 30rpx;
- border-bottom: dashed 1rpx #ccc;
- }
- .li-text {
- margin: 14rpx auto;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .text-blue {
- color: #00B7FF;
- font-size: 32rpx;
- line-height: 40rpx;
- }
- .text-blue-small {
- color: #00B7FF;
- font-size: 28rpx;
- line-height: 28rpx;
- }
- .text-black {
- color: #333;
- font-size: 32rpx;
- line-height: 40rpx;
- }
- .text-gray {
- color: #666;
- font-size: 32rpx;
- line-height: 40rpx;
- }
- .text-gray-small {
- color: #999;
- font-size: 28rpx;
- line-height: 28rpx;
- }
- .li-items {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .li-item {
- flex: 1;
- text-align: center;
- position: relative;
- }
- .li-item-icon {
- width: 40rpx;
- height: 40rpx;
- position: relative;
- z-index: 9;
- }
- .li-item-line-left {
- content: "";
- position: absolute;
- top: 20rpx;
- left: 0rpx;
- width: 50%;
- height: 10rpx;
- background: #CECECE;
- }
- .li-item-line-right {
- content: "";
- position: absolute;
- top: 20rpx;
- right: 0rpx;
- width: 50%;
- height: 10rpx;
- background: #CECECE;
- }
- .bg-blue {
- background: #00B7FF;
- }
- .bg-gray {
- background: #CECECE;
- }
- .li-item-text {
- margin-top: 20rpx;
- }
- .footer {
- position: fixed;
- bottom: 0;
- left: 0;
- width: 100%;
- z-index: 9;
- }
- .footer-tips {
- padding: 30rpx;
- display: flex;
- justify-content: flex-start;
- align-items: flex-start;
- }
- .footer-tips-icon {
- width: 34rpx;
- height: 34rpx;
- margin: 5rpx 13rpx 0 0;
- }
- .footer-tips-text {
- flex: 1;
- color: #FF542B;
- font-size: 28rpx;
- line-height: 44rpx;
- }
- .footer-btn {
- padding: 24rpx;
- text-align: center;
- background: linear-gradient(90deg,rgba(81,206,255,1) 0%,rgba(0,183,255,1) 100%);
- font-size: 30rpx;
- color: #fff;
- }
|