/* 重置样式和基础设置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 通用重置规则 */
h1, h2, h3, h4, h5, h6, p, ul, li, button, input, textarea {
    margin: 0;
}

/* 列表重置 */
ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
    /* 修复滑动问题：确保body可以垂直滚动 */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/*icon图标*/
.icon {
    width: 10em;
    height: 10em;
    vertical-align: -0.15em;
    fill: currentColor;
    overflow: hidden;
}

/* 顶部标题区域 */
.header {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 25px 15px 35px;
    color: white;
    overflow: hidden;
    min-height: 280px;
    /* 按照1000*763比例调整 */
    /*aspect-ratio: 1000/763;*/
    width: 100%;
}

/* 子页面头部样式（较低） */
.header.compact {
    min-height: 120px;
    padding: 15px 15px 20px;
}

.header-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 80px;
    height: 80px;
    top: 20px;
    right: 30px;
    animation-delay: 0s;
}

.circle-2 {
    width: 120px;
    height: 120px;
    top: 60px;
    right: -20px;
    animation-delay: 2s;
}

.circle-3 {
    width: 60px;
    height: 60px;
    top: 120px;
    right: 80px;
    animation-delay: 4s;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.95;
    z-index: 2;
    overflow: hidden;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    z-index: 1;
    /* 确保图片按1000*763比例缩放 */
    aspect-ratio: 1000/763;
}

.cloud-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 1px, transparent 1px);
    background-size: 25px 25px;
    animation: drift 20s linear infinite;
}

.logo-section {
    position: relative;
    z-index: 3;
}

.logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.logo-icon {
    position: relative;
    width: 120px;
    height: 120px;
    margin-right: 15px;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.logo-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: transparent;
    border-radius: 50%;
    z-index: 1;
}

.main-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 12px;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.title-line-1 {
    display: block;
    font-size: 20px;
    opacity: 0.95;
}

.title-line-2 {
    display: block;
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
}

.subtitle i {
    font-size: 12px;
    opacity: 0.7;
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes drift {
    0% { transform: translateX(0px); }
    100% { transform: translateX(-25px); }
}

@keyframes sparkle {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes compassRotate {
    0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.8; }
    50% { transform: rotate(180deg) scale(1.1); opacity: 1; }
}

/* 快捷服务入口区域 */
.quick-services {
    padding: 25px 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    margin-bottom: 10px;
    border-radius: 0 0 20px 20px;
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.services-header {
    text-align: center;
    margin-bottom: 25px;
}

.services-title {
    font-size: 20px;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.services-title i {
    color: #74b9ff;
    font-size: 18px;
    animation: rocket 2s ease-in-out infinite;
}

.services-subtitle {
    font-size: 13px;
    color: #636e72;
    font-weight: 500;
}

@keyframes rocket {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px;
    border-radius: 16px;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(116, 185, 255, 0.4);
}

.service-icon-wrapper {
    position: relative;
    margin-bottom: 12px;
}

.service-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    position: relative;
    box-shadow: 0 6px 20px rgba(116, 185, 255, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.service-item:hover .service-icon::before {
    animation: shine 0.6s ease;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}

.service-pulse {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid rgba(116, 185, 255, 0.3);
    border-radius: 18px;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.2); opacity: 0; }
}

.service-name {
    font-size: 13px;
    color: #2d3436;
    font-weight: 600;
    margin-bottom: 8px;
}

/* 新的服务卡片样式 */
.service-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: linear-gradient(181deg, #eceeff, rgba(236, 245, 255, 0));
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.quick-services .service-card:hover {
    background: #667eea !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
}

.quick-services .service-card:hover .service-title,
.quick-services .service-card:hover .service-subtitle {
    color: white !important;
}

.service-icon-3d {
    width: 50px;
    height: 50px;
    background: transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 22px;
    margin-bottom: 15px;
    position: relative;
}

.quick-services .service-card:hover .service-icon-3d {
    backdrop-filter: blur(10px) !important;
    color: white !important;
}

.service-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.2;
}

.service-subtitle {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.3;
}

/* 首页快捷服务标题和副标题居中 */
.quick-services .service-card .service-title {
    text-align: center;
}

.quick-services .service-card .service-subtitle {
    text-align: center;
}

/* 首页快捷服务卡片专用样式 */
.quick-services .service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
}

.quick-services .service-card .service-btn {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #667eea;
    background: white;
    color: #667eea;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.quick-services .service-card .service-btn:hover {
    background: #667eea;
    color: white;
}

.quick-services .service-card:hover .service-btn {
    background: white !important;
    color: #667eea !important;
    border-color: white !important;
}

.quick-services .service-card:hover .service-btn:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    transition: color 0.3s ease;
}

/* 通知公告区域 */
.notification-section {
    padding: 15px;
    background: white;
    margin-bottom: 10px;
}

.notification-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #74b9ff;
}

.notification-label {
    color: #0984e3;
    font-weight: 600;
    font-size: 14px;
}

.notification-content {
    color: #666;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.notification-content i {
    font-size: 12px;
}

/* 企业诉求和区内企业推介区域 */
.dual-banner-section {
    padding:20px 10px;
}

.dual-banner-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.dual-banner-item {
    position: relative;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.banner-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.banner-text-content {
    display: none;
}

/* 经开区机构服务设置 Banner */
.service-organization-banner {
    padding:20px 10px;
}

.org-banner-item {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.org-banner-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.org-banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* 特色创新区域 */
.featured-innovation {
    padding: 20px 15px;
    background: white;
    margin-bottom: 30px;
}

.innovation-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
}

.innovation-title {
    font-size: 18px;
    font-weight: bold;
    color: #0984e3;
    display: flex;
    align-items: center;
    gap: 8px;
}

.innovation-title i {
    color: #ffd700;
    font-size: 16px;
}

.more-link {
    color: #636e72;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.more-link:hover {
    color: #0984e3;
    transform: translateX(3px);
}

.more-link i {
    font-size: 12px;
}

.innovation-slider-wrapper {
    position: relative;
    width: 100%;
}

.innovation-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    user-select: none;
}

.innovation-slider:active {
    cursor: grabbing;
}

.innovation-track {
    display: flex;
    transition: transform 0.4s ease;
    will-change: transform;
}

.innovation-page {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 10px;
}

.innovation-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.innovation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.innovation-image {
    position: relative;
    width: 100%;
    height: 140px;
    overflow: hidden;
}

.innovation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.innovation-card:hover .innovation-image img {
    transform: scale(1.1);
}

.innovation-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.4);
}

.innovation-content {
    padding: 12px;
}

.innovation-card-title {
    font-size: 14px;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 6px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.innovation-subtitle {
    font-size: 12px;
    color: #636e72;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 0;
}

.slider-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.indicator {
    width: 24px;
    height: 4px;
    background: #dfe6e9;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    width: 32px;
}

.indicator:hover {
    background: #b2bec3;
}

/* 通用区块样式 - 被多个页面使用 */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
}

.section-title {
    font-size: 18px;
    font-weight: bold;
    color: #0984e3;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title i {
    color: #ffd700;
    font-size: 16px;
}

.section-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    border-radius: 20px;
    padding: 4px 12px;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.badge-text {
    color: white;
    font-size: 12px;
    font-weight: 600;
}

/* 响应式设计 */
@media (max-width: 375px) {
    .header {
        padding: 20px 12px 25px;
        min-height: 240px;
        /* 保持1000*763比例 */
        aspect-ratio: 1000/763;
    }
    
    .header.compact {
        min-height: 100px;
        padding: 12px 12px 15px;
    }
    
    .logo-icon {
        width: 100px;
        height: 100px;
    }
    
    .main-title {
        font-size: 18px;
    }
    
    .title-line-1 {
        font-size: 16px;
    }
    
    .title-line-2 {
        font-size: 20px;
    }
    
    .subtitle {
        font-size: 12px;
    }
    
    .services-title {
        font-size: 18px;
    }
    
    .service-grid {
        gap: 12px;
        max-width: 350px;
    }
    
    .service-card {
        padding: 15px;
    }
    
    .service-icon-3d {
        width: 45px;
        height: 45px;
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .service-title {
        font-size: 14px;
    }
    
    .service-subtitle {
        font-size: 11px;
        margin-bottom: 12px;
    }
    
    .quick-services .service-card .service-btn {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .service-name {
        font-size: 11px;
    }
    
    .banner-title {
        font-size: 20px;
    }
    
    .banner-subtitle {
        font-size: 12px;
    }
    
    .department-icon {
        width: 50px;
        height: 50px;
    }
    
    .department-name {
        font-size: 16px;
    }
    
    .btn {
        padding: 8px 12px;
        font-size: 12px;
    }
}

@media (min-width: 768px) {
    .header {
        padding: 35px 40px 45px;
        min-height: 320px;
        /* 保持1000*763比例 */
        aspect-ratio: 1000/763;
    }
    
    .header.compact {
        min-height: 140px;
        padding: 20px 40px 25px;
    }
    
    .logo-icon {
        width: 150px;
        height: 150px;
    }
    
    .main-title {
        font-size: 28px;
    }
    
    .title-line-1 {
        font-size: 24px;
    }
    
    .title-line-2 {
        font-size: 32px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .quick-services {
        padding: 35px 40px;
        border-radius: 0 0 30px 30px;
    }
    
    .services-title {
        font-size: 24px;
    }
    
    .services-subtitle {
        font-size: 15px;
    }
    
    .service-grid {
        max-width: 500px;
        margin: 0 auto;
        gap: 20px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .service-icon-3d {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 18px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    .service-subtitle {
        font-size: 13px;
        margin-bottom: 18px;
    }
    
    .quick-services .service-card .service-btn {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        border-radius: 20px;
    }
    
    .service-name {
        font-size: 15px;
    }
    
    .dual-banner-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .dual-banner-item {
        height: 100px;
    }
    
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-item {
    animation: fadeInUp 0.6s ease-out;
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }
.service-item:nth-child(5) { animation-delay: 0.5s; }

/* 悬浮效果 */

.service-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(116, 185, 255, 0.4);
}

/* 加载动画 */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* 政策解读栏目样式 - 选项卡版本 */
/* 选项卡导航 */
.policy-tabs {
    background: #f8f9fa;
    border-radius: 20px 20px 0 0;
    padding: 0;
}

.tab-nav {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #e9ecef;
}

.tab-item {
    flex: 1;
    padding: 15px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
    border: none;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.tab-item.active {
    color: #667eea;
    background: white;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
    font-weight: 800;
    text-shadow: 0 1px 3px rgba(102, 126, 234, 0.3);
    transform: translateY(-1px);
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #667eea;
}

/* 选项卡内容 */
.tab-content {
    background: white;
    border-radius: 0 0 20px 20px;
    min-height: 200px;
}

.tab-panel {
    display: none;
    padding: 20px;
}

.tab-panel.active {
    display: block;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.news-item {
    padding: 8px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.news-title {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

/* 新闻列表样式 - 用于首页新闻资讯区域 */
.news-list {
    display: flex;
    flex-direction: column;
}

.news-item {
    display: flex;
    align-items: flex-start;
    padding: 10px 0;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
    margin: 5px 0;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item:hover {
    text-decoration: none;
    color: inherit;
}

.news-date {
    flex-shrink: 0;
    width: 60px;
    text-align: center;
    margin-right: 5px;
}

.news-day {
    font-size: 28px;
    font-weight: 800;
    color: #95a5a6;
    line-height: 1.2;
    margin-bottom: 4px;
}

.news-month {
    font-size: 12px;
    color: #999;
    line-height: 1.2;
}

.news-divider {
    width: 1px;
    background: #e9ecef;
    margin-right: 10px;
    flex-shrink: 0;
    align-self: stretch;
}

.news-content {
    flex: 1;
    min-width: 0;
}

.news-title {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.news-summary {
    font-size: 13px;
    color: #999;
    margin: 0;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}


/* 政策解读栏目样式 */
.policy-interpretation {
    margin: 20px 15px 20px 15px;
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}


.policy-interpretation .section-header {
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
}

.policy-interpretation .section-title {
    color: #2c3e50;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-interpretation .section-title i {
    color: #74b9ff;
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

.policy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.policy-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(116, 185, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.policy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #74b9ff, #0984e3, #74b9ff);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

.policy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(116, 185, 255, 0.2);
}

.policy-card.featured {
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
    border: 2px solid #74b9ff;
}

.policy-card.featured::before {
    height: 6px;
    background: linear-gradient(90deg, #74b9ff, #0984e3, #6c5ce7, #74b9ff);
}

.policy-header {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    margin-bottom: 15px;
}


.policy-badge {
    background: linear-gradient(135deg, #ff7675 0%, #d63031 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 118, 117, 0.3);
}

.policy-content {
    margin-bottom: 20px;
}

.policy-title {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.policy-summary {
    color: #636e72;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.policy-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.policy-date,
.policy-views {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #74b9ff;
    font-size: 13px;
    font-weight: 500;
}

.policy-date i,
.policy-views i {
    font-size: 12px;
}

.policy-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(116, 185, 255, 0.3);
}

.policy-actions {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-top: 15px;
}

.policy-actions .btn {
    flex: 1;
    padding: 10px 15px;
    border-radius: 12px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    outline: none;
    text-decoration: none;
    box-sizing: border-box;
}

.policy-actions button {
    background: none;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    cursor: pointer;
}

.policy-actions .btn-read {
    background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(116, 185, 255, 0.3) !important;
    border: none !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    width: 100% !important;
    flex: 1 !important;
    min-width: 120px !important;
    padding: 12px 20px !important;
}

.policy-actions .btn-read:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(116, 185, 255, 0.4) !important;
    background: linear-gradient(135deg, #0984e3 0%, #74b9ff 100%) !important;
}

.btn-download {
    background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 184, 148, 0.4);
}

.policy-footer {
    margin-top: 25px;
    margin-bottom: 80px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.btn-more {
    background: linear-gradient(135deg, #6c5ce7 0%, #5f3dc4 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.3);
}

.btn-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.4);
}

/* 响应式设计 */
@media (max-width: 375px) {
    .policy-interpretation {
        margin: 15px 10px;
        padding: 20px 15px;
    }
    
    .policy-card {
        padding: 15px;
    }
    
    .policy-title {
        font-size: 15px;
    }
    
    .policy-summary {
        font-size: 13px;
    }
    
    .policy-actions .btn {
        padding: 8px 12px;
        font-size: 13px;
    }
}

@media (min-width: 768px) {
    .policy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .policy-interpretation {
        margin: 30px 20px;
        padding: 30px 25px;
    }
    
    .policy-title {
        font-size: 18px;
    }
    
    .policy-summary {
        font-size: 15px;
    }
    
    .policy-footer {
        margin-bottom: 100px;
    }
    
    /* 选项卡响应式样式 */
    .tab-item {
        padding: 18px 25px;
        font-size: 19px;
    }
    
    .tab-panel {
        padding: 25px;
    }
    
    .news-item {
        padding: 15px 18px;
    }
    
    .news-title {
        font-size: 16px;
    }
    
}


/* 重新设计的首页Banner样式 */
.header:not(.compact) {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    /* 按照1000*763比例调整 */
    aspect-ratio: 1000/763;
    width: 100%;
    /* 设置图片比例变量 */
    --banner-ratio: 1000/763;
}

.header:not(.compact)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #74b9ff, #0984e3, #00b894, #fdcb6e, #e17055);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
    z-index: 10;
}

.header:not(.compact) .header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    /* 确保背景容器也按比例显示 */
    aspect-ratio: 1000/810;
    overflow: hidden;
}

.header:not(.compact) .banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 8s ease-out;
    /* 确保图片按1000*563比例显示 */
    aspect-ratio: 1000/763;
    object-fit: cover;
}

.header:not(.compact):hover .banner-image {
    transform: scale(1.05);
}



.header:not(.compact) .header-content {
    position: relative;
    z-index: 3;
    color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.header:not(.compact) .title-section {
    margin-top: 20px;
}

.header:not(.compact) .main-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.header:not(.compact) .title-line-1 {
    display: block;
    font-size: 24px;
    opacity: 0.9;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #ffffff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header:not(.compact) .title-line-2 {
    display: block;
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff, #e6f3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(255,255,255,0.3);
}

.header:not(.compact) .subtitle {
    font-size: 16px;
    opacity: 0.95;
    line-height: 1.6;
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 500;
    margin-bottom: 25px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    flex-wrap: nowrap;
}

.header:not(.compact) .subtitle-text {
    white-space: nowrap;
    flex-shrink: 0;
}

.header:not(.compact) .subtitle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header:not(.compact) .subtitle-icon i {
    font-size: 16px;
    color: #74b9ff;
    animation: compassRotate 3s ease-in-out infinite;
}

/* 强制确保副标题水平布局 */
.header:not(.compact) .subtitle,
.header:not(.compact) .subtitle * {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
}

.header:not(.compact) .subtitle-text {
    display: inline !important;
    flex-direction: initial !important;
}

.header:not(.compact) .feature-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.header:not(.compact) .badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    animation: badgeFloat 3s ease-in-out infinite;
}

.header:not(.compact) .badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.header:not(.compact) .badge i {
    font-size: 12px;
    color: #ffd700;
}

.header:not(.compact) .badge-1 { animation-delay: 0s; }
.header:not(.compact) .badge-2 { animation-delay: 0.5s; }
.header:not(.compact) .badge-3 { animation-delay: 1s; }

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

/* 响应式调整 */
@media (max-width: 768px) {
    .header:not(.compact) {
        min-height: 400px;
        /* 保持1000*763比例 */
        aspect-ratio: 1000/763;
    }
    
    /* logo-icon样式由基础样式控制 */
    
    .header:not(.compact) .main-title {
        font-size: 24px;
    }
    
    .header:not(.compact) .title-line-1 {
        font-size: 20px;
    }
    
    .header:not(.compact) .title-line-2 {
        font-size: 26px;
    }
    
    .header:not(.compact) .subtitle {
        font-size: 14px;
        gap: 8px;
        flex-direction: row !important;
    }
    
    .header:not(.compact) .subtitle-icon i {
        font-size: 14px;
    }
    
    .header:not(.compact) .feature-badges {
        gap: 10px;
    }
    
    .header:not(.compact) .badge {
        font-size: 12px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .header:not(.compact) {
        min-height: 320px;
        /* 保持1000*763比例 */
        aspect-ratio: 1000/763;
    }
    
    /* logo-icon样式由基础样式控制 */
    
    .header:not(.compact) .main-title {
        font-size: 20px;
    }
    
    .header:not(.compact) .title-line-1 {
        font-size: 18px;
    }
    
    .header:not(.compact) .title-line-2 {
        font-size: 22px;
    }
    
    .header:not(.compact) .feature-badges {
        flex-direction: column;
        align-items: center;
    }
}

/* 新的Banner布局样式 */
.header:not(.compact) .header-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px;
}

.header:not(.compact) .nav-left {
    display: flex;
    align-items: center;
}

.header:not(.compact) .logo-section {
    position: absolute;
    left: 0;
    top: 0;
}

.header:not(.compact) .logo-icon {
    width: 408px;
    height: 75px;
    flex-shrink: 0;
}

.header:not(.compact) .logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
    border-radius: 12px;
}

.header:not(.compact) .nav-right {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
}

.header:not(.compact) .auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.header:not(.compact) .auth-btn {
    padding: 6px 14px;
    border: none;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header:not(.compact) .auth-btn i {
    font-size: 12px;
}

.header:not(.compact) .register-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.header:not(.compact) .register-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header:not(.compact) .login-btn {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    color: white;
}

.header:not(.compact) .login-btn:hover {
    background: linear-gradient(135deg, #5fa3e8, #0770c7);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(9, 132, 227, 0.3);
}

.header:not(.compact) .main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 160px 10px 0px 10px
}

.header:not(.compact) .main-slogan {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    max-width: 600px;
}

.header:not(.compact) .slogan-logo {
    width: 260px;
    height: 61px;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.2));
}

.header:not(.compact) .search-section {
    display: flex;
    max-width: 600px;
    width: 100%;
    align-items: stretch;
}

.header:not(.compact) .search-bar {
    flex: 1;
    position: relative;
    background: white;
    border-radius: 10px;
    padding: 0px 0px 0px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.header:not(.compact) .search-bar i {
    color: #999;
    font-size: 16px;
}

.header:not(.compact) .search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    color: #333;
    background: transparent;
}

.header:not(.compact) .search-input::placeholder {
    color: #999;
}

.header:not(.compact) .search-btn {
    background: #ff6b35;
    color: white;
    border: none;
    border-radius: 0 10px 10px 0;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
    white-space: nowrap;
    min-width: 100px;
    margin-right: 0;
}

.header:not(.compact) .search-btn:hover {
    background: #e55a2b;
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .header:not(.compact) .slogan-logo {
        width: 230px;
        height: 54px;
    }
    
    .header:not(.compact) .search-section {
        max-width: 100%;
    }
    
    .header:not(.compact) .search-btn {
        min-width: 80px;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .header:not(.compact) .logo-icon {
        width: 326px;
        height: 60px;
    }
    
    .header:not(.compact) .logo-section {
        left: 0;
        top: 5;
    }
    
    .header:not(.compact) .nav-right {
        top: 0;
        right: 0;
    }
    
    .header:not(.compact) .auth-btn {
        padding: 5px 12px;
        font-size: 11px;
    }
    
    .header:not(.compact) .auth-btn i {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .header:not(.compact) .slogan-logo {
        width: 194px;
        height: 46px;
    }
    
    .header:not(.compact) .logo-section {
        left: 0;
        top: 5;
    }
    
    .header:not(.compact) .logo-icon {
        width: 285px;
        height: 52px;
    }
    
    .header:not(.compact) .nav-right {
        top: 0;
        right: 0;
    }
    
    .header:not(.compact) .auth-buttons {
        gap: 6px;
    }
    
    .header:not(.compact) .auth-btn {
        padding: 4px 10px;
        font-size: 11px;
    }
    
    .header:not(.compact) .auth-btn i {
        font-size: 10px;
    }
    
    .header:not(.compact) .auth-btn span {
        display: inline;
    }
    
    .header:not(.compact) .nav-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .header:not(.compact) .quick-nav-dropdown {
        min-width: 140px;
    }
    
    .header:not(.compact) .quick-nav-item {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    /* 选项卡移动端响应式样式 */
    .policy-interpretation {
        margin: 15px 10px 15px 10px;
    }
    
    .tab-item {
        padding: 10px;
        font-size: 16px;
    }
    
    .tab-panel {
        padding: 15px;
    }
    
    .news-item {
        padding: 8px 15px;
    }
    
    .news-title {
        font-size: 14px;
    }
    
    .news-item {
        padding: 12px 0;
    }
    
    .news-date {
        width: 80px;
        margin-right: 5px;
    }
    
    .news-day {
        font-size: 24px;
    }
    
    .news-month {
        font-size: 11px;
    }
    
    .news-title {
        font-size: 14px;
    }
    
    .news-summary {
        font-size: 12px;
    }
}

/* 统一弹窗样式 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 25px;
    max-width: 90%;
    max-height: 80%;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
    position: relative;
}

@keyframes modalSlideIn {
    from { 
        transform: translateY(-50px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    position: relative;
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2d3436;
    margin: 0;
    flex: 1;
}

.modal-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #636e72;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
    transform: scale(1.1);
}

.modal-body {
    color: #636e72;
    line-height: 1.6;
}

.search-modal-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #636e72;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 10;
}

.search-modal-close:hover {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
    transform: scale(1.1);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .modal-content {
        margin: 20px;
        padding: 20px;
        max-width: calc(100% - 40px);
    }
    
    .modal-header h3 {
        font-size: 18px;
    }
    
    .modal-close,
    .search-modal-close {
        width: 30px;
        height: 30px;
        font-size: 16px;
        top: -8px;
        right: -8px;
    }
}

/* 公告栏样式 */
.announcement-bar {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 12px 0;
}

.announcement-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.announcement-icon {
    width: 32px;
    height: 32px;
    background: #e3f2fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    flex-shrink: 0;
}

.announcement-icon i {
    color: #2196f3;
    font-size: 14px;
}

.announcement-label {
    background: #e3f2fd;
    color: #2196f3;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #bbdefb;
    flex-shrink: 0;
}

.announcement-scroll {
    flex: 1;
    height: 24px;
    overflow: hidden;
    position: relative;
}

.announcement-bar .announcement-scroll .announcement-list {
    animation: scrollUp 20s linear infinite;
    gap: 0;
    padding: 0;
}

.announcement-bar .announcement-scroll .announcement-item {
    color: #333;
    font-size: 14px;
    font-weight: 400;
    height: 24px;
    line-height: 24px;
    white-space: nowrap;
    overflow: visible;
    padding: 0;
    margin: 0;
    background: transparent;
    border-radius: 0;
    text-decoration: none;
    display: block;
}

.announcement-bar .announcement-scroll .announcement-item:hover {
    color: #333;
    text-decoration: none;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }
    16% {
        transform: translateY(0);
    }
    20% {
        transform: translateY(-24px);
    }
    36% {
        transform: translateY(-24px);
    }
    40% {
        transform: translateY(-48px);
    }
    56% {
        transform: translateY(-48px);
    }
    60% {
        transform: translateY(-72px);
    }
    76% {
        transform: translateY(-72px);
    }
    80% {
        transform: translateY(-96px);
    }
    96% {
        transform: translateY(-96px);
    }
    100% {
        transform: translateY(-120px);
    }
}

.announcement-link {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.announcement-link:hover {
    color: #2196f3;
}

.announcement-link i {
    font-size: 12px;
}

/* 公告栏响应式调整 */
@media (max-width: 768px) {
    .announcement-content {
        padding: 0 15px;
        gap: 10px;
    }
    
    .announcement-icon {
        width: 28px;
        height: 28px;
    }
    
    .announcement-icon i {
        font-size: 12px;
    }
    
    .announcement-label {
        padding: 3px 8px;
        font-size: 11px;
    }
    
    .announcement-item {
        font-size: 13px;
    }
    
    .announcement-link {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .announcement-content {
        padding: 0 10px;
        gap: 8px;
    }
    
    .announcement-item {
        font-size: 12px;
    }
    
    .announcement-link {
        font-size: 12px;
    }
    
    /* 企业诉求和区内企业推介响应式 */
    .dual-banner-container {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .dual-banner-item {
        height: 90px;
    }
    
    /* 特色创新响应式 */
    .innovation-page {
        gap: 10px;
    }
    
    .innovation-image {
        height: 110px;
    }
    
    .innovation-card-title {
        font-size: 13px;
    }
    
    .innovation-subtitle {
        font-size: 11px;
    }
    
}

/* 办事大厅地图区域 */
.service-hall-map {
    padding: 20px 10px;
    background: #f8f9fa;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
}

.map-header {
    text-align: center;
    margin-bottom: 25px;
}

.map-title {
    font-size: 24px;
    font-weight: 700;
    color: #2d3436;
    margin: 0 0 8px 0;
}

.map-subtitle {
    font-size: 14px;
    color: #636e72;
    margin: 0;
}

.map-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-wrapper {
    height: 400px;
    position: relative;
}

#amap-container {
    width: 100%;
    height: 100%;
}

.map-info {
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    display: flex;
    align-items: center;
}

.info-card {
    width: 100%;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0984e3, #0770c7);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.info-icon i {
    font-size: 24px;
    color: white;
}

.info-title {
    font-size: 18px;
    font-weight: 700;
    color: #2d3436;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.info-item i {
    font-size: 16px;
    color: #0984e3;
    margin-top: 2px;
    flex-shrink: 0;
}

.info-item span {
    font-size: 14px;
    color: #495057;
    line-height: 1.6;
}
/* App下载区域 */
.app-download-section {
    padding: 20px 15px 130px 10px;
    background: #f8f9fa;
}

.app-download-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.app-qrcode {
    flex-shrink: 0;
}

.qrcode-image {
    width: 120px;
    height: 120px;
    display: block;
    border-radius: 8px;
    object-fit: contain;
}

.app-download-text {
    flex: 1;
}

.download-description {
    margin: 0;
    font-size: 15px;
    color: #495057;
    line-height: 1.6;
}
/* 响应式设计 */
@media (max-width: 768px) {
    .map-content {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .map-wrapper {
        height: 300px;
    }
    
    .map-info {
        padding: 20px;
    }
    
    .info-title {
        font-size: 16px;
    }
    
    .info-item span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .service-hall-map {
        padding: 20px 10px;
    }
    
    .map-title {
        font-size: 20px;
    }
    
    .map-subtitle {
        font-size: 13px;
    }
    
    .map-wrapper {
        height: 250px;
    }
    
    .map-info {
        padding: 15px;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 15px;
    }
    
    .info-icon i {
        font-size: 20px;
    }
    
    .info-title {
        font-size: 15px;
        margin-bottom: 15px;
    }
    
    .info-details {
        gap: 12px;
    }
    
    .info-item {
        gap: 10px;
    }
    
    .info-item i {
        font-size: 14px;
    }
    
    .info-item span {
        font-size: 12px;
    }
}

/* 企业诉求用户协议弹窗 */
.appeal-agreement-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.appeal-agreement-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.modal-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
    pointer-events: auto;
}

.modal-header {
    padding: 0px 0px 10px 0px;
    border-bottom: 1px solid #e9ecef;
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2d3436;
    margin: 0;
}

.modal-body {
    padding: 0px 0px 20px 0px;
    max-height: 60vh;
    overflow-y: auto;
}

.agreement-text {
    font-size: 15px;
    color: #0984e3;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 600;
}

.agreement-detail {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 16px;
}

.agreement-detail p {
    font-size: 14px;
    color: #636e72;
    line-height: 1.8;
    margin: 12px 0;
}

.agreement-detail p:first-child {
    margin-top: 0;
}

.agreement-detail p:last-child {
    margin-bottom: 0;
}

.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 12px;
    justify-content: center;
}

.modal-btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.agree-btn {
    background: linear-gradient(135deg, #0984e3, #0770c7);
    color: white;
}

.agree-btn:hover {
    background: linear-gradient(135deg, #0770c7, #045a9e);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(9, 132, 227, 0.3);
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* 响应式设计 */
@media (max-width: 480px) {
    .modal-content {
        width: 95%;
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 0px 0px 10px 0px;
    }
    
    .modal-header h3 {
        font-size: 18px;
    }
    
    .modal-body {
        padding: 0px 0px 20px 0px;
    }
    
    .agreement-text {
        font-size: 14px;
    }
    
    .agreement-detail p {
        font-size: 13px;
    }
    
    .modal-footer {
        padding: 12px 20px;
        flex-direction: column;
    }
    
    .modal-btn {
        width: 100%;
        padding: 12px 24px;
    }
}
