details.scss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. .box {
  2. width: 750rpx;
  3. padding: 30rpx;
  4. box-sizing: border-box;
  5. background-color: #ffffff;
  6. .title {
  7. display: flex;
  8. justify-content: space-between;
  9. align-items: center;
  10. font-size: 30rpx;
  11. font-family: PingFang SC-Bold, PingFang SC;
  12. font-weight: bold;
  13. color: #333333;
  14. text {
  15. font-size: 24rpx;
  16. font-family: PingFang SC-Regular, PingFang SC;
  17. color: #999999;
  18. font-weight: 400;
  19. }
  20. }
  21. .time {
  22. font-size: 24rpx;
  23. font-family: PingFang SC-Regular, PingFang SC;
  24. color: #666666;
  25. margin-top: 20rpx;
  26. }
  27. }
  28. /* 历史 */
  29. .history {
  30. position: relative;
  31. width: 690rpx;
  32. padding: 30rpx;
  33. padding-top: 28rpx;
  34. box-sizing: border-box;
  35. background: #ffffff;
  36. border-radius: 16rpx;
  37. overflow: hidden;
  38. margin-top: 20rpx;
  39. font-family: PingFang SC-Regular, PingFang SC;
  40. font-size: 28rpx;
  41. .line-1 {
  42. max-width: 550rpx;
  43. color: #333333;
  44. line-height: 44rpx;
  45. }
  46. .data {
  47. display: flex;
  48. justify-content: space-between;
  49. font-size: 24rpx;
  50. color: #999999;
  51. margin-top: 20rpx;
  52. }
  53. .back {
  54. position: absolute;
  55. width: 64rpx;
  56. height: 36rpx;
  57. border-radius: 4rpx;
  58. border: 1rpx solid #FF3B30;
  59. font-size: 20rpx;
  60. font-family: PingFangSC-Regular-, PingFangSC-Regular;
  61. color: #FF3B30;
  62. text-align: center;
  63. line-height: 36rpx;
  64. top: 30rpx;
  65. right: 30rpx;
  66. }
  67. }
  68. /* 文本域 */
  69. .textarea {
  70. width: 690rpx;
  71. height: 160rpx;
  72. border-radius: 16rpx;
  73. font-size: 24rpx !important;
  74. overflow: hidden;
  75. margin: 20rpx auto 30rpx;
  76. padding: 20rpx;
  77. box-sizing: border-box;
  78. border: 1rpx solid rgb(180, 180, 180);
  79. }
  80. .footer {
  81. position: fixed;
  82. width: 100%;
  83. background-color: #ffffff;
  84. padding: 20rpx 0;
  85. text-align: center;
  86. bottom: 0;
  87. .button {
  88. width: 500rpx;
  89. height: 90rpx;
  90. background: #FA8C16;
  91. font-size: 28rpx;
  92. font-family: PingFang SC-Bold, PingFang SC;
  93. font-weight: bold;
  94. color: #FFFFFF;
  95. }
  96. }
  97. /* 上传按钮样式 */
  98. .uploadStyle {
  99. width: 690rpx;
  100. height: 90rpx;
  101. line-height: 90rpx;
  102. text-align: center;
  103. color: var(--assist);
  104. border: 1rpx solid var(--assist);
  105. margin-top: 30rpx;
  106. font-size: 24rpx;
  107. font-family: PingFang SC-Regular, PingFang SC;
  108. border-radius: 16rpx;
  109. .iconfont {
  110. margin-right: 5rpx;
  111. }
  112. }