index.wxss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. /* pages/match/index.wxss */
  2. .match-container {
  3. min-height: calc(100vh - 4rpx);
  4. display: flex;
  5. flex-direction: column;
  6. }
  7. /* 头部横幅区域 */
  8. .header-banner {
  9. position: relative;
  10. /* height: 486rpx; */
  11. overflow: hidden;
  12. flex-shrink: 0;
  13. }
  14. .header-banner .title.activeTitle{
  15. background-color: #ffffff;
  16. color: #1a1a1a;
  17. }
  18. .header-banner .title{
  19. position: fixed;
  20. top: 0;
  21. left: 0;
  22. z-index: 100;
  23. width: 750rpx;
  24. text-align: center;
  25. height: 80rpx;
  26. line-height: 80rpx;
  27. font-size: 36rpx;
  28. color: #ffffff;
  29. }
  30. .banner-bg {
  31. position: relative;
  32. width: 100%;
  33. height: 100%;
  34. }
  35. .bg{
  36. height: 486rpx;
  37. }
  38. .character-image {
  39. width: 100%;
  40. height: 486rpx;
  41. }
  42. /* 赛事列表区域 */
  43. .match-list {
  44. flex: 1;
  45. padding: 40rpx 30rpx;
  46. margin-top: -40rpx;
  47. background: #ffffff;
  48. border-radius: 50rpx 50rpx 0 0;
  49. position: relative;
  50. z-index: 1;
  51. }
  52. .section-title {
  53. font-size: 34rpx;
  54. font-weight: bold;
  55. color: #1a1a1a;
  56. text-align: left;
  57. }
  58. .match-item {
  59. display: flex;
  60. background: #ffffff;
  61. border-radius: 20rpx;
  62. padding: 30rpx 0;
  63. border-bottom: 1rpx solid #f2f2f2;
  64. }
  65. .match-item:last-of-type {
  66. border-bottom: none;
  67. }
  68. .item-image {
  69. width: 248rpx;
  70. height: 160rpx;
  71. flex-shrink: 0;
  72. border-radius: 16rpx;
  73. overflow: hidden;
  74. margin-right: 20rpx;
  75. }
  76. .item-image image {
  77. width: 100%;
  78. height: 100%;
  79. border-radius: 16rpx;
  80. }
  81. .item-content {
  82. flex: 1;
  83. display: flex;
  84. flex-direction: column;
  85. justify-content: center;
  86. }
  87. .item-title {
  88. font-size: 30rpx;
  89. font-weight: 600;
  90. color: #333333;
  91. margin-bottom: 16rpx;
  92. line-height: 1.3;
  93. display: -webkit-box;
  94. -webkit-line-clamp: 1;
  95. -webkit-box-orient: vertical;
  96. overflow: hidden;
  97. }
  98. .item-desc {
  99. font-size: 26rpx;
  100. color: #666666;
  101. line-height: 1.5;
  102. display: -webkit-box;
  103. -webkit-line-clamp: 3;
  104. -webkit-box-orient: vertical;
  105. overflow: hidden;
  106. }