国外MOSE官网
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

124 lines
3.0 KiB

1 week ago
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 颜色变量 */
  15. /* 行为相关颜色 */
  16. /* 文字基本颜色 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. .goods-detail.data-v-45e1a53a {
  28. background: #f8f8f8;
  29. min-height: 100vh;
  30. padding-bottom: 120rpx;
  31. }
  32. .banner-container.data-v-45e1a53a {
  33. height: 700rpx;
  34. }
  35. .banner-container .banner-swiper.data-v-45e1a53a {
  36. width: 100%;
  37. }
  38. .banner-container .banner-swiper .banner-image.data-v-45e1a53a {
  39. width: 100%;
  40. height: 100%;
  41. }
  42. .goods-info.data-v-45e1a53a {
  43. background: #ffffff;
  44. margin-top: 20rpx;
  45. padding: 30rpx;
  46. }
  47. .points-section.data-v-45e1a53a {
  48. display: flex;
  49. align-items: center;
  50. margin-bottom: 20rpx;
  51. }
  52. .points-section .points-text.data-v-45e1a53a {
  53. font-size: 32rpx;
  54. font-weight: bold;
  55. color: #218cdd;
  56. margin-left: 6rpx;
  57. }
  58. .title-section.data-v-45e1a53a {
  59. margin-bottom: 40rpx;
  60. }
  61. .title-section .goods-title.data-v-45e1a53a {
  62. font-size: 28rpx;
  63. color: #333333;
  64. line-height: 1.5;
  65. display: block;
  66. }
  67. .detail-container.data-v-45e1a53a {
  68. background: #ffffff;
  69. margin-top: 20rpx;
  70. padding: 30rpx;
  71. margin-bottom: 120rpx;
  72. }
  73. .detail-title-section.data-v-45e1a53a {
  74. display: flex;
  75. align-items: center;
  76. justify-content: center;
  77. margin-bottom: 30rpx;
  78. }
  79. .detail-title-section .detail-title.data-v-45e1a53a {
  80. font-size: 28rpx;
  81. font-weight: bold;
  82. color: #333333;
  83. }
  84. .gallery-section.data-v-45e1a53a {
  85. margin-bottom: 40rpx;
  86. }
  87. .gallery-section .gallery-grid.data-v-45e1a53a {
  88. display: grid;
  89. grid-template-columns: repeat(3, 1fr);
  90. gap: 16rpx;
  91. }
  92. .gallery-section .gallery-grid .gallery-image.data-v-45e1a53a {
  93. width: 100%;
  94. height: 200rpx;
  95. border-radius: 12rpx;
  96. border: 1rpx solid #f0f0f0;
  97. }
  98. .bottom-bar.data-v-45e1a53a {
  99. position: fixed;
  100. bottom: 0;
  101. left: 0;
  102. right: 0;
  103. background: #ffffff;
  104. padding: 20rpx 30rpx;
  105. border-top: 1rpx solid #f0f0f0;
  106. z-index: 999;
  107. box-shadow: 0 -2rpx 10rpx rgba(0, 0, 0, 0.1);
  108. display: flex;
  109. align-items: center;
  110. justify-content: center;
  111. }
  112. .bottom-bar .exchange-btn.data-v-45e1a53a {
  113. width: 100%;
  114. height: 80rpx;
  115. border-radius: 40rpx;
  116. background-color: #218cdd;
  117. display: flex;
  118. align-items: center;
  119. justify-content: center;
  120. }
  121. .bottom-bar .exchange-btn .exchange-text.data-v-45e1a53a {
  122. color: #ffffff;
  123. font-size: 28rpx;
  124. }