index.scss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. .feedback-page {
  2. padding: 6px 0 0 6px;
  3. height: 100vh;
  4. box-sizing: border-box;
  5. background: linear-gradient(#b9d6d3, #fafbeb);
  6. }
  7. .feedback {
  8. position: relative;
  9. &::before {
  10. content: "";
  11. position: absolute;
  12. top: 0;
  13. left: 25px;
  14. width: 35px;
  15. height: 130px;
  16. background: url("../../images/Userfeedback@2x-min.png") no-repeat center /
  17. contain;
  18. }
  19. &__bg {
  20. width: 100%;
  21. }
  22. &-main {
  23. position: absolute;
  24. top: 53px;
  25. left: 69px;
  26. right: 52px;
  27. bottom: 0;
  28. z-index: 1;
  29. background: unset;
  30. &__form {
  31. padding: 0 24px;
  32. &:first-child {
  33. margin-bottom: 38px;
  34. padding-bottom: 38px;
  35. border-bottom: 2px solid #d5ddd7;
  36. }
  37. }
  38. }
  39. &__label {
  40. font-family: "Source Han Serif CN-Bold";
  41. font-size: 38px;
  42. color: #424a4a;
  43. }
  44. &__input {
  45. margin: 20px 0 38px;
  46. padding: 2px;
  47. width: 100%;
  48. height: 100px;
  49. box-sizing: border-box;
  50. border-radius: 10px;
  51. overflow: hidden;
  52. background: linear-gradient(
  53. 180deg,
  54. rgba(255, 255, 255, 1),
  55. rgba(255, 255, 255, 0.15)
  56. );
  57. .at-input__container {
  58. width: 100%;
  59. height: 100%;
  60. background-color: rgba(213, 221, 215, 0.5);
  61. border-radius: 10px;
  62. }
  63. .at-input__input {
  64. padding: 0 38px;
  65. font-size: 31px;
  66. }
  67. &.textarea {
  68. position: relative;
  69. margin-bottom: 0;
  70. padding: 2px;
  71. height: 385px;
  72. border: 0;
  73. .at-textarea__textarea {
  74. position: relative;
  75. padding: 30px 38px;
  76. height: 100%;
  77. box-sizing: border-box;
  78. border-radius: 10px;
  79. background-color: rgba(213, 221, 215, 0.5);
  80. z-index: 1;
  81. }
  82. &::after {
  83. content: "";
  84. position: absolute;
  85. top: 0;
  86. left: 0;
  87. right: 0;
  88. bottom: 0;
  89. background: linear-gradient(
  90. 180deg,
  91. rgba(255, 255, 255, 1),
  92. rgba(255, 255, 255, 0.15)
  93. );
  94. }
  95. }
  96. }
  97. .code {
  98. display: flex;
  99. align-items: center;
  100. margin: 20px 0 40px;
  101. gap: 20px;
  102. .feedback__input {
  103. flex: 1;
  104. margin: 0;
  105. }
  106. &__img {
  107. flex-shrink: 0;
  108. width: 256px;
  109. height: 100px;
  110. }
  111. }
  112. .toolbar {
  113. display: flex;
  114. justify-content: center;
  115. gap: 46px;
  116. &__btn {
  117. width: 262px;
  118. height: 128px;
  119. border: 0;
  120. font-size: 31px;
  121. .at-button__text {
  122. position: relative;
  123. top: 12px;
  124. }
  125. &.cancel {
  126. color: #525252;
  127. background: url("../../images/btn_L_whtie@2x-min.png") no-repeat center /
  128. contain;
  129. }
  130. &.submit {
  131. color: #9c6d42;
  132. background: url("../../images/btn_L_yellow@2x-min.png") no-repeat center /
  133. contain;
  134. }
  135. }
  136. }
  137. }