details.scss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. @import "./incidental.scss";
  2. /* 主要区域 */
  3. .main {
  4. width: 100%;
  5. background-color: #ffffff;
  6. padding: 30rpx;
  7. box-sizing: border-box;
  8. .title {
  9. font-size: 30rpx;
  10. font-family: PingFang SC-Bold, PingFang SC;
  11. font-weight: bold;
  12. color: #333333;
  13. line-height: 44rpx;
  14. }
  15. .incidental {
  16. width: 100%;
  17. margin-top: 20rpx;
  18. }
  19. }
  20. /* 通告评价 */
  21. .evaluate {
  22. .title-r {
  23. font-size: 24rpx;
  24. font-family: PingFang SC-Regular, PingFang SC;
  25. color: #999999;
  26. }
  27. .score {
  28. display: flex;
  29. align-items: center;
  30. height: 48rpx;
  31. // margin-left: 30rpx;
  32. margin: 40rpx 0 50rpx 30rpx;
  33. .rate {
  34. padding: 0 20rpx;
  35. margin-top: -12rpx;
  36. }
  37. }
  38. }
  39. /* 虚线 */
  40. .cut-off-rule {
  41. width: 100%;
  42. height: 1rpx;
  43. box-sizing: border-box;
  44. border-bottom: 1rpx dashed #CCCCCC;
  45. margin-top: 30rpx;
  46. }
  47. /* 文本域 */
  48. textarea {
  49. width: 630rpx;
  50. height: 210rpx;
  51. background: #F5F5F5;
  52. border-radius: 8rpx;
  53. margin: 24rpx auto 0;
  54. padding: 20rpx 30rpx;
  55. box-sizing: border-box;
  56. text-align: left;
  57. }
  58. /* 按钮盒子 */
  59. .but-box {
  60. width: 100%;
  61. text-align: center;
  62. margin: 50rpx 0;
  63. }