123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216 |
- /* 数据展示 */
- .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-item {
- display: flex;
- flex-wrap: wrap;
- height: 650rpx !important;
- }
- /* 盒子 */
- .exhibition {
- position: relative;
- 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;
- margin-right: 10rpx;
- }
- /* 热门展商门牌号 */
- .showLocation {
- position: absolute;
- font-size: 20rpx;
- color: #FFFFFF;
- max-width: 120rpx;
- height: 32rpx;
- line-height: 32rpx;
- background: #4DC2D4;
- border-radius: 10rpx 0px 10rpx 0px;
- padding: 0 10rpx;
- top: 0;
- left: 0;
- }
- .exhibition:nth-child(2n) {
- margin-right: 0;
- }
- .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 {
- display: flex;
- align-items: center;
- text-align: right;
- }
- .exhibition-bottom-data-text {
- max-width: 110rpx;
- margin-left: 4rpx;
- font-size: 24rpx;
- font-weight: 550;
- color: #4DC2D4;
- }
- .exhibition-bottom image {
- width: 18rpx;
- height: 18rpx;
- }
- /* 分类和搜索盒子 */
- .classify-and-search {
- position: relative;
- 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;
- overflow: hidden;
- }
- .liveSearch {
- display: flex;
- justify-content: space-between;
- width: 176rpx;
- height: 100%;
- background: #FFFFFF;
- border-radius: 49rpx;
- opacity: 0.7;
- border: 2rpx solid #979797;
- padding: 0 12rpx 0 16rpx;
- }
- .liveSearch-input {
- height: 100%;
- min-height: 100%;
- font-size: 20rpx;
- color: #000000;
- }
- .liveSearch-icon {
- height: 100%;
- margin-left: 10rpx;
- }
- /* 热门展品 */
- .show-prod-list swiper-item {
- height: 570rpx !important;
- }
- /* 下拉 */
- .pattern-item-box {
- position: absolute;
- top: 60rpx;
- }
- .pattern-item {
- font-size: 24rpx;
- background-color: #ffffff;
- border: 2rpx solid #e8e8e8;
- border-radius: 8rpx;
- bottom: -70rpx;
- box-shadow: 0 0 8rpx 0 rgba(0, 0, 0, 0.1);
- }
- .pattern-item>view {
- position: relative;
- line-height: 60rpx;
- padding: 0 30rpx;
- text-align: center;
- color: rgba(0, 0, 0, 0.5);
- z-index: 999;
- }
- .pattern-item .square {
- position: absolute;
- display: block;
- width: 15rpx;
- height: 15rpx;
- background-color: #fff;
- transform: rotate(45deg);
- border: 2rpx solid #e8e8e8;
- border-bottom: 0;
- border-right: 0;
- top: 0;
- margin-top: -9rpx;
- left: 35%;
- z-index: 0;
- }
- /* 选中项 */
- .SelectClassify {
- color: #4DC2D4 !important;
- font-weight: 550;
- z-index: 9999 !important;
- }
|