/* 全局样式重置 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* 网页字体 */

@font-face {
    font-family: 'siyuanheiti-regular';
    src: url('//s.cdn-static.cn/font/思源黑体CN-Regular.otf')
}

* {
    font-family: "siyuanheiti-regular", "Microsoft YaHei" !important;
}


/* 头部导航 */

.header {
    z-index: 1000;
    position: absolute;
    /* background: transparent !important; */
    box-shadow: none !important;
    min-height: 88px;
    width: 100%;
}

.header-container {
    width: 100%;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 20px 60px;
}


/* Logo部分 */

.logo {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.logo img {
    height: 47px;
}


/* PC端导航 */

.pc-nav {
    flex: 1;
    display: flex;
    align-items: center;
    margin-left: auto;
    justify-content: flex-end;
}

.nav-menu {
    flex: 1;
    display: flex;
    list-style: none;
    opacity: 0;
    width: 100%;
    justify-content: flex-end;
    visibility: hidden;
    transform: translateX(30px);
    transition: all 0.6s ease;
    margin-right: 16.6%;
}

.nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.nav-item {
    cursor: pointer;
    padding: 0 2.5rem;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.19);
}

.nav-link {
    display: block;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.nav-item:hover .nav-link {
    color: rgba(255, 255, 255, 1);
}

.nav-item.active .nav-link {
    color: rgba(255, 255, 255, 1);
}


/* 菜单按钮 */

.menu-btn {
    position: relative;
    width: 25px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.menu-btn::before,
.menu-btn::after,
.menu-btn span {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    transition: all 0.3s ease;
}

.menu-btn::before {
    top: 0;
}

.menu-btn span {
    top: 9px;
}

.menu-btn::after {
    bottom: 0;
}

.menu-btn.active::before {
    transform: translateY(9px) rotate(45deg);
}

.menu-btn.active span {
    opacity: 0;
    transform: scaleX(0);
}

.menu-btn.active::after {
    transform: translateY(-9px) rotate(-45deg);
}


/* 移动端导航 */

.mobile-nav {
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -80%;
    width: 80%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.92);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 70px 20px 20px;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-list {
    list-style: none;
}

.mobile-menu-item {
    margin: 15px 0;
}

.mobile-menu-link {
    display: block;
    padding: 10px 0;
    color: #303133;
    text-decoration: none;
    font-size: 16px;
}

.mobile-menu-item.active .mobile-menu-link {
    color: #303133;
    font-weight: bold;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
    transition: all 0.3s ease;
}

.overlay.active {
    display: block;
}


/* 响应式设计 */

@media (min-width: 992px) and (max-width: 1199px) {
    .header-container {
        width: 992px;
    }
    .pc-nav {
        display: block;
    }
    .mobile-nav {
        display: none;
    }
}

@media (max-width: 992px) {
    .header-container {
        width: 100%;
    }
    .pc-nav {
        display: none;
    }
    .mobile-nav {
        display: block;
    }
}


/* 确保在1200px以上也保持100%宽度 */

@media (min-width: 1200px) {
    .header-container {
        width: 100%;
        max-width: 100%;
    }
}


/* 页面内容 */

.page-content {
    margin-top: 0;
    padding: 0;
}


/* 收集意向表部分 */

.contact-form-section {
    position: relative;
    background-image: url('../images/92685_17235125372326.jpg');
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    padding: 140px 20px;
}

.contact-form-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.33);
}

.contact-form-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.contact-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.contact-form-col {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.contact-form-col:nth-child(2) {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.contact-logo {
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-logo:hover {
    transform: scale(1.05);
}

.contact-logo img {
    width: 30%;
    height: auto;
}

.contact-btn {
    text-align: center;
}

.contact-btn .btn {
    background-color: #fff;
    color: #333;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-btn .btn:hover {
    background-color: #333;
    color: #fff;
}

.contact-btn .btn:hover .btn-icon svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.contact-btn .btn .btn-icon svg {
    width: 24px;
    height: 24px;
    fill: #000;
}


/* 底部footer部分 */

.footer-section {
    background-color: #000;
    color: #fff;
    padding: 60px;
}

.footer-container {
    width: 100%;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-title p {
    font-size: 14px;
    color: #fff;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-item {
    display: inline-block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-item img {
    width: 18px;
    height: 18px;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.social-item:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.social-item i {
    font-size: 16px;
    color: #fff;
}

.social-item .icon-douyin svg,
.social-item .icon-xiaohongshu svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}

.footer-right {
    flex: 1;
    min-width: 300px;
}

.footer-info p {
    font-size: 12px;
    color: #fff;
    line-height: 1.6;
    margin: 0;
    text-align: right;
}


/* 视频弹窗样式 */

.zz-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.zz-dialog.active {
    opacity: 1;
    visibility: visible;
}

.zz-dialog-container {
    width: 55%;
    max-width: 1000px;
    background-color: #fff;
    border-radius: 8px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.zz-dialog.active .zz-dialog-container {
    transform: scale(1);
}

.zz-dialog-header {
    padding: 0px;
}

.zz-dialog-close {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    top: -50px;
    right: -10%;
    border: 2px solid #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    -webkit-box-shadow: 0 2px 8px 0 rgba(30, 39, 48, 0.1);
    box-shadow: 0 2px 8px 0 rgba(30, 39, 48, 0.1);
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    color: #fff;
    position: absolute;
}

.zz-dialog-body {
    padding: 5px 5px 0 5px;
}

#zz-video-player {
    max-height: 85vh;
}

.zz-contact-dlg .zz-dialog-container {
    width: 250px;
    height: 250px;
}

.zz-contact-dlg .zz-dialog-container img {
    width: 100%;
    height: 100%;
    display: block;
}


/* 响应式设计 */

@media (max-width: 992px) {
    .contact-form-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .contact-form-col:nth-child(1),
    .contact-form-col:nth-child(3) {
        display: none;
    }
    .zz-dialog-container {
        width: 90%;
    }
    .zz-dialog-close {
        right: 0;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 60px 0px;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .footer-left {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .footer-right {
        width: 100%;
        min-width: unset;
    }
    .footer-info p {
        font-size: 12px;
        line-height: 1.6;
        text-align: center;
        margin: 8px 0;
    }
    .contact-form-section {
        padding: 80px 20px;
    }
    .contact-form-col:nth-child(2) {
        gap: 30px;
    }
    .contact-logo img {
        max-width: 180px;
    }
    .contact-btn .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .contact-logo img {
        max-width: 150px;
    }
    .contact-btn .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}