templatedetail.scss 2.4 KB

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