* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
  font-family: "MyCustomFont";
  src: url("/fonts/SourceHanSerifCN-Regular-1.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

body {
    background-color: #000;
    color: #fff;
    /*font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;*/
    font-family: 'MyCustomFont', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* 为features section内的div设置line-height: 1.2 */
/* #features div {
    line-height: 1.2;
} */

.container {
    width: 100%;
    max-width: 2560wpx;
    margin: 0 auto;
}

/* 顶部导航栏 - 透明 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
}

/*
.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}*/
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-25%);
    }
}

.logo {
    width: auto;
    height: 40px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 100%;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-link {
    color: #ddd;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #fff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6a11cb, #2575fc);
    transition: width 0.3s ease;
}

/* 所有区域箭头样式 */
#outdoor-arrow,
#sports-arrow,
#fashion-arrow,
#casual-arrow,
#lotak-arrow,
#sustainable-arrow,
#vietnam-arrow {
    transition: none !important;
}

#outdoor-arrow img,
#sports-arrow img,
#fashion-arrow img,
#casual-arrow img,
#lotak-arrow img,
#sustainable-arrow img,
#vietnam-arrow img {
    transition: none !important;
    transform: scale(1) !important;
}


.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: #fff;
}

.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
}

.earth-icon {
    background: none;
}

.mobile-menu-icon {
    background: none;
    /*display: none;*/
}

.icon:hover {
    transform: scale(1.1);
    box-shadow: none;
}

/* 语言选择下拉菜单 */
.language-dropdown {
    position: absolute;
    top: 60px;
    right: 20px;
    background: rgba(30, 30, 30, 0.95);
    border-radius: 10px;
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1001;
    backdrop-filter: blur(10px);
    min-width: 120px;
}

.language-dropdown.active {
    display: block;
}

.language-option {
    padding: 10px 20px;
    color: #ddd;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-option:hover {
    background: rgba(60, 60, 60, 0.8);
    color: #fff;
}

.language-option.active {
    color: red
}

/* 全屏菜单 */
.fullscreen-menu {
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

/* 菜单头部样式 */
.menu-header {
    height: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.fullscreen-menu.active {
    opacity: 1;
    pointer-events: all;
}

.close-menu {
    position: absolute;
    width: 24px;
    height: 24px;
    right: 20px;
    top: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2001;
}

.close-menu::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    left: 1px;
    top: 1px;
}

.close-menu:hover {
    transform: rotate(90deg);
}

.menu-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    box-sizing: border-box;
}

.menu-section {
    position: relative;
    display: flex;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    width: 25%;
    min-width: 200px;
    height: 100%;
}

.menu-section:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    height: 70%;
    background: rgba(255, 255, 255, 0.3);
}

.section-title {
    position: relative;
    font-size: 36px;
    margin-bottom: 20px;
    margin-top: 15px;
    color: white;
    font-weight: bold;
    margin-top: 17px;
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 1.2;
    background: linear-gradient(to right, #ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title::after {
    content: '';
    position: absolute;
    margin-top: 25px;
    width: 66px;
    height: 4px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.3);
    display: block;
}

.sub-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex-grow: 1;
    text-align: center;
    margin-top: 35px;
}

.sub-link {
    color: #ddd;
    font-weight: 500;
    text-decoration: none;
    font-size: 30px;
    /*padding: 8px 0;*/
    transition: all 0.3s ease;
    position: relative;
}

.sub-link::before {
    position: absolute;
    left: 0;
}

.sub-link:hover {
    color: #fff;
    transform: translateX(5px);
}

/* 移动端导航菜单 */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(10, 10, 10, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: left 0.3s ease;
    z-index: 99;
}

.mobile-menu.active {
    left: 0;
}

.mobile-nav-link {
    color: #ddd;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #fff;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-icon {
        display: flex;
    }

    .menu-container {
        grid-template-columns: 1fr;
        overflow-y: auto;
    }

    .menu-section:not(:last-child)::after {
        display: none;
    }

    .menu-section {
        padding: 20px;
    }

    .menu-section:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }
}

/* 为了兼容之前的1100px断点，添加这个媒体查询来保持一致性 */
@media screen and (max-width: 1000px) {
    .fullscreen-menu .menu-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        padding: 40px 0 !important;
        height: auto !important;
    }

    .fullscreen-menu .menu-section {
        border: none !important;
        margin-bottom: 15px !important;
        text-align: center !important;
        width: 100% !important;
        padding: 5px 0 !important;
        height: auto !important;
        left: 0px;
    }

    /* 正确设置移动菜单项显示 */
    .menu-section.mobile {
        display: block !important;
    }

    .fullscreen-menu .section-title {
        font-size: 50px !important;
        font-weight: bold !important;
        margin-bottom: 10px !important;
        color: #fff !important;
        display: block !important;
    }

    .section-title::after {
        height: 0px;
    }

    .fullscreen-menu .sub-links {
        display: none !important;
    }
}

.menu-section.mobile {
    display: none;
}

/* 底部功能区域样式 */
.footer {
    background-color: #000000;
    color: #ffffff;
    height: 424px;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-left {
    margin-left: 60px;
    width: 50%;
}

.footer-right {
    width: 65%;
}

.footer-logo {
    margin-bottom: 20px;
}

.company-name {
    font-size: 30px;
    font-weight: bold;
    margin-top: 10px;
}

.social-share h4 {
    margin-bottom: 10px;
    font-size: 16px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 14px;
    line-height: 1;
}

.social-link i {
    font-size: 16px;
    vertical-align: middle;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
}

.footer-column {
    width: 23%;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    /*background-color: #4CAF50;*/
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #4CAF50;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e0e0e0;
}

.icp-info {
    font-size: 14px;
    color: #666;
}

@media (max-width: 576px) {
    .header {
        padding: 0 20px;
        height: 70px;
    }

    .logo {
        width: 110px;
        height: 40px;
        font-size: 14px;
    }

    .icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    #jiboLogo{
        left: 0 !important;
    }
    #jiboLogo > img{
        width: 60% !important;
        height: 60% !important;
    }
    .hero-slider-container {
        margin-top: 0;
    }

    .hero-text-container h1 {
        font-size: 2rem;
    }

    .hero-text-container p {
        font-size: 1.9rem;
    }

    .series-name {
        font-size: 60px !important;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }

    .fullscreen-menu .section-title {
        font-size: 1.8rem !important;
        margin: 17px !important;
    }

    .features,
    .portfolio,
    .testimonials,
    .contact,
    .footer {
        padding: 50px 0;
    }

    .feature-card {
        padding: 25px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
        margin-bottom: 20px;
    }

    .feature-title {
        font-size: 1.4rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-content {
        padding: 30px;
    }

    .contact-form {
        padding: 30px;
    }

    .footer-container {
        gap: 40px;
    }

    html[lang="en"] .footer {
        padding: 0 !important;
    }

    html[lang="en"] .footer-left {
        width: 84% !important;
    }

    html[lang="en"] .footer-bottom {
        margin-right: 24px !important;
    }
    .features.parallax-section.left > div > div.text-section > div:nth-child(1) {
        flex-direction: row-reverse !important;
    }
    .series-feature-name-icon-left {
        margin-left: 10px !important;
    }
    .product-code-item {
        transform-origin: left center !important;
    }
}

/* 页脚小于1000px宽度时的响应式样式 */
@media (max-width: 1000px) {
    .footer-section .footer-area {
        transform: translateY(50px);
    }

    .footer-left {
        width: 100% !important;
        margin-left: 25px !important;
        text-align: left !important;
        margin-top: 0px !important;
    }

    .footer-right {
        width: 100% !important;
    }

    .footer-links {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: flex-start !important;
        align-items: center !important;
        list-style: none !important;
        padding: 0 !important;
        height: auto !important;
    }

    .footer-column h3 {
        border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
    }

    /* 页脚多列布局调整为横向排列 */
    .footer .footer-container {
        align-items: flex-start !important;
        text-align: left !important;
        display: flex !important;
        flex-direction: column !important;
        transform: translateY(50px);
    }


    .footer-columns {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        margin-left: 25px !important;
        margin-right: 25px !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
    }

    /* 确保每个footer-column在横向排列时也有适当的宽度 */
    .footer-column {
        display: inline-block !important;
        width: 100% !important;
        min-width: 200px !important;
        vertical-align: top !important;
    }


    .footer-links li {
        display: inline-block !important;
        margin: 0 !important;
        padding: 0 !important;
        margin-right: 15px !important;
        margin-bottom: 5px !important;
        float: none !important;
        clear: none !important;
    }

    .footer-links li a {
        display: inline-block !important;
        white-space: nowrap !important;
        color: rgba(255, 255, 255, 0.6) !important;
    }

    /* 保持原有类名兼容性 */
    .mobile-footer-links {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: flex-start !important;
        align-items: center !important;
        gap: 15px !important;
        margin: 15px 0 !important;
        list-style: none !important;
        padding: 0 !important;
        height: auto !important;
    }

    .mobile-footer-links li {
        display: inline-block !important;
        margin: 0 !important;
        padding: 0 !important;
        margin-right: 15px !important;
        margin-bottom: 5px !important;
        float: none !important;
        clear: none !important;
    }

    .mobile-footer-links li a {
        display: inline-block !important;
        white-space: nowrap !important;
        color: rgba(255, 255, 255, 0.6) !important;
    }

    /* 页脚底部版权信息调整 */
    .footer-bottom {
        gap: 10px !important;
        text-align: center !important;
        align-items: flex-start !important;
        flex-direction: column !important;
        margin-left: 24px !important;
        border-top: none !important;
    }

    .copyright {
        margin-left: 0px !important;
    }

    /* 页脚ICP信息调整 */
    .icp-info p {
        font-size: 20px !important;
        padding: 0 10px;
    }

    .company-name {
        font-size: 24px;
    }

    .footer-columns {
        flex-direction: column;
        gap: 20px;
    }

    .footer-column {
        width: 100%;
        text-align: center;
    }

    .footer-column h3 {
        font-size: 18px;
        margin-bottom: 10px;
        text-align: left;
    }

    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        font-size: 20px;
        justify-content: center;
    }

    .social-links {
        justify-content: left;
        margin-top: 15px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-top: 20px;
    }

    .copyright {
        margin-left: 0;
        font-size: 12px !important;
    }

    .icp-info {
        margin: 0 !important;
        word-break: break-word;
        padding-top: 0 !important;
        margin-bottom: 20px !important;
    }

    .icp-info p {
        font-size: 12px !important;
        padding: 0 !important;
    }

    /* 防止水平滚动 */
    html,
    body {
        overflow-x: hidden;
        position: relative;
    }
}


.footer-links li {
    margin-bottom: 20px;
}

.footer-links a {
    font-size: 16px;
    line-height: 100%;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:nth-child(1) {
    background: linear-gradient(135deg, #e1306c, #fd1d1d);
}

.social-link:nth-child(2) {
    background: linear-gradient(135deg, #3b5998, #4267B2);
}

.social-link:nth-child(3) {
    background: linear-gradient(135deg, #09b83e, #2aae67);
}

.social-link:nth-child(4) {
    background: linear-gradient(135deg, #1da1f2, #1966a0);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.copyright {
    display: inline-block;
    padding-top: 15px;
    color: #666;
    font-size: 14px;
    margin-left: 40px;
}

.icp-info {
    display: inline-block;
    padding-top: 15px;
    color: #666;
    font-size: 14px;
    margin-right: 40px;
}

@keyframes scrollUp {
    0% {
        transform: translateY(-50%) rotate(180deg) translateY(0);
    }

    100% {
        transform: translateY(-50%) rotate(180deg) translateY(100%);
    }
}

@keyframes scrollDown {
    0% {
        transform: translateY(-50%) translateY(0);
    }

    100% {
        transform: translateY(-50%) translateY(100%);
    }
}

/* 媒体查询 */
@media (max-width: 1200px) {
    .hero-text-container h1 {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .vertical-text {
        display: flex;
        top: 80px;
    }
}

@media (max-width: 992px) {
    .hero-text-container h1 {
        font-size: 3rem;
    }

    .hero-text-container p {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .feature-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-text-container h1 {
        font-size: 2.5rem;
    }

    .hero-text-container p {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .feature-card {
        padding: 30px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 25px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .slider-arrows {
        display: none;
    }
}

/* 联系区域 */
.contact {
    padding: 100px 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #fff;
}

.contact-text {
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b, #ffa502);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.info-content p {
    font-size: 1rem;
    color: #aaa;
}

.contact-form {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.form-group {
    margin-bottom: 30px;
}

.form-label {
    display: block;
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 10px;
}

.form-input {
    width: 100%;
    padding: 15px;
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid #555;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #2575fc;
    box-shadow: 0 0 15px rgba(37, 117, 252, 0.3);
}

textarea.form-input {
    min-height: 150px;
    resize: vertical;
}

@keyframes pulseEffect {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.contact-icon:hover .tooltip {
    display: block !important;
    animation: fadeIn 0.3s;
    text-align: left;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.core-item {
    font-weight: 300 !important;
}

.series-name {
    font-size: 72px;
    font-weight: 500;
    margin-left: 30px;
}

/* 使用ID选择器确保样式生效 */
#contact-description[data-lang-en] {
    margin-left: 8%;
    margin-right: 8%;
    text-align: center;
    color: rgba(255, 255, 255, 0.8) !important;
    display: block !important;
    opacity: 1 !important;
}
.icp-link {
    cursor: pointer;
    text-decoration: none;
    color: #666 !important;
}