/* 全局重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", sans-serif;
}
body {
    background: #f5f7fa;
    color: #333;
    line-height: 1.6;
}
a {
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}
a:hover {
    color: #00a8e2;
}
ul, li {
    list-style: none;
}
img {
    max-width: 100%;
    vertical-align: middle;
    border: none;
}
.container {
    width: 1200px;
    margin: 0 auto;
}
@media (max-width: 1200px) {
    .container {
        width: 100%;
        padding: 0 15px;
    }
}

/* 头部 */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 99;
}
.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}
.logo img {
    height: 60px;
}
.search-box {
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    border-radius: 50px;
    overflow: hidden;
    width: 380px;
}
.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 15px;
    height: 42px;
    font-size: 14px;
}
.search-btn {
    width: 50px;
    height: 42px;
    background: #00a8e2;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.search-btn img {
    width: 18px;
}
.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}
.consult {
    display: flex;
    align-items: center;
    gap: 8px;
}
.consult img {
    width: 24px;
}
.consult-tel {
    font-size: 18px;
    font-weight: bold;
    color: #00a8e2;
}

/* 导航 */
.nav-list {
    display: flex;
    align-items: center;
}
.nav-link {
    display: block;
    color: #fff;
    padding: 15px 25px;
    font-size: 16px;
}
.nav-link:hover, .nav-link.active {
    background: #008ec2;
}

/* 面包屑 */
.breadcrumb {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}
.breadcrumb a {
    color: #666;
}
.breadcrumb span {
    color: #999;
    margin: 0 5px;
}
.breadcrumb .current {
    color: #00a8e2;
    font-weight: 500;
}

/* 内容布局 */
.content-wrap {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}
.main-content {
    flex: 1;
}
.sidebar {
    width: 320px;
}

/* 分类标签 */
.tab-nav {
    background: #fff;
    border-radius: 10px;
    padding: 0 20px;
    margin-bottom: 20px;
    display: flex;
    gap: 30px;
    height: 50px;
    align-items: center;
}
.tab-nav a {
    font-size: 16px;
    color: #666;
    position: relative;
}
.tab-nav a.active {
    color: #00a8e2;
    font-weight: bold;
}
.tab-nav a.active::after {
    content: "";
    width: 100%;
    height: 3px;
    background: #00a8e2;
    position: absolute;
    bottom: -16px;
    left: 0;
    border-radius: 3px;
}

/* 资讯列表 */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.news-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 15px;
    transition: 0.3s;
}
.news-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}
.news-img {
    width: 200px;
    height: 130px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}
.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-info {
    flex: 1;
    padding: 0 20px;
}
.news-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}
.news-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-meta {
    font-size: 12px;
    color: #999;
    display: flex;
    gap: 20px;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 40px 0;
}
.page-item a {
    display: block;
    padding: 8px 14px;
    border: 1px solid #eee;
    border-radius: 4px;
    color: #666;
    font-size: 14px;
}
.page-item a.active, .page-item a:hover {
    background: #00a8e2;
    color: #fff;
    border-color: #00a8e2;
}

/* 侧边栏 */
.widget {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}
.widget-title {
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 12px;
    border-bottom: 2px solid #00a8e2;
    margin-bottom: 15px;
    position: relative;
}
.widget-title::after {
    content: "";
    width: 60px;
    height: 2px;
    background: #00a8e2;
    position: absolute;
    bottom: -2px;
    left: 0;
}
.hot-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}
.hot-list li:last-child {
    border-bottom: none;
}
.hot-list a {
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hot-list a:hover {
    color: #00a8e2;
}

.side-news li {
    margin-bottom: 12px;
}
.side-news img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 8px;
}
.side-news h3 {
    font-size: 14px;
    font-weight: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 底部 */
.footer {
    background: #2a3340;
    padding: 40px 0 20px;
    color: #ccc;
    margin-top: 50px;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #3a4452;
}
.footer-col h3 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
}
.footer-link {
    display: block;
    color: #ccc;
    margin-bottom: 8px;
    font-size: 14px;
}
.footer-link:hover {
    color: #00a8e2;
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 13px;
    color: #999;
}
.footer-bottom p {
    margin-bottom: 8px;
}

/* 全局重置 */
* {margin:0;padding:0;box-sizing:border-box;font-family:"Microsoft YaHei",sans-serif;}
body {background:#f5f7fa;color:#333;line-height:1.8;}
a {text-decoration:none;color:#333;transition:all .3s;}
a:hover {color:#00a8e2;}
ul,li {list-style:none;}
img {max-width:100%;vertical-align:middle;border:none;}
.container {width:1200px;margin:0 auto;}
@media (max-width:1200px){.container{width:100%;padding:0 15px;}}

/* 头部 */
.header {background:#fff;box-shadow:0 2px 10px rgba(0,0,0,0.05);position:sticky;top:0;z-index:99;}
.header-main {display:flex;align-items:center;justify-content:space-between;height:90px;}
.logo img {height:60px;}
.search-box {display:flex;align-items:center;border:1px solid #eee;border-radius:50px;overflow:hidden;width:380px;}
.search-input {flex:1;border:none;outline:none;padding:0 15px;height:42px;font-size:14px;}
.search-btn {width:50px;height:42px;background:#00a8e2;border:none;display:flex;align-items:center;justify-content:center;cursor:pointer;}
.search-btn img {width:18px;}
.contact-info {display:flex;align-items:center;gap:20px;}
.consult {display:flex;align-items:center;gap:8px;}
.consult img {width:24px;}
.consult-tel {font-size:18px;font-weight:bold;color:#00a8e2;}

/* 导航 */
.nav-list {display:flex;align-items:center;}
.nav-link {display:block;color:#fff;padding:15px 25px;font-size:16px;}
.nav-link:hover,.nav-link.active {background:#008ec2;}

/* 面包屑 */
.breadcrumb {background:#fff;padding:15px 0;border-bottom:1px solid #eee;margin-bottom:20px;font-size:14px;color:#666;}
.breadcrumb a {color:#666;}
.breadcrumb span {margin:0 5px;color:#999;}
.breadcrumb .current {color:#00a8e2;font-weight:500;}

/* 内容布局 */
.content-wrap {display:flex;justify-content:space-between;gap:25px;}
.main {flex:1;}
.sidebar {width:320px;}

/* 文章详情 */
.article-card {background:#fff;border-radius:12px;padding:40px;box-shadow:0 2px 12px rgba(0,0,0,0.04);margin-bottom:25px;}
.article-title {font-size:24px;line-height:1.5;font-weight:bold;margin-bottom:15px;color:#222;}
.article-meta {font-size:14px;color:#999;margin-bottom:30px;display:flex;gap:20px;}
.article-content {font-size:16px;line-height:1.9;color:#444;}
.article-content p {margin-bottom:18px;}
.article-content strong {color:#00a8e2;font-weight:bold;}
.article-content img {display:block;margin:20px auto;border-radius:8px;max-width:100%;}
.article-content table {width:100%;border-collapse:collapse;margin:20px 0;background:#fafbfc;}
.article-content th,.article-content td {padding:12px;text-align:center;border:1px solid #eee;}
.article-content th {background:#00a8e2;color:#fff;}

/* 推荐阅读 */
.recommend {background:#fff;border-radius:12px;padding:25px;margin-bottom:25px;}
.recommend-title {font-size:16px;font-weight:bold;margin-bottom:15px;color:#333;padding-left:10px;border-left:4px solid #00a8e2;}
.recommend-list li {padding:10px 0;border-bottom:1px dashed #eee;}
.recommend-list li:last-child {border:none;}
.recommend-list a {font-size:15px;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;overflow:hidden;}

/* 上下篇 */
.page-box {background:#fff;border-radius:12px;padding:20px;}
.page-box li {font-size:15px;margin:8px 0;color:#666;}
.page-box a {color:#00a8e2;}

/* 侧边栏 */
.widget {background:#fff;border-radius:12px;padding:20px;margin-bottom:20px;}
.widget-title {font-size:16px;font-weight:bold;padding-bottom:12px;border-bottom:2px solid #00a8e2;margin-bottom:15px;}
.hot-list li {padding:10px 0;border-bottom:1px dashed #eee;}
.hot-list li:last-child {border-bottom:none;}
.hot-list a {font-size:14px;display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;overflow:hidden;}
.hos-list {display:flex;flex-direction:column;gap:15px;}
.hos-item {text-align:center;}
.hos-item img {width:100%;height:160px;object-fit:cover;border-radius:8px;margin-bottom:10px;}
.hos-item h3 {font-size:14px;margin-bottom:8px;}
.zxBtn {background:#00a8e2;color:#fff;font-size:12px;padding:5px 12px;border-radius:4px;display:inline-block;}

/* 底部 */
.footer {background:#2a3340;padding:40px 0 20px;color:#ccc;margin-top:50px;}
.footer-top {display:flex;justify-content:space-between;flex-wrap:wrap;gap:30px;padding-bottom:30px;border-bottom:1px solid #3a4452;}
.footer-col h3 {color:#fff;font-size:16px;margin-bottom:15px;}
.footer-link {display:block;color:#ccc;margin-bottom:8px;font-size:14px;}
.footer-link:hover {color:#00a8e2;}
.footer-bottom {text-align:center;padding-top:20px;font-size:13px;color:#999;}
.footer-bottom p {margin-bottom:8px;}