123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- /* pages/discount-group/discount-group.wxss */
- ::-webkit-scrollbar {
- display: none;
- }
- .discount-group {
- height: 100%;
- width: 100%;
- background:rgba(240,241,245,1);
- }
- scroll-view {
- height: 100%;
- }
- .group-container {
- width: 100%;
- }
- .less-group {
- width: 100%;
- }
- .group-box {
- display: flex;
- width: 100%;
- flex-wrap: wrap;
- justify-content: space-between;
- background: #fff;
- margin-bottom: 12rpx;
- padding: 28rpx 18rpx;
- box-sizing: border-box;
- }
- .group-item {
- display: flex;
- flex-direction: column;
- }
- .group-item image {
- width: 214rpx;
- height: 278rpx;
- }
- .group-item view:nth-child(2) {
- font-size: 32rpx;
- color: #E51C23;
- }
- .group-item view:nth-child(3) {
- font-size: 28rpx;
- color: #969595;
- margin-top: 18rpx;
- }
- .group-item text {
- margin-left: 10rpx;
- }
- .group-item #grade {
- margin-top: 20rpx;
- color: #000;
- text-align: center;
- font-size: 28rpx;
- }
- .Collage-bottom {
- display: flex;
- justify-content: space-around;
- align-items: center;
- height: 102rpx;
- }
- .Collage-bottom image {
- width: 42rpx;
- height: 50rpx;
- vertical-align: middle;
- margin-right: 30rpx;
- }
- .Collage-bottom text {
- vertical-align: middle;
- }
|