add.scss 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. .head {
  2. width: 100vw;
  3. box-sizing: border-box;
  4. padding: 20rpx 30rpx;
  5. background-color: #fff;
  6. .title {
  7. line-height: 40rpx;
  8. font-size: 28rpx;
  9. color: #333333;
  10. margin-bottom: 20rpx;
  11. }
  12. text {
  13. font-size: 24rpx;
  14. font-family: PingFang SC-Regular, PingFang SC;
  15. color: #333333;
  16. }
  17. }
  18. .client {
  19. background-color: #fff;
  20. padding-bottom: 20rpx;
  21. margin-bottom: 20rpx;
  22. .user {
  23. display: flex;
  24. width: 100vw;
  25. height: 136rpx;
  26. box-sizing: border-box;
  27. padding: 20rpx 30rpx;
  28. .portrait {
  29. display: flex;
  30. align-items: center;
  31. width: 96rpx;
  32. height: 96rpx;
  33. background: #E7EEFF;
  34. border-radius: 16rpx;
  35. text-align: center;
  36. font-size: 24rpx;
  37. font-family: PingFang SC-Regular, PingFang SC;
  38. color: #3874F6;
  39. margin-right: 20rpx;
  40. flex-shrink: 0;
  41. }
  42. .right {
  43. height: 100%;
  44. flex: 1;
  45. width: 0;
  46. .title {
  47. font-size: 28rpx;
  48. font-family: PingFang SC-Bold, PingFang SC;
  49. font-weight: bold;
  50. color: #333333;
  51. height: 40rpx;
  52. line-height: 40rpx;
  53. }
  54. .tag-box {
  55. display: flex;
  56. align-items: center;
  57. width: 100%;
  58. .datatag,
  59. .systemtag {
  60. flex-shrink: 0;
  61. margin-top: 12rpx;
  62. background: #FAAB16;
  63. color: #ffffff;
  64. margin-right: 10rpx;
  65. display: flex;
  66. align-items: center;
  67. height: 36rpx;
  68. font-size: 20rpx;
  69. padding: 0 10rpx;
  70. border-radius: 20rpx;
  71. font-family: PingFang SC-Regular, PingFang SC;
  72. }
  73. .systemtag {
  74. background: #FA8C16;
  75. }
  76. }
  77. }
  78. }
  79. .option {
  80. display: flex;
  81. justify-content: space-between;
  82. width: 100vw;
  83. padding: 0 30rpx;
  84. box-sizing: border-box;
  85. font-size: 24rpx;
  86. font-family: PingFang SC-Regular, PingFang SC;
  87. color: #666666;
  88. margin-bottom: 20rpx;
  89. view {
  90. line-height: 34rpx;
  91. }
  92. }
  93. }
  94. .label {
  95. width: 750rpx;
  96. height: 80rpx;
  97. background: #FFFFFF;
  98. font-size: 28rpx;
  99. color: #333333;
  100. box-sizing: border-box;
  101. padding: 20rpx 30rpx;
  102. margin-top: 20rpx;
  103. }
  104. .text {
  105. padding: 0 30rpx 20rpx;
  106. background-color: #fff;
  107. textarea {
  108. width: 690rpx;
  109. height: 180rpx;
  110. background: #F5F5F5 !important;
  111. border-radius: 16rpx;
  112. box-sizing: border-box;
  113. padding: 20rpx;
  114. font-size: 24rpx !important;
  115. }
  116. }
  117. .footer {
  118. display: flex;
  119. justify-content: space-between;
  120. align-items: center;
  121. padding: 0 30rpx;
  122. position: fixed;
  123. width: 100vw;
  124. height: 130rpx;
  125. background: #FFFFFF;
  126. box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  127. bottom: 0;
  128. box-sizing: border-box;
  129. .but {
  130. width: 156rpx;
  131. height: 90rpx;
  132. background: #3874F6;
  133. border-radius: 8rpx;
  134. font-size: 28rpx;
  135. font-family: PingFang SC-Bold, PingFang SC;
  136. font-weight: bold;
  137. color: #FFFFFF;
  138. }
  139. }