add.scss 3.5 KB

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