123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- /* pages/buy/buy.wxss */
- page{
- background-color: #EEEEEE;
- }
- .top {
- height: 292rpx;
- background: linear-gradient(62deg, #FF8144 0%, #FF5651 100%);
- }
- .content {
- padding: 30rpx;
- }
- .card {
- margin: 15rpx 0;
- background-color: #ffffff;
- border-radius: 10rpx;
- }
- .card1{
- padding: 0 25rpx;
- }
- .card-top {
- height: 82rpx;
- line-height: 82rpx;
- display: flex;
- font-weight: 500;
- color: #333333;
- border-bottom: solid 2rpx rgba(238, 238, 238, 0.4);
- }
- .text {
- flex: 1;
- font-size: 24rpx;
- }
- .num {
- color: #FE7622;
- margin-left: 10rpx;
- }
- .card-content {
- padding-top: 51rpx;
- display: flex;
- text-align: center;
- }
- .middle {
- flex: 1;
- font-size: 24rpx;
- color: #333333;
- }
- .num1 {
- font-size: 34rpx;
- color: #FE7622;
- font-weight: 800;
- }
- .middle-text {
- color: #FE7622;
- }
- .middle-title {
- margin-top: 16rpx;
- }
- .tips {
- height: 88rpx;
- width: 100%;
- position: relative;
- }
- .tips1 {
- position: absolute;
- top: 26rpx;
- right: 50rpx;
- width: 122rpx;
- height: 32rpx;
- border: 1rpx solid #3ADD92;
- border-radius: 16rpx;
- line-height: 30rpx;
- text-align: center;
- font-size: 20rpx;
- font-family: PingFang SC;
- font-weight: 400;
- color: #32DB90;
- }
- .tips2 {
- position: absolute;
- bottom: 0;
- height: 54rpx;
- line-height: 54rpx;
- background: #FFC3B7;
- width: 100%;
- border-radius: 0rpx 0rpx 10rpx 10rpx;
- font-size: 22rpx;
- font-family: PingFang SC;
- padding-left: 30rpx;
- font-weight: 400;
- color: #525252;
- }
|