/* --- 全局重置 --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "SourceHanSans"; /* 自定义字体名称（可任意命名） */
    src: url("../fonts/SourceHanSansSC-Light.woff2") format("woff2"); /* 优先加载woff2 */
    font-weight: 400;
    font-style: normal; /* 正常样式（非斜体） */
    font-display: swap; /* 可选：优化加载体验，先显示降级字体，字体加载完成后替换 */
}

/* 2. 可选：定义粗体思源黑体 */
@font-face {
    font-family: "SourceHanSans-Regular"; /* 与常规字体使用相同自定义名称，通过font-weight区分 */
    src: url("../fonts/SourceHanSansCN-Regular.woff2") format("woff2");
    font-weight: 700; /* 粗体字重 */
    font-style: normal;
}

/* 2. 可选：定义粗体思源黑体 */
@font-face {
    font-family: "SourceHanSans"; /* 与常规字体使用相同自定义名称，通过font-weight区分 */
    src: url("../fonts/SourceHanSansSC-Bold.woff2") format("woff2");
    font-weight: 700; /* 粗体字重 */
    font-style: normal;
}

body {
    /* font-family: "Source Han Sans SC", "Noto Sans CJK SC", "Microsoft YaHei", sans-serif; */
    font-family: 'SourceHanSans', sans-serif;
    background-color: #fff;
    color: #000;
    font-size: 14px;
    overflow-x: auto;
    /* 允许横向滚动，因为是固定宽 */
}

a {
    text-decoration: none;
    color: #000;
}

a:hover {
    color: #d73a27;
}

ul,
li {
    list-style: none;
}


/* --- 工具类 --- */
.w-1400 {
    width: 1400px;
    margin: 0 auto;
    position: relative;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-col {
    display: flex;
    flexdirection: column;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mb-10 {
    margin-bottom: 10px;
}

/* 图片占位符 */
.img-placeholder {
    background-color: #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #777;
    font-size: 12px;
    overflow: hidden;
    position: relative;
}

/* 颜色变量 */
:root {
    --primary-green: #005e36;
    --primary-red: #d73a27;
    --light-bg: #fff;
    --border-color: #e0e0e0;
}

/* --- 顶部 Header --- */
.top-bar {
    height: 40px;
    background: #fff;
    border-bottom: 1px solid #eee;
    line-height: 40px;
}

.top-bar .content {
    display: flex;
    justify-content: flex-end;
}

.top-bar .login-box a {
    font-size: 22px;
    color: #000;
    font-weight: bold; /* 0124 修改 */
}

.hero-banner {
    height: 180px;
    width: 100%;
    background: url("about:blank") no-repeat center;
    /* 模拟大背景 */
    background-size: cover;
    background-color: #cce0d8;
    /* 备用色 */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #005e36;
    font-size: 30px;
    font-weight: bold;
    text-shadow: 1px 1px 2px #fff;
}

/* --- 导航栏 --- */
.nav-bar {
    height: 60px; /* 0124 修改 */
    background-color: #006A46;
    overflow: hidden;
    margin-top: -2px;
}

.nav-list {
    display: flex;
    justify-content: space-around;
}

.nav-list a {
    display: block;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    padding: 0 20px;
    line-height: 60px;/* 0124 修改 */
}

.nav-list a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* --- 头条区域 --- */
.headline-section {
    padding: 20px 0 10px;
    text-align: center;
    background: #fff;
}

.main-title,
.main-title a {
    color: #FE2423;
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 10px;
    font-family: 'SourceHanSans-Regular';
}


.sub-links {
    position: relative;
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
    border-bottom: 4px solid #ACD2C5;
}

.sub-links a {
    display: block;
    margin: 0 20px;
    font-size: 24px;
    color: #888888;
}
.sub-links .more {
    position: absolute;
    right: 0;
    color: #006A47;
}

/* --- 顶部新闻布局 (左图右文) --- */
.top-news-container {
    display: flex;
    gap: 20px;
    background: #fff;
}

/* --- 顶部新闻轮播样式 --- */
.top-news-slider {
    position: relative;
    width: 750px;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 530px;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.slider-item.active {
    opacity: 1;
    visibility: visible;
}

.slider-item a {
    position: relative;
    display: block;
    width: 750px;
    height: 530px;
}

.slider-item a .info {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 70px;
    background-color: rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s ease;
}

.slider-item a .tit {
    font-size: 18px;
    color: #fff;
    line-height: 70px;
    padding-left: 20px;
    transition: transform 0.3s ease;
}

.slider-item img {
    display: block;
    width: 750px;
    height: 530px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.slider-item:hover img {
    transform: scale(1.02);
}

.slider-item:hover a .info {
    background-color: rgba(0, 0, 0, 0.7);
}


/* 标签页切换功能样式 */
.tab-content-wrapper {
    position: relative;
    min-height: 400px;
}

.tab-pane {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-pane.active {
    display: block;
    opacity: 1;
}

.tab-btn {
    transition: all 0.3s ease;
}

.tab-btn:hover {
    opacity: 0.8;
}

.tab-btn.active {
    height: 80px;
    border-bottom: 4px solid #006A46;
}

/* 导航按钮样式 */
.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.nav-btn {
    pointer-events: auto;
    width: 40px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    opacity: 0.8;
    /* 修改为始终可见 */
}

.nav-btn:hover {
}

.nav-btn .arrow {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

.nav-btn:focus {
    outline: 2px solid #F67E63;
    outline-offset: 2px;
}

.tab-box {
    position: absolute;
    right: 0;
    bottom: 30px;
    z-index: 99;
    display: flex;
    justify-content: flex-end;
}

.tab-box span {
    display: block;
    width: 40px;
    height: 5px;
    background-color: rgba(255, 255, 255, 1);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.tab-box span:hover,
.tab-box span.active {
    background-color: #F67E63;
    transform: scaleY(1.5);
}

.tab-box span:focus {
    outline: 2px solid #F67E63;
    outline-offset: 2px;
}

.top-news-list {
    flex: 1;
}

.top-news-list .section-header-common {
    border-bottom: 4px solid #9FC8BA;
    overflow: hidden;
}

.top-news-list .section-header-common .title {
    margin-left: 0;
}

.top-news-list .section-header-common .title span {
    float: left;
    width: 220px;
    font-size: 28px;
    color: #006A46;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding-left: 20px;
}

.top-news-list .section-header-common .title span img {
    position: relative;
    top: 4px;
    margin-right: 10px;
}

.top-news-list .section-header-common .title .active {
    height: 60px;
    overflow: hidden;
    line-height: 100px;
    border-bottom: 4px solid #006A46;
    background: url(../../img/website/image/active_03.png) left top no-repeat;
    color: #FE2423;
}

.top-news-list .section-header-common .more {
    background: linear-gradient(120deg, #fff 0%, #fff 40%, #C8E6DC 40%, #C8E6DC 100%);
}

.news-header {
    border-bottom: 2px solid #006A46;
    display: flex;
    justify-content: space-between;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.news-header h3 {
    color: #006A46;
    font-size: 20px;
}

.news-item {
    display: flex;
    justify-content: space-between;
    line-height: 64px;
    border-bottom: 2px solid #eee;
    font-size: 16px;
}

.news-item a {
    display: flex;
    justify-content: space-between;
    width: 100%;
    line-height: 62px;
}

.news-item a .tit {
    font-size: 22px;
    color: #000;
}

.news-item .date {
    color: #999;
    font-size: 18px;
}

/* --- 三个横幅广告 --- */
.banner-row-3 {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
}

.banner-row-3 .banner-item {
    width: 460px;
    height: 80px;
}

/* --- 常用链接 (红色图标栏) --- */

/* --- 主内容两栏布局 --- */
.main-split {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

.left-panel {
    width: 930px;
}

.right-panel {
    width: 430px;
}

/* 通用板块头部 */
.section-header {
    background-color: #006A46;
    color: #fff;
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: bold;
}

.section-header .more {
    font-size: 12px;
    font-weight: normal;
    color: #fff;
}

/* 复杂的部门动态网格 */
.unit-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
}

.unit-block {
    margin-bottom: 10px;
}

.sub-header {
    height: 60px;
    border-bottom: 3px solid #006A46;
    padding-left: 10px;
    font-size: 18px;
    color: #006A46;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    line-height: 60px;
}

.sub-header span {
    font-size: 26px;
    color: #006633;
    font-family: 'SourceHanSans-Regular';
}

.sub-more {
    font-size: 20px;
    color: #006633;
}

.img-text-mix a {
    display: flex;
    margin-bottom: 10px;
}

.img-text-mix .thumb {
    width: 200px;
    height: 120px;
    flex-shrink: 0;
}

.img-text-mix .desc {
    margin-left: 10px;
    flex: 1;
}

.img-text-mix .desc .tit {
    display: block;
    height: 80px;
    font-size: 22px;
    color: #006A46;
    margin-bottom: 5px;
    font-family: 'SourceHanSans-Regular';
}

.img-text-mix .desc .time {
    display: block;
    font-size: 22px;
    color: #999;
    line-height: 1.5;
    text-align: right;
}

.text-list li {
    height: 50px;
    font-size: 14px;
    line-height: 24px;
    color: #555;
    display: flex;
    justify-content: space-between;
    line-height: 50px;
    border-bottom: 1px solid #eee;
}

.text-list li a {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    line-height: 50px;
    overflow: hidden;
    font-size: 20px;
    color: #000;
}

.text-list li a .title .icon {
    display: inline-block;
    width: 26px;
    height: 26px;
    font-size: 24px;
    color: #CAE4DC;
    position: relative;
    top: 4px;
    background: url(../../img/website/image/icons-right.png) center center no-repeat;
    background-size: 26px 26px;
}

.text-list li a .txt {
    position: relative;
    left: -8px;
}

.text-list li a .time {
    font-size: 22px;
    color: #999;
}

.unit-grid .news-img {
    display: block;
    width: 200px;
    height: 120px;
}

/* 公告和下载 */
.right-box {
    background: #fff;
    margin-bottom: 20px;
    border: 1px solid #eee;
}

.notice-list {
    padding: 10px 15px;
}

.notice-list li {
    line-height: 55px;
    border-bottom: 1px dashed #939393;
    display: flex;
    align-items: center;
}

.notice-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.notice-list li a .title {
    font-size: 20px;
    color: #000;
    display: flex;
    height: 50px;
    justify-content: space-between;
    align-items: center;
}
.notice-list li a .title img {
    margin-right: 6px;
}

.notice-list li a .time {
    font-size: 18px;
    color: #B6B6B6;
}

.download-list li {
    border-bottom: 1px dashed #989898;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 50px;
}

.download-list li a {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.download-list li a .title {
    font-size: 20px;
    color: #000;
}

.download-list li a .icon {
    display: block;
    width: 30px;
}

.ad-list-six> :nth-child(n + 4) {
    margin-top: 12px;
}

/* --- 兵情直通车 --- */
.item-suggestions {
    display: flex;
    height: 188px;
    background-color: #C8E6DC;
    margin-top: 25px;
}

.item-suggestions .section-header {
    width: 220px;
    height: 188px;
    background-color: #006A46;

}

.item-suggestions .section-header .title {
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 30px;
    line-height: 48px;
    font-weight: bold;
    text-align: center;
    padding-top: 42px;

}

.item-suggestions .list {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: space-between;
    padding: 0 100px;
}

.item-suggestions .list a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.item-suggestions .list a span {
    display: block;
    padding-top: 5px;
    font-size: 24px;
    color: #006A46;
    font-weight: bold;
}

/* --- 榜样风采 --- */
.model-section {
    margin-top: 25px;
}

/* 0124 修改 */
.model-list {
    display: flex;
}

.model-item {
    width: 220px;
    text-align: center;
}

.model-item a img {
    display: block;
    width: 220px;
    height: 285px;
    border: 1px solid #BAC8B1;
}

.model-item a span {
    display: block;
    font-size: 22px;
    color: #000;
}

.model-img {
    width: 100%;
    height: 180px;
    margin-bottom: 10px;
}

.model-list a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.model-list a span {
    display: block;
    padding-top: 5px;
    font-size: 22px;
    color: #000;
}


/* --- 兵悦光影 (底部图片) --- */
.gallery-grid {
    width: 100%;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}

.gallery-grid .left-con {
    float: left;
    width: 750px;
}
.gallery-grid .left-con ul {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}

.gallery-grid .left-con li {
    margin-left: 20px;
    margin-bottom: 20px;
}

.gallery-grid .left-con li a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}
.gallery-grid .left-con li a img {
    display: block;
    width: 305px;
    height: 180px;
}

.gallery-grid .left-con li a .tit {
    display: block;
    width: 100%;
    height: 30px;
    line-height: 40px;
    font-size: 20px;
    color: #000;
    text-align: center;
}
/*.gallery-grid .left-con .it-01 {
    width: 100%;
    overflow: hidden;
}
.gallery-grid .left-con .it-01 .rt {
    float: right;
}
.gallery-grid .left-con .it-01 .rt img {
    display: block;
}
.gallery-grid .left-con .it-02 {
    width: 100%;
    overflow: hidden;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
}
.gallery-grid .left-con .it-02 img {
    display: block;
    width: 240px;
    height: 150px;
}
.gallery-grid .left-con .it-02 img:nth-child(2) {
    margin: 0 14px;
}*/

.gallery-grid .right-con {
    float: right;
    width: 650px;
}
.gallery-grid .right-con ul {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}

.gallery-grid .right-con li {
    margin-left: 20px;
    margin-bottom: 20px;
}

.gallery-grid .right-con li a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-grid .right-con li a::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -38px;
    margin-top: -38px;
    display:block;
    width: 76px;
    height: 76px;
    background: url(../../img/website/image/play-icon.png) no-repeat;
    background-size: cover;
}

.gallery-grid .right-con li a img {
    display: block;
    width: 305px;
    height: 180px;
}

.gallery-grid .right-con li a .tit {
    display: block;
    width: 100%;
    height: 30px;
    line-height: 40px;
    font-size: 20px;
    color: #000;
    text-align: center;
}

/* --- 底部 --- */
.footer .w-1400 {
    background-color: #DBEEE8;
}

.footer .left-con {
    width: 220px;
    padding: 0 20px;
    padding-top: 100px;
}

.footer .left-con h4 {
    color: #006A46;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 30px;
}

.footer .tel {
    font-size: 18px;
    color: #000;
    margin-top: 30px;
}

.footer-links {
    flex: 1;
    border-left: 2px solid #969897;
}

.link-col {
    padding: 20px;
    border-top: 2px solid #969897;
    display: flex;
}

.link-col:nth-child(1) {
    border-top: 0;
}

.link-col h4 {
    width: 240px;
    font-size: 16px;
    font-weight: 600;
    padding-top: 10px;
    padding-left: 20px;
}

.link-col .list {
    display: flex;
    flex-wrap: wrap;
}

/* 修改 20260124 */
.link-col .list a {
    float: left;
    display: block;
    font-size: 18px;
    color: #000;
    line-height: 30px;
    margin-right: 40px;
}

/* --- 悬浮对联广告 --- */
.couplet {
    position: fixed;
    top: 100px;
    width: 215px;
    height: 800px;
    background: #FE2423;
    color: #000;
    display: none; /* 默认隐藏，滚动到指定位置后显示 */
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.couplet.visible {
    display: flex;
    opacity: 1;
}

.couplet p {
    font-size: 45px;
    color: #000;
    writing-mode: vertical-lr;
    /* 竖排文字 */
    letter-spacing: 10px;
}

.couplet-left {
    left: 0px;
}

.couplet-right {
    right: 0px;
}

.close-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    cursor: pointer;
}
.close-btn img {
    float: left;
    display: block;
    width: 30px;
}
.close-btn span {
    float: left;
    display: block;
    line-height: 30px;
    font-size: 18px;
    color: #000;
    font-weight: 400;
}

/* --- 右下角浮窗 --- */
.fixed-news {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 200px;
    background: #d73a27;
    /* 红色背景 */
    z-index: 101;
    display: none; /* 默认隐藏，滚动到指定位置后显示 */
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    box-shadow: -2px -2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fixed-news.visible {
    display: flex;
    opacity: 1;
}

/* 广告栏 */
.ad-list {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}

/* --- 常用链接 (红色图标栏) --- */
.quick-links {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.quick-links .item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 220px;
    height: 285px;
    background-color: #d8421f;
}

.quick-links .item .icon {
    width: 136px;
    height: 136px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.quick-links .item span {
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    margin-top: 10px;
}


/* 公用头部 */
/* 0124 修改 */
.section-header-common {
    width: 100%;
    height: 60px;
    line-height: 60px;
    background-color: #006A46;
    display: flex;
    justify-content: space-between;
}

.section-header-common .title {
    font-size: 28px;
    color: #fff;
    font-weight: bold;
    margin-left: 20px;
}

.section-header-common .more {
    padding: 0 20px;
    font-size: 20px;
    color: #1D634B;
    background: linear-gradient(120deg, #006A46 0%, #006633 40%, #e6f2ea 40%, #e6f2ea 100%);
    padding-left: 100px;
}

/* --- 登录页面样式 --- */
.page-login {
    padding: 40px 0;
}

.page-login .w-1400 {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
}

.pic-con {
    flex: 0 0 690px;
}

.pic-con img {
    width: 100%;
    display: block;
}

.login-form {
    flex: 0 0 690px;
}

.login-form h2 {
    text-align: center;
    color: #006A46;
    font-size: 32px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid #006A46;
}

.login-form-inner {
    width: 288px;
    margin: 0 auto;
}

.login-form-inner .form-group {
    margin-bottom: 20px;
}

.login-form-inner .form-group .ipt-box {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 6px 15px;
    border: 2px solid #006A46;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: #DBEEE8;
}

.login-form-inner .form-group .ipt-box img {
    width: 30px;
    height: 30px;
    margin-right: 6px;
}

.login-form-inner .form-group input {
    display: block;
    flex: 1;
    height: 40px;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: transparent;
}

/* 兼容所有主流浏览器的 placeholder 颜色设置 */
/* Chrome, Safari, Opera */
::placeholder {
    color: #999999;
    /* 你想要的颜色值，比如灰色 #999、红色 #f00 等 */
    opacity: 1;
    /* 确保颜色不透明，部分浏览器默认有透明度 */
}

/* Firefox 4-18 */
:-moz-placeholder {
    color: #999999;
    opacity: 1;
}

/* Firefox 19+ */
::-moz-placeholder {
    color: #999999;
    opacity: 1;
}

/* Internet Explorer 10-11 */
:-ms-input-placeholder {
    color: #999999;
}

/* Edge */
::-ms-input-placeholder {
    color: #999999;
}

/* 针对特定输入框定制（可选） */
.input-custom::placeholder {
    color: #666666;
    /* 单独设置这个输入框的占位符颜色 */
    font-size: 14px;
    /* 还可以调整字号等样式 */
}


.login-form-inner .form-group input.error {
    border-color: #d73a27;
}


.login-form-inner .error-message {
    display: block;
    color: #d73a27;
    font-size: 12px;
    margin-top: 5px;
    min-height: 18px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.login-btn {
    width: 100%;
    padding: 14px;
    background-color: #006A46;
    color: #fff;
    border: none;
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.login-btn:hover {
    background-color: #005e36;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 106, 70, 0.3);
}

.login-btn:active {
    transform: translateY(0);
}

.login-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 106, 70, 0.3);
}

.form-footer {
    text-align: center;
}

.form-footer span {
    color: #666;
    font-size: 18px;
}

.form-footer a {
    color: #006A46;
    font-size: 18px;
    margin-left: 5px;
    transition: color 0.3s ease;
}

.form-footer a:hover {
    color: #d73a27;
    text-decoration: underline;
}

/* 登录成功/失败提示样式 */
.login-form-inner .success-message {
    background-color: #e8f5e9;
    color: #2e7d32;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid #c8e6c9;
}

.login-form-inner .general-error {
    background-color: #ffebee;
    color: #c62828;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid #ffcdd2;
}

/*
* 注册页面
*/
.reg-form-inner {
    display: flex;
    justify-content: space-between;
    width: 100%;
    overflow: hidden;
}

.reg-btn {
    width: 300px;
    margin: 0 auto;
    display: block;
    font-size: 30px;
}

.gender-group {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

/* 隐藏原生单选按钮 */
.gender-radio input {
    display: none;
}

/* 自定义选择框样式 */
.gender-group .gender-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* 文字与圆圈的间距 */
    font-size: 16px;
    cursor: pointer;
    margin-right: 20px;
}

/* 未选中的圆圈 */
.gender-group .circle {
    width: 30px;
    height: 30px;
    border: 2px solid #008060;
    /* 绿色边框 */
    border-radius: 50%;
    position: relative;
}

/* 选中时的填充（男的选中状态） */
.gender-radio input:checked+.gender-label .circle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: #008060;
    /* 绿色填充 */
    border-radius: 50%;
}

/*
* 图片列表
*/
.page-pics {
    width: 100%;
    padding: 50px 0;
    overflow: hidden;
}

.page-pics .left-con {
    float: left;
    width: 900px;
}

.page-pics .right-con {
    float: right;
    width: 460px;
}

.page-pics .left-con .l-tit {
    line-height: 60px;
    font-size: 28px;
    color: #006633;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 3px solid #006A46;
    margin-top: -20px;
    text-indent: 20px;
}

.page-pics .pic-list {
    width: 100%;
    overflow: hidden;
}

.page-pics .pic-list ul {
    width: 110%;
}

.page-pics .pic-list li {
    float: left;
    width: 290px;
    margin-right: 27px;
    margin-bottom: 27px;
}

.page-pics .pic-list li a {
    display: block;
    width: 290px;
}

.page-pics .pic-list li img {
    display: block;
    width: 290px;
    height: 170px;
}

.page-pics .pic-list li span {
    display: block;
    line-height: 40px;
    font-size: 22px;
    color: #000;
    text-align: center;
}

.page-pics .right-con .p-list ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.page-pics .right-con .p-list li {
    width: 220px;
    margin-top: 12px;
}

.page-pics .right-con .p-list li a img {
    display: block;
    width: 100%;
}

.page-pics .right-con .p-list li a span {
    display: block;
    line-height: 30px;
    font-size: 18px;
    color: #000;
    text-align: center;
}

/* 分页容器：水平居中 + 弹性布局 */
.pagination {
    width: 100%;
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    /* 元素之间的间距 */
    font-size: 22px;
    color: #000;
}

/* 上一页/下一页按钮：文字 + 图标样式 */
.page-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    /* 图标与文字的间距 */
    cursor: pointer;
    background: none;
    border: none;
    font-size: 22px;
    padding: 0;
}

.page-btn img {
    display: block;
    width: 35px;
    position: relative;
    top: 2px;
}

/* 页码区域：文字 + 输入框 */
.page-number {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 60px;
}

/* 页码输入框：边框 + 宽度控制 */
.page-input {
    width: 36px;
    height: 28px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 2px;
    font-size: 18px;
    color: #000;
    line-height: 30px;
}

.page-pics .pic-detail h4 {
    font-size: 26px;
    color: #000;
    text-align: center;
    margin-top: 50px;
}

.page-pics .pic-detail .d-info {
    text-align: center;
    padding: 30px 0;
}

.page-pics .pic-detail .d-info span {
    font-size: 18px;
    color: #b9b9b9;
    margin: 0 10px;
}

.page-pics .pic-detail .d-content {
    padding: 30px 0;
}

.page-pics .pic-detail .d-content img {
    max-width: 900px;
}

/**
 * 新闻列表
 */
.page-news {
    width: 100%;
    padding: 50px 0;
    overflow: hidden;
}

.page-news .left-con {
    float: left;
    width: 900px;
}

.page-news .right-con {
    float: right;
    width: 455px;
}

.page-news .left-con .l-tit {
    line-height: 60px;
    font-size: 28px;
    color: #006633;
    margin-bottom: 20px;
    border-bottom: 3px solid #006A46;
    margin-top: -20px;
    text-indent: 20px;
    font-family: 'SourceHanSans-Regular';
}

.page-news .list-box li {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #ebebeb;
}

.page-news .list-box li .pic {
    width: 305px;
    margin-right: 20px;
}

.page-news .list-box li .pic img {
    display: block;
    width: 305px;
    height: 190px;
}

.page-news .list-box li .info {
    flex: 1;
}

.page-news .list-box li .info .tit {
    font-size: 24px;
    color: #006a47;
    line-height: 48px;
    font-family: 'SourceHanSans-Regular';
}

.page-news .list-box li .info .number {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}

.page-news .list-box li .info .number span {
    font-size: 18px;
    color: #b6b6b6;
}

.page-news .list-box li .info .view {
    padding-left: 30px;
    background: url("../../img/website/image/icon-view.png") left center no-repeat;
    background-size: 25px 25px;
}

.page-news .list-box li .info .more {
    display: flex;
    justify-content: flex-end;
}

.page-news .list-box li .info .more a {
    display: block;
    width: 180px;
    height: 46px;
    background: #006a47;
    font-size: 18px;
    color: #fff;
    border-radius: 23px;
    text-align: center;
    line-height: 46px;
}

.page-news .c-tit {
    line-height: 60px;
    margin-bottom: 20px;
    border-bottom: 3px solid #006A46;
    margin-top: -20px;
    display: flex;
    justify-content: space-between;
}

.page-news .c-tit .title {
    font-size: 28px;
    color: #006633;
    font-family: 'SourceHanSans-Regular';
}

.page-news .c-tit .more {
    font-size: 22px;
    color: #006A47;
}

.page-news .r-n-list .item-box {
    margin-bottom: 80px;
}

.page-news .item-box {
    width: 100%;
    margin-bottom: 50px;
}

.page-news .r-n-list .item-top a {
    display: flex;
    width: 100%;
}

.page-news .r-n-list .item-top .pic {
    display: block;
    width: 200px;
    height: 120px;
    margin-right: 20px;
}

.page-news .r-n-list .item-top .info {
    width: 100%;
}

.page-news .r-n-list .item-top .info .tit {
    display: block;
    height: 80px;
    font-size: 24px;
    color: #006633;
}

.page-news .r-n-list .item-top .info .time {
    display: block;
    font-size: 22px;
    color: #ccc;
    text-align: right;
}

.page-news .r-n-list li {
    padding: 10px 0;
    border-bottom: 1px solid #EBEBEB;
}

.page-news .r-n-list li a {
    display: flex;
    justify-content: space-between;
}

.page-news .r-n-list li a .tit {
    font-size: 22px;
    color: #000;
    display: block;
    padding-left: 26px;
    background: url("../../img/website/image/icons-right.png") left center no-repeat;
    background-size: 28px 28px;
}

.page-news .r-n-list li a .time {
    font-size: 22px;
    color: #B6B6B6;
}

.page-news .news-detail h4 {
    font-size: 28px;
    color: #000;
    text-align: center;
    font-weight: 400;
    font-family: 'SourceHanSans-Regular';
}

.page-news .news-detail .d-info {
    text-align: center;
    padding: 30px 0;
}

.page-news .news-detail .d-info span {
    font-size: 18px;
    color: #b9b9b9;
    margin: 0 10px;
}

.page-news .news-detail .d-content {
    padding: 30px 0;
}

.page-news .news-detail .d-content img {
    max-width: 900px;
}

.page-tool {
    font-size: 22px;
    color: #000;
}

.page-tool>div {
    margin-bottom: 20px;
}


/**
 * 下载中心
 */
.page-down {
    width: 100%;
    padding: 50px 0;
    overflow: hidden;
}

.page-down .left-con {
    float: left;
    width: 900px;
}

.page-down .right-con {
    float: right;
    width: 460px;
}

.page-down .left-con .l-tit {
    line-height: 60px;
    font-size: 34px;
    color: #006633;
    margin-bottom: 20px;
    border-bottom: 3px solid #006A46;
    margin-top: -20px;
    font-weight: 600;
    padding-left: 20px;
}

.page-down .d-list {
    width: 100%;
}

.page-down .d-list li {
    width: 100%;
    border-bottom: 1px solid #D4D4D4;
    padding: 20px 0;
}

.page-down .d-list li a {
    display: block;
    width: 100%;
    padding-left: 20px;
    font-size: 24px;
    color: #000;
    background: url("../../img/website/image/ICON_07.png") right center no-repeat;
}

/* 新增样式 */
.page-down .n-list li {
    display: flex;
    justify-content: space-between; 
    align-items: center;
}
.page-down .n-list li a {
    display: inline-block;
    background: none;
}
.page-down .n-list li .time { 
    margin-right: 20px;
}
.page-down .n-list li .info {
    display: flex;
    width: 50%;
    justify-content: flex-end;
    font-size: 22px;
}

.page-down .right-con li {
    width: 100%;
    border-bottom: 1px solid #D4D4D4;
    padding: 20px 0;
}

.page-down .right-con li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-left: 40px;
    background: url("../../img/website/image/ICON_04.png") left center no-repeat;
}

.page-down .right-con li a .tit {
    font-size: 24px;
    color: #000;
}

.page-down .right-con li a .time {
    font-size: 20px;
    color: #B6B6B6;
}


/**
 * 我的信箱
 */
.page-mailbox {
    width: 100%;
    overflow: hidden;
    padding-top: 50px;
}
.page-mailbox .w-1400 {
    width: 1380px;
    margin: 0px auto;
}

.page-mailbox .left-con {
    float: left;
    width: 228px;
    height: 720px;
    background-color: #DBEFE8;
}

.page-mailbox .left-con li {
    width: 228px;
}

.page-mailbox .left-con li a {
    display: block;
    width: 228px;
    height: 80px;
    font-size: 24px;
    color: #006A47;
    line-height: 80px;
    text-align: center;
    font-weight: bold;
}

.page-mailbox .left-con li.active {
    background-color: #006A47;
}

.page-mailbox .left-con li.active a {
    color: #fff;
}

.page-mailbox .right-con {
    float: right;
    width: 1110px;
}

.page-mailbox .right-con h4 {
    line-height: 60px;
    font-size: 28px;
    color: #006633;
    margin-bottom: 20px;
    border-bottom: 3px solid #006A46;
    font-weight: 600;
    display: flex;
    align-items: center;
    text-indent: 10px;
}

.page-mailbox .right-con .tit {
    padding: 10px 0 30px;
    overflow: hidden;
}

.page-mailbox .right-con .tit a {
    float: left;
    display: block;
    width: 200px;
    height: 66px;
    background-color: #006A47;
    text-align: center;
    line-height: 66px;
    font-size: 24px;
    color: #fff;
    margin-right: 20px;
    font-weight: 600;
}

.page-mailbox .right-con .m-list {
    width: 100%;
}

.page-mailbox .right-con .m-list .list {
    width: 100%;
}

.page-mailbox .right-con .m-list .list li {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f1f1f1;
}

.page-mailbox .right-con .m-list .list .item-tit {
    background-color: #DBEFE8;
}

.page-mailbox .right-con .m-list .list span {
    flex: 1;
    font-size: 22px;
    color: #006A47;
    text-align: center;
}

.page-mailbox .right-con .m-list .list .item-tit span {
    border-right: 2px solid #B9C3BF;
    font-weight: 600;
}

.page-mailbox .right-con .m-list .list .item-tit span:last-child {
    border-right: none;
}

.page-mailbox .right-con .info {
    font-size: 22px;
    color: #A7A7A7;
    padding: 0px 0 20px;
}

.page-mailbox .form-container {
    width: 980px;
    margin: 0px auto 30px;
}

.page-mailbox .form-container .form-header {
    color: #006A47;
    font-size: 22px;
    margin-bottom: 20px;
    border-bottom: 1px solid #D4D4D4;
    padding: 20px 0;
}

.page-mailbox .form-container .form-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #D4D4D4;
}

.page-mailbox .form-container .form-item label {
    width: 120px;
    color: #006A47;
    font-size: 22px;
    text-align: right;
    margin-right: 20px;
}

.page-mailbox .form-container .form-item label::before {
    content: "*";
    color: red;
    margin-right: 2px;
}

.page-mailbox .form-container .form-item input {
    flex: 1;
    height: 60px;
    padding: 0 10px;
    border: 1px solid #006A47;
    outline: none;
    font-size: 20px;
}

.page-mailbox .form-container .form-item .select {
    flex: 1;
    height: 60px;
    padding: 0 10px;
    border: 1px solid #006A47;
    outline: none;
    font-size: 20px;
}

.page-mailbox .form-container .content-area {
    width: 100%;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #006A47;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #006A47;
    font-size: 22px;
}

.page-mailbox .form-container .draft-option {
    display: flex;
    align-items: center;
    font-size: 22px;
    margin-bottom: 20px;
    color: #006A47;
}

.page-mailbox .form-container .draft-option input {
    margin: 0 5px;
}

.page-mailbox .form-container .submit-btn {
    display: block;
    width: 274px;
    height: 66px;
    background-color: #006A47;
    color: #fff;
    border: none;
    font-size: 28px;
    cursor: pointer;
    margin: 50px auto;
    font-weight: bold;
}


.save-group {
    display: flex;
    align-items: center;
    padding-top: 10px;
}

/* 隐藏原生单选按钮 */
.save-group .d-radio input {
    display: none;
}

/* 自定义选择框样式 */
.save-group .s-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* 文字与圆圈的间距 */
    font-size: 16px;
    cursor: pointer;
    margin-right: 20px;
}

/* 未选中的圆圈 */
.save-group .circle {
    width: 30px;
    height: 30px;
    border: 2px solid #008060;
    /* 绿色边框 */
    border-radius: 50%;
    position: relative;
}

/* 选中时的填充（男的选中状态） */
.save-group .d-radio input:checked+.s-label .circle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: #008060;
    /* 绿色填充 */
    border-radius: 50%;
}

.page-mailbox .upload-box {
    width: 780px;
    height: 350px;
    border: 1px solid #006A47;
    outline: none;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.page-mailbox .upload-box .lable {
    font-size: 28px;
    color: #ccc;
    position: relative;
    top: -20px;
}

.anwser-box {
    width: 100%;
    min-height: 500px;
    background-color: #DBEEE8;
    margin-bottom: 30px;
}

.anwser-box .container {
    max-width: 486px;
    background-color: #ffffff;
    border: 1px solid #d9ebe4;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 20px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
}

.anwser-box .item-container {
    padding: 20px;
}

/* 输入区域样式 */
.anwser-box .input-area {
    padding: 20px;
    border-bottom: 1px solid #D4D4D4;
}

.anwser-box .input-area p {
    font-size: 24px;
    color: #000;
    line-height: 32px;
}

/* 近期问题区域样式 */
.anwser-box .recent-questions {
    padding: 15px 20px;
}

.anwser-box .recent-questions h3 {
    font-size: 24px;
    color: #000;
    margin-bottom: 10px;
    font-family: 'SourceHanSans-Regular';
}

.anwser-box .question-list {
    list-style-type: disc;
}

.anwser-box .question-list li {
    color: #555;
    margin-bottom: 8px;
    font-size: 18px;
    border-bottom: 1px dashed #B5B5B5;
    line-height: 28px;
}

.anwser-box .question-list li a {
    display: block;
    width: 100%;
    padding-left: 20px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.anwser-box .question-list li a::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #006A47;
    border-radius: 50%;
    margin-right: 5px;
}

.anwser-box .question-list li .title {
    float: left;
    font-size: 24px;
    color: #000;
    line-height: 32px;
}

.anwser-box .question-list li .date {
    float: right;
    color: #B7B7B7;
}

.anwser-box .text-area {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 20px;
    outline: none;
    font-size: 28px;
}

.anwser-box .send-btn {
    display: block;
    width: 220px;
    height: 74px;
    background-color: #006A47;
    color: #fff;
    border: none;
    font-size: 28px;
    cursor: pointer;
    font-weight: bold;
    margin: 20px 0;
}

.anwser-box .msg-list>div:nth-child(2n) {
    display: flex;
    justify-content: flex-end;

}

.anwser-box .msg {
    width: 450px;
    padding: 20px;
    background-color: #006A46;
    margin: 20px 0;
    font-size: 22px;
    color: #fff;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.personal-data {
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
}

.personal-data .ps-con {
    width: 375px;
}

.personal-data .ps-con .pd-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.personal-data .ps-con .pd-item img {
    display: block;
    width: 32px;
}

.personal-data .ps-item-title {
    display: block;
    width: 100px;
    font-size: 24px;
    color: #000;
    margin: 0 20px;
}

.personal-data .ps-con .pd-item input {
    display: block;
    width: 150px;
    padding: 0 20px;
    height: 60px;
    border: 2px solid #006A46;
    background-color: #DBEEE8;
    outline: none;
    font-size: 24px;
    color: #000;
}

.personal-data .ps-hobby {
    width: 100%;
    padding: 20px;
    background-color: #DBEEE8;
    border: 2px solid #006A46;
    font-size: 24px;
    color: #000;
}

.submit-ps-btn {
    display: block;
    width: 274px;
    height: 66px;
    background-color: #006A47;
    color: #fff;
    border: none;
    font-size: 28px;
    cursor: pointer;
    margin: 50px auto;
    font-weight: bold;
}

.copyright {
    width: 100%;
    height: 60px;
    background-color: #005e36;
    font-size: 22px;
    color: #fff;
    line-height: 60px;
}

/* 兵情直通车 */
.express-item {
    padding: 30px;
    border-bottom: 1px solid #f1f1f1;
}
.express-item a {
    display: flex;
    align-items: center;
}
.express-item a span {
    margin-left: 20px;
    font-size: 24px;
    color: #005e36;
    font-weight: bold;
}