gamelist.wxss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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: 72rpx;
  17. }
  18. .gamelist .gamelist_item .top::before {
  19. content: '';
  20. height: 1px;
  21. width: 548rpx;
  22. position: absolute;
  23. right: 34rpx;
  24. background-color: #e6e6e6;
  25. bottom: 0;
  26. }
  27. .gamelist_item .icon {
  28. width: 130rpx;
  29. height: 130rpx;
  30. border-radius: 30rpx;
  31. overflow: hidden;
  32. margin-right: 24rpx;
  33. }
  34. .gamelist_item .info {
  35. height: 130rpx;
  36. display: flex;
  37. max-width: 380rpx;
  38. align-items: flex-start;
  39. flex-direction: column;
  40. justify-content: space-between;
  41. }
  42. .gamelist_item .info_name {
  43. display: flex;
  44. align-items: center;
  45. }
  46. .gamelist_item .info_name .name {
  47. float: left;
  48. display: block;
  49. font-size: 32rpx;
  50. color: #333;
  51. max-width: 140px;
  52. overflow: hidden;
  53. text-overflow: ellipsis;
  54. white-space: nowrap;
  55. line-height: 45rpx;
  56. font-weight: 700;
  57. }
  58. .gamelist_item .info_name .Award {
  59. float: left;
  60. height: 36rpx;
  61. display: flex;
  62. align-items: center;
  63. justify-content: center;
  64. padding: 0 10rpx;
  65. margin-left: 15rpx;
  66. border-radius: 100px;
  67. border-bottom-left-radius: 0px;
  68. background-color: #ff1a19;
  69. font-size: 18rpx;
  70. color: #fff;
  71. }
  72. .gamelist_item .info_des {
  73. font-size: 26rpx;
  74. line-height: 37rpx;
  75. height: 37rpx;
  76. width: 100%;
  77. overflow: hidden;
  78. text-overflow: ellipsis;
  79. white-space: nowrap;
  80. color: #8b8b8b;
  81. }
  82. .gamelist_item .info_num {
  83. font-size: 24rpx;
  84. line-height: 33rpx;
  85. color: #e05b10;
  86. }
  87. .gamelist .gamelist_item .bottom {
  88. padding: 0 45rpx 0 38rpx;
  89. }
  90. .gamelist .gamelist_item .bottom_cnt {
  91. height: 85rpx;
  92. border-top: 2rpx solid #f0f0f0;
  93. }
  94. .gamelist .gamelist_item .bottom .left {
  95. }
  96. .gamelist .gamelist_item .bottom .left .text {
  97. font-size: 26rpx;
  98. float: left;
  99. color: #333;
  100. }
  101. .gamelist .gamelist_item .bottom .left .Award {
  102. float: left;
  103. height: 36rpx;
  104. display: flex;
  105. align-items: center;
  106. justify-content: center;
  107. padding: 0 10rpx;
  108. margin-left: 15rpx;
  109. background-color: #fff;
  110. font-size: 20rpx;
  111. color: #ff1a19;
  112. box-shadow: 0 2px 4px 0 #ff1a19;
  113. border-radius: 22px 20px 20px 0;
  114. }
  115. .gamelist .gamelist_item .bottom .right {
  116. font-size: 26rpx;
  117. color: #ff9500;
  118. }