/* 基础样式和重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f5f5f5;
}


.hs-main-content {
    flex: 1;
    padding: 40px 20px;
    background-color: white;
    text-align: center;
    margin-top: 80px;
}

.hs-main-content h1 {
    color: #333;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.hs-main-content p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

/* 网站公共头部样式 - 白色主题 */
.hs-header {
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.hs-header.hidden {
    transform: translateY(-100%);
}

.hs-header.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.hs-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 120px;
    height: 80px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

/* Logo 样式 */
.hs-logo {
    display: flex;
    align-items: center;
}

.hs-logo-img {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
}

/* 导航菜单样式 */
.hs-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.hs-nav-list {
    display: flex;
    list-style: none;
}

.hs-nav-item {
    margin: 0 20px;
    position: relative;
}

.hs-nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    padding: 26px 26px;
    display: block;
    position: relative;
    transition: color 0.3s ease;
}

.hs-nav-link:hover {
    color: #FF4136;
}

/* 导航悬停下划线动画 - 放在阴影上边 */
.hs-nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px; /* 调整位置在阴影上方 */
    left: 50%;
    width: 0;
    height: 3px;
    background-color: #FF4136;
    transition: all 0.4s ease;
    transform: translateX(-50%);
    z-index: 1001; /* 确保在阴影上方 */
}

.hs-nav-link:hover::after {
    width: 100%;
}

/* 二级导航样式 - 通屏宽度 */
.hs-subnav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    left: 50%;
    transform: translateX(-47%);
    background-color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 999;
    padding: 30px 0;
}

.hs-subnav-container {
    width: 100%;
    max-width: 50%;
    margin: 0 auto;
    padding: 0 20px;
}

.hs-subnav-list {
    display: flex;
    justify-content: space-between;
    list-style: none;
}

.hs-subnav-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.hs-subnav-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    height: 60%;
    width: 1px;
    background-color: #eee;
}

.hs-subnav-link {
    text-decoration: none;
    color: #333;
    display: block;
    padding: 0 15px;
    transition: all 0.3s ease;
}

.hs-subnav-link:hover {
    color: #FF4136;
}

.hs-subnav-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4d4d4d;
    border-radius: 50%;
    overflow: hidden;
}

.hs-subnav-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.hs-subnav-title {
    font-size: 1.1rem;
    font-weight: 600;
}

/* 头部右侧按钮区域 */
.hs-header-right {
    display: flex;
    align-items: center;
}

/* 获取方案按钮样式 */
.hs-get-plan-btn {
    background-color: #FF4136;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.4s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hs-get-plan-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: white;
    transition: all 0.4s ease;
    z-index: 1;
}

.hs-get-plan-btn:hover::before {
    left: 0;
}

.hs-get-plan-btn span {
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.hs-get-plan-btn i {
    margin-left: 8px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.hs-get-plan-btn:hover {
    background-color: #FF4136;
}

.hs-get-plan-btn:hover span {
    color: #FF4136;
}

.hs-get-plan-btn:hover i {
    color: #FF4136;
    transform: rotate(-45deg);
}

/* 头部按钮样式 */
.hs-header-buttons {
    display: flex;
    align-items: center;
}

.hs-header-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #333;
    margin-left: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hs-header-btn:hover {
    background-color: rgba(255, 65, 54, 0.1);
    color: #FF4136;
}

/* 侧边栏按钮悬停动画 */
.hs-sidebar-btn:hover {
    transform: rotate(90deg);
}

/* 表单遮罩层样式 */
.hs-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hs-form-container {
    width: 90%;
    max-width: 600px;
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-30px);
    transition: transform 0.5s ease;
}

.hs-form-overlay.active .hs-form-container {
    transform: translateY(0);
}

.hs-form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.hs-form-title {
    font-size: 1.8rem;
    color: #333;
    font-weight: 600;
}

.hs-form-close {
    background: none;
    border: none;
    color: #999;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hs-form-close:hover {
    background-color: rgba(255, 65, 54, 0.1);
    color: #FF4136;
    transform: rotate(90deg);
}

.hs-form-group {
    margin-bottom: 20px;
}

.hs-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.hs-form-label.required::after {
    content: '*';
    color: #FF4136;
    margin-left: 4px;
}

.hs-form-input, .hs-form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.hs-form-input:focus, .hs-form-textarea:focus {
    outline: none;
    border-color: #FF4136;
    box-shadow: 0 0 0 3px rgba(255, 65, 54, 0.1);
}

.hs-form-input.error, .hs-form-textarea.error {
    border-color: #ff3860;
}

.hs-form-error {
    color: #ff3860;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.hs-form-textarea {
    min-height: 120px;
    resize: vertical;
}

.hs-form-submit {
    background-color: #FF4136;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    width: 100%;
    margin-top: 10px;
}

.hs-form-submit:hover {
    background-color: #e6392e;
}

.hs-form-submit:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

/* 全屏搜索遮罩层样式 - 透明度与侧边栏一致 */
.hs-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* 调整为与侧边栏一致的透明度 */
    z-index: 2001;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hs-search-container {
    width: 90%;
    max-width: 700px;
    text-align: center;
    transform: translateY(-50px);
    transition: transform 0.5s ease;
}

.hs-search-overlay.active .hs-search-container {
    transform: translateY(0);
}

.hs-search-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.hs-search-form {
    position: relative;
}

.hs-search-input {
    width: 100%;
    padding: 25px 30px;
    font-size: 1.2rem;
    border: 2px solid #555;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
    transition: all 0.3s ease;
}

.hs-search-input:focus {
    border-color: #FF4136;
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(255, 65, 54, 0.5);
}

.hs-search-submit {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FF4136;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hs-search-submit:hover {
    background-color: #e6392e;
    transform: translateY(-50%) scale(1.05);
}

.hs-search-close {
    position: absolute;
    top: 40px;
    right: 40px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.hs-search-close:hover {
    background-color: rgba(255, 65, 54, 0.2);
    transform: rotate(90deg);
    color: #FF4136;
}

/* 侧边栏样式 */
.hs-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1500;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    cursor: pointer;
}

/* 侧边栏遮罩层动效 - 从左向右关闭 */
.hs-sidebar-overlay.slide-in {
    animation: slideInOverlay 0.5s ease forwards;
}

.hs-sidebar-overlay.slide-out {
    animation: slideOutOverlay 0.5s ease forwards;
}

@keyframes slideInOverlay {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutOverlay {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

.hs-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 380px;
    height: 100%;
    background-color: white;
    z-index: 1501;
    padding: 40px 30px;
    overflow-y: auto;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

/* 侧边栏关闭按钮 */
.hs-sidebar-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #666;
    font-size: 1.8rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.hs-sidebar-close:hover {
    background-color: rgba(255, 65, 54, 0.1);
    color: #FF4136;
    transform: rotate(90deg);
}

.hs-sidebar-header {
    margin-bottom: 30px;
}

.hs-sidebar-logo-img {
    height: 50px;
    width: auto;
}

/* 侧边栏内容样式 - 左对齐 */
.hs-sidebar-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.hs-sidebar-intro {
    color: #666;
    line-height: 1.7;
    margin-bottom: 35px;
    font-size: 1rem;
}

.hs-sidebar-contact {
    margin-bottom: 35px;
}

.hs-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
}

.hs-sidebar.active .hs-contact-item {
    opacity: 1;
    transform: translateX(0);
}

.hs-contact-item:nth-child(1) { transition-delay: 0.1s; }
.hs-contact-item:nth-child(2) { transition-delay: 0.2s; }
.hs-contact-item:nth-child(3) { transition-delay: 0.3s; }

.hs-contact-icon {
    color: #FF4136;
    /*margin-right: 15px;*/
    font-size: 1.3rem;
    margin-top: 3px;
    width: 40px;
    height: 40px;
}
.hs-contact-icon img{
    width: 50%;
}
.hs-contact-text {
    color: #333;
    line-height: 38px;
}

.hs-sidebar-qrcodes {
    display: flex;
    justify-content: space-between;
    margin-top: 35px;
}

.hs-qrcode-item {
    text-align: center;
    flex: 1;
    padding: 0 10px;
    opacity: 1;
    transform: translateX(20px);
    transition: all 0.4s ease;
}

.hs-sidebar.active .hs-qrcode-item {
    opacity: 1;
    transform: translateX(0);
}

.hs-qrcode-item:nth-child(1) { transition-delay: 0.4s; }
.hs-qrcode-item:nth-child(2) { transition-delay: 0.5s; }

.hs-qrcode-img {
    width: 100%;
    max-width: 130px;
    height: auto;
    margin-bottom: 10px;
    border-radius: 8px;
}

.hs-qrcode-title {
    font-size: 0.9rem;
    color: #666;
}

/* 网站底部样式 - 高级感黑色背景 */
.hs-footer {
    background-color: #000;
    color: #bbb;
    position: relative;
    overflow: hidden;
}

/* 底部高级感背景图片 */
.hs-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.9)),
        url('https://cdn1.hsdxchina.com/static/image/footer-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hs-footer > * {
    position: relative;
    z-index: 1;
}

/* 顶部宣传区域 - 左右布局 */
.hs-footer-top-promo {
    padding: 100px 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.hs-promo-container {
    max-width: 80%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.hs-promo-text {
    flex: 0 0 60%;
}

.hs-promo-title {
    color: white;
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hs-promo-desc {
    color: #ddd;
    font-size: 1.3rem;
    max-width: 600px;
    line-height: 1.6;
}

.hs-promo-btn-container {
    flex: 0 0 26%;
    text-align: left;
}

.hs-promo-btn {
    background-color: #FF4136;
    color: white;
    border: none;
    padding: 20px 45px;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.hs-promo-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: white;
    transition: all 0.4s ease;
    z-index: 1;
}

.hs-promo-btn:hover::before {
    left: 0;
}

.hs-promo-btn span {
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.hs-promo-btn:hover {
    background-color: #FF4136;
}

.hs-promo-btn:hover span {
    color: #FF4136;
}

/* 底部主要内容区域 */
.hs-footer-main {
    padding: 80px 0 50px;
    background-color: rgba(0, 0, 0, 0.8);
}

.hs-footer-container {
    max-width: 80%;
    margin: 0 auto;
    padding: 0 20px;
}

.hs-footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hs-footer-logo-section {
    flex: 0 0 25%;
}

.hs-footer-logo {
    margin-bottom: 25px;
}

.hs-footer-logo-img {
    height: 50px;
    width: auto;
}

.hs-footer-qrcodes {
    display: flex;
    gap: 15px;
}

.hs-footer-nav {
    flex: 0 0 45%;
    display: flex;
    justify-content: space-between;
}

.hs-footer-nav-column {
    flex: 1;
    padding: 0 15px;
}

.hs-footer-title {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.hs-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #FF4136;
}

.hs-footer-links {
    list-style: none;
}

.hs-footer-link-item {
    margin-bottom: 15px;
}

.hs-footer-link {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.hs-footer-link:hover {
    color: #FF4136;
    padding-left: 8px;
}

.hs-footer-contact {
    flex: 0 0 25%;
}

.hs-contact-info {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.hs-footer-icon {
    color: #FF4136;
    /*margin-right: 15px;*/
    font-size: 1.3rem;
    margin-top: 3px;
    width: 40px;
    height: 40px;
}
.hs-footer-icon img{
    width: 60%;
}
.hs-footer-con{
    line-height: 2.3rem;
}

/* 底部版权区域 */
.hs-footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: #999;
    background-color: rgba(0, 0, 0, 0.9);
}

.hs-footer-bottom-container {
    max-width: 80%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hs-footer-copyright {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 auto;
}
.hs-footer-copyright span a{
        font-size: 0.9rem;
    color: #999;
    text-decoration: none;
}

.hs-footer-links a {
    color: #999;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s ease;
}

.hs-footer-links a:hover {
    color: #FF4136;
}

/* 移动端导航菜单 */
.hs-mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 20px 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.hs-mobile-menu.active {
    display: block;
    transform: translateY(0);

}

.hs-mobile-nav-list {
    list-style: none;
}

.hs-mobile-nav-item {
    border-bottom: 1px solid #eee;
}

.hs-mobile-nav-link {
    display: block;
    padding: 15px 30px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.hs-mobile-nav-link:hover {
    color: #FF4136;
    background-color: rgba(255, 65, 54, 0.05);
}

.hs-mobile-subnav {
    background-color: #f9f9f9;
    display: none;
}

.hs-mobile-subnav.active {
    display: block;
}

.hs-mobile-subnav-link {
    display: block;
    padding: 12px 30px 12px 50px;
    text-decoration: none;
    color: #666;
    font-size: 14px;
    transition: all 0.3s ease;
}

.hs-mobile-subnav-link:hover {
    color: #FF4136;
    background-color: rgba(255, 65, 54, 0.05);
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .hs-header-container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .hs-nav-list {
        display: none;
    }
    
    .hs-get-plan-btn {
        display: none;
    }
    
    .hs-mobile-menu-btn {
        display: block !important;
    }
    
    .hs-promo-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hs-promo-text {
        margin-bottom: 30px;
        flex: 0 0 100%;
    }
    
    .hs-promo-btn-container {
        flex: 0 0 100%;
        text-align: center;
    }
    
    .hs-footer-content {
        flex-direction: column;
    }
    
    .hs-footer-logo-section {
        margin-bottom: 40px;
    }
    
    .hs-footer-nav {
        flex: 0 0 100%;
    }
    
    .hs-footer-contact {
        flex: 0 0 100%;
        padding: 0 0 0 20px;
    }
    
    .hs-promo-title {
        font-size: 2.5rem;
    }
    
    .hs-subnav {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hs-header-container {
        padding: 0 20px;
    }
    
    .hs-header-right {
        margin-left: auto;
    }
    
    .hs-header-buttons {
        margin-left: 0;
    }
    
    .hs-header-btn {
        margin-left: 10px;
        width: 38px;
        height: 38px;
    }
    
    .hs-sidebar {
        display: none; /* 移动端隐藏侧边栏 */
    }
    
    .hs-promo-title {
        font-size: 2rem;
    }
    
    .hs-promo-desc {
        font-size: 1.1rem;
    }
    
    .hs-footer-nav {
        flex-wrap: wrap;
    }
    
    .hs-footer-nav-column {
        flex: 0 0 50%;
    }
    
    .hs-footer-bottom-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .hs-subnav-list {
        flex-wrap: wrap;
    }
    
    .hs-subnav-item {
        flex: 0 0 50%;
        margin-bottom: 20px;
    }
    
    .hs-subnav-item:nth-child(even)::after {
        display: none;
    }
    
    .hs-subnav-item:nth-child(odd):not(:last-child)::after {
        display: block;
    }
}

@media (max-width: 480px) {
    .hs-search-title {
        font-size: 1.8rem;
    }
    
    .hs-search-input {
        padding: 20px;
        font-size: 1rem;
    }
    
    .hs-promo-title {
        font-size: 1.8rem;
    }
    
    .hs-footer-nav-column {
        flex: 0 0 100%;
    }
    
    .hs-subnav-item {
        flex: 0 0 100%;
    }
    
    .hs-subnav-item::after {
        display: none !important;
    }
    
    .hs-subnav-icon {
        width: 60px;
        height: 60px;
    }
    
    .hs-subnav-icon-img {
        width: 30px;
        height: 30px;
    }
    
    .hs-form-container {
        padding: 25px 20px;
        height: 800px;
        overflow-y: auto;
    }
}

/* 移动端菜单按钮 */
.hs-mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hs-mobile-menu-btn:hover {
    background-color: rgba(255, 65, 54, 0.1);
    color: #FF4136;
}


/*调整表单样式*/

/* 项目经理二维码区域 */
.hs-project-manager {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
}

.hs-qr-wrapper {
    text-align: center;
    flex-shrink: 0;
}

.hs-qr-image {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    border: 2px solid #FF4136;
    padding: 5px;
    background: white;
}

.hs-qr-tip {
    font-size: 0.8rem;
    color: #FF4136;
    margin-top: 5px;
    font-weight: 500;
}

.hs-manager-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
}

.hs-manager-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF4136, #ff6b5c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(255,65,54,0.2);
}

.hs-manager-detail h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: #333;
}

.hs-manager-detail p {
    font-size: 0.85rem;
    color: #666;
    margin: 2px 0;
}

.hs-manager-desc {
    font-size: 0.8rem;
    color: #999;
    margin-top: 4px;
}

/* 多选按钮美化 */
.hs-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.hs-checkbox-item {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-left: 28px;
    margin-right: 15px;
    user-select: none;
}

.hs-checkbox-item input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.hs-checkbox-custom {
    position: absolute;
    left: 0;
    top: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: all 0.2s;
}

.hs-checkbox-item input:checked ~ .hs-checkbox-custom {
    background-color: #FF4136;
    border-color: #FF4136;
}

.hs-checkbox-custom::after {
    content: '';
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.hs-checkbox-item input:checked ~ .hs-checkbox-custom::after {
    display: block;
}

.hs-checkbox-item:hover .hs-checkbox-custom {
    border-color: #FF4136;
}

.hs-checkbox-label {
    font-size: 0.95rem;
    color: #333;
}

/* 响应式调整 */
@media (max-width: 600px) {
    .hs-project-manager {
        flex-direction: column;
        text-align: center;
    }
    
    .hs-manager-info {
        flex-direction: column;
        text-align: center;
    }
    
  /*  .hs-checkbox-group {
        justify-content: center;
    }*/
}

/* 简化版项目经理二维码区域 */
.hs-project-manager-simple {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #f0f0f0;
}

.hs-qr-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.hs-qr-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hs-qr-image {
    width: 130px;
    height: 130px;
    border-radius: 8px;
    border: 2px solid #FF4136;
    padding: 5px;
    background: white;
}

.hs-qr-tip {
    font-size: 0.9rem;
    color: #FF4136;
    font-weight: 500;
}

/* 确保标题居中 */
.hs-form-header {
    display: flex;
    justify-content: center !important;
    position: relative;
}

.hs-form-close {
    position: absolute;
    right: 0;
}







/* 加载页面样式 - 高权重 */
#loading-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* 高权重确保在最上层 */
}

/* Logo容器 */
.logo-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 静态Logo */
.static-logo {
    width: 100%;
    height: 100%;
    /*border-radius: 25px;*/
    /*background-image: url('https://cdn1.hsdxchina.com/static/image/logo_load.webp');*/
    background-size: 100% 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    font-weight: bold;
    color: white;
    position: relative;
    z-index: 2;
}

.static-logo video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /*border-radius: 50%;*/
}



/* 旋转边框 */
.rotating-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 5px solid transparent;
    border-top: 5px solid #3498db;
    border-right: 5px solid #8e44ad;
    animation: rotate 1.8s linear infinite;
}

/* 第二层旋转边框 */
.rotating-border-2 {
    position: absolute;
    top: -15px;
    left: -15px;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    border-radius: 50%;
    border: 4px solid transparent;
    border-bottom: 4px solid #e74c3c;
    border-left: 4px solid #f39c12;
    animation: rotateReverse 2.2s linear infinite;
}

/* 第三层旋转边框 */
.rotating-border-3 {
    position: absolute;
    top: -30px;
    left: -30px;
    width: calc(100% + 60px);
    height: calc(100% + 60px);
    border-radius: 50%;
    border: 3px solid transparent;
    border-top: 3px solid #2ecc71;
    border-right: 3px solid #9b59b6;
    animation: rotate 2.5s linear infinite;
}

/* 主页面 - 始终显示，但被加载页覆盖 */
#main-page {
    position: relative;
    width: 100%;
    height: 100vh;
    z-index: 1;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 页面内容容器 */
.page-content {
    text-align: center;
    padding: 40px;
    max-width: 800px;
}

/* 展开动画效果 */
.page-expand {
    animation: pageExpand 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

/* 动画定义 */
@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes rotateReverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

@keyframes pageExpand {
    0% { 
        transform: scaleX(0);
        opacity: 0;
    }
    50% { 
        opacity: 0.5;
    }
    100% { 
        transform: scaleX(1);
        opacity: 1;
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .logo-container {
        width: 160px;
        height: 160px;
    }
    
    .static-logo {
        width: 90px;
        height: 90px;
        font-size: 20px;
    }
}





/* 一键置顶按钮样式 */
.totop {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: #FF4136;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none; /* 默认隐藏 */
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(255, 65, 54, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0;
}

.totop:hover {
    background-color: #e53935;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 65, 54, 0.4);
}

.totop:active {
    transform: translateY(-1px);
}

/* 图标居中 */
.totop i {
    display: block;
    text-align: center;
    line-height: 1;
}

@media (max-width: 768px) {
    .totop {
        bottom: 25px;
        right: 25px;
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .totop {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}




.online_q{position:fixed;right:40px;bottom:16%;z-index:995;transition:.5s;-webkit-transition:.5s;border-radius:2.5rem;padding:1.25rem 0}
.online_q .close{position:absolute;right:-1rem;font-size:1rem;color:#969797;opacity:1;font-weight:normal;cursor:pointer}
.online_q .btn2{width: 3.875rem;height: 3.875rem;margin-bottom:2px;border-radius:50%;transition:.5s;cursor:pointer;position:relative;z-index:1}
.online_q .btn2 span img{width: 100%;height: 100%;}
@keyframes breathing1{0%{transform:translate(-50%, -50%) scale(1);opacity:1}

50%{transform:translate(-50%, -50%) scale(1.2);opacity:0.5}

100%{transform:translate(-50%, -50%) scale(1);opacity:1}

}
.online_q .btn2:before,
.online_q .btn2:after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    border-radius: 50%;
    background-color: rgba(255,116,148,0.7);
    transform: translate(-50%, -50%);
}

.online_q .btn2:before {
    width: 80%;
    height: 80%;
    animation: breathing1 3.5s infinite ease-in-out;
}

.online_q .btn2:after {
    width: 60%;
    height: 60%;
    animation: breathing2 3.5s infinite ease-in-out;
    animation-delay: .25s;
}

@keyframes breathing1 {
    0% {
        width: 80%;
        height: 80%;
        opacity: 1;
    }
    50% {
        width: 180%; /* 宽高超过 100% */
        height: 180%;
        opacity: 0.5;
    }
    100% {
        width: 80%;
        height: 80%;
        opacity: 1;
    }
}

@keyframes breathing2 {
    0% {
        width: 60%;
        height: 60%;
        opacity: 1;
    }
    50% {
        width: 150%; 
        height: 150%;
        opacity: 0.5;
    }
    100% {
        width: 60%;
        height: 60%;
        opacity: 1;
    }
}    


/* 简化版项目经理二维码区域 */
/* 简化版项目经理二维码区域 */
.hs-project-manager-simple {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #f0f0f0;
}

.hs-qr-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.hs-qr-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hs-qr-image {
    width: 130px;
    height: 130px;
    border-radius: 8px;
    border: 2px solid #FF4136;
    padding: 5px;
    background: white;
}

.hs-qr-tip {
    font-size: 0.9rem;
    color: #FF4136;
    font-weight: 500;
}

/* 确保标题居中 */
.hs-form-header {
    display: flex;
    justify-content: center !important;
    position: relative;
}

.hs-form-close {
    position: absolute;
    right: 0;
}

/* 咨询项目分组样式 */
.hs-consult-group {
    margin-bottom: 5px;
    padding: 5px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.hs-group-title {
    margin-bottom: 12px;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.hs-group-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* 多选按钮美化 */
.hs-checkbox-item {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-left: 28px;
    margin-right: 15px;
    user-select: none;
    margin-bottom: 8px;
}

.hs-checkbox-item input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.hs-checkbox-custom {
    position: absolute;
    left: 0;
    top: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: all 0.2s;
}

.hs-checkbox-item input:checked ~ .hs-checkbox-custom {
    background-color: #FF4136;
    border-color: #FF4136;
}

.hs-checkbox-custom::after {
    content: '';
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.hs-checkbox-item input:checked ~ .hs-checkbox-custom::after {
    display: block;
}

.hs-checkbox-item:hover .hs-checkbox-custom {
    border-color: #FF4136;
}

.hs-checkbox-label {
    font-size: 0.9rem;
    color: #555;
}


/* 响应式调整 */

@media (max-width: 1281px) {
    .hs-promo-title{
        font-size: 2.8rem;
    }
    .hs-nav-item{
        margin: unset;
    }
}

@media (max-width: 1025px) {
    .hs-nav-link{
        padding: 0 15px;
    }
    .hs-footer-content{
        flex-wrap: nowrap;
    }
    .hs-promo-title {
        font-size: 2rem;
    }
     .hs-promo-btn{
        font-size: 1rem;
    }
    .hs-footer-content{
        margin-bottom: 0px;
    }
}

@media (max-width: 600px) {
    .hs-project-manager-simple {
        padding: 15px;
    }
    
    .hs-qr-image {
        width: 100px;
        height: 100px;
    }
    
    .hs-group-options {
        gap: 8px;
    }
    
    .hs-checkbox-item {
        flex: 0 0 calc(50% - 15px);
    }
   
}

@media (max-width: 480px) {
    .hs-checkbox-item {
        flex: 0 0 35%;
    }
    .hs-footer-nav-column {
        flex: 0 0 30%;
    }
    .hs-promo-title {
        font-size: 1.5rem;
    }
    .hs-footer-title{
        font-size: 1rem;
    }
    .hs-footer-container{
        max-width: 100%;
    }
    .hs-footer-top-promo {
        padding: 40px 0;
    }
    .hs-footer-main {
        padding: 0 0;
    }
    .hs-footer-copyright{
        display: block;
    }
    .hs-qrcode-item{
        text-align: unset;
    }
    .hs-mobile-menu{
        padding: 1px 0;
    }
}



/* 面包屑容器：保留自然间距 */
.mbx {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.2rem 0.5rem;  /* 行间距0.2rem，列间距0.5rem，适应换行 */
    color: #000;           /* 普通文字（大于号）默认黑色，与链接一致 */
}

/* 所有链接默认样式：黑色文字 + 无下划线 */
.mbx a {
    color: #000;           
    text-decoration: none; 
    transition: color 0.2s ease; /* 平滑过渡悬停红 */
    /* 可选: 增加一点内边距让点击区域更舒适 */
    padding: 0.1rem 0.2rem;
}

/* 鼠标悬停时变为红色字体 */
.mbx a:hover {
    color: #ff0000;        /* 纯红色 */
    text-decoration: none; /* 保证仍然没有下划线 */
}

/* 分隔符“>”自动继承.mbx的color(#000) 
   若想微调间距，可单独设置 */
.mbx > :not(a) {
    /* 这里的文本节点“>”无法直接用选择器控制，但可用父级控制 */
    /* 但我们保留原有结构，“>”是直接文本节点，自然使用.mbx的color */
    margin: 0 0.1rem;      /* 给大于号左右增加一点微小的间距 */
}