style.scss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /* 背景 */
  2. .ranking-background{
  3. height: 523upx;
  4. width: 750upx;
  5. top: 0;
  6. left: 0;
  7. z-index: 0;
  8. }
  9. .ranking-screen{
  10. padding: 0 30upx 10upx;
  11. z-index: 99;
  12. margin-top: -190upx;
  13. }
  14. /* 背景 */
  15. /* 排行榜商品 */
  16. .ranking-shop-item {
  17. height: 240upx;
  18. background-color: #fff;
  19. border-radius: 20upx;
  20. box-shadow: 0 5upx 20upx 0 rgba(175, 175, 175, 0.47);
  21. padding:20upx;
  22. margin-bottom: 20upx;
  23. }
  24. .ranking-shop-icon{
  25. width: 34upx;
  26. height: 52upx;
  27. top: 0;
  28. left: 23upx;
  29. z-index: 99;
  30. }
  31. .ranking-shop-number{
  32. width: 34upx;
  33. height: 34upx;
  34. top:20upx;
  35. background-color: #FFC730;
  36. border-radius: 50%;
  37. font-size: 24upx;
  38. line-height: 24upx;
  39. color: #fff;
  40. }
  41. .ranking-shop-image{
  42. width: 200upx;
  43. height: 200upx;
  44. border-radius: 5upx;
  45. margin-right: 20upx;
  46. }
  47. .ranking-shop-title{
  48. font-size: 30upx;
  49. line-height: 40upx;
  50. max-height: 80upx;
  51. color: #333;
  52. font-weight: 500;
  53. margin-top: 5upx;
  54. }
  55. .ranking-shop-info{
  56. font-size: 24upx;
  57. line-height: 30upx;
  58. color: #999;
  59. margin-top: 20upx;
  60. }
  61. .ranking-shop-price-group{
  62. font-size: 28upx;
  63. line-height: 36upx;
  64. color: #FF002B;
  65. font-weight: 500;
  66. }
  67. .ranking-shop-price{
  68. font-size: 32upx;
  69. }
  70. .ranking-shop-old-price{
  71. font-size: 24upx;
  72. line-height: 30upx;
  73. color: #999999;
  74. margin-left: 10upx;
  75. }
  76. .ranking-shop-button{
  77. width: 160upx;
  78. height: 60upx;
  79. background-color: #41AE3C;
  80. border-radius: 30upx;
  81. font-size: 26upx;
  82. color: #fff;
  83. line-height: 30upx;
  84. font-weight: 500;
  85. }
  86. /* 排行榜商品 */