gamelist.wxss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. .gamelist {
  2. }
  3. .gamelist .gamelist_item {
  4. position: relative;
  5. }
  6. .gamelist .gamelist_item .top {
  7. display: flex;
  8. align-items: center;
  9. padding: 34rpx 45rpx 34rpx 38rpx;
  10. position: relative;
  11. width: 100%;
  12. }
  13. .gamelist .gamelist_item .button {
  14. position: absolute;
  15. right: 45rpx;
  16. top: 50%;
  17. transform: translateY(-50%);
  18. }
  19. .gamelist .gamelist_item .top::before {
  20. content: '';
  21. height: 1px;
  22. width: 548rpx;
  23. position: absolute;
  24. right: 34rpx;
  25. background-color: #E6E6E6;
  26. bottom: 0;
  27. }
  28. .gamelist_item .icon {
  29. width: 130rpx;
  30. height: 130rpx;
  31. border-radius: 50%;
  32. overflow: hidden;
  33. margin-right: 24rpx;
  34. }
  35. .gamelist_item .info {
  36. height: 130rpx;
  37. display: flex;
  38. max-width: 380rpx;
  39. align-items: flex-start;
  40. flex-direction: column;
  41. justify-content: space-between;
  42. }
  43. .gamelist_item .info_name {
  44. display: flex;
  45. align-items: center;
  46. }
  47. .gamelist_item .info_name .name {
  48. float: left;
  49. display: block;
  50. font-size: 32rpx;
  51. color: #333;
  52. max-width: 140px;
  53. overflow:hidden;
  54. text-overflow:ellipsis;
  55. white-space:nowrap;
  56. line-height: 45rpx;
  57. font-weight: 700;
  58. }
  59. .gamelist_item .info_name .Award {
  60. float: left;
  61. height: 36rpx;
  62. display: flex;
  63. align-items: center;
  64. justify-content: center;
  65. padding: 0 10rpx;
  66. margin-left: 15rpx;
  67. border-radius: 100px;
  68. border-bottom-left-radius: 0px;
  69. background-color: #FF1A19;
  70. font-size: 18rpx;
  71. color: #FFFFFF;
  72. }
  73. .gamelist_item .info_des {
  74. font-size: 26rpx;
  75. line-height: 37rpx;
  76. height: 37rpx;
  77. width: 100%;
  78. overflow:hidden;
  79. text-overflow:ellipsis;
  80. white-space:nowrap;
  81. color: #8b8b8b;
  82. }
  83. .gamelist_item .info_num {
  84. font-size: 24rpx;
  85. line-height: 33rpx;
  86. color: #e05b10;
  87. }
  88. .gamelist_item .open {
  89. margin-left: auto;
  90. border-radius: 100px;
  91. width: 124rpx;
  92. color: #FFFFFF;
  93. height: 62rpx;
  94. font-size: 26rpx;
  95. display: flex;
  96. align-items: center;
  97. justify-content: center;
  98. background: #557cff;
  99. }
  100. .gamelist .gamelist_item .bottom {
  101. padding: 0 45rpx 0 38rpx;
  102. }
  103. .gamelist .gamelist_item .bottom_cnt {
  104. height: 85rpx;
  105. border-top: 2rpx solid #F0F0F0;
  106. }
  107. .gamelist .gamelist_item .bottom .left {
  108. }
  109. .gamelist .gamelist_item .bottom .left .text {
  110. font-size: 26rpx;
  111. float: left;
  112. color: #333333;
  113. }
  114. .gamelist .gamelist_item .bottom .left .Award {
  115. float: left;
  116. height: 36rpx;
  117. display: flex;
  118. align-items: center;
  119. justify-content: center;
  120. padding: 0 10rpx;
  121. margin-left: 15rpx;
  122. background-color: #FFFFFF;
  123. font-size: 20rpx;
  124. color: #FF1A19;
  125. box-shadow: 0 2px 4px 0 #FF1A19;
  126. border-radius: 22px 20px 20px 0;
  127. }
  128. .gamelist .gamelist_item .bottom .right {
  129. font-size: 26rpx;
  130. color: #FF9500;
  131. }