/* app */
.app { display: flex; flex-direction: column; height: 100vh; }

/* header */
.header { background-color: #10568a; position: relative; box-shadow: 0 .08rem .24rem rgba(16, 86, 138, .5); z-index: 1; }
.header::before { background: url('/images/icon_top_furonghua.png') center no-repeat; background-size: contain; display: block; content: ''; height: 2rem; }
/* logo */
.header > h1 { background: url('/images/logo.png') center no-repeat; background-size: contain; position: absolute; top: .48rem; left: .24rem; width: 5.03rem; height: 1rem; }
/* navi */
.header > .navi { background-color: #fff; display: flex; justify-content: space-between; align-items: center; padding: 0 .24rem; font-size: .32rem; height: .9rem; color: #666; overflow-x: auto; }
.header > .navi > a { text-align: center; width: .8rem; }
.header > .navi > a.selected { font-weight: bold; color: #10568a; }

/* main */
.main { flex: 1; min-height: 0; overflow-y: auto; }

/* footer */
.footer { background-color: #f0f0f0; padding: 0.48rem 0.24rem; text-align: center; font-size: .24rem; width: 100%; color: #666; box-sizing: border-box; }
.footer > p ~ p { margin: .12rem 0 0; }
.footer > p > a { display: flex; justify-content: center; align-items: center; color: #333; }
.footer .space { margin: 0 0 0 .12rem; color: #333; }


/* load more */
a[load-more] { background-color: #f9f9f9; display: block; text-align: center; font-size: .24rem; line-height: .8rem; color: #666; }

/* ellipsis */
.ellipsis { white-space: nowrap; text-overflow: ellipsis; overflow: hidden; }
.ellipsis-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
