index.less 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. @import url(./variables.less);
  2. @import url(./mixins.less);
  3. html,
  4. body {
  5. font-family: Avenir, Helvetica, Arial, sans-serif;
  6. -webkit-font-smoothing: antialiased;
  7. -moz-osx-font-smoothing: grayscale;
  8. height: 100%;
  9. overflow-y: hidden;
  10. -webkit-overflow-scrolling: touch;
  11. color: @text-common-color;
  12. background-color: @bg-gary;
  13. }
  14. .van-field__control{
  15. padding-top: 5px !important;
  16. }
  17. #app {
  18. height: 100%;
  19. overflow-y: auto;
  20. -webkit-overflow-scrolling: touch;
  21. position: relative;
  22. }
  23. input,
  24. textarea {
  25. font-size: 12px;
  26. }
  27. // reset base.
  28. .container {
  29. padding: 0 6px;
  30. }
  31. .p-h-12 {
  32. padding-left: 12px;
  33. padding-right: 12px;
  34. }
  35. .btnbox {
  36. width: 100%;
  37. font-size: @text-common-size;
  38. line-height: 40px;
  39. text-align: center;
  40. border-radius: 9px;
  41. background-color: @main-color;
  42. color: @white;
  43. }
  44. .fajc () {
  45. &-aic {
  46. align-items: center;
  47. }
  48. &-acc {
  49. align-content: center;
  50. }
  51. &-jcsp {
  52. justify-content: space-between;
  53. }
  54. &-jcsa {
  55. justify-content: space-around;
  56. }
  57. &-jic {
  58. justify-items: center;
  59. }
  60. &-jcc {
  61. justify-content: center;
  62. }
  63. }
  64. .flex {
  65. display: flex;
  66. &-row {
  67. flex-direction: row;
  68. .fajc()
  69. }
  70. &-col {
  71. flex-direction: column;
  72. .fajc()
  73. }
  74. &-0shrink {
  75. flex-shrink: 0;
  76. }
  77. }
  78. // 单行省略号
  79. .ellipsis {
  80. overflow: hidden;
  81. text-overflow: ellipsis;
  82. white-space: nowrap;
  83. }
  84. // 双行省略号
  85. .ellipsis-2rows {
  86. text-overflow: -o-ellipsis-lastline;
  87. .ellipsis;
  88. display: -webkit-box;
  89. -webkit-line-clamp: 2;
  90. white-space: initial;
  91. line-clamp: 2;
  92. -webkit-box-orient: vertical;
  93. }
  94. .clearboth {
  95. &::after {
  96. content: "";
  97. display: block;
  98. clear: both;
  99. }
  100. }
  101. .btn-container {
  102. margin-top: 10px;
  103. padding: 10px 14px 40px;
  104. box-sizing: border-box;
  105. background-color: #FFFFFF;
  106. .btn-span {
  107. text-align: center;
  108. height: 41px;
  109. background: #3290C4;
  110. border-radius: 11px;
  111. font-size: 16px;
  112. font-weight: 400;
  113. color: #FFFFFF;
  114. line-height: 41px;
  115. }
  116. }
  117. .m {
  118. &-t {
  119. &-10 {
  120. margin-top: 10px;
  121. }
  122. }
  123. }