base.scss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. /**
  2. *全局变量
  3. */
  4. .app-content {
  5. // line-height: 1;
  6. background-color: #f5f5f5;
  7. min-height: 100vh;
  8. }
  9. .gray_txt {
  10. color: #999 !important;
  11. }
  12. .ph {
  13. font-size: 30px;
  14. color: gray;
  15. }
  16. .w100 {
  17. width: 100% !important;
  18. }
  19. .ml0{
  20. margin-left: 0 !important;
  21. }
  22. .text_main_color {
  23. color: #ff9000;
  24. }
  25. .underline {
  26. text-decoration: underline;
  27. }
  28. .separate_line {
  29. color: #999;
  30. margin: 0 16px;
  31. }
  32. .text_sub_com {
  33. color: #999;
  34. font-size: 24px;
  35. }
  36. .flex {
  37. display: -webkit-box;
  38. display: -webkit-flex;
  39. display: -ms-flexbox;
  40. display: flex;
  41. }
  42. .flex-v {
  43. -webkit-box-orient: vertical;
  44. -webkit-flex-direction: column;
  45. -ms-flex-direction: column;
  46. flex-direction: column;
  47. }
  48. .flex-rr {
  49. -webkit-box-orient: revert;
  50. -webkit-flex-direction: row-reverse;
  51. -ms-flex-direction: row-reverse;
  52. flex-direction: row-reverse;
  53. }
  54. .flex-vr {
  55. -webkit-box-orient: revert;
  56. -webkit-flex-direction: column-reverse;
  57. -ms-flex-direction: column-reverse;
  58. flex-direction: column-reverse;
  59. }
  60. .flex-pack-justify {
  61. -webkit-box-pack: justify;
  62. -webkit-justify-content: space-between;
  63. -ms-flex-pack: justify;
  64. justify-content: space-between;
  65. }
  66. .flex-pack-justify-center {
  67. -webkit-box-pack: center;
  68. -webkit-justify-content: center;
  69. -ms-flex-pack: center;
  70. justify-content: center;
  71. }
  72. .flex-pack-justify-start {
  73. -webkit-box-pack: start;
  74. -webkit-justify-content: start;
  75. -ms-flex-pack: flex-start;
  76. justify-content: flex-start;
  77. }
  78. .flex-pack-justify-end {
  79. -webkit-box-pack: end;
  80. -webkit-justify-content: end;
  81. -ms-flex-pack: flex-end;
  82. justify-content: flex-end;
  83. }
  84. .flex-pack-around {
  85. -webkit-justify-content: space-around;
  86. justify-content: space-around;
  87. }
  88. .flex-align-center {
  89. -webkit-box-align: center;
  90. -webkit-align-items: center;
  91. -ms-flex-align: center;
  92. align-items: center;
  93. }
  94. .flex-align-end {
  95. -webkit-box-align: end;
  96. -ms-flex-align: end;
  97. -webkit-align-items: flex-end;
  98. align-items: flex-end;
  99. }
  100. .flex-wrap {
  101. -webkit-box-lines: multiple;
  102. -webkit-flex-wrap: wrap;
  103. -ms-flex-wrap: wrap;
  104. flex-wrap: wrap;
  105. }
  106. .flex1 {
  107. -webkit-box-flex: 1;
  108. /* OLD - iOS 6-, Safari 3.1-6 */
  109. -moz-box-flex: 1;
  110. /* OLD - Firefox 19- */
  111. -webkit-flex: 1;
  112. /* Chrome */
  113. -ms-flex: 1;
  114. /* IE 10 */
  115. flex: 1;
  116. /* NEW, Spec - Opera 12.1, Firefox 20+ */
  117. }