templatedetail.scss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. .main {
  2. background: #fff;
  3. }
  4. .home {
  5. &-line {
  6. height: 50px;
  7. }
  8. &-item {
  9. display: flex;
  10. flex-direction: column;
  11. padding: 15px 30px;
  12. font-size: 28px;
  13. &-tit {
  14. font-size: 32px;
  15. margin-bottom: 10px;
  16. font-weight: 600;
  17. }
  18. &-tits {
  19. font-size: 32px;
  20. margin-bottom: 10px;
  21. font-weight: 600;
  22. display: flex;
  23. flex-direction: row;
  24. align-items: center;
  25. justify-content: space-between;
  26. flex-wrap: nowrap;
  27. &-txt {
  28. width: 500px;
  29. display: inline-block;
  30. font-weight: 600;
  31. }
  32. &-bt {}
  33. }
  34. &-val {
  35. border-bottom: 1px solid #d9d9d9;
  36. font-size: 30px;
  37. }
  38. &-vals {
  39. display: flex;
  40. flex-direction: row;
  41. justify-content: space-between;
  42. flex-wrap: nowrap;
  43. height: 50.68px;
  44. border-bottom: 1px solid #d9d9d9;
  45. font-size: 30px;
  46. &-txt {
  47. width: 500px;
  48. display: inline-block;
  49. }
  50. &-bt {
  51. // width: 26%;
  52. }
  53. }
  54. &-text {
  55. display: flex;
  56. flex-direction: row;
  57. flex-wrap: nowrap;
  58. &-val {
  59. display: flex;
  60. flex: 1;
  61. border-bottom: 1px solid #d9d9d9;
  62. }
  63. }
  64. &-editor {
  65. min-height: 150px;
  66. font-size: 30px;
  67. // border: 1px solid #d9d9d9;
  68. // padding: 15px;
  69. margin-top: 15px;
  70. }
  71. &-bottom {
  72. display: flex;
  73. justify-content: space-between;
  74. width: 100%;
  75. margin-top: 15px;
  76. margin-bottom: 20px;
  77. }
  78. }
  79. }
  80. /* 遮罩层样式 */
  81. .mask {
  82. position: fixed;
  83. top: 0;
  84. right: 0;
  85. bottom: 0;
  86. left: 0;
  87. background: rgba(0, 0, 0, 0.5);
  88. z-index: 998;
  89. display: flex;
  90. align-items: center;
  91. justify-content: center;
  92. .count {
  93. width: 70%;
  94. background: #fff;
  95. border-radius: 15px;
  96. .title {
  97. font-size: 36px;
  98. display: flex;
  99. flex-direction: row;
  100. align-items: center;
  101. justify-content: center;
  102. margin-top: 20px;
  103. }
  104. &_top {
  105. padding: 30px;
  106. margin: 40px 0;
  107. &_input {
  108. border-bottom: 1px solid #d9d9d9;
  109. font-size: 32px;
  110. }
  111. &_date {
  112. border-bottom: 1px solid #d9d9d9;
  113. font-size: 32px;
  114. margin-top: 30px;
  115. }
  116. &_dates {
  117. border-bottom: 1px solid #d9d9d9;
  118. font-size: 32px;
  119. margin-top: 30px;
  120. color: #757575;
  121. }
  122. }
  123. &_foot {
  124. display: flex;
  125. flex-direction: row;
  126. }
  127. }
  128. }