12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- /* 数据展示 */
- .data-display {
- display: flex;
- justify-content: space-around;
- width: 100vw;
- height: 142rpx;
- background-color: #FFFFFF;
- padding: 0 30rpx;
- box-sizing: border-box;
- text-align: center;
- }
- .data-display-title {
- font-size: 24rpx;
- color: #333333;
- line-height: 34rpx;
- opacity: .7;
- margin-top: 20rpx;
- }
- .data-display-num {
- font-size: 42rpx;
- font-weight: 500;
- color: #4DC2D4;
- line-height: 58rpx;
- margin-top: 10rpx;
- }
- .display-title_image {
- width: 32rpx;
- height: 32rpx;
- margin: 0 6rpx;
- }
- /* 直播大厅和热门展商 */
- .exhibition-swiper {
- height: 700rpx;
- }
- .exhibition-swiper-item {
- display: flex;
- justify-content: space-around;
- flex-wrap: wrap;
- height: 650rpx !important;
- }
- /* 盒子 */
- .exhibition {
- display: flex;
- flex-direction: column;
- width: 322rpx;
- height: 308rpx;
- background: #FFFFFF;
- box-shadow: 10rpx 10rpx 20rpx 0px rgba(0, 0, 0, 0.05);
- border-radius: 10rpx;
- border: 2rpx solid rgba(0, 0, 0, 0.05);
- overflow: hidden;
- }
- .exhibition-img {
- width: 100%;
- height: 240rpx;
- box-shadow: 10rpx 10rpx 20rpx 0px rgba(0, 0, 0, 0.05);
- }
- .exhibition-bottom {
- flex: 1;
- width: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 12rpx;
- box-sizing: border-box;
- }
- .exhibition-bottom-title {
- font-size: 28rpx;
- color: #000000;
- }
- .exhibition-bottom-data{
- font-size: 24rpx;
- font-weight: 500;
- color: #4DC2D4;
- }
|