details.wxss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  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. .details.data-v-41bb1048 {
  28. width: 100vw;
  29. height: 100vh;
  30. }
  31. .title.data-v-41bb1048 {
  32. position: fixed;
  33. top: 0;
  34. left: 0;
  35. width: 100%;
  36. background-color: #2cb8d4;
  37. }
  38. .title .titles.data-v-41bb1048 {
  39. text-align: center;
  40. color: #fff;
  41. font-size: 28rpx;
  42. padding: 10rpx 0;
  43. }
  44. .title .back.data-v-41bb1048 {
  45. position: absolute;
  46. left: 30rpx;
  47. width: 80rpx;
  48. height: 35rpx;
  49. }
  50. .title .back image.data-v-41bb1048 {
  51. width: 18rpx;
  52. height: 100%;
  53. }
  54. .detail-content.data-v-41bb1048 {
  55. width: 100%;
  56. height: 100%;
  57. }
  58. .detail-content image.data-v-41bb1048 {
  59. width: 100%;
  60. }
  61. .detail-content .slogan.data-v-41bb1048 {
  62. display: flex;
  63. justify-content: space-around;
  64. align-items: center;
  65. font-size: 22rpx;
  66. padding: 20rpx 0;
  67. }
  68. .detail-content .slogan view.data-v-41bb1048:before {
  69. content: '';
  70. display: inline-block;
  71. width: 20rpx;
  72. height: 20rpx;
  73. background-color: #2cb8d4;
  74. border-radius: 10px;
  75. margin-right: 5px;
  76. }
  77. .detail-content .content.data-v-41bb1048 {
  78. padding: 0 30rpx;
  79. }
  80. .detail-content .content .name.data-v-41bb1048 {
  81. display: flex;
  82. justify-content: space-between;
  83. align-items: center;
  84. }
  85. .detail-content .content .name .names.data-v-41bb1048 {
  86. font-size: 36rpx;
  87. font-weight: bold;
  88. }
  89. .detail-content .content .name .time.data-v-41bb1048 {
  90. font-size: 24rpx;
  91. color: #494e50;
  92. }
  93. .detail-content .content .name .time image.data-v-41bb1048 {
  94. width: 34rpx;
  95. height: 34rpx;
  96. vertical-align: text-bottom;
  97. margin-right: 5rpx;
  98. }
  99. .detail-content .content .price.data-v-41bb1048 {
  100. font-size: 50rpx;
  101. color: #ff5656;
  102. font-weight: bold;
  103. }
  104. .detail-content .content .state .state1.data-v-41bb1048 {
  105. font-size: 32rpx;
  106. font-weight: bold;
  107. }
  108. .detail-content .content .state .state2.data-v-41bb1048 {
  109. font-size: 28rpx;
  110. color: #afb6b8;
  111. }
  112. .detail-content .content .state .state2 ._span.data-v-41bb1048 {
  113. font-weight: bold;
  114. color: #333;
  115. }
  116. .detail-content .cDetail.data-v-41bb1048 {
  117. overflow-y: auto;
  118. }
  119. .detail-content .cDetail image.data-v-41bb1048 {
  120. width: 100%;
  121. height: 2500rpx;
  122. }
  123. .reserved.data-v-41bb1048 {
  124. position: fixed;
  125. bottom: 0;
  126. left: 0;
  127. width: 100%;
  128. padding: 30rpx 0;
  129. text-align: center;
  130. background-color: #fff;
  131. }
  132. .reserved view.data-v-41bb1048 {
  133. background-color: #2cb8d4;
  134. color: #fff;
  135. width: 80%;
  136. margin: 0 auto;
  137. padding: 15rpx 0;
  138. border-radius: 50rpx;
  139. font-size: 36rpx;
  140. }