123456789101112131415161718192021222324252627282930313233 |
- /* pages/buyDetail/buyDetail.wxss */
- page {
- height: 100%;
- background-color: rgba(238, 238, 238, 1);
- }
- .home {
- height: 100%;
- padding: 30rpx;
- }
- .content {
- height: 90%;
- background-color: #ffffff;
- border-radius: 10rpx;
- }
- .top {
- height: 143rpx;
- line-height: 143rpx;
- border-bottom: solid 1rpx rgba(238, 238, 238, 1);
- padding-left: 68rpx;
- font-size: 36rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #2A2A2A;
- }
- .detail{
- padding: 63rpx 85rpx;
- }
- .list{
- margin: 25rpx 0;
- }
|