index.scss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. html {
  2. height: 100%;
  3. @media screen and (max-width: 1400px) {
  4. font-size: 62.5%;
  5. }
  6. @media screen and (min-width: 1400px) {
  7. font-size: 75%;
  8. }
  9. // ai设计板块
  10. @media screen and (min-width: 700px) {
  11. .AI-Design-container {
  12. max-width: 420px;
  13. padding: 0;
  14. margin: 0 auto;
  15. overflow: hidden;
  16. width: 100%;
  17. .header{
  18. max-width: 420px!important;
  19. left:calc(50% - 210px)!important;
  20. }
  21. }
  22. }
  23. .AI-Design-container {
  24. position: relative;
  25. .header {
  26. position: fixed;
  27. top: 0;
  28. left: 0;
  29. width: 100%;
  30. z-index: 99;
  31. }
  32. .header+div {
  33. padding-top: 46px;
  34. }
  35. }
  36. body {
  37. padding: 0;
  38. margin: 0;
  39. height: 100%;
  40. font-family: "Microsoft YaHei";
  41. * {
  42. padding: 0;
  43. margin: 0;
  44. outline: none;
  45. list-style-image: none;
  46. }
  47. .container {
  48. width: 100%;
  49. //height: 100%;
  50. display: flex;
  51. flex-flow: column nowrap;
  52. overflow: hidden;
  53. box-sizing: border-box;
  54. color: #333;
  55. font-size: 16px;
  56. }
  57. .fankui-btn-mm {
  58. width: 40px;
  59. height: 40px;
  60. border-radius: 50%;
  61. position: fixed;
  62. bottom: 50px;
  63. right: 50px;
  64. z-index: 100;
  65. .img {
  66. width: 60px;
  67. height: 60px;
  68. }
  69. }
  70. .flex1 {
  71. display: flex;
  72. flex-grow: 1;
  73. }
  74. .flex0 {
  75. display: flex;
  76. flex-shrink: 0;
  77. }
  78. .fixed {
  79. position: fixed;
  80. }
  81. .relative {
  82. position: relative;
  83. }
  84. .absolute {
  85. position: absolute;
  86. }
  87. .flexRow {
  88. display: flex;
  89. flex-flow: row nowrap !important;
  90. flex-shrink: 0;
  91. }
  92. .flexCol {
  93. display: flex;
  94. flex-flow: column nowrap !important;
  95. }
  96. .flexCenter {
  97. display: flex;
  98. justify-content: center;
  99. align-items: center;
  100. }
  101. .flexWarp {
  102. display: flex;
  103. flex-flow: row wrap !important;
  104. }
  105. .jCenter {
  106. display: flex;
  107. justify-content: center;
  108. }
  109. .aCenter {
  110. display: flex;
  111. align-items: center;
  112. }
  113. .jcsb {
  114. justify-content: space-between;
  115. }
  116. .oHidden {
  117. overflow: hidden;
  118. }
  119. .oScroll {
  120. overflow: scroll;
  121. }
  122. .oxScroll {
  123. overflow-x: scroll;
  124. }
  125. .oyScroll {
  126. overflow-y: scroll;
  127. }
  128. .fontWhite {
  129. color: #FFF;
  130. }
  131. .fontBlack {
  132. color: #333;
  133. }
  134. .mt10 {
  135. margin-top: 10px;
  136. }
  137. .contentDiv {
  138. padding: 10px 15px;
  139. box-sizing: border-box;
  140. background: #F5F5F5;
  141. }
  142. .login {
  143. .van-field__error-message {
  144. display: none;
  145. }
  146. }
  147. }
  148. }
  149. .red-name-title{
  150. color: #f00;
  151. font-size: 16px;
  152. // font-weight: bold;
  153. }