| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- /**
- *全局变量
- */
- .app-content {
- // line-height: 1;
- background-color: #f5f5f5;
- min-height: 100vh;
- }
- .gray_txt {
- color: #999 !important;
- }
- .ph {
- font-size: 30px;
- color: gray;
- }
- .w100 {
- width: 100% !important;
- }
- .ml0{
- margin-left: 0 !important;
- }
- .text_main_color {
- color: #ff9000;
- }
- .underline {
- text-decoration: underline;
- }
- .separate_line {
- color: #999;
- margin: 0 16px;
- }
- .text_sub_com {
- color: #999;
- font-size: 24px;
- }
- .flex {
- display: -webkit-box;
- display: -webkit-flex;
- display: -ms-flexbox;
- display: flex;
- }
- .flex-v {
- -webkit-box-orient: vertical;
- -webkit-flex-direction: column;
- -ms-flex-direction: column;
- flex-direction: column;
- }
- .flex-rr {
- -webkit-box-orient: revert;
- -webkit-flex-direction: row-reverse;
- -ms-flex-direction: row-reverse;
- flex-direction: row-reverse;
- }
- .flex-vr {
- -webkit-box-orient: revert;
- -webkit-flex-direction: column-reverse;
- -ms-flex-direction: column-reverse;
- flex-direction: column-reverse;
- }
- .flex-pack-justify {
- -webkit-box-pack: justify;
- -webkit-justify-content: space-between;
- -ms-flex-pack: justify;
- justify-content: space-between;
- }
- .flex-pack-justify-center {
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- -ms-flex-pack: center;
- justify-content: center;
- }
- .flex-pack-justify-start {
- -webkit-box-pack: start;
- -webkit-justify-content: start;
- -ms-flex-pack: flex-start;
- justify-content: flex-start;
- }
- .flex-pack-justify-end {
- -webkit-box-pack: end;
- -webkit-justify-content: end;
- -ms-flex-pack: flex-end;
- justify-content: flex-end;
- }
- .flex-pack-around {
- -webkit-justify-content: space-around;
- justify-content: space-around;
- }
- .flex-align-center {
- -webkit-box-align: center;
- -webkit-align-items: center;
- -ms-flex-align: center;
- align-items: center;
- }
- .flex-align-end {
- -webkit-box-align: end;
- -ms-flex-align: end;
- -webkit-align-items: flex-end;
- align-items: flex-end;
- }
- .flex-wrap {
- -webkit-box-lines: multiple;
- -webkit-flex-wrap: wrap;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
- }
- .flex1 {
- -webkit-box-flex: 1;
- /* OLD - iOS 6-, Safari 3.1-6 */
- -moz-box-flex: 1;
- /* OLD - Firefox 19- */
- -webkit-flex: 1;
- /* Chrome */
- -ms-flex: 1;
- /* IE 10 */
- flex: 1;
- /* NEW, Spec - Opera 12.1, Firefox 20+ */
- }
|