index.scss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. @import './variables.scss';
  2. @import './mixin.scss';
  3. @import './transition.scss';
  4. @import './element-ui.scss';
  5. // @import './sidebar.scss';
  6. body {
  7. height: 100%;
  8. -moz-osx-font-smoothing: grayscale;
  9. -webkit-font-smoothing: antialiased;
  10. text-rendering: optimizeLegibility;
  11. font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
  12. }
  13. label {
  14. font-weight: 700;
  15. }
  16. html {
  17. height: 100%;
  18. box-sizing: border-box;
  19. }
  20. #app {
  21. height: 100%;
  22. }
  23. *,
  24. *:before,
  25. *:after {
  26. box-sizing: inherit;
  27. // white-space: pre-wrap;
  28. }
  29. a:focus,
  30. a:active {
  31. outline: none;
  32. }
  33. a,
  34. a:focus,
  35. a:hover {
  36. cursor: pointer;
  37. color: inherit;
  38. text-decoration: none;
  39. }
  40. div:focus {
  41. outline: none;
  42. }
  43. .clearfix {
  44. &:after {
  45. visibility: hidden;
  46. display: block;
  47. font-size: 0;
  48. content: ' ';
  49. clear: both;
  50. height: 0;
  51. }
  52. }
  53. // main-container global css
  54. .app-container {
  55. padding: 20px;
  56. }
  57. // 重写分页样式
  58. .el-pagination {
  59. padding-top: 20px;
  60. }
  61. .el-message__icon {
  62. font-size: 20px;
  63. }
  64. .Book_flex {
  65. display: flex;
  66. justify-content: flex-start;
  67. align-items: center;
  68. }
  69. .Book_flex_start {
  70. display: flex;
  71. justify-content: flex-start;
  72. align-items: flex-start;
  73. }
  74. .Book_flex .insert_pinyin {
  75. display: flex;
  76. justify-content: flex-start;
  77. align-items: center;
  78. cursor: pointer;
  79. margin-left: 15px;
  80. >img {
  81. width: 24px;
  82. height: 20px;
  83. margin-right: 8px;
  84. }
  85. >span {
  86. line-height: 24px;
  87. font-size: 14px;
  88. }
  89. }
  90. .Book_flex_start .insert_pinyin {
  91. display: flex;
  92. justify-content: flex-start;
  93. align-content: flex-start;
  94. cursor: pointer;
  95. margin-left: 15px;
  96. >img {
  97. width: 24px;
  98. height: 20px;
  99. margin-right: 8px;
  100. }
  101. >span {
  102. line-height: 24px;
  103. font-size: 14px;
  104. }
  105. }
  106. .Book_border_radius_6 {
  107. border-radius: 6px;
  108. }
  109. .Book_tm_index {
  110. font-size: 14px;
  111. margin: 0;
  112. }
  113. .Book_enter_container {
  114. padding: 20px 32px 20px 0px;
  115. border: 1px solid #d0d0d0;
  116. width: 80%;
  117. border-radius: 8px;
  118. .sentenceChoice_notice {
  119. font-size: 14px;
  120. color: red;
  121. line-height: 20px;
  122. margin-bottom: 10px;
  123. padding-left: 50px;
  124. }
  125. }
  126. .zhuanTtf {
  127. font-family: zhuan;
  128. }
  129. .Book_orange_color {
  130. color: #FFD46E;
  131. }
  132. .Big-Book-Maxwidth {
  133. .el-textarea {
  134. width: 100%;
  135. margin-right: 15px;
  136. }
  137. }
  138. .Big-Book {
  139. &-content {
  140. width: 100%;
  141. }
  142. &-main {
  143. width: 100%;
  144. }
  145. &-left-text {
  146. display: block;
  147. font-size: 14px;
  148. }
  149. &-con-top {
  150. display: flex;
  151. justify-content: space-between;
  152. align-items: center;
  153. margin-bottom: 8px;
  154. ;
  155. }
  156. }
  157. input::-webkit-input-placeholder {
  158. color: rgba($color: #000000, $alpha: 0.3);
  159. }
  160. input::-moz-placeholder {
  161. color: rgba($color: #000000, $alpha: 0.3);
  162. }
  163. input:-moz-placeholder {
  164. color: rgba($color: #000000, $alpha: 0.3);
  165. }
  166. input:-ms-input-placeholder {
  167. color: rgba($color: #000000, $alpha: 0.3);
  168. }