style.scss 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. @import "@assets/css/public-style.scss";
  2. .buttons {
  3. text-align: right;
  4. background: white;
  5. padding: 0 20px 20px 0;
  6. }
  7. .top-title {
  8. padding: 20px;
  9. background: white;
  10. margin-bottom: 20px;
  11. position: relative;
  12. h1 {
  13. font-size: 30px;
  14. line-height: 30px;
  15. color: $defaultColor;
  16. .titleType {
  17. font-size: 14px;
  18. width: 68px;
  19. height: 30px;
  20. border-radius: 2px;
  21. text-align: center;
  22. line-height: 30px;
  23. vertical-align: middle;
  24. color: $mainTextColor;
  25. border: 1px solid $mainTextColor;
  26. font-weight: normal;
  27. margin-left: 20px;
  28. display: inline-block;
  29. }
  30. }
  31. .right {
  32. position: absolute;
  33. right: 20px;
  34. top: 20px;
  35. }
  36. .text {
  37. margin-top: 10px;
  38. font-size: 12px;
  39. color: #747d87;
  40. span {
  41. margin-right: 40px;
  42. }
  43. }
  44. }
  45. .contentDetail {
  46. background: white;
  47. .tages {
  48. display: flex;
  49. padding: 15px 20px;
  50. border-bottom: 1px solid #ddd;
  51. .tages-list {
  52. margin-right: 40px;
  53. position: relative;
  54. cursor: pointer;
  55. &.active {
  56. color: $mainTextColor;
  57. &::before {
  58. position: absolute;
  59. left: 0px;
  60. bottom: -15px;
  61. width: 100%;
  62. height: 2px;
  63. background: $mainTextColor;
  64. content: " ";
  65. }
  66. }
  67. }
  68. }
  69. .content-item {
  70. padding: 30px 20px 20px 20px;
  71. .widthFlex {
  72. display: flex;
  73. margin-bottom: 20px;
  74. .item-table {
  75. width: 100%;
  76. border: 1px solid #e0e1e3;
  77. &:first-of-type {
  78. border-right: none;
  79. }
  80. .table-list {
  81. display: flex;
  82. line-height: 40px;
  83. border-bottom: 1px solid #e0e1e3;
  84. &:last-of-type {
  85. border-bottom: none;
  86. }
  87. .lable {
  88. width: 200px;
  89. background: #f8fcff;
  90. padding-left: 20px;
  91. box-sizing: border-box;
  92. border-right: 1px solid #e0e1e3;
  93. }
  94. .text {
  95. flex: 1;
  96. padding-left: 20px;
  97. box-sizing: border-box;
  98. }
  99. }
  100. }
  101. }
  102. }
  103. }
  104. .clickUpload {
  105. width: 130px;
  106. height: 182px;
  107. background: #f8fcff;
  108. border-radius: 4px;
  109. border: 1px solid #e0e1e3;
  110. position: relative;
  111. z-index: 1000;
  112. text-align: center;
  113. overflow: hidden;
  114. font-size: 12px;
  115. cursor: pointer;
  116. color: #e0e1e3;
  117. .mini-upload {
  118. position: absolute;
  119. z-index: 0;
  120. }
  121. }
  122. .clickUpText {
  123. height: 100%;
  124. width: 100%;
  125. pointer-events: none;
  126. position: absolute;
  127. background: #f8fcff;
  128. z-index: 1;
  129. img.bg-img {
  130. width: 52px;
  131. margin-top: 46px;
  132. margin-bottom: 12px;
  133. }
  134. img.dataImg {
  135. width: 100%;
  136. height: 100%;
  137. object-fit: cover;
  138. }
  139. }
  140. .show-required-icon-star {
  141. &:before {
  142. content: "*";
  143. color: #f56c6c;
  144. }
  145. }
  146. .buttonSelect {
  147. padding: 0 rem(15);
  148. text-align: center;
  149. font-size: rem(14);
  150. height: rem(30);
  151. box-sizing: border-box;
  152. border-radius: rem(2);
  153. border: 1px solid #e0e1e3;
  154. color: #535766;
  155. display: inline-block;
  156. cursor: pointer;
  157. &.is-active,
  158. &.is-checked {
  159. color: #0eaeff;
  160. border-color: #0eaeff;
  161. }
  162. &:not(:last-child) {
  163. margin-right: rem(20);
  164. }
  165. }
  166. /deep/ .el-radio-button .el-radio-button__inner,
  167. /deep/ .el-checkbox-button .el-checkbox-button__inner {
  168. border: none;
  169. box-sizing: border-box;
  170. padding: 0;
  171. line-height: rem(24);
  172. margin-top: rem(2);
  173. display: block;
  174. }
  175. /deep/ .el-radio-button__orig-radio:checked + .el-radio-button__inner,
  176. /deep/ .el-checkbox-button.is-checked .el-checkbox-button__inner {
  177. color: #0eaeff;
  178. background-color: white;
  179. box-shadow: none;
  180. }