@font-face {
    font-family: 'poppins';
    src: url('../assets/font/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2') format('woff2'), /* 定义字体文件的路径和格式 */ /* url('../assets/font/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2') format('woff2'), */ url('../assets/font/pxiEyp8kv8JHgFVrJJfecg.woff2') format('woff2'),
    url('../assets/font/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2') format('truetype'), /* Safari, Android, iOS */ /* url('../assets/font/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2') format('truetype'),Safari, Android, iOS */ url('../assets/font/pxiEyp8kv8JHgFVrJJfecg.woff2') format('truetype'), /* Safari, Android, iOS */
    /* 添加其他字体格式（如 .ttf、.otf） */
}

/* 基本样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* 防止iOS点击时的高亮效果 */
}

section {
    border: none !important; /* 清除默认边框 */
    box-shadow: none !important; /* 清除可能存在的阴影 */
}

/* 平滑滚动效果 */
html {
    scroll-padding-top: 100px; /* 与header高度一致 */
    -webkit-overflow-scrolling: touch; /* 增加iOS滚动的流畅性 */
}

/* Feature Grid 样式 - 两行两列网格布局 */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 35px;
    margin-top: 30px;
    -webkit-transform: translateZ(0); /* iOS性能优化 */
}

.feature-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    -webkit-transform: translateZ(0); /* iOS性能优化 */
    aspect-ratio: 1 / 1; /* 保持方形比例 */
    display: flex;
    flex-direction: column;
}

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

.feature-image {
    height: 100%;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    -webkit-transform: translateZ(0); /* 防止iOS图片渲染问题 */
    box-shadow: 10px 0 15px rgba(0, 0, 0, 0.2), 0 10px 15px rgba(0, 0, 0, 0.2);;
}

video {
    z-index: 1 !important;
}

/* iOS特定优化 */
@supports (-webkit-touch-callout: none) {
    .feature-grid {
        display: -webkit-box;
        display: -webkit-grid;
        display: grid;

        grid-template-columns: repeat(2, 1fr);
        grid-gap: 35px;
        margin-top: 30px;
        -webkit-transform: translateZ(0); /* iOS性能优化 */
    }

    .feature-item {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 calc(50% - 10px);
        flex: 0 0 calc(50% - 10px);
        margin: 5px;
        aspect-ratio: auto; /* 移除固定比例 */
    }
}

/* 响应式优化 */
@media (max-width: 480px) {
    .feature-grid {
        grid-gap: 20px;
    }

    .feature-text {
        font-size: 14px;
        padding: 10px 5px;
    }
}

/* 基本样式 */
:root {
    --primary-color: #ffffff;
    --dark-color: #418f01;
    --light-color: #ecf0f1;
    --gray-color: #95a5a6;
    --dark-blue: #070e00;
    --light-green: #f9fff0;
}

/* 公共背景 */
.light-section-bg {
    background: linear-gradient(to top,
    #070e00 0%,
    #0d1c00 20%,
    #418f01 100%);
}

.hand-section-bg {
    background: linear-gradient(to bottom,
    #070e00 0%,
    #0d1c00 20%,
    #418f01 100%);
}

body {
    font-family: "poppins", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    position: relative;
}

a {
    text-decoration: none;
    color: var(--dark-color);
}

a:hover {
    color: var(--primary-color);
}

ul {
    /* list-style: none; */
    margin-left: 2rem;
}

/* 全局图片阴影效果 */
img {
    width: 100%;
    height: auto;
    display: block;
}

.text-wrap no-word-break {
    word-break: break-all !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
}

/* 防止英文单词换行的独立样式类 */
.no-word-break {
    word-break: normal !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    /* 防止英文单词在中间断开，但允许中文正常换行 */
    hyphens: none !important;
    -webkit-hyphens: none !important;
    -ms-hyphens: none !important;
}

/* 更强的选择器优先级来覆盖text-wrap no-word-break */
.text-wrap.no-word-break {
    word-break: normal !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    /* 防止英文单词在中间断开，但允许中文正常换行 */
    hyphens: none !important;
    -webkit-hyphens: none !important;
    -ms-hyphens: none !important;
}

/* 视频样式 */
.product1-video {
    width: 70%;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 10px 0 15px rgba(0, 0, 0, 0.2), 0 10px 15px rgba(0, 0, 0, 0.2); /* 增强水平阴影和垂直阴影 */
    display: block;
    /* margin: 0 auto; */
    -webkit-appearance: none; /* 移除iOS上视频元素的默认样式 */
    -webkit-transform: translateZ(0); /* 启用iOS上的硬件加速 */
    position: relative;
    z-index: 2;
    /* transition: all 0.3s ease; */
}

/* 视频全屏样式修复 */
video::-webkit-media-controls-fullscreen-button {
    display: block !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    visibility: visible !important;
}

/* 确保全屏模式下视频正确显示 */
video:fullscreen,
video:-webkit-full-screen,
video:-moz-full-screen,
video:-ms-fullscreen {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: #000 !important;
    z-index: 9999 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    object-fit: contain !important;
    margin: 0 !important;
    padding: 0 !important;
}

.container {
    width: clamp(20%, 75vw, 100%);
    max-width: 1920px;
    margin: 0 auto;
    /* padding: 0 15px; */
}

section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
}

/* 滚动动画效果 - 已移除动画 */
section .container {
    opacity: 1;
    transform: none;
    -webkit-transform: none;
}

section.animate-in .container {
    opacity: 1;
    transform: none;
    -webkit-transform: none;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 12px 25px;
    cursor: pointer;
    text-align: center;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1rem;
    -webkit-appearance: none; /* 移除iOS按钮的默认样式 */
    -webkit-touch-callout: none; /* 禁用iOS长按菜单 */
    -webkit-user-select: none; /* 禁止iOS文本选择 */
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #2980b9;
    color: white;
}

/* 导航栏样式 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1000;
    background-color: #070e00;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 1;
    -webkit-transform: translateZ(0); /* 解决iOS上fixed元素滚动问题 */
    -webkit-backface-visibility: hidden; /* 防止iOS渲染闪烁 */
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px;
    height: 100%;
    width: 100%;
    max-width: 100%;
    background-color: #070e00;
    opacity: 1;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100px;
    padding-right: 20px;
}

.logo a {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    max-height: 80px;
    height: 80px;
    max-width: 240px;
    width: auto !important;
    object-fit: contain !important;
    -webkit-object-fit: contain !important;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    image-rendering: -webkit-optimize-contrast; /* 提高iOS上图片渲染质量 */
    -webkit-backface-visibility: hidden;
}

.navbar {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    height: 100px;
    align-items: center;
    background-color: #070e00;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    height: 100%;
    align-items: center;
    background-color: #070e00;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
}

.nav-item {
    margin-left: 25px;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.nav-link {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    color: white;
    display: flex;
    align-items: center;
}

/* 移除导航链接悬停效果的过渡动画 */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #79c705;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
}

/* 全局设置，确保section之间没有间隙 */
section + section {
    margin-top: 0;
    padding-top: 0;
}

/* 全局文本样式增强 */
p, h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.45;
}

.about-us .intro-point,
.hand-point,
.smart-ring-point,
.smart-band-point,
.controllers-desc,
.vr-point {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    line-height: 1.45;
    font-style: normal;
    font-weight: 400
}

/* AboutUs部分拆分为两个section的样式 */
.hero-about-section {
    background: #070e00;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: white;
    padding: 2rem 0;
    margin: 0;
    box-sizing: border-box;
    min-height: auto;
    padding-top: 120px; /* 为导航栏留出空间 */
}

.about-content-section {
    /* background: #070e001; */
    background: linear-gradient(to top,
    #070e00 0%,
    #0d1c00 20%,
    #418f01 100%);
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: white;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    min-height: auto;
}

/* 确保.container在.about-content-section中有一致的上下padding */
.about-content-section .container {
    padding: 4rem 0;
}

.hero-about-section .about-image-container {
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.about-content-section .about-image-container {
    margin-top: -7rem;
    position: relative;
    z-index: 1;
    opacity: 0.7; /* 使第二个图片稍微透明一些 */
}

.latest-news-content-section .container {
    /* margin-top:100px; */
    padding: 4rem 0;
}

.latest-news-content-section {
    background: linear-gradient(to bottom,
    #070e00 0%,
    #0d1c00 20%,
    #418f01 100%);
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: white;
    padding: 0;
    box-sizing: border-box;
    min-height: auto;
    margin-top: -1px;
}

.contact-us-content-section .container {
    padding: 4rem 0;
}

.contact-us-content-section {
    /* background: #070e001; */
    background: linear-gradient(to bottom,
    #070e00 0%,
    #0d1c00 20%,
    #418f01 100%);
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: white;
    padding: 0;
    box-sizing: border-box;
    min-height: auto;
    margin-top: -1px;
}

.kiwear-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.kiwear-desc {
    font-size: 1rem;
    line-height: 1.45;
    color: #ffffff;
    max-width: 80%;
}

.about-us-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.about-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-transform: capitalize;
    text-align: center;
}

.about-text {
    width: 100%;
}

.we-do {
    margin-top: -7rem; /* 使about-us-content更贴近上方内容 */
}

.company-intro {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 500;
}

.intro-point {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    line-height: 1.45;
    color: #ffffff;
}

.disclaimer {
    font-size: 14px;
}

.feature-point {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    line-height: 1.45;
    color: #ffffff;
}

.disclaimer {
    margin-top: 1rem;
    font-size: 0.9rem;
    /* margin-top: 1.5rem; */
    margin-bottom: 1.5rem;
    color: #888888;
    line-height: 1.45;
}

/* 关于我们部分 */
.about-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-image {
    width: 70%;
    max-width: 700px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 10px 0 15px rgba(0, 0, 0, 0.2), 0 10px 15px rgba(0, 0, 0, 0.2); /* 增强水平阴影和垂直阴影 */
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

/* 产品部分 */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    width: 100%;
}

.product-item {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* 服务部分 */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
    width: 100%;
}

.service-item {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.service-item h3 {
    font-size: 1.3rem;
}

/* 联系我们部分 */
/* .contact-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding-bottom: 1rem;
    align-items: stretch;
} */

.contact-info {
    flex: 1;
    max-width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.info-item {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* flex: 1; 让每个info-item平均分配空间 */
    width: fit-content;
}

.contact-form {
    flex: 1.5;
    max-width: 60%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-form-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}


.submit-btn {
    margin-top: 1.5rem;
    align-self: center; /* 改为居中对齐 */
    min-width: 200px; /* 设置最小宽度 */
    padding: 1rem 2rem;
    background: #79c705;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: block; /* 使用块级显示 */
    margin-left: auto; /* 自动左边距 */
    margin-right: auto; /* 自动右边距 */
}

.submit-btn:hover {
    background: #8fd80a;
    transform: translateY(-2px);
}

@media (min-width: 1000px) {
    .disclaimer-mobile {
        margin-left: 2em;
        list-style-position: outside;
        padding-left: 0px;
        list-style-type: none; /* 移除默认标记 */
        padding-left: 1em; /* 根据需要调整缩进 */

        li::before {
            content: "-"; /* 在每个<li>前添加短划线 */
            display: inline-block;
            width: 1em; /* 控制短划线的位置，使其对齐 */
            margin-left: -1em; /* 反向移动，以抵消前面的padding */
        }
    }
}

/* 响应式调整 */
@media (max-width: 991px) {
    .contact-container {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-info,
    .contact-form {
        max-width: 100%;
    }

    .disclaimer-mobile {
        margin-left: 1em;
        list-style-position: outside;
        padding-left: 0px;
        list-style-type: none; /* 移除默认标记 */
        padding-left: 1em; /* 根据需要调整缩进 */

        li::before {
            content: "-"; /* 在每个<li>前添加短划线 */
            display: inline-block;
            width: 1em; /* 控制短划线的位置，使其对齐 */
            margin-left: -1em; /* 反向移动，以抵消前面的padding */
        }
    }
}

/* 页脚部分 */
.footer {
    /*background: linear-gradient(to bottom,*/
    /*#070e00 0%,*/
    /*#0d1c00 20%,*/
    /*#418f01 100%);*/
    background-color: #070e00;
    font-size: 25px;
    color: #fff;
    line-height: inherit;
    font-family: "poppins", sans-serif;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: -1px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.footer .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 20px;
}

.footer-img {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 10px;
}

.footer-img img {
    height: 30px;
    width: auto;
    object-fit: contain;
    object-position: center;
}

.footer-bottom {
    font-size: 1rem;
    text-align: center;
}

/* 关于图片容器 */
.about-image-container {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0; /* 修改为0，防止负margin导致溢出 */
    overflow: hidden; /* 添加overflow: hidden防止内容溢出 */
}

.about-overlay-image {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(-5px 5px 10px rgba(133, 206, 255, 0.5));
    max-width: 100%; /* 确保图片不会超过容器宽度 */
}

/* Home Section样式 */
.home-section {
    min-height: auto !important; /* 覆盖通用section的min-height */
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-top: 90px; 为导航栏留出空间 */
    padding: 100px 0 0 0;
    overflow: hidden;
}

.home-section img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* 响应式调整 */
@media (max-width: 767px) {
    .header {
        height: 60px;
    }

    .header .container {
        height: 60px;
    }

    .logo {
        height: 60px;
    }

    .logo img {
        height: 40px;
    }

    .navbar {
        height: 60px;
    }

    .nav-menu {
        height: 60px;
    }

    .home-section {
        /* margin-top: 60px; */
    }
}


/* 手机端标题样式调整 */
@media (max-width: 767px) {
    .smart-ring-title,
    .smart-band-title,
    .controllers-title,
    .about-title,
    .hand-title {
        text-align: center;
        white-space: nowrap;
        font-family: "poppins", sans-serif;
    }
}

@media (max-width: 575px) {
    .news-image {
        /*padding: 0.8rem;*/
    }

    .news-content {
        /* padding: 0.8rem; */
    }

    .info-item {
        padding: 0.8rem;
    }

    .dof-title {
        font-size: 2.5rem;
    }

    .card-text h3 {
        font-size: 1.3rem;
    }

    .smart-ring-title,
    .smart-band-title,
    .controllers-title,
    .about-title,
    .hand-title {
        text-align: center;
        white-space: nowrap;
        font-family: "poppins", sans-serif;
    }
}

/* 手机端布局调整 */
@media screen and (max-width: 768px) {
    .hand-container {
        display: flex;
        flex-direction: column;
    }

    .hand-title {
        order: 1;
        margin-bottom: 2rem;
    }

    .hand-image {
        order: 2;
        margin-bottom: 2rem;
    }

    .hand-text {
        order: 3;
    }

    .hand-text ul {
        margin-top: 0;
    }
}

/* 文本两端对齐 */
.text-left {
    text-align: left;
    text-justify: inter-word;
    -webkit-text-justify: inter-word;
}

.mb10 {
    margin-bottom: 1rem;
}

/* Hand部分 */
.hand {
    min-height: auto;
    margin: 0;
    padding: 0;
}

.hand-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    padding: 4rem 0;
    position: relative;
    overflow: visible;
}

.hand-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    padding: 4rem 0;
    position: relative;
    overflow: visible;
}

.hand-image {
    flex: 1.5;
    width: 100%;
    border-radius: 1rem;
    overflow: visible;
    box-shadow: none;
}

.hand-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 1rem;
    margin: 10px auto;
    box-shadow: 10px 0 15px rgba(0, 0, 0, 0.2), 0 10px 15px rgba(0, 0, 0, 0.2) !important;
}

.hand-text {
    flex: 1;
    max-width: 40%;
    padding: 0 10px;
}

/* .hand-text img{
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    margin-top: 20px;
    box-shadow: 10px 0 15px rgba(0, 0, 0, 0.2), 0 10px 15px rgba(0, 0, 0, 0.2) !important;
} */

.hand-title {
    /* font-size: 2rem; */
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
    text-transform: none;
    line-height: 1.2;
}

.hand-point {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.45;
    color: #ffffff;
}

/* 手机端布局调整 */
@media screen and (max-width: 768px) {
    .hand-container {
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 3rem 0;
    }

    .hand-image {
        max-width: 100%;
        order: 2;
        margin-bottom: 2rem;
    }

    .hand-text {
        max-width: 100%;
        order: 3;
    }

    .hand-title {
        order: 1;
        text-align: center;
        margin-bottom: 2rem;
    }

    .hand-text ul {
        margin-top: 0;
    }
}

/* SmartRing部分 */
.smart-ring {
    min-height: auto;
    margin: 0;
    box-sizing: border-box;
}

.smart-ring-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    padding: 4rem 0;
    position: relative;
    overflow: visible;
}

.smart-ring-text {
    flex: 1;
    max-width: 70%;
}

.smart-ring-title {
    font-size: clamp(1.2rem, 4vw, 2rem);
    font-weight: 600;
    margin-bottom: clamp(0.8rem, 2vw, 2rem);
    color: #ffffff;
    text-align: center;
    text-transform: none;
    line-height: 1.2;
}

.smart-ring-point {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.45;
    color: #ffffff;
}

.smart-ring-image {
    flex: 1;
    max-width: 45%;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.smart-ring-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 10px 0 15px rgba(0, 0, 0, 0.2), 0 10px 15px rgba(0, 0, 0, 0.2);
}

/* SmartBand部分 */
.smart-band {
    background: linear-gradient(to bottom,
    #070e00 0%,
    #0d1c00 20%,
    #418f01 100%);
    min-height: auto;
    margin: 0;
    box-sizing: border-box;
}

.smart-band-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    padding: 4rem 0;
}

.smart-band-text {
    flex: 1;
    max-width: 40%;
}

.smart-band-title {
    font-size: clamp(1.2rem, 4vw, 2rem);
    font-weight: 600;
    margin-bottom: clamp(0.8rem, 2vw, 2rem);
    color: #ffffff;
    text-align: center;
    text-transform: none;
    line-height: 1.2;
}

.smart-band-point {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.45;
    color: #ffffff;
}

.smart-band-image {
    flex: 1;
    max-width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.smart-band-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 1rem;
    box-shadow: 10px 0 15px rgba(0, 0, 0, 0.2), 0 10px 15px rgba(0, 0, 0, 0.2);
}

.smart-band-grid {
    display: none;
}

/* Controllers部分 */
.controllers {
    min-height: auto;
    margin: 0;
    box-sizing: border-box;
    position: relative;
}

.controllers::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1;
}

.controllers-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 4rem 0;
    border-radius: 12px;
    overflow: visible;
    position: relative;
    z-index: 2;
    box-shadow: none;
}

.controllers-text {
    width: 100%;
    max-width: 100%;
    text-align: center;
    z-index: 2;
}

.controllers-image {
    width: 100%;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.controllers-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 10px 0 15px rgba(0, 0, 0, 0.2), 0 10px 15px rgba(0, 0, 0, 0.2);
}

.controllers-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-transform: none;
    line-height: 1.2;
}

.controllers-subtitle {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.3;
}

.controllers-desc {
    font-size: 1rem;
    line-height: 1.45;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.controllers-grid {
    display: none;
}

/* DOF部分 */
.dof.section {
    min-height: auto;
    padding: 4rem 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    margin-top: -1px;
}

.dof-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #ffffff;
    text-align: center;
    position: relative;
    z-index: 2;
}

.dof-content {
    display: flex;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.dof-card {
    flex: 1;
    max-width: 480px;
    width: 480px;
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 10px 0 15px rgba(0, 0, 0, 0.2), 0 10px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.card-label {
    color: #fff;
    padding: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card-image {
    width: 100%;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
}

.card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    box-shadow: 10px 0 15px rgba(0, 0, 0, 0.2), 0 10px 15px rgba(0, 0, 0, 0.2);
}

.card-text {
    padding: 1.5rem;
    color: #fff;
}

.card-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
}

.card-text p {
    font-size: 0.9rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.8);
}

/* 响应式调整 */
@media (max-width: 991px) {
    .dof-content {
        flex-direction: column;
        align-items: center;
    }

    .dof-card {
        max-width: 480px;
        width: 100%;
    }

    .dof-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 767px) {
    .dof-title {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    .card-image {
        height: 260px;
    }

    .about-content-section .container {
        padding: 1.5rem 0;
    }
}

/* VR展示区域 */
.vr-showcase-section {
    background-color: #070e00;
    min-height: auto;
    padding: 0;
    margin: 0;
}

.vr-showcase {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 0;
    width: 100%;
    gap: 5rem;
    margin-top: 0;
    margin-bottom: 0;
}

.vr-image {
    flex: 1.2;
    max-width: 60%;
}

.vr-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 10px 0 15px rgba(0, 0, 0, 0.2), 0 10px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    filter: brightness(1.1) contrast(1.05);
}

.vr-text {
    flex: 0.8;
    max-width: 40%;
}

.vr-point {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.45;
    color: #ffffff;
    font-weight: 400;
}

/* 关于图片容器 */

@media screen and (min-width: 990px) and (max-width: 1200px) {
    .smart-band-text {
        flex: 1;
        max-width: 22.23% !important;
    }
}

@media screen and (min-width: 768px) and (max-width: 990px) {
    .smart-band-text {
        flex: 1;
        max-width: 40% !important;
    }
}


/* Latest News Section Styles */
.latest-news-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
    text-align: center;
    text-transform: capitalize;
}

.news-grid-main {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 2rem;
    flex-wrap: wrap;
}

.news-image-main {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 10px 0 15px rgba(0, 0, 0, 0.2), 0 10px 15px rgba(0, 0, 0, 0.2); /* 增强水平阴影和垂直阴影 */
    display: block;
    -webkit-appearance: none; /* 移除iOS上视频元素的默认样式 */
    -webkit-transform: translateZ(0); /* 启用iOS上的硬件加速 */
    position: relative;
    z-index: 2;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1.5rem;
    padding-bottom: 2rem;
    max-width: 100%;
    width: 100%;
}

.news-card-sp {
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 10px 0 15px rgba(0, 0, 0, 0.2), 0 10px 15px rgba(0, 0, 0, 0.2); /* 增强水平阴影和垂直阴影 */
    padding: 1rem;
}

.news-card {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 10px 0 15px rgba(0, 0, 0, 0.2), 0 10px 15px rgba(0, 0, 0, 0.2); /* 增强水平阴影和垂直阴影 */
    padding: 1rem;
    min-height: 400px;
    width: 100%;
    box-sizing: border-box;
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 10px 0 15px rgba(0, 0, 0, 0.2), 0 10px 15px rgba(0, 0, 0, 0.2); /* 增强水平阴影和垂直阴影 */
    display: block;
    -webkit-appearance: none; /* 移除iOS上视频元素的默认样式 */
    -webkit-transform: translateZ(0); /* 启用iOS上的硬件加速 */
    position: relative;
    z-index: 2;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.news-content {
    /* padding: 1.5rem 0.8rem; */
    display: flex;
    flex-direction: column;
    flex: 1;
    height: auto; /* 固定内容区域高度 */
}

.news-date {
    display: block;
    font-size: 0.9rem;
    color: #79c705;
    margin-bottom: 1rem;
    /* word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-all !important;
    white-space: normal !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    hyphens: auto !important; */
}

.news-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.4;
    display: block !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-all !important;
    white-space: normal !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    hyphens: auto !important;
    -webkit-box-orient: unset !important;
    -webkit-line-clamp: unset !important;
    overflow: visible !important;
    text-overflow: unset !important;
}

/* 更具体的选择器确保样式被应用 */
.news-grid .news-card .news-content .news-title {
    display: block !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-all !important;
    white-space: normal !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    hyphens: auto !important;
    -webkit-box-orient: unset !important;
    -webkit-line-clamp: unset !important;
    overflow: visible !important;
    text-overflow: unset !important;
}

/* 确保.news-date也有强制的文本换行样式 */
.news-grid .news-card .news-content .news-date {
    /* display: block !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-all !important;
    white-space: normal !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    hyphens: auto !important; */
}

.news-excerpt {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
    flex: 1;
}

.news-link {
    display: inline-block;
    color: #79c705;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    margin-top: auto; /* 将链接推到底部 */
}

.news-link:hover {
    color: #ffffff;
}


/* Contact Us Section Styles */
.contact-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
    text-align: center;
    text-transform: capitalize;
}

.contact-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding-bottom: 2rem;
}

.contact-info {
    flex: 1;
    max-width: 40%;
}

.info-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.info-item i {
    font-size: 1.5rem;
    color: #79c705;
    margin-right: 1rem;
    margin-top: 0.5rem;
}

.info-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.info-content p {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.9;
}

.contact-form {
    flex: 1.5;
    max-width: 60%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #79c705;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    margin-top: 1.5rem;
    align-self: center; /* 改为居中对齐 */
    min-width: 200px; /* 设置最小宽度 */
    padding: 1rem 2rem;
    background: #79c705;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: block; /* 使用块级显示 */
    margin-left: auto; /* 自动左边距 */
    margin-right: auto; /* 自动右边距 */
}

.submit-btn:hover {
    background: #8fd80a;
    transform: translateY(-2px);
}

.icp-info {
    margin-top: 10px;
    font-size: 14px;
    color: #fff;
    display: flex;
    gap: 12px;
    justify-content: center
}

.icp-ga {
    display: flex;
    gap: 12px;
    justify-content: center
}

/* 响应式调整 */
@media (max-width: 991px) {
    .contact-container {
        gap: 2rem;
        align-items: center;
    }

    .icp-info {
        margin-top: 10px;
        font-size: 14px;
        color: #fff;
        display: flex;
        flex-direction: column;
        gap: 10px;
        justify-content: center
    }
}

@media (max-width: 767px) {
    .contact-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .contact-us-content-section .container {
        padding: 2rem 0;
    }

    .contact-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .contact-info,
    .contact-form {
        max-width: 100%;
    }

    .info-item {
        padding: 1rem;
    }


    .info-item i {
        font-size: 1.2rem;
    }

    .info-content h3 {
        font-size: 1.1rem;
    }

    .info-content p {
        font-size: 0.9rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .submit-btn {
        width: 100%;
        max-width: 300px;
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    /* news-grid 样式已移至主要定义和 responsive.css */
}


/* Responsive styles for News Articles */

.latest-news-content-section-detail .container {
    margin-top: 100px;
    /*padding: 4rem 0;*/
}

.latest-news-content-section-detail {
    /* background: #070e001; */
    background: linear-gradient(to bottom,
    #070e00 0%,
    #0d1c00 20%,
    #418f01 40%,
    #0d1c00 80%,
    #070e00 100%);

    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: white;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    min-height: auto;
    margin-top: -1px;
}

/* Latest News Section Styles */
.latest-news-title {
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
    text-align: center;
    text-transform: capitalize;
}

/* Latest News Article Styles */
.news-article-detail {
    padding: 2rem;
    margin-bottom: 3rem;
}


.news-header {
    margin-bottom: 2rem;
}

.news-article-detail .news-date {
    display: block;
    font-size: 1rem;
    color: #79c705;
    margin-bottom: 2rem;
}

.news-article-detail .news-title {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.news-article-detail .news-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 8px;
    /*margin-bottom: 2rem;*/
}

.news-article-detail .news-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 10px;
    box-shadow: 10px 0 15px rgba(0, 0, 0, 0.2), 0 10px 15px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1) contrast(1.05);
}

.news-article-detail .news-content {
    color: #ffffff;
}

.news-article-detail .news-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.news-article-detail .news-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin: 2rem 0 1rem;
}

.news-article-detail .news-content ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.news-article-detail .news-content li {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    color: #ffffff;
    opacity: 0.9;
}

@media (max-width: 767px) {
    .news-article-detail {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .news-article-detail .news-title {
        font-size: 1.6rem;
    }

    .news-article-detail .news-image {
        max-height: 300px;
    }

    .news-article-detail .news-content p,
    .news-article-detail .news-content li {
        font-size: 1rem;
    }

    .news-article-detail .news-content h4 {
        font-size: 1.2rem;
    }
}

.news-hover {
    a:hover {
        color: white !important;
    }
}

figcaption {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.credit {
    padding: 0;
    margin: 0 auto;
    color: white;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
}

hr {
    /* border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #79c705, transparent);
    margin: 2rem 0; */

    margin: 0 0 1em;
    border: 0;
    border-bottom: solid 5px #ccc;
    clear: both;
}

/* Load More 功能样式 */
#newsGridToToggle {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-in-out;
}

#newsGridToToggle.show {
    display: grid;
    opacity: 1;
    transform: translateY(0);
}

.load-more-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    padding: 1rem 0;
}

.load-more-btn {
    background: linear-gradient(135deg, #79c705 0%, #418f01 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(121, 199, 5, 0.3);
    position: relative;
    overflow: hidden;
}

.load-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.load-more-btn:hover::before {
    left: 100%;
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(121, 199, 5, 0.4);
    background: linear-gradient(135deg, #8fd806 0%, #4a9f02 100%);
}

.load-more-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(121, 199, 5, 0.3);
}

.load-more-btn.hidden {
    display: none;
}

.load-more-text {
    font-family: 'poppins', sans-serif;
    letter-spacing: 0.5px;
}

.load-more-icon {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.load-more-btn.expanded .load-more-icon {
    transform: rotate(180deg);
}

/* 响应式设计 */
@media (max-width: 767px) {
    .load-more-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .load-more-container {
        margin: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .load-more-btn {
        padding: 0.7rem 1.8rem;
        font-size: 0.9rem;
    }

    .load-more-text {
        letter-spacing: 0.3px;
    }
}

/* News Grid 移动端响应式样式已移至 responsive.css */

.mt10 {
    margin-top: 1rem;
}
