index.wxss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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. .index.data-v-57280228 {
  28. min-height: 100vh;
  29. /* overflow: hidden; */
  30. /* overflow-y: scroll; */
  31. background-color: #e9e6e6;
  32. }
  33. .index .swiper_cont .wrap.data-v-57280228 {
  34. padding: 40rpx;
  35. }
  36. .index .swiper_cont image.data-v-57280228 {
  37. width: 100%;
  38. }
  39. .index .slogan.data-v-57280228 {
  40. display: flex;
  41. align-items: center;
  42. justify-content: space-evenly;
  43. font-size: 28rpx;
  44. color: #333;
  45. background: #e9e6e6;
  46. padding: 20rpx 0;
  47. }
  48. .index .project.data-v-57280228 {
  49. margin: 0 10rpx;
  50. padding-bottom: 80rpx;
  51. }
  52. .index .project .items.data-v-57280228 {
  53. height: 170px;
  54. display: flex;
  55. align-items: center;
  56. margin: 0 10rpx;
  57. background-color: #fff;
  58. padding: 20rpx;
  59. margin-bottom: 30rpx;
  60. border-radius: 20rpx;
  61. }
  62. .index .project .items .itemL.data-v-57280228 {
  63. width: 55%;
  64. }
  65. .index .project .items .itemL image.data-v-57280228 {
  66. width: 100%;
  67. height: 150px;
  68. border-radius: 20rpx;
  69. }
  70. .index .project .items .itemR.data-v-57280228 {
  71. flex: 1;
  72. text-align: right;
  73. }
  74. .index .project .items .itemR .itemTitle.data-v-57280228 {
  75. font-size: 40rpx;
  76. font-weight: bolder;
  77. }
  78. .index .project .items .itemR .highlight.data-v-57280228 {
  79. font-size: 20rpx;
  80. color: #999999;
  81. margin-bottom: 10rpx;
  82. }
  83. .index .project .items .itemR .price ._b.data-v-57280228 {
  84. text-decoration: line-through;
  85. }
  86. .index .project .items .itemR .price ._span.data-v-57280228 {
  87. font-size: 34rpx;
  88. color: #f02d2d;
  89. font-weight: bold;
  90. }
  91. .index .project .items .itemR .btn.data-v-57280228 {
  92. z-index: 10;
  93. }
  94. .index .project .items .itemR .btn ._span.data-v-57280228 {
  95. font-size: 28rpx;
  96. color: #fff;
  97. background-color: #18a6d1;
  98. border-radius: 50rpx;
  99. padding: 15rpx 40rpx;
  100. font-weight: bold;
  101. display: inline-block;
  102. }