service.wxss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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. #msglistview {
  28. overflow: hidden;
  29. }
  30. .scroll-view {
  31. width: 770rpx;
  32. overflow: hidden;
  33. padding: 0 0 0 30rpx;
  34. background: #FAFAFA;
  35. height: calc(100vh - 98rpx - 44px);
  36. }
  37. .scroll-view .service_ul_left {
  38. display: flex;
  39. justify-content: flex-end;
  40. }
  41. .scroll-view .service_ul_left_ttx {
  42. padding: 20rpx;
  43. font-size: 32rpx;
  44. position: relative;
  45. background: #95EC69;
  46. border-radius: 10rpx;
  47. margin-right: 20rpx;
  48. }
  49. .scroll-view .service_ul_left_ttx::after {
  50. content: '';
  51. top: 50%;
  52. right: -17rpx;
  53. -webkit-transform: translateY(-50%);
  54. transform: translateY(-50%);
  55. position: absolute;
  56. border-width: 9rpx;
  57. border-color: transparent transparent transparent #95EC69;
  58. border-style: dotted dotted dotted solid;
  59. }
  60. .scroll-view .service_ul_right_txt {
  61. padding: 20rpx;
  62. font-size: 32rpx;
  63. position: relative;
  64. background: #FFFFFF;
  65. border-radius: 10rpx;
  66. margin-left: 20rpx;
  67. }
  68. .scroll-view .service_ul_right_txt::after {
  69. content: '';
  70. top: 50%;
  71. left: -17rpx;
  72. -webkit-transform: translateY(-50%);
  73. transform: translateY(-50%);
  74. position: absolute;
  75. border-width: 9rpx;
  76. border-color: transparent #FFFFFF transparent transparent;
  77. border-style: dotted dotted dotted solid;
  78. }
  79. .scroll-view .service_ul_li {
  80. padding-right: 50rpx;
  81. margin-bottom: 40rpx;
  82. }
  83. .scroll-view .service_ul_li:first-child {
  84. margin-top: 40rpx;
  85. }
  86. .scroll-view .service_ul_li_img {
  87. width: 80rpx;
  88. height: 80rpx;
  89. flex-shrink: 0;
  90. }
  91. .scroll-view .service_ul_li_img image {
  92. border-radius: 4rpx;
  93. }
  94. .service_footer {
  95. width: 100%;
  96. position: fixed;
  97. bottom: 0;
  98. background: #FFFFFF;
  99. padding: 20rpx 0 20rpx 30rpx;
  100. }
  101. .service_footer .service_footer_ipt {
  102. width: 605rpx;
  103. min-height: 56rpx;
  104. padding: 10rpx 20rpx;
  105. background: #FAFAFA;
  106. border-radius: 28rpx;
  107. }
  108. .service_footer .service_footer_send {
  109. font-size: 28rpx;
  110. flex: 1;
  111. height: 56rpx;
  112. }