/* 云专线页面特定样式 */

/* 云专线Hero现代化样式 */
.cloud-hero-modern {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f2761 0%, #2563eb 60%, #60a5fa 100%);
}

.cloud-hero-modern::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 70%;
    height: 80%;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    filter: blur(60px);
}

.cloud-hero-modern::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 90%;
    height: 70%;
    background: rgba(79, 70, 229, 0.25);
    border-radius: 50%;
    filter: blur(80px);
}

.cloud-hero-content {
    position: relative;
    z-index: 10;
}

.cloud-hero-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(to right, #f0f9ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.cloud-hero-tagline {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 600px;
}

/* 云专线Hero特性徽章样式 */
.cloud-feature-badge {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    margin-bottom: 0.85rem; /* 增加统一的间距 */
    border-left: 3px solid #f97316;
    transform: translateX(0); /* 移除初始位移 */
    width: 90%;
}

.cloud-feature-badge span {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

/* 表单placeholder颜色调整 */
::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* 添加节点脉冲动画 */
@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.pulse {
    animation: pulse 1.5s infinite;
}

/* 确保地图容器正确显示 */
.world-map-container {
    position: relative;
    z-index: 1;
}

#world-map {
    width: 100%;
    height: 100%;
    z-index: 5;
}

/* 次级导航固定样式 */
.subnav-fixed {
    position: fixed;
    top: 56px; /* 修改为主菜单的高度，让二级菜单显示在主菜单下方 */
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #f9fafb;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.content-wrapper {
    display: none;
    height: 56px; /* 与导航条高度相同 */
}

/* 活跃的次级导航链接样式 */
.subnav-link.active {
    color: #2563eb;
    font-weight: 600;
    border-bottom: 2px solid #2563eb;
}

/* "联系我们"按钮样式 */
.contact-btn {
    background-color: #3b82f6 !important;
    color: white !important;
    border-radius: 9999px !important;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-btn:hover {
    background-color: #2563eb !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* "联系我们"按钮的特殊高亮状态 */
.subnav-fixed .contact-btn {
    background-color: #2563eb !important; /* 明亮的蓝色背景 */
    color: white !important;
    font-weight: 600 !important;
    border-radius: 9999px !important; /* 确保圆角保留 */
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.3) !important; /* 添加阴影增强可见性 */
}

/* "联系我们"按钮的活跃状态 */
.contact-active {
    background-color: #1e40af !important; /* 更深的蓝色背景 */
    color: white !important;
    font-weight: 700 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.4) !important; /* 更强的阴影 */
} 