* {
    box-sizing: border-box;
}

html {
    font-size: calc(100vw / 7.5);
}

body {
    margin: 0;
    color: #333;
    background: #fff;
    font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
    font-size: .28rem;
}

body,
h1,
h2,
p,
ul,
li,
button,
input {
    padding: 0;
    margin: 0;
}

ul {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    border: 0;
    background: none;
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.page {
    width: 7.5rem;
    min-height: 100vh;
    margin: 0 auto;
    overflow: hidden;
    background: #fff;
}

/* ===== Header ===== */
.list-header {
    background: #fff;
}

.list-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .28rem .31rem .18rem .48rem;
}

.list-logo {
    display: flex;
    align-items: flex-end;
    gap: .12rem;
}

.list-logo .main-logo {
    width: 1.28rem;
    height: .68rem;
    object-fit: contain;
}

.list-logo label {
    display: inline-block;
    background: #0050a9;
    color: #fff;
    font-size: .28rem;
    padding: .08rem .3rem .08rem .24rem;
    border-radius: .35rem 0 .35rem 0;
    line-height: 1.5;
    white-space: nowrap;
    font-weight: bold;
}

.list-search {
    width: 3.04rem;
    height: .44rem;
    display: flex;
    align-items: center;
    border: .01rem solid #b8b8b8;
    background: #fff;
}

.list-search form {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
}

.list-search input {
    flex: 1;
    width: 100%;
    height: 100%;
    min-width: 0;
    padding-left: .15rem;
    color: #777;
    font-size: .24rem;
    line-height: .44rem;
    outline: none;
}

.list-search input::placeholder {
    color: #b4b4b4;
}

.list-search button {
    width: .52rem;
    height: .42rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-search button img {
    width: .26rem;
    height: .26rem;
}

/* ===== Navigation ===== */
.list-nav {
    overflow: hidden;
    padding: .16rem 0;
    color: #fff;
    background: #0059ac;
    line-height: .5rem;
}

.list-nav a {
    float: left;
    width: 25%;
    text-align: center;
    white-space: nowrap;
    font-size: .28rem;
}

.list-nav a.active {
	font-weight: 700;
	color: #fff;
	background: #1c90fd;
	border-radius: .06rem;
	padding: 0px 3px;
}

/* ===== Main Content ===== */
.list-main {
	padding: .2rem;
	width: 100%;
	margin: 0 auto;
}

/* ===== Banner ===== */
.list-banner-swiper {
    width: 6.9rem;
    overflow: hidden;
}

.hero-card {
    position: relative;
    overflow: hidden;
}

.hero-card img {
    width: 100%;
    height: 3.88rem;
    object-fit: cover;
}

.hero-card p {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: .34rem .28rem .24rem;
    color: #fff;
    font-size: .28rem;
    line-height: .34rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    background: linear-gradient(to top, rgba(0, 0, 0, .72), rgba(0, 0, 0, 0));
}

.list-banner-swiper .swiper-pagination {
    position: static;
    display: flex;
    justify-content: center;
    gap: .08rem;
    margin: .18rem 0 .28rem;
    line-height: 1;
}

.list-banner-swiper .swiper-pagination-bullet {
    width: .1rem;
    height: .1rem;
    margin: 0 !important;
    border-radius: 50%;
    background: #9ec3e7;
    opacity: 1;
}

.list-banner-swiper .swiper-pagination-bullet-active {
    width: .2rem;
    border-radius: .1rem;
    background: #0059ac;
}

/* ===== Article List ===== */
.article-list {
    padding: .1rem 0 .1rem 0rem;
}

.list-item {
    border-bottom: .01rem solid #ebebeb;
    display: flex;
    justify-content: space-between;
    padding: 0 0 .28rem;
    margin-bottom: .25rem;
}

.list-item .thumb {
    width: 2.26rem;
    height: 1.71rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: .3rem;
    flex-shrink: 0;
}

.list-item .thumb img {
    width: 2.26rem;
    height: 1.71rem;
    object-fit: cover;
    border-radius: .08rem;
}

.list-info {
    flex: 1;
}

.list-item h2 {
    color: #333;
    font-size: .32rem;
    line-height: .46rem;
    font-weight: 400;
}

.list-item h2 a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .16rem;
    margin-top: .2rem;
    min-width: 0;
}

.meta-row span {
    min-width: 0;
    color: #aaa;
    font-size: .24rem;
    line-height: .36rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* ===== Section Header ===== */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .05rem 0 .1rem;
    border-bottom: .02rem solid #0059ac;
    margin-bottom: .12rem;
}

.section-header h3 {
    font-size: .34rem;
    color: #0059ac;
    font-weight: 700;
    line-height: .5rem;
    padding-left: .18rem;
    border-left: .06rem solid #0059ac;
    margin: 6px 0px;
}

.section-header .more-link {
    color: #b2b2b2;
    font-size: .26rem;
    white-space: nowrap;
}

.section-header .more-link:hover {
    color: #0059ac;
}

/* ===== Pagination ===== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .06rem;
    padding: .3rem 0 .4rem;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: .48rem;
    height: .48rem;
    font-size: .24rem;
    border-radius: .04rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.pagination a {
    color: #333;
    background: #f5f5f5;
}

.pagination a:hover {
    color: #fff;
    background: #0059ac;
}

.pagination .prev,
.pagination .next {
    padding: 0 .12rem;
    color: #666;
    white-space: nowrap;
    flex-shrink: 0;
}

.pagination .page_current {
    color: #fff;
    background: #0059ac;
}

.pagination .ellipsis {
    color: #999;
    background: none;
    min-width: auto;
    padding: 0 .04rem;
}



/* ===== Column Title ===== */
.column-title {
    padding: .2rem 0 .2rem .18rem;
    margin-bottom: .2rem;
    font-size: .36rem;
    color: #0059ac;
    font-weight: 700;
    border-left: .06rem solid #0059ac;
    line-height: .5rem;
}

/* ===== Search Info ===== */
.search-info {
    padding: .2rem .3rem;
    background: #f9f9f9;
    margin-bottom: .2rem;
    font-size: .26rem;
    color: #666;
    border-radius: .04rem;
}

.search-info strong {
    color: #0059ac;
}

.search-page-box {
    padding: .2rem .3rem;
    background: #fff;
    border-bottom: .01rem solid #ebebeb;
}

.search-page-box form {
    display: flex;
}

.search-page-box input {
    flex: 1;
    height: .6rem;
    padding: 0 .2rem;
    border: .01rem solid #b8b8b8;
    border-right: none;
    font-size: .26rem;
    outline: none;
    border-radius: .04rem 0 0 .04rem;
}

.search-page-box input::placeholder {
    color: #b4b4b4;
}

.search-page-box button {
    height: .6rem;
    padding: 0 .3rem;
    background: #0059ac;
    color: #fff;
    font-size: .26rem;
    border-radius: 0 .04rem .04rem 0;
    white-space: nowrap;
}

.no-result,
.search-tip {
    padding: .8rem .3rem;
    text-align: center;
    color: #999;
    font-size: .28rem;
}

/* ===== Footer ===== */
.footer {
    padding: .46rem .2rem .5rem;
    color: rgba(255, 255, 255, .55);
    background: #0059ac;
    text-align: center;
}

.footer p {
    font-size: .25rem;
    line-height: .46rem;
}

/* ===== PC Responsive ===== */
@media (min-width: 46.9375em) {
    html {
        font-size: 625%;
    }

    body {
        background: #eee;
    }
}
