detail.wxss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /* pages/detail/detail.wxss */
  2. page{
  3. background: #F4F6F8;
  4. }
  5. .part{
  6. background: #fff;
  7. padding: 30rpx;
  8. margin-bottom: 16rpx;
  9. }
  10. .top image{
  11. position: absolute;
  12. right: 0;
  13. top: 20rpx;
  14. width: 240rpx;
  15. height: 70rpx;
  16. }
  17. .rank{
  18. position: absolute;
  19. top: 18rpx;
  20. right: 0rpx;
  21. color: #FF5151;
  22. padding-right: 24rpx;
  23. }
  24. .rank text{
  25. font-size: 44rpx;
  26. margin-right: 10rpx;
  27. color: #FF5151;
  28. position: relative;
  29. top: 6rpx;
  30. display: inline-block;
  31. width: 70rpx;
  32. text-align: center;
  33. }
  34. .label{
  35. font-size: 32rpx;
  36. color: #999;
  37. padding: 10rpx 0;
  38. }
  39. .label text{
  40. color: #333;
  41. margin-left: 16rpx;
  42. font-size: 32rpx;
  43. }
  44. .info{
  45. display: flex;
  46. flex-wrap: wrap;
  47. background: #fff;
  48. margin-bottom: 16rpx;
  49. }
  50. .info view{
  51. width: 50%;
  52. color: #999;
  53. padding: 16rpx 32rpx;
  54. }
  55. .info view:first-child{
  56. border-right: 1px solid #F6F6F6;
  57. border-bottom: 1px solid #F6F6F6
  58. }
  59. .info view:last-child{
  60. border-left: 1px solid #F6F6F6;
  61. border-top: 1px solid #F6F6F6
  62. }
  63. .info text{
  64. display: block;
  65. font-size: 40rpx;
  66. font-weight: 500;
  67. }
  68. .tag{
  69. display: inline-block;
  70. color: #FFF;
  71. font-size: 24rpx;
  72. background: #4587FF;
  73. border-radius: 4rpx;
  74. padding:2px 4px;
  75. }
  76. .list{
  77. margin:24rpx 0 40rpx;
  78. }
  79. .list view{
  80. display: inline-block;
  81. padding: 16rpx;
  82. background: #F4F6F8;
  83. border-radius: 8rpx;
  84. margin-bottom: 16rpx;
  85. margin-right: 16rpx 0rpx;
  86. }
  87. .list text{
  88. display: block;
  89. color: #999;
  90. }