123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- /* 数据展示 */
- .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: 0px 4rpx 8rpx 0px rgba(170, 170, 170, 0.1);
- border-radius: 10rpx;
- border: 2rpx solid rgba(0, 0, 0, 0.05);
- overflow: hidden;
- }
- .exhibition-img {
- width: 100%;
- height: 240rpx;
- }
- .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;
- }
- /* 分类和搜索盒子 */
- .classify-and-search {
- display: flex;
- justify-content: space-between;
- height: 40rpx;
- margin-bottom: 20rpx;
- padding: 0 3rpx;
- }
- /* 分类 */
- .classify {
- display: flex;
- align-items: center;
- justify-content: space-between;
- min-width: 120rpx;
- height: 100%;
- border-radius: 40rpx;
- border: 2rpx solid #4DC2D4;
- font-size: 20rpx;
- color: #4DC2D4;
- padding: 0 12rpx;
- box-sizing: border-box;
- }
- .liveSearch {
- display: flex;
- justify-content: space-between;
- width: 176rpx;
- height: 100%;
- background: #FFFFFF;
- border-radius: 49rpx;
- opacity: 0.7;
- border: 2rpx solid #979797;
- box-sizing: border-box;
- padding: 0 12rpx 0 16rpx;
- }
- .liveSearch-input {
- height: 100%;
- min-height: 100%;
- font-size: 20rpx;
- color: #000000;
- }
- .liveSearch-icon {
- height: 100%;
- margin-left: 10rpx;
- }
|