detail.scss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. .tab-box {
  2. display: flex;
  3. height: 90rpx;
  4. background-color: #fff;
  5. .left {
  6. display: flex;
  7. width: 0;
  8. flex: 1;
  9. align-items: center;
  10. padding-left: 30rpx;
  11. justify-content: space-between;
  12. .user {
  13. flex-shrink: 0;
  14. line-height: 40rpx;
  15. font-family: PingFang SC, PingFang SC;
  16. font-weight: 700;
  17. font-size: 28rpx;
  18. color: #333333;
  19. margin-right: 20rpx;
  20. }
  21. .type {
  22. font-family: PingFang SC, PingFang SC;
  23. font-size: 28rpx;
  24. color: #666666;
  25. flex-shrink: 0;
  26. .iconfont {
  27. font-size: 26rpx;
  28. margin-right: 10rpx;
  29. }
  30. }
  31. }
  32. .right {
  33. display: flex;
  34. align-items: center;
  35. height: 90rpx;
  36. flex-shrink: 0;
  37. .filtrate-box {
  38. display: flex;
  39. height: 100%;
  40. align-items: center;
  41. padding: 0 20rpx;
  42. font-family: PingFang SC, PingFang SC;
  43. font-size: 28rpx;
  44. color: #666666;
  45. .iconfont {
  46. margin-right: 6rpx;
  47. color: #999999;
  48. }
  49. }
  50. .search-box {
  51. display: flex;
  52. height: 100%;
  53. align-items: center;
  54. padding: 0 30rpx;
  55. .iconfont {
  56. font-size: 40rpx;
  57. }
  58. }
  59. }
  60. }
  61. .title {
  62. line-height: 38rpx;
  63. font-family: Microsoft YaHei, Microsoft YaHei;
  64. font-weight: bold;
  65. font-size: 28rpx;
  66. color: #333333;
  67. .tag {
  68. display: inline-block;
  69. height: 40rpx;
  70. line-height: 40rpx;
  71. padding: 0 8rpx;
  72. border-radius: 4rpx;
  73. font-family: PingFang SC, PingFang SC;
  74. font-size: 24rpx;
  75. color: #FFFFFF;
  76. font-weight: 400;
  77. margin-right: 8rpx;
  78. }
  79. }
  80. .row {
  81. line-height: 32rpx;
  82. font-family: Microsoft YaHei, Microsoft YaHei;
  83. font-size: 24rpx;
  84. color: #999999;
  85. margin-top: 10rpx;
  86. }
  87. .expanded {
  88. display: flex;
  89. align-items: center;
  90. height: 32rpx;
  91. font-family: Microsoft YaHei, Microsoft YaHei;
  92. font-weight: bold;
  93. font-size: 24rpx;
  94. color: #3874F6;
  95. margin-top: 10rpx;
  96. .iconfont {
  97. font-size: 16rpx;
  98. margin-left: 8rpx;
  99. display: inline-block; // 使transform生效
  100. transform: rotate(90deg) !important; // 默认指向下方
  101. transition: transform 0.3s ease; // 添加过渡效果
  102. }
  103. }
  104. .up {
  105. .iconfont {
  106. transform: rotate(-90deg) !important; // 指向上方
  107. }
  108. }