home.wxss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. .main {
  2. float: left;
  3. width: 95%;
  4. height: 100%;
  5. /* background-image: linear-gradient(#ff0000, #ffffff); */
  6. background-color: #f6f6f6;
  7. padding: 20rpx 20rpx 0 20rpx;
  8. }
  9. .one {
  10. float: left;
  11. width: 100%;
  12. height: 192px;
  13. margin: 0 0 20rpx 0;
  14. }
  15. .one video {
  16. width: 100%;
  17. height: 192px;
  18. }
  19. .personal {
  20. float: left;
  21. width: 94%;
  22. background-color: #ffffff;
  23. margin: 0 0 20rpx 0;
  24. padding: 20rpx;
  25. border-radius: 10rpx;
  26. }
  27. .personal image {
  28. float: left;
  29. width: 150rpx;
  30. height: 150rpx;
  31. border-radius: 90rpx;
  32. }
  33. .personal .userInfo {
  34. float: left;
  35. width: 77%;
  36. }
  37. .personal .userInfo text {
  38. float: left;
  39. width: 100%;
  40. padding: 6rpx 0 0 10rpx;
  41. font-size: 30rpx;
  42. color: #666;
  43. }
  44. .personal .userInfo text:nth-child(1) {
  45. font-weight: bold;
  46. color: #000;
  47. font-size: 35rpx;
  48. }
  49. .two {
  50. float: left;
  51. width: 94%;
  52. min-height: 200rpx;
  53. background-color: #ffffff;
  54. border: 1px solid #f1f1f1;
  55. border-radius: 10rpx;
  56. margin: 0 0 20rpx 0;
  57. padding: 0 20rpx;
  58. }
  59. .two .btn {
  60. float: left;
  61. width: 25%;
  62. text-align: center;
  63. margin: 20rpx 0;
  64. }
  65. .two .btn image {
  66. width: 70rpx;
  67. height: 70rpx;
  68. }
  69. .two .btn text {
  70. float: left;
  71. width: 100%;
  72. text-align: center;
  73. }
  74. .three {
  75. float: left;
  76. width: 100%;
  77. min-height: 200rpx;
  78. margin: 0 0 20rpx 0;
  79. }
  80. .three .num {
  81. float: left;
  82. width: 46%;
  83. height: 150rpx;
  84. background-color: #ffffff;
  85. margin: 0 50rpx 20rpx 0;
  86. border-radius: 10rpx;
  87. box-shadow: 0 0 5rpx #ccc;
  88. }
  89. .three .num:nth-child(2n) {
  90. margin: 0;
  91. padding: 0 5rpx 0 0;
  92. }
  93. .three .num:nth-child(3) {
  94. margin: 0 50rpx 0 0;
  95. }
  96. .three .num .numOne {
  97. float: left;
  98. width: 100%;
  99. }
  100. .three .num .numOne text {
  101. float: left;
  102. margin: 25rpx 0 0 20rpx;
  103. font-family: monospace;
  104. font-weight: bold;
  105. }
  106. .three .num .numOne image {
  107. width: 60rpx;
  108. height: 60rpx;
  109. float: right;
  110. margin: 15rpx 20rpx 0 0;
  111. }
  112. .three .num .numTwo {
  113. float: left;
  114. width: 100%;
  115. text-align: center;
  116. padding: 15rpx 0;
  117. font-weight: bold;
  118. }
  119. .three .num:nth-child(1) .numTwo {
  120. color: #00FFFF;
  121. }
  122. .three .num:nth-child(2) .numTwo {
  123. color: #00FF00;
  124. }
  125. .three .num:nth-child(3) .numTwo {
  126. color: #FFA500;
  127. }
  128. .three .num:nth-child(4) .numTwo {
  129. color: #ff0000;
  130. }
  131. .four {
  132. float: left;
  133. width: 100%;
  134. min-height: 200rpx;
  135. background-color: #ffffff;
  136. border: 1px solid #f1f1f1;
  137. border-radius: 10rpx;
  138. margin: 0 0 20rpx 0;
  139. }
  140. .four .num {
  141. float: left;
  142. width: 25%;
  143. text-align: center;
  144. margin: 20rpx 0;
  145. }
  146. .four .num image {
  147. width: 70rpx;
  148. height: 70rpx;
  149. }
  150. .four .num text {
  151. float: left;
  152. width: 100%;
  153. text-align: center;
  154. }
  155. /* 公共标题样式 */
  156. .comTitle {
  157. float: left;
  158. width: 96%;
  159. font-size: 40rpx;
  160. padding: 10rpx 15rpx;
  161. font-weight: bold;
  162. }