details.scss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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. width: 690rpx;
  31. padding: 30rpx;
  32. padding-top: 28rpx;
  33. box-sizing: border-box;
  34. background: #ffffff;
  35. border-radius: 16rpx;
  36. overflow: hidden;
  37. margin-top: 20rpx;
  38. font-family: PingFang SC-Regular, PingFang SC;
  39. font-size: 28rpx;
  40. .line-2 {
  41. color: #333333;
  42. line-height: 44rpx;
  43. }
  44. .data {
  45. display: flex;
  46. justify-content: space-between;
  47. font-size: 24rpx;
  48. color: #999999;
  49. margin-top: 20rpx;
  50. }
  51. }
  52. /* 文本域 */
  53. .textarea {
  54. width: 690rpx;
  55. height: 160rpx;
  56. border-radius: 16rpx;
  57. font-size: 24rpx !important;
  58. overflow: hidden;
  59. margin: 20rpx auto 30rpx;
  60. padding: 20rpx;
  61. box-sizing: border-box;
  62. border: 1rpx solid rgb(180, 180, 180);
  63. }
  64. .footer {
  65. position: fixed;
  66. width: 100%;
  67. background-color: #ffffff;
  68. padding: 20rpx 0;
  69. text-align: center;
  70. bottom: 0;
  71. .button {
  72. width: 500rpx;
  73. height: 90rpx;
  74. background: #FA8C16;
  75. font-size: 28rpx;
  76. font-family: PingFang SC-Bold, PingFang SC;
  77. font-weight: bold;
  78. color: #FFFFFF;
  79. }
  80. }
  81. /* 上传按钮样式 */
  82. .uploadStyle {
  83. width: 690rpx;
  84. height: 90rpx;
  85. line-height: 90rpx;
  86. text-align: center;
  87. color: var(--assist);
  88. border: 1rpx solid var(--assist);
  89. margin-top: 30rpx;
  90. font-size: 24rpx;
  91. font-family: PingFang SC-Regular, PingFang SC;
  92. border-radius: 16rpx;
  93. .iconfont {
  94. margin-right: 5rpx;
  95. }
  96. }