木邻有你前端代码仓库
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.

114 lines
2.8 KiB

  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. .click-animation.data-v-45e1a53a:active {
  16. -webkit-transform: scale(0.98);
  17. transform: scale(0.98);
  18. box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.12);
  19. }
  20. /* 行为相关颜色 */
  21. /* 文字基本颜色 */
  22. /* 背景颜色 */
  23. /* 边框颜色 */
  24. /* 尺寸变量 */
  25. /* 文字尺寸 */
  26. /* 图片尺寸 */
  27. /* Border Radius */
  28. /* 水平间距 */
  29. /* 垂直间距 */
  30. /* 透明度 */
  31. /* 文章场景相关 */
  32. .goods-detail.data-v-45e1a53a {
  33. background: #f8f8f8;
  34. min-height: 100vh;
  35. padding-bottom: 120rpx;
  36. }
  37. .banner-container.data-v-45e1a53a {
  38. height: 700rpx;
  39. }
  40. .banner-container .banner-swiper.data-v-45e1a53a {
  41. width: 100%;
  42. }
  43. .banner-container .banner-swiper .banner-image.data-v-45e1a53a {
  44. width: 100%;
  45. height: 100%;
  46. }
  47. .goods-info.data-v-45e1a53a {
  48. background: #ffffff;
  49. margin-top: 20rpx;
  50. padding: 30rpx;
  51. }
  52. .points-section.data-v-45e1a53a {
  53. display: flex;
  54. align-items: center;
  55. margin-bottom: 20rpx;
  56. }
  57. .points-section .points-icon.data-v-45e1a53a {
  58. width: 32rpx;
  59. height: 32rpx;
  60. margin-right: 8rpx;
  61. }
  62. .points-section .points-text.data-v-45e1a53a {
  63. font-size: 32rpx;
  64. font-weight: bold;
  65. color: #1488DB;
  66. }
  67. .title-section.data-v-45e1a53a {
  68. margin-bottom: 40rpx;
  69. }
  70. .title-section .goods-title.data-v-45e1a53a {
  71. font-size: 28rpx;
  72. color: #333333;
  73. line-height: 1.5;
  74. display: block;
  75. }
  76. .detail-container.data-v-45e1a53a {
  77. background: #ffffff;
  78. margin-top: 20rpx;
  79. padding: 30rpx;
  80. margin-bottom: 120rpx;
  81. }
  82. .detail-title-section.data-v-45e1a53a {
  83. display: flex;
  84. align-items: center;
  85. justify-content: center;
  86. margin-bottom: 30rpx;
  87. }
  88. .bottom-bar.data-v-45e1a53a {
  89. position: fixed;
  90. bottom: 0;
  91. left: 0;
  92. right: 0;
  93. background: #ffffff;
  94. padding: 20rpx 30rpx;
  95. border-top: 1rpx solid #f0f0f0;
  96. z-index: 999;
  97. box-shadow: 0 -2rpx 10rpx rgba(0, 0, 0, 0.1);
  98. display: flex;
  99. align-items: center;
  100. justify-content: center;
  101. }
  102. .bottom-bar .exchange-btn.data-v-45e1a53a {
  103. width: 100%;
  104. height: 80rpx;
  105. border-radius: 40rpx;
  106. background-color: #218cdd;
  107. display: flex;
  108. align-items: center;
  109. justify-content: center;
  110. }
  111. .bottom-bar .exchange-btn .exchange-text.data-v-45e1a53a {
  112. color: #ffffff;
  113. font-size: 28rpx;
  114. }