123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- /**app.wxss**/
- page {
- background-color: #f8f8f8;
- box-sizing: border-box;
- color: #333;
- font-size: 14px;
- }
- view {
- box-sizing: border-box;
- }
- .container {
- height: 100%;
- display: flex;
- flex-direction: column;
- box-sizing: border-box;
- font-size: 14px;
- color: #5a5a5a;
- }
- .page-foot {
- position: absolute;
- bottom: 30px;
- width: 100%;
- margin: 15px 0;
- text-align: center;
- font-size: 10px;
- color: #b0b0b0;
- }
- .border-bottom {
- border-bottom: solid 1px #e5e6e7;
- }
- .border-top {
- border-top: solid 1px #e5e6e7;
- }
- .no-border {
- border: none;
- }
- .loading {
- text-align: center;
- font-size: 12px;
- color: #999;
- margin-top: 20px;
- }
- .define-btn-kf {
- border: none;
- padding: 0;
- margin: 0;
- background-color: inherit;
- font-size: inherit;
- line-height: inherit;
- }
- .define-btn-kf::after {
- border: none;
- }
- .flex-row {
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .flex-between {
- justify-content: space-between;
- }
- .flex-around {
- justify-content: space-around;
- }
- .flex-start {
- justify-content: flex-start;
- }
- .flex-end {
- justify-content: flex-end;
- }
- .flex-column {
- display: flex;
- flex-direction: column;
- }
- .no-more {
- margin: 50px 0;
- font-size: 12px;
- color: #888;
- text-align: center;
- }
- .define-btn-kf {
- border: none;
- padding: 0;
- margin: 0;
- background-color: inherit;
- font-size: inherit;
- line-height: inherit;
- }
- .define-btn-kf::after {
- border: none;
- }
- .no-btn {
- border: none;
- background: none;
- padding: 0;
- line-height: 1;
- overflow: visible;
- }
- .no-btn::after {
- border: none;
- background: none;
- }
|