a {
    text-decoration: none;
}
a:hover{
    text-decoration: none;
}

/* 首页固定导航 */
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

body:has(.header-fixed) {
    padding-top: 200px;
}

/* 头部容器 */
        .headerBox{
            width: 100%;
            
            height: 140px;
            background: #395CB5;
            margin: 0 auto;
            border-bottom: 3px solid #FFC100; /* 深色边框 */
        }
        .header{
            width: 1000px;
            height: 135px;
            background: #395CB5;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0px;
        }

        /* 左侧 Logo 区域 */
        .logo-area {
            display: flex;
            align-items: center;
            gap: 15px; /* 图标和文字间�?*/
        }

        .logo-img {
            width: 406px;
            height: 100px;
        }

        .logo-text {
            color: #fff;
            text-align: center;
        }

        .logo-text h1 {
            font-size: 20px;
            margin-bottom: 2px;
            letter-spacing: 1px;
        }

        .logo-text p {
            font-size: 12px;
            color: #e0e0e0;
            letter-spacing: 2px;
        }

        /* 右侧功能图标区域 */
        .nav-icons {
            display: flex;
            gap: 15px;
        }

        .icon-item {
            width: 81px;
            height: 81px;
            border-radius: 50%;
        }
        .icon{
           width: 81px;
           height: 81px;
           display: block;
           margin: 0px;
           padding: 0px;
        }

        .icon-text {
            font-size: 13px;
            color: #2C2C2C;
            line-height: 33px;
            text-align: center; /* 文字居中 */
        }

        /* 底部导航�?*/
        .sub-navBox{
            width: 100%;
            
            height: 60px;
            background-color: #395CB5; /* 更深的蓝�?*/
            margin: 0 auto;
        }
        .sub-nav {
            width: 1000px;
            height: 60px;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            margin: 0 auto;
        }

        .sub-nav a {
            text-decoration: none;
            font-weight: bold;
            font-size: 16px;
            color: #FFFFFF;
            line-height: 60px;
            padding: 0px 18px;
        }
        .oneTitle{
            height: 60px;
            display: flex;
        }

        .sub-nav a:hover {
           background-color: #fff;
           color: #2C4995;
        }

        /* 导航项容�?*/
        .nav-item {
            position: relative;
            height: 60px;
        }
        .nav-item::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 17px;
            background-color: #FFC100;
        }
        .nav-item:last-child::after {
            display: none;
        }
        /* 首页高亮 - 整个导航项白色背�?*/
        .nav-item.active,
        .nav-item:hover {
            background-color: #fff;
        }

        .nav-item.active > a,
        .nav-item:hover > a {
            color: #2C4995;
        }

        /* 下拉菜单 */
        .sub-menu {
            position: absolute;
            top: 60px;
            left: 0;
            width: 100%;
            min-width: 100%;
            background: #395CB5;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .nav-item:hover .sub-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .sub-menu a {
            display: block;
            padding: 12px 20px;
            font-size: 15px;
            color: #fff;
            line-height: normal;
            white-space: nowrap;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        .sub-menu a:last-child {
            border-bottom: none;
        }

        .sub-menu a:hover {
            background: #fff;
            color: #2C4995;
        }
        

                /* 快捷导航�?*/
        .quick-nav-section {
            width: 100vw;
            
            height: 215px;
            position: relative;
        }

        .quick-nav-wrapper {
            width: 100vw;
            
            height: 200px;
            background: #395CB5;
            margin: 0 auto;
            position: relative;
            z-index: 2;
           
        }

        .quick-nav-items {
            width: 1000px;
            height: 200px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 260px;
            margin: 0 auto;
        }

        .quick-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #fff;
            transition: all 0.3s ease;
        }

        .quick-nav-item:hover {
            transform: translateY(-5px);
            opacity: 0.9;
        }

        .quick-nav-item img {
            width: 49px;
            height: 49px;
            margin-bottom: 15px;
        }

        .quick-nav-item span {
            font-size: 16px;
            color: #fff;
        }

        /* 第二部分：黄色条 */
        .quick-nav-part2 {
            width: 100vw;
            
            height: 130px;
            background: #395CB5;
            display: flex;
            justify-content: center;
            padding-top: 20px;
        }

        .quick-nav-bar {
            width: 100vw;
            
            height: 54px;
            background: #FFC100;
            box-shadow: 0px 3px 6px 1px rgba(0,0,0,0.16);
            border-radius: 30px 30px 20px 20px;
            position: absolute;
            bottom: 0px;
            left: 0;
            z-index: 1;
        }

        /* 底部内容区域 */
        .footer-content-section {
            width: 100vw;
            
            background: #F5F5F5;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            padding: 40px 0;
        }

        .footer-content-wrapper {
            width: 1000px;
            height: 265px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        /* 左侧：医院信�?*/
        .footer-info-left {
            width: 400px;
        }

        .footer-logo {
            margin-bottom: 20px;
        }

        .footer-logo img {
            width: 360px;
            height: 88px;
        }

        .footer-contact p {
            font-size: 16px;
            color: #525252;
            line-height: 36px;
            margin: 0;
        }

        .footer-contact p span {
            color: #999;
        }

        /* 中间：快速导航和友情链接 */
        .footer-links-center {
            display: flex;
            gap: 70px;
            margin-top: 15px;
        }

        .footer-nav-group h4 {
            font-size: 18px;
            color: #F46F29;
            margin: 0 0 15px 0;
            font-weight: bold;
        }

        .footer-nav-group ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-nav-group ul li {
            /* margin-bottom: 10px; */
        }

        .footer-nav-group ul li a {
            font-size: 16px;
            color: #525252;
            line-height: 36px;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-nav-group ul li a:hover {
            color: #3B6EB5;
        }

        /* 右侧：二维码 */
        .footer-qr-right {
            display: flex;
            gap: 5px;
        }

        .qr-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .qr-item img {
            width: 130px;
            height: 130px;
        }

        .qr-item span {
            font-size: 16px;
            color: #525252;
            line-height: 36px;
        }

        /* 版权区域 */
        .copyright-section {
            width: 100vw;
            
            height: 100px;
            background: #F5F5F5;
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            display: flex;
            align-items: center;
            justify-content: center;
            border-top: 1px solid #E8E8E8;
        }

        .copyright-wrapper {
            width: 1000px;
            height: 100px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .copyright-text p {
            font-size: 14px;
            color: #666;
            margin: 0;
        }

        .copyright-badge img {
            width: 80px;
            height: 80px;
        }
/* 移动端适配 - 屏幕宽度小于768px */
@media screen and (max-width: 768px) {
    .headerBox,
    .sub-navBox,
    .quick-nav-section,
    .quick-nav-wrapper,
    .quick-nav-part2,
    .quick-nav-bar,
    .footer-content-section,
    .copyright-section {
        min-width: auto !important;
        width: 100% !important;
    }
    
    /* 头部导航 */
    .headerBox {
        width: 100%;
        height: auto;
        padding: 10px;
    }
    .header {
        width: 100%;
    }
    
    /* 底部区域 */
    .quick-nav-section,
    .footer-content-section,
    .copyright-section {
        width: 100%;
        padding: 20px 10px;
    }
    .quick-nav-wrapper,
    .footer-content-wrapper,
    .copyright-wrapper {
        width: 100%;
        height: auto;
        flex-direction: column;
        gap: 20px;
    }
    
    /* 隐藏子导航 */
    .sub-navBox {
        display: none;
    }
}
