123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- .main-container {
- padding-bottom: 150rpx;
- }
- .exhibitor-detail {
- .exhibitor-tags {
- display: flex;
- align-items: flex-start;
- font-size: $fontSize2;
- margin-top: 28rpx;
- .exhibitor-tags-list {
- display: flex;
- align-items: center;
- flex-wrap: wrap;
- grid-gap: 9rpx 16rpx;
- }
- .exhibitor-tags-category {
- color: #555555;
- line-height: 46rpx;
- flex-shrink: 0;
-
- }
- .exhibitor-tag {
- @include display-flex-center;
-
- padding: 8rpx;
- font-size: $fontSize1;
- background-color: #E3E9F1;
- border-radius: 4rpx;
-
- color: #333333;
- white-space: nowrap;
-
- }
- }
- .exhibitor-operation {
- display: flex;
- align-items: center;
-
-
- position: fixed;
- width: 100%;
- left: 0;
- bottom: 0;
- padding: 30rpx;
- background-color: #ffffff;
- z-index: 7;
- justify-content: flex-end;
- border-top: 1px solid #eeeeee;
- .exhibitor-action {
- display: grid;
- grid-template-columns: 1fr 1fr 1fr 1fr;
- font-size: $fontSize2;
- color: #555555;
- grid-gap: 45rpx;
- width: 100%;
- & > view {
- display: flex;
- align-items: center;
- white-space: nowrap;
- cursor: pointer;
- }
- .iconfont {
- font-size: 30rpx;
- margin-right: 9rpx;
- }
- }
- .exhibitor-views {
- font-weight: 400;
- font-size: $fontSize2;
- color: #555555;
- line-height: $fontSize2;
- margin-right: 57rpx;
- display: flex;
- align-items: center;
- grid-gap: 9rpx;
- flex: 1;
- min-width: 1rpx;
- z-index: 7;
- }
- }
- }
|