|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- /* pages/pageBusiness/pageBusiness.wxss */
- page {
- padding: 20rpx 24rpx 0;
- box-sizing: border-box;
- width: 100%;
- }
-
- .swiper-box {
- width: 100%;
- height: 300rpx;
- box-sizing: border-box;
- background: #FFF;
-
- }
-
- .swiper {
- width: 100%;
- height: 300rpx;
- border-radius: 10rpx;
- overflow: hidden;
- }
-
-
- .imageUrl {
- width: 100%;
- height: 100%;
-
- }
-
- .bus-list {
- overflow: hidden;
- margin-bottom: 20rpx;
- }
-
-
- .business-box {
- width: 100%;
- height: 493rpx;
- background: #FFF;
- margin-top: 24rpx;
- border-radius: 16rpx;
- overflow: hidden;
- box-sizing: border-box;
- padding: 0 16rpx;
- }
-
-
- .title1 {
- font-weight: 500;
- color: #333333;
- font-size: 28rpx;
- height: 88rpx;
- line-height: 88rpx;
- }
-
- .itemHead {
- font-size: 26rpx;
- color: #666666;
- font-weight: 500;
- line-height: 26rpx;
- margin-bottom: 20rpx;
- vertical-align: middle;
- overflow: hidden;
- }
-
- .itemHead>image {
- width: 24rpx;
- margin-right: 6rpx;
- vertical-align: -1rpx;
-
- }
-
-
- .itemCotnent {
- width: 100%;
- height: 68rpx;
- background: #F9F9F9;
- border-radius: 6rpx;
- vertical-align: middle;
- line-height: 68rpx;
- padding: 0 16rpx;
- box-sizing: border-box;
- }
-
- .itemLeft {
- float: left;
- height: 100%;
- font-size: 24rpx;
- color: #333333;
- }
-
- .itemRihgt {
- float: right;
- height: 100%;
- font-size: 22rpx;
- color: #999999;
- }
-
- .itemRihgt > image {
- width: 24rpx;
- vertical-align: -3rpx;
- margin-right: 10rpx;
- }
|