123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- @import url(./variables.less);
- @import url(./mixins.less);
- html,
- body {
- font-family: Avenir, Helvetica, Arial, sans-serif;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- height: 100%;
- overflow-y: hidden;
- -webkit-overflow-scrolling: touch;
- color: @text-common-color;
- background-color: @bg-gary;
- }
- .van-field__control{
- padding-top: 5px !important;
- }
- #app {
- height: 100%;
- overflow-y: auto;
- -webkit-overflow-scrolling: touch;
- position: relative;
- }
- input,
- textarea {
- font-size: 12px;
- }
- // reset base.
- .container {
- padding: 0 6px;
- }
- .p-h-12 {
- padding-left: 12px;
- padding-right: 12px;
- }
- .btnbox {
- width: 100%;
- font-size: @text-common-size;
- line-height: 40px;
- text-align: center;
- border-radius: 9px;
- background-color: @main-color;
- color: @white;
- }
- .fajc () {
- &-aic {
- align-items: center;
- }
- &-acc {
- align-content: center;
- }
- &-jcsp {
- justify-content: space-between;
- }
- &-jcsa {
- justify-content: space-around;
- }
- &-jic {
- justify-items: center;
- }
- &-jcc {
- justify-content: center;
- }
- }
- .flex {
- display: flex;
- &-row {
- flex-direction: row;
- .fajc()
- }
- &-col {
- flex-direction: column;
- .fajc()
- }
- &-0shrink {
- flex-shrink: 0;
- }
- }
- // 单行省略号
- .ellipsis {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- // 双行省略号
- .ellipsis-2rows {
- text-overflow: -o-ellipsis-lastline;
- .ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- white-space: initial;
- line-clamp: 2;
- -webkit-box-orient: vertical;
- }
- .clearboth {
- &::after {
- content: "";
- display: block;
- clear: both;
- }
- }
- .btn-container {
- margin-top: 10px;
- padding: 10px 14px 40px;
- box-sizing: border-box;
- background-color: #FFFFFF;
- .btn-span {
- text-align: center;
- height: 41px;
- background: #3290C4;
- border-radius: 11px;
- font-size: 16px;
- font-weight: 400;
- color: #FFFFFF;
- line-height: 41px;
- }
- }
- .m {
- &-t {
- &-10 {
- margin-top: 10px;
- }
- }
- }
|