﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a:focus, button:focus, input:focus, .slick-arrow:focus {
    outline: none !important;
    box-shadow: none !important;
}

html {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
}

body {
    width: 100%;
    min-height: 100%;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    background-color: #f5f9ff;
    color: #333;
    line-height: 1.8;
    margin-top: 54px !important;
    padding-top: 0 !important;
    position: relative;
}

html::-webkit-scrollbar {
    width: 6px;
    background: transparent;
}

html::-webkit-scrollbar-track {
    background: transparent;
}

html::-webkit-scrollbar-thumb {
    background: rgba(0, 91, 187, 0.2);
    border-radius: 3px;
    transition: background 0.2s;
}

    html::-webkit-scrollbar-thumb:hover {
        background: #003c7a;
    }

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(0, 153, 255, 0.1) 0%, transparent 40%), radial-gradient(circle at 80% 70%, rgba(0, 91, 187, 0.1) 0%, transparent 40%), radial-gradient(circle at 40% 80%, rgba(0, 60, 122, 0.1) 0%, transparent 40%);
    z-index: -2;
    opacity: 0.8;
}

.wave-light {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.wave {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: linear-gradient(45deg, rgba(0, 153, 255, 0.08), transparent), linear-gradient(135deg, rgba(0, 91, 187, 0.08), transparent), linear-gradient(225deg, rgba(0, 60, 122, 0.08), transparent), linear-gradient(315deg, rgba(0, 120, 225, 0.08), transparent);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: waveMove 20s ease-in-out infinite alternate;
    opacity: 0.3;
}

    .wave:nth-child(2) {
        animation: waveMove 15s ease-in-out infinite alternate-reverse;
        opacity: 0.2;
        border-radius: 70% 30% 50% 50% / 60% 40% 60% 40%;
    }

    .wave:nth-child(3) {
        animation: waveMove 25s ease-in-out infinite alternate;
        opacity: 0.15;
        border-radius: 30% 70% 60% 40% / 50% 60% 40% 50%;
    }

@keyframes waveMove {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(-20%, -15%) rotate(360deg);
    }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
}

.animate-fade-up {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-nav {
    width: 100%;
    background: #003c7a;
    box-shadow: 0 2px 12px rgba(0,60,140,0.1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item a {
    display: block;
    padding: 16px 22px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: background 0.2s;
}

    .nav-item a:hover {
        background: #005bbb;
    }

.nav-item.active a {
    background: #005bbb;
    font-weight: 600;
}

.search-wrap {
    display: flex;
    align-items: center;
}

.search-input {
    height: 34px;
    padding: 0 10px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
    font-size: 14px;
    width: 170px;
}

.search-btn {
    height: 34px;
    width: 34px;
    background: #fff;
    border: none;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .search-btn img {
        width: 16px;
        height: 16px;
    }

.header-banner {
    width: 100%;
    height: 105px;
    background: linear-gradient(90deg, #002c6a, #005bbb);
    display: flex;
    align-items: center;
    padding: 0;
    color: #fff;
    position: relative;
    top: 0;
    z-index: 999;
}

    .header-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(ellipse at top, rgba(255,255,25,0.05), transparent 70%);
        z-index: 1;
    }

    .header-banner::after {
        content: '';
        position: absolute;
        top: 78%;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(0, 153, 255, 0.8), transparent);
        animation: lightMove 5s linear infinite;
        z-index: 2;
    }

@keyframes lightMove {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.header-content {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.header-logo {
    width: 90px;
    height: 90px;
    position: relative;
    animation: logoRotate 12s linear infinite;
}
.header-logo-noRotate {
    display: flex;
    align-items: center;
    justify-content: center; 
    height: 90px;
    position: relative;
}

    .header-logo-noRotate img {
        /*height: clamp(40px,7vw,50px);*/
        height: 40px;
        max-height: 50px;
        vertical-align: middle;
        position: relative;
        top: auto;
        /*top: 0 !important;*/
        /*filter: brightness(0) saturate(100%) invert(95%) drop-shadow(0 0 4px rgba(255,255,255,0.4)) drop-shadow(0 0 8px rgba(0,120,225,0.3));*/
    }

@media screen and (min-width: 768px) {
    .header-logo-noRotate img {
        height: 50px;
    }
}

.logo-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid #0099ff;
    border-radius: 50%;
    border-top-color: transparent;
    border-right-color: #0099ff;
    border-bottom-color: #0066cc;
    border-left-color: transparent;
}

    .logo-circle::before {
        content: '';
        position: absolute;
        inset: 10px;
        border: 3px solid #0099ff;
        border-radius: 50%;
        border-top-color: transparent;
        border-left-color: transparent;
        opacity: 0.7;
    }

.logo-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(50%, -50%);
    font-size: 22px;
    font-weight: bold;
    color: #fff;
}

@keyframes logoRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.header-text h1 {
    font-size: clamp(26px,2.3vw,36px);
    font-weight: 700;
    margin: 0;
}

.header-text p {
    font-size: clamp(14px,1vw,17px);
    opacity: 0.9;
    margin: 0;
}

.content-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px 40px;
}

.section-gap {
    margin-bottom: 15px;
}

.notice-wrap {
    background: #fff9e6;
    border-radius: 12px;
    padding: 0 15px;
    height: 40px;
    line-height: 40px;
    margin: 8px 0;
    font-size: 14px;
    color: #ed6c02;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    cursor: pointer;
}

.notice-content {
    display: inline-block;
    position: absolute;
    left: 100%;
    animation: noticeScroll 22s linear infinite;
}

.notice-wrap:hover .notice-content {
    animation-play-state: paused;
}

@keyframes noticeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-200%);
    }
}

.notice-content a {
    color: #ed6c02;
    text-decoration: none;
    margin: 0 20px;
}

    .notice-content a:hover {
        text-decoration: underline;
    }

.card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.045);
    margin-bottom: 0;
    overflow: hidden;
    transition: all 0.32s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(0,0,0,0.09);
    }

.card-header {
    background: linear-gradient(90deg, #005bbb, #002c6a);
    color: #fff;
    padding: 16px 24px;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 2px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .card-header a {
        color: rgba(255,255,250,0.9);
        font-size: 14px;
        text-decoration: none;
    }

.card-body.news-area {
    padding-top: 0px !important;
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-slick {
    position: relative;
    padding-bottom: 35px;
    flex: 1;
}

    .news-slick .slick-list,
    .news-slick .slick-track {
        height: 100%;
    }

    .news-slick .slick-dots {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        text-align: center;
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .news-slick .slick-dots li {
            display: inline-block !important;
            margin: 0 8px;
            width: 16px;
            height: 16px;
        }

            .news-slick .slick-dots li button {
                width: 16px;
                height: 16px;
                border-radius: 50%;
                background: #ddd !important;
                font-size: 0;
                border: none;
                padding: 0;
                cursor: pointer;
            }

            .news-slick .slick-dots li.slick-active button {
                background: linear-gradient(90deg, #0099ff, #005bbb) !important;
                box-shadow: 0 0 12px rgba(0,120,225,0.5) !important;
                transform: scale(1.2) !important;
                animation: pulse 1.2s infinite !important;
            }

@keyframes pulse {
    0% {
        box-shadow: 0 0 15px rgba(0,120,225,0.5);
    }

    50% {
        box-shadow: 0 0 28px rgba(0,120,225,0.85);
    }

    100% {
        box-shadow: 0 0 15px rgba(0,120,225,0.5);
    }
}

.news-slick .item {
    display: flex !important;
    flex-direction: column;
    height: 100%;
    opacity: 0;
    transform: scale(0.95) translateY(20px);
    transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.news-slick .slick-active .item {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

    .img-wrap video {
        width: 100%;
        height: 200px;
        border: none;
        border-radius: 12px;
        object-fit: cover;
        display: block;
    }

    .img-wrap::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
        z-index: 1;
    }

    .img-wrap.light-active::after {
        animation: lightSweep 0.8s ease forwards;
    }

@keyframes lightSweep {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.news-slick img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    transition: all 0.5s ease;
    display: block;
}

.news-slick .item:hover img {
    transform: scale(1.08);
}

.news-title {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(90deg, #002c6a, #005bbb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: -15px 0 18px 0;
}

.news-desc {
    font-size: 14px;
    color: #555;
}

.news-detail {
    display: inline-block;
    margin-left: 8px;
    color: #005bbb;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

    .news-detail:hover {
        color: #003c7a;
        text-decoration: underline;
    }

.list-item {
    list-style: none;
    padding: 0;
}

    .list-item li {
        padding: 12px 0;
        border-bottom: 1px dashed rgba(173, 187, 204, 0.35);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .list-item a {
        color: #333;
        text-decoration: none;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        flex: 1;
    }

        .list-item a:hover {
            color: #005bbb;
        }

.date {
    color: #999;
    font-size: 13px;
    margin-left: 10px;
}

    .date.hot {
        color: #ed6c02;
        font-weight: 600;
    }

.login-card {
    background: #fff;
    border-radius: 16px;
    padding: 0 28px 32px; /* 已按要求修改 */
    box-shadow: 0 6px 24px rgba(0,0,0,0.045);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
    .login-card h3 {
        margin-bottom: 12px !important;
        font-size: 18px !important;
    }

    .login-card .form-group {
        margin-bottom: 10px;
    }

    .login-card label {
        font-size: 13px;
        margin-bottom: 3px;
    }
.form-control {
    height: 44px;
    border-radius: 8px;
}

.btn-submit {
    height: 46px;
    border-radius: 8px;
    background: linear-gradient(90deg, #005bbb, #002c6a);
    border: none;
    transition: 0.2s;
}

    .btn-submit:hover {
        transform: translateY(-2px);
    }

.login-actions {
    margin-top: 0px;
    display: flex;
    gap: 12px;
}

    .login-actions a {
        flex: 1;
        height: 38px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.25s ease;
        border: 1px solid #005bbb;
    }

        .login-actions a.btn-reg {
            background: #fff;
            color: #005bbb;
        }

        .login-actions a.btn-find {
            background: #005bbb;
            color: #fff;
        }

        .login-actions a:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0,91,187,0.15);
        }

        .login-actions a.btn-reg:hover {
            background: #f0f7ff;
        }

        .login-actions a.btn-find:hover {
            background: #004a99;
        }

.logo-slick {
    position: relative;
    padding: 15px 0;
}

    .logo-slick .slick-slide,
    .logo-slick .slick-slide > div {
        background: transparent !important;
        border: none !important;
        outline: none !important;
        overflow: visible !important;
    }

    .logo-slick .slick-slide {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100px;
    }

        .logo-slick .slick-slide > div::after {
            display: none !important;
        }

    .logo-slick img {
        max-height: 75px;
        max-width: 200px;
        width: auto;
        height: auto;
        object-fit: contain;
        display: block;
        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        position: relative;
        z-index: 2;
        border-radius: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }

        .logo-slick img:hover {
            transform: scale(1.12);
            animation: glowPulse 1.5s infinite alternate;
            background: transparent !important;
            box-shadow: 0 0 28px rgba(0, 120, 225, 0.6) !important;
        }

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 12px rgba(0, 120, 225, 0.3) !important;
    }

    100% {
        box-shadow: 0 0 28px rgba(0, 120, 225, 0.6) !important;
    }
}

.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(0,91,187,0.1);
    color: #005bbb;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    cursor: pointer;
    z-index: 10;
}

    .slick-arrow:hover {
        background: #005bbb;
        color: #fff;
    }

.slick-prev {
    left: 10px;
}

.slick-next {
    right: 10px;
}

.footer {
    width: 100% !important;
    background: #003c7a;
    padding: 40px 15px;
    text-align: center;
    color: #ffffff;
    margin-top: 15px;
    border-top: 3px solid #005bbb;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer p {
    margin: 5px 0;
    opacity: 0.9;
    font-size: 14px;
    line-height: 1.6;
}

.row-equal {
    display: flex;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
}

    .row-equal > [class*='col-'] {
        display: flex;
        flex-direction: column;
        padding-left: 5px;
        padding-right: 5px;
    }

/* 新增：验证码区域样式优化，保证三项一行显示 */
.verify-code-group {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.verify-input {
    flex: 1;
}

.verify-img {
    width: 80px !important;
    height: 44px !important;
    flex-shrink: 0;
}

.verify-btn {
    height: 44px;
    padding: 0 10px;
    flex-shrink: 0;
    background: #f0f7ff;
    border: 1px solid #005bbb;
    border-radius: 4px;
    color: #005bbb;
    cursor: pointer;
    font-size: 13px;
    white-space: nowrap;
}

    .verify-btn:hover {
        background: #005bbb;
        color: #fff;
    }

@media (max-width: 768px) {
    body {
        margin-top: 54px !important;
    }

    .nav-container {
        flex-direction: column;
        padding: 0 15px;
    }

    .nav-list {
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
    }

    .nav-item a {
        padding: 12px 14px;
        font-size: 14px;
    }

    .search-wrap {
        padding: 10px 0;
        width: 100%;
        justify-content: center;
    }

    .search-input {
        width: 100%;
    }

    .header-banner {
        height: auto;
        padding: 20px 0;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 0 15px;
    }

    .header-text h1 {
        font-size: 24px;
    }

    .content-wrapper {
        padding: 0 15px 25px;
    }

    .img-wrap video {
        height: 180px;
    }

    .footer p {
        font-size: 12px;
    }
}

.friend-links {
    display: flex;
    align-items: center;
    justify-content: space-evenly; 
    flex-wrap: wrap;
    gap: 20px;
    padding: 15px 0;
    width: 100%;
}

    .friend-links > div {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100px;
        flex: 1;
        min-width: 140px; 
    }

    .friend-links img {
        max-height: 75px;
        max-width: 200px;
        width: auto;
        height: auto;
        object-fit: contain;
        display: block;
        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        position: relative;
        z-index: 2;
        border-radius: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }

        .friend-links img:hover {
            transform: scale(1.12);
            animation: glowPulse 1.5s infinite alternate;
            background: transparent !important;
            box-shadow: 0 0 28px rgba(0, 120, 225, 0.6) !important;
        }

/* 友情链接移动端适配 */
    .friend-links {
        gap: 20px;
    }

    .friend-links > div {
        height: 80px;
    }

.card-top {
    margin-top: 20px;
}

/* ========== 左侧菜单样式 ========== */
.left-menu {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 91, 187, 0.08);
    overflow: hidden;
    border: 1px solid rgba(0, 91, 187, 0.06);
}

:first-of-type
.menu-title i {
    font-size: 20px;
}

.menu-title:first-of-type {
    background: linear-gradient(135deg, #005bbb, #002c6a);
    color: #fff;
    padding: 20px 24px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
}

.menu-title:not(:first-of-type) {
    font-family: "黑体", SimHei, sans-serif;
    background: linear-gradient(90deg, rgba(0,91,187,0.05), rgba(0,60,122,0.03));
    color: #34495e;
    font-size: 15px;
    font-weight: bold;
    padding: 10px 14px;
    margin: 8px 0 1px;
    margin: 12px 4px 4px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(0, 91, 187, 0.03);
    border: 1px solid rgba(0, 91, 187, 0.08);
}

.menu-list {
    list-style: none;
    padding: 12px 0;
    margin: 0;
}

    .menu-list li {
        padding: 0 12px;
        margin-bottom: 4px;
    }

        .menu-list li:last-child {
            margin-bottom: 0;
        }

    .menu-list li {
        padding: 0 12px;
        margin-bottom: 0;
        border-bottom: 1px solid rgba(0, 91, 187, 0.09); /* 新增：精美分隔线 */
    }

        .menu-list li:last-child {
            border-bottom: none; /* 最后一项不显示线 */
        }

    .menu-list a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 14px 16px;
        color: #444;
        text-decoration: none;
        font-size: 15px;
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        position: relative;
        font-weight: 500;
        justify-content: flex-start;
    }

        .menu-list a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 0;
            background: linear-gradient(180deg, #005bbb, #003c7a);
            border-radius: 0 4px 4px 0;
            transition: height 0.3s ease;
        }

        .menu-list a i {
            width: 18px;
            text-align: center;
            color: #777;
            transition: color 0.3s;
        }

        .menu-list a:hover,
        .menu-list a.active {
            background: linear-gradient(90deg, #e8f4ff, #f0f7ff);
            color: #005bbb;
            font-weight: 600;
            padding-left: 20px;
            box-shadow: 0 4px 12px rgba(0, 91, 187, 0.1);
        }

            .menu-list a:hover::before,
            .menu-list a.active::before {
                height: 28px;
            }

            .menu-list a:hover i,
            .menu-list a.active i {
                color: #005bbb;
            }


    /* 3. 子菜单选中样式（无修改，保持精致柔和） */
.left-menu .menu-list li ul.menu-list li a.active {
    /*background: transparent;*/
    box-shadow: none;
    color: #005bbb !important;
    font-weight: 500;
    border-left: none;
    /*    border-left: 3px solid #005bbb;*/
}
    .left-menu .menu-list li ul.menu-list li a.active::before {
        height: 0 !important; /* 伪元素高度置0，完全隐藏 */
    }


    .left-menu .menu-list li ul.menu-list li a:hover::before {
        height: 0 !important;
    }

.breadcrumb {
    background: transparent;
    margin: 20px 0;
    padding: 8px 15px;
    border-radius: 8px;
    background: rgba(255,255,255,0.8);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

    .breadcrumb a {
        color: #005bbb;
        text-decoration: none;
    }

    .breadcrumb > .active {
        color: #002c6a;
        font-weight: 600;
    }

.taf-charter * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.taf-charter {
    font-family: "仿宋", FangSong, serif;
    line-height: 1.8;
    font-size: 16px;
}

.taf-chapter {
    font-family: "黑体", SimHei, sans-serif;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    margin: 30px 0 20px;
}

.taf-clause {
    font-family: "黑体", SimHei, sans-serif;
    font-weight: bold;
}

.taf-clause-justify {
    font-family: "黑体", SimHei, sans-serif;
    font-weight: bold;
    text-align: justify;
    text-align-last: justify;
    display: inline-block;
    width: 100px;
}

.taf-p {
    text-indent: 2em;
    text-align: justify;
    margin: 10px 0;
    font-family: "仿宋", FangSong, serif;
}

.taf-li {
    text-indent: 2em;
    padding-left: 2em;
    margin-left: -2em;
    margin: 6px 0;
    font-family: "仿宋", FangSong, serif;
    text-align: justify;
}

.taf-subli {
    text-indent: 0em;
    padding-left: 6em;
    margin-left: -6em;
    margin: 6px 0;
    font-family: "仿宋", FangSong, serif;
    text-align: justify;
}

.taf-li-p {
    text-indent: 2em;
    padding-left: 4em;
    margin-left: -4em;
    margin: 6px 0;
    font-family: "仿宋", FangSong, serif;
    text-align: justify;
}



.taf-empty {
    height: 1em;
}



/* Bootstrap3 分页样式适配 */
.pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 20px 0;
    list-style: none;
    flex-wrap: nowrap;
}

    /* 分页按钮容器 */
    .pagination > li {
        margin: 0;
        padding: 0;
        flex-shrink: 0; /* 禁止压缩，保证不换行 */
    }

        /* 核心：分页按钮 精美样式（优化版） */
        .pagination > li > .page-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 72px;
            height: 36px;
            padding: 0;
            /* 精美样式升级 */
            border: 1px solid #dcdcdc;
            border-radius: 8px; /* 圆角调大，更美观 */
            background: #ffffff;
            color: #333;
            font-size: 14px;
            font-weight: 500; /* 文字稍粗，更清晰 */
            text-decoration: none;
            cursor: pointer;
            transition: all 0.25s ease;
        }

        /* 按钮 hover 效果（升级质感） */
        .pagination > li:not(.disabled) > .page-link:hover {
            background: #337ab7;
            color: #fff;
            border-color: #337ab7;
            transform: translateY(-1px); /* 轻微上浮，更精致 */
            box-shadow: 0 2px 4px rgba(51, 122, 183, 0.2);
        }

        /* 禁用状态样式（优化） */
        .pagination > li.disabled > .page-link {
            background: #f5f7fa;
            color: #999;
            border-color: #e5e7eb;
            cursor: not-allowed;
            border-radius: 8px;
        }

    /* 跳转输入框 统一高度 */
    .pagination .page-input {
        width: 58px;
        height: 36px;
        border: 1px solid #dcdcdc;
        border-radius: 8px; /* 圆角统一 */
        text-align: center;
        font-size: 14px;
        outline: none;
        transition: border 0.2s;
    }

        .pagination .page-input:focus {
            border-color: #337ab7;
        }

    /* 跳转按钮（和分页按钮风格完全统一） */
    .pagination .btn-primary {
        height: 36px;
        line-height: 36px;
        padding: 0 12px;
        border-radius: 8px; /* 圆角统一 */
        font-size: 14px;
        font-weight: 500;
        border: none;
        background: #337ab7;
        transition: all 0.25s ease;
    }

        .pagination .btn-primary:hover {
            background: #286090;
            transform: translateY(-1px);
            box-shadow: 0 2px 4px rgba(51, 122, 183, 0.3);
        }

/* 跳转区域 同行居中 */
.pagination-jump {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 36px;
}

/* 分页信息 同行居中 */
.pagination-info {
    display: flex;
    align-items: center;
    justify-content:center;
    height: 36px;
    line-height:36px;
    padding: 0 12px;
    background: transparent;
    border: none;
    font-size: 14px;
    color: #555;
    font-weight: 400;
    white-space: nowrap;
}

.member-page .card-header {
    background: linear-gradient(90deg, #005bbb, #002c6a) !important;
    padding: 0 !important;
    border: none !important;
    position: relative !important;
    height: 58px;
    overflow: hidden;
}

.member-page .nav-tabs-custom {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0 30px;
    height: 58px;
    align-items: center;
    position: relative;
    z-index: 2;
}

    .member-page .nav-tabs-custom li {
        padding: 0 28px;
        position: relative;
    }

        .member-page .nav-tabs-custom li a {
            font-size: 16px;
            font-weight: 500;
            letter-spacing: 1px;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: all 0.3s ease;
            border: none !important;
            outline: none !important;
            box-shadow: none !important;
            background: transparent !important;
            cursor: pointer;
        }

        .member-page .nav-tabs-custom li.active a,
        .member-page .nav-tabs-custom li:hover a {
            color: #ffffff;
            font-weight: 600;
            transform: translateY(-1px);
        }
/* 选项卡滑动条（主题蓝色，非白色） */
.member-page .tab-slider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #00a8ff;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
}

.member-page .card-body {
    padding: 30px !important;
}

/* 全局清除边框（不冲突） */
.member-page a,
.member-page a:focus,
.member-page a:active,
.member-page li,
.member-page li:focus,
.member-page li:active {
    outline: none !important;
    border: none !important;
}
/* 表格：Bootstrap3原生精美样式，100%等宽，全站统一 */
.table-card {
    width: 98%;
    margin: 0;
    font-size: 14px;
}

    .table-card th {
        text-align: center;
        background: #fafafa;
        font-weight: bold;
    }

    .table-card td {
        text-align: left;
        vertical-align: middle;
    }

.content-wrapper.member-page {
    min-height: calc(100vh - 280px) !important;
    padding-bottom: 30px !important;
}
    .content-wrapper.member-page .card {
        height: auto !important;
    }

    .content-wrapper.member-page + .footer {
        margin-top: 0 !important;
        clear: both !important;
        flex-shrink: 0;
    }


/* 标准详情最终样式 */
.std-detail-group {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.std-detail-row {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.std-grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 16px;
}
.std-grid2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 16px;
}

.std-grid-item {
    display: flex;
    align-items: center;
    min-height: 32px;
}

.std-detail-dt {
    width: 160px;
    font-weight: 600;
    color: #002c6a;
    font-size: 14px;
    font-family: "黑体", SimHei, sans-serif;
    padding-right: 8px;
    line-height: 1.4;
}

.std-detail-dd {
    flex: 1;
    font-size: 14px;
    color: #555;
    min-height: 24px;
    line-height: 1.7;
    display: flex;
    align-items: center;
    text-align:justify;
    font-family: "source Han Sans CN","PingFang SC","hIRAGINO Sans GB","Microsoft YaHei";
}

.long-text {
    line-height: 1.6 !important;
    align-items: flex-start !important;
}

.std-view-link {
    color: #005bbb;
    font-weight: 500;
}

/* 业务卡片组 */
.biz-card-section {
    margin-bottom: 20px;
}

.biz-card {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    margin-bottom:15px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

    .biz-card:hover {
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

.biz-card-header {
    background-color: #3498db;
    color: #fff;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid #2980b9;
}

.biz-card-body {
    padding: 20px;
}

.biz-card-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    margin-right: 15px;
    vertical-align: middle;
}

.biz-card-content {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 96px);
}

.biz-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.biz-card-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.biz-card-footer {
    padding: 10px 15px;
    background-color: #f5f8fa;
    border-top: 1px solid #eee;
}

    .biz-card-footer .btn {
        padding: 5px 12px;
        font-size: 12px;
        border-radius: 2px;
    }
/* 响应式适配 */
@media (max-width: 767px) {
    .biz-card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .biz-card-content {
        width: 100%;
        text-align: center;
    }
}

label.error {
    color: #dc3545;
    font-size: 13px;
    margin: 5px 0 0;
    display: block;
}