123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- .wrapper {
- width: 100%;
- padding-top: 20rpx;
- }
- .page-section {
- width: 100%;
- margin: 22rpx auto 40rpx;
- swiper {
- height: 360rpx;
- }
- .swiper-item {
- position: relative;
- left: 0;
- top: 0;
- width: 690rpx;
- height: 100%;
- margin: 0 auto;
- border-radius: 24rpx;
- overflow: hidden;
- }
- .photo {
- display: block;
- width: 100%;
- height: 100%;
- }
- .info {
- position: absolute;
- left: 0;
- bottom: 0;
- z-index: 1;
- display: flex;
- align-items: center;
- width: 100%;
- padding: 0 24rpx 8rpx;
- }
- .label-wrap,
- .value-wrap {
- display: flex;
- align-items: center;
- }
- .value-wrap {
- width: calc(100% - 120rpx);
- }
- .icon {
- width: 36rpx;
- height: 36rpx;
- }
- .label,
- .name {
- font-size: 28rpx;
- line-height: 46rpx;
- color: rgba(255, 255, 255, 1);
- }
- .name,
- .address {
- max-width: 50%;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .address {
- padding-left: 6rpx;
- font-size: 20rpx;
- line-height: 46rpx;
- color: rgba(229, 229, 229, 1);
- }
- .swiper-dots {
- display: flex;
- align-items: center;
- justify-content: center;
- margin-top: 20rpx;
- & > view {
- width: 16rpx;
- height: 16rpx;
- margin-left: 16rpx;
- border-radius: 6rpx;
- background: rgba(145, 179, 121, 0.6);
- &:nth-of-type(1) {
- margin-left: 0;
- }
- &.active {
- background: rgba(145, 179, 121, 1);
- }
- }
- }
- }
- .main {
- display: flex;
- flex-flow: row wrap;
- width: 690rpx;
- padding: 30rpx 0 314rpx;
- margin: 0 auto;
- }
- .list {
- width: 336rpx;
- min-height: 314rpx;
- margin-left: 18rpx;
- margin-bottom: 20rpx;
- border-radius: 8rpx;
- background: rgba(255, 255, 255, 1);
- box-shadow: 0 4rpx 8rpx 0 rgba(0, 0, 0, 0.1);
- overflow: hidden;
- &:nth-of-type(2n + 1) {
- margin-left: 0;
- }
- }
|