1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- .exhibitor-detail{
- .exhibitor-tags{
- display: flex;
- align-items: flex-start;
- font-size: $fontSize1;
- margin-top: 28rpx;
- .exhibitor-tags-list{
- display: flex;
- align-items: center;
- flex-wrap: wrap;
- }
- .exhibitor-tags-category{
- color: #555555;
- line-height: 21rpx;
- flex-shrink: 0;
- padding-top: 4rpx;
- }
- .exhibitor-tag{
- @include display-flex-center;
- height: 29rpx;
- padding: 8rpx;
- background-color: #E3E9F1;
- border-radius: 4;
- margin-right: 16rpx;
- color: #333333;
- white-space: nowrap;
- margin-bottom: 9rpx;
- }
- }
- .exhibitor-operation{
- display: flex;
- align-items: center;
- padding-top: 33rpx;
- .exhibitor-action{
- display: grid;
- flex: 1;
- grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
- font-size: $fontSize0;
- color: #555555;
- &>view{
- display: flex;
- align-items: center;
- white-space: nowrap;
- cursor: pointer;
- &:first-child{
- cursor: default;
- }
- }
- button{
- font-size: $fontSize0;
- white-space: nowrap;
- line-height: inherit;
- background-color: transparent;
- border: none;
- view{
- display: flex;
- align-items: center;
- font-size: $fontSize0;
- }
- }
- .iconfont{
- font-size: 28rpx;
- margin-right: 4rpx;
- }
- }
- .exhibitor-views{
- font-weight: 400;
- font-size: $fontSize0;
- color: #555555;
- line-height: 20rpx;
- margin-right: 57rpx;
- }
- }
- }
|