爱简收旧衣按件回收前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

95 lines
1.8 KiB

  1. .protocol-dialog.data-v-bbe16946 {
  2. position: fixed;
  3. top: 0;
  4. left: 0;
  5. right: 0;
  6. bottom: 0;
  7. z-index: 999;
  8. display: flex;
  9. align-items: center;
  10. justify-content: center;
  11. }
  12. .dialog-mask.data-v-bbe16946 {
  13. position: absolute;
  14. top: 0;
  15. left: 0;
  16. right: 0;
  17. bottom: 0;
  18. background: rgba(0, 0, 0, 0.6);
  19. }
  20. .dialog-content.data-v-bbe16946 {
  21. position: relative;
  22. width: 86vw;
  23. max-width: 700rpx;
  24. background: #fff;
  25. border-radius: 32rpx;
  26. overflow: hidden;
  27. z-index: 1;
  28. display: flex;
  29. flex-direction: column;
  30. box-sizing: border-box;
  31. }
  32. .dialog-title.data-v-bbe16946 {
  33. text-align: center;
  34. font-size: 36rpx;
  35. font-weight: bold;
  36. color: #222;
  37. margin: 48rpx 0 24rpx 0;
  38. }
  39. .dialog-body.data-v-bbe16946 {
  40. flex: 1;
  41. max-height: 60vh;
  42. min-height: 200rpx;
  43. width: 100%;
  44. padding: 0 40rpx;
  45. font-size: 28rpx;
  46. color: #444;
  47. line-height: 1.8;
  48. box-sizing: border-box;
  49. margin-bottom: 24rpx;
  50. }
  51. .rich-text-wrapper.data-v-bbe16946 {
  52. width: 100%;
  53. font-size: 28rpx;
  54. color: #444;
  55. line-height: 1.8;
  56. }
  57. .data-v-bbe16946 h1,.data-v-bbe16946 h2,.data-v-bbe16946 h3 {
  58. font-size: 32rpx !important;
  59. font-weight: bold !important;
  60. margin: 24rpx 0 12rpx 0 !important;
  61. color: #222 !important;
  62. }
  63. .data-v-bbe16946 p {
  64. font-size: 28rpx !important;
  65. color: #444 !important;
  66. margin: 0 0 12rpx 0 !important;
  67. line-height: 1.8 !important;
  68. }
  69. .dialog-footer.data-v-bbe16946 {
  70. display: flex;
  71. flex-direction: row;
  72. border-top: 1rpx solid #eee;
  73. height: 90rpx;
  74. }
  75. .footer-btn.data-v-bbe16946 {
  76. flex: 1;
  77. text-align: center;
  78. line-height: 90rpx;
  79. font-size: 32rpx;
  80. font-weight: 500;
  81. }
  82. .reject.data-v-bbe16946 {
  83. color: #888;
  84. background: #fff;
  85. }
  86. .agree.data-v-bbe16946 {
  87. color: #f79400;
  88. background: #fff;
  89. }
  90. .footer-divider.data-v-bbe16946 {
  91. width: 1rpx;
  92. background: #eee;
  93. height: 100%;
  94. }