| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- /* pages/station/index.wxss */
- .t-tabs__item-inner--tag {
- background-color: var(--td-tab-item-tag-bg, var(--td-bg-color-secondarycontainer, var(--td-gray-color-1, #ffffff))) !important;
- }
-
- .t-tabs__item-inner--active.t-tabs__item-inner--tag {
- font-weight: 500;
- background-color: var(--td-tab-item-tag-active-bg, var(--td-brand-color-light, var(--td-primary-color-1, #f2f3ff))) !important;
- }
-
- .tagbox {
- padding: 0rpx 20rpx;
- padding-bottom: 80rpx;
- }
-
- .tag_box {
- width: 100%;
- padding: 20rpx 10rpx;
- display: flex;
- justify-content: space-between;
- box-sizing: border-box;
- border-bottom: 1rpx solid #F7F7F7;
- }
-
- .tag_name1 {
- display: flex;
- justify-content: space-between;
- margin-top: 30rpx;
- }
-
- .box_image {
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- }
-
- .tag_image {
- width: 363rpx;
- height: 330rpx;
- margin-top: 260rpx;
-
- }
-
- .tag_name {
- width: 55%;
- color: #222222;
- font-weight: 500;
- white-space: nowrap;
- /* 设置文本不换行 */
- overflow: hidden;
- /* 如果需要超出部分隐藏 */
- text-overflow: ellipsis;
- /* 在超出部分显示省略号 */
- }
-
- .tag_Unbind {
- padding: 10rpx 20rpx;
- font-size: 26rpx;
- color: #222222;
- /* background-color: #909090; */
- background-color: #F7F7F7;
- border-radius: 100rpx;
- }
-
- .tag_type1 {
- font-size: 26rpx;
- color: #15DB9B;
- }
-
- .tag_type2 {
- font-size: 26rpx;
- color: #729CFF;
- }
-
- .tag_type3 {
- font-size: 26rpx;
- color: #F0A26C;
- }
|