index.vue 2.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <template>
  2. <div class="page_aboutUs">
  3. <div class="aboutUsTitle">
  4. <i class="iconfont icon-zuojiantou jiantou"></i>
  5. <span class="titleName">关于我们</span>
  6. </div>
  7. <div class="aboutImg">
  8. <img src="../../assets/images/aboutBanner.png" alt="" />
  9. </div>
  10. <div class="aboutBox">
  11. <div class="aboutBoxOne">
  12. <p>公司介绍</p>
  13. <div>
  14. <van-icon class="arrow" name="arrow" />
  15. </div>
  16. </div>
  17. <div class="aboutBoxOne">
  18. <p>隐私政策</p>
  19. <div>
  20. <van-icon class="arrow" name="arrow" />
  21. </div>
  22. </div>
  23. <div class="aboutBoxOne">
  24. <p>用户协议</p>
  25. <div>
  26. <van-icon class="arrow" name="arrow" />
  27. </div>
  28. </div>
  29. <div class="aboutBoxOne">
  30. <p>检查更新</p>
  31. <div class="aboutBoxRight">
  32. <p>已是最新版本</p>
  33. <van-icon class="arrow" name="arrow" />
  34. </div>
  35. </div>
  36. </div>
  37. </div>
  38. </template>
  39. <style lang="scss" scoped>
  40. .page_aboutUs {
  41. height: 100%;
  42. overflow: hidden;
  43. .aboutUsTitle {
  44. background: #fff;
  45. padding: 0 1.125rem;
  46. height: 3.125rem;
  47. display: flex;
  48. align-items: center;
  49. }
  50. .jiantou {
  51. font-size: 1.5rem;
  52. font-weight: 600;
  53. margin-right: 7rem;
  54. }
  55. .titleName {
  56. font-size: 1.125rem;
  57. font-weight: 600;
  58. }
  59. .aboutImg {
  60. padding: 0 0.75rem;
  61. height: 10.0625rem;
  62. margin: 1rem 0 0.3125rem;
  63. img {
  64. width: 100%;
  65. height: 100%;
  66. }
  67. }
  68. .aboutBox {
  69. .aboutBoxOne {
  70. padding: 0 0.75rem;
  71. height: 3.125rem;
  72. display: flex;
  73. align-items: center;
  74. justify-content: space-between;
  75. box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.1);
  76. p {
  77. font-size: 0.9375rem;
  78. color: #313234;
  79. }
  80. .arrow {
  81. color: #9f9f9f;
  82. }
  83. .aboutBoxRight {
  84. display: flex;
  85. align-items: center;
  86. p {
  87. font-size: 0.8125rem;
  88. margin-right: 0.25rem;
  89. color: #9f9f9f;
  90. }
  91. }
  92. }
  93. }
  94. }
  95. </style>