index.vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <template>
  2. <div class="page">
  3. <div class="page-top flex flex-col justify-center items-center">
  4. <img class="logo" src="https://picsum.photos/200/200" />
  5. <span class="name mt-2">上海品辉医疗科技有限公司</span>
  6. </div>
  7. <div class="page-content p-4 md:my-4">
  8. <textarea
  9. class="control p-2"
  10. placeholder="请在此处输入您的宝贵意见(限200字)"
  11. ></textarea>
  12. <div class="submit mt-6">提交</div>
  13. </div>
  14. </div>
  15. </template>
  16. <script>
  17. export default {
  18. layout: 'app',
  19. }
  20. </script>
  21. <style scoped lang="scss">
  22. // pc 端
  23. @media screen and (min-width: 768px) {
  24. .page-top {
  25. height: 360px;
  26. background: url(https://static.caimei365.com/www/authentic/pc/bg-doc.png);
  27. background-size: auto 360px;
  28. .logo {
  29. display: block;
  30. width: 120px;
  31. height: 120px;
  32. border-radius: 50%;
  33. }
  34. .name {
  35. font-size: 30px;
  36. color: #fff;
  37. }
  38. }
  39. .page-content {
  40. width: 1200px;
  41. margin-left: auto;
  42. margin-right: auto;
  43. box-sizing: border-box;
  44. background-color: #fff;
  45. .control {
  46. display: block;
  47. width: 100%;
  48. height: 280px;
  49. border: 1px solid #d8d8d8;
  50. outline: none;
  51. box-sizing: border-box;
  52. font-size: 16px;
  53. color: #101010;
  54. }
  55. .submit {
  56. text-align: center;
  57. line-height: 46px;
  58. width: 326px;
  59. height: 46px;
  60. margin-left: auto;
  61. margin-right: auto;
  62. border-radius: 4px;
  63. font-size: 16px;
  64. background-color: #bc1724;
  65. color: #fff;
  66. transition: all 0.2s;
  67. cursor: pointer;
  68. &:hover {
  69. background-color: #a50613;
  70. }
  71. &.disabled {
  72. background-color: #d8d8d8 !important;
  73. }
  74. }
  75. }
  76. }
  77. // 移动 端
  78. @media screen and (max-width: 768px) {
  79. .page-top {
  80. height: 46vw;
  81. background: url(https://static.caimei365.com/www/authentic/h5/bg-feedback.png);
  82. background-size: auto 46vw;
  83. .logo {
  84. display: block;
  85. width: 14.8vw;
  86. height: 14.8vw;
  87. border-radius: 50%;
  88. }
  89. .name {
  90. font-size: 4vw;
  91. color: #fff;
  92. }
  93. }
  94. .page-content {
  95. .control {
  96. display: block;
  97. width: 100%;
  98. height: 56vw;
  99. border: 0.1vw solid #d8d8d8;
  100. outline: none;
  101. box-sizing: border-box;
  102. font-size: 3.2vw;
  103. color: #101010;
  104. }
  105. .submit {
  106. text-align: center;
  107. line-height: 11.6vw;
  108. width: 100%;
  109. height: 11.6vw;
  110. border-radius: 0.2vw;
  111. font-size: 4vw;
  112. background-color: #bc1724;
  113. color: #fff;
  114. &.disabled {
  115. background-color: #d8d8d8;
  116. }
  117. }
  118. }
  119. }
  120. </style>