myKefu.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. <template>
  2. <view class="page">
  3. <view class="p-header flex-col">
  4. <view class="flex-row justify-between group_4">
  5. <text class="text_2">客服热线</text>
  6. <view class="flex-col items-end">
  7. <text class="text_3">400-0538-888</text>
  8. <text class="text_4">周一至周日8:30-17:30</text>
  9. </view>
  10. </view>
  11. <view class="flex-row justify-between group_6">
  12. <text class="text_5">联系邮箱</text>
  13. <text class="text_6">manggo@email.com</text>
  14. </view>
  15. </view>
  16. <view class="p-content">
  17. <view class="c-item">
  18. <view class="top align-center justify-between">
  19. <text class="txt">常见问题</text>
  20. </view>
  21. </view>
  22. <view class="c-item">
  23. <view class="top align-center justify-between">
  24. <text class="txt">账户余额充值问题</text>
  25. <image
  26. src="/static/kefu-rarrow.png"
  27. class="ic"
  28. />
  29. </view>
  30. </view>
  31. <view class=" c-item">
  32. <view class="top align-center justify-between">
  33. <text class="txt">账户余额充值问题</text>
  34. <image
  35. src="/static/kefu-upic.png"
  36. class="upic"
  37. />
  38. </view>
  39. <view class="bom">
  40. 盲盒商品由商家自主上架,具体商品内容须收货后,客户自行打开发现,盲盒内商品价值高于售价,如有疑问,请根据具体内容请联系商家。
  41. </view>
  42. </view>
  43. </view>
  44. <safe-area bgColor="#fff" />
  45. </view>
  46. </template>
  47. <script>
  48. export default {
  49. data() {
  50. return {
  51. };
  52. }
  53. }
  54. </script>
  55. <style lang="scss">
  56. page{
  57. background-color: #fff;
  58. }
  59. .page{
  60. padding: 24rpx 30rpx;
  61. }
  62. .p-header{
  63. padding-bottom: 50rpx;
  64. background-color: #ffffff;
  65. box-shadow: 0px 0px 27rpx #2a2a2a1a;
  66. border-radius: 10rpx;
  67. .list-item:last-of-type {
  68. margin-top: 24rpx;
  69. }
  70. .group_4 {
  71. padding: 35rpx 23rpx 35rpx 31rpx;
  72. border-bottom: solid 2rpx #0000000f;
  73. }
  74. .text_2 {
  75. align-self: center;
  76. color: #333333;
  77. font-size: 30rpx;
  78. font-family: PingFang;
  79. letter-spacing: 1.2rpx;
  80. }
  81. .text_3 {
  82. margin-right: 9rpx;
  83. color: #92b99c;
  84. font-size: 30rpx;
  85. font-family: PingFang;
  86. letter-spacing: 1.2rpx;
  87. }
  88. .text_4 {
  89. margin-top: 13rpx;
  90. color: #999999;
  91. font-size: 24rpx;
  92. font-family: PingFang;
  93. }
  94. .group_6 {
  95. padding: 51rpx 15rpx 0 31rpx;
  96. }
  97. .text_5 {
  98. color: #333333;
  99. font-size: 30rpx;
  100. font-family: PingFang;
  101. letter-spacing: 1.2rpx;
  102. }
  103. .text_6 {
  104. margin-top: 4rpx;
  105. color: #999999;
  106. font-size: 24rpx;
  107. font-family: PingFang;
  108. }
  109. }
  110. .p-content{
  111. margin-top: 24rpx;
  112. width: 690rpx;
  113. background: #FFFFFF;
  114. box-shadow: 0rpx 0rpx 27rpx 0rpx rgba(42,42,42,0.1);
  115. border-radius: 10rpx;
  116. .c-item{
  117. border-bottom: solid 2rpx #0000000f;
  118. padding: 0 30rpx;
  119. .top{
  120. height: 108rpx;
  121. }
  122. .txt {
  123. color: #000;
  124. font-size: 30rpx;
  125. font-family: PingFang;
  126. letter-spacing: 1.2rpx;
  127. }
  128. .ic{
  129. margin: 5rpx 0 6rpx;
  130. width: 11rpx;
  131. height: 18rpx;
  132. }
  133. .upic{
  134. margin: 8rpx 0 10rpx;
  135. width: 18rpx;
  136. height: 11rpx;
  137. }
  138. .bom{
  139. margin-top: -10rpx;
  140. font-size: 26rpx;
  141. font-family: PingFang SC;
  142. font-weight: 500;
  143. color: #333333;
  144. line-height: 37rpx;
  145. padding-bottom: 30rpx;
  146. }
  147. }
  148. }
  149. </style>