evaluate.wxss 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. @charset "UTF-8";
  2. /* 页面左右间距 */
  3. /* 文字尺寸 */
  4. /*文字颜色*/
  5. /* 边框颜色 */
  6. /*颜色*/
  7. /* 图片加载中颜色 */
  8. /* 行为相关颜色 */
  9. /* 功能栏字体大小 */
  10. /*功能栏左侧小图标*/
  11. page {
  12. background: #f8f6f6;
  13. height: 100%;
  14. }
  15. page .content {
  16. background: #f8f6f6;
  17. height: 100%;
  18. }
  19. .equity_box {
  20. border-radius: 10rpx;
  21. padding: 25rpx 25rpx;
  22. margin: 25rpx 0rpx;
  23. background: #ffffff;
  24. }
  25. .equity_box .text-box {
  26. height: 200rpx;
  27. }
  28. .equity_box .text-box textarea {
  29. font-size: 25rpx;
  30. width: 100%;
  31. height: 100%;
  32. overflow: hidden;
  33. text-overflow: ellipsis;
  34. display: -webkit-box;
  35. -webkit-box-orient: vertical;
  36. -webkit-line-clamp: 5;
  37. }
  38. .submit-btn {
  39. margin: 102rpx auto 0;
  40. width: 560rpx;
  41. height: 85rpx;
  42. background: #24a17d;
  43. border-radius: 43px;
  44. text-align: center;
  45. font-size: 36rpx;
  46. font-family: PingFangSC;
  47. font-weight: 500;
  48. color: #ffffff;
  49. line-height: 85rpx;
  50. }
  51. .add-img-box {
  52. width: 100%;
  53. flex-direction: row;
  54. flex-wrap: wrap;
  55. margin-top: 50rpx;
  56. }
  57. .add-img-item {
  58. width: 180rpx;
  59. height: 180rpx;
  60. border-radius: 24rpx;
  61. position: relative;
  62. margin: 0rpx 20rpx;
  63. margin-bottom: 25rpx;
  64. }
  65. .add-img-item .add-img {
  66. width: 100%;
  67. height: 100%;
  68. }
  69. .add-img-camera {
  70. flex: 1;
  71. }
  72. .add-img-del {
  73. position: absolute;
  74. width: 40rpx;
  75. height: 40rpx;
  76. left: 155rpx;
  77. bottom: 155rpx;
  78. border-radius: 20rpx;
  79. }
  80. .address-time {
  81. width: 484rpx;
  82. height: 88rpx;
  83. background-color: whitesmoke;
  84. opacity: 1;
  85. border-radius: 24rpx;
  86. text-align: center;
  87. font-size: 35rpx;
  88. font-weight: 500;
  89. color: #333333;
  90. }
  91. .line {
  92. width: 750rpx;
  93. height: 1px;
  94. -webkit-transform: scaleY(0.3);
  95. transform: scaleY(0.3);
  96. background-color: rgba(0, 0, 0, 0.5);
  97. }