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

@font-face {
    font-family: 'Abel';
    src: url('/static/font/Abel.ttf') format('truetype');
    /* 可以是其他格式，如 'opentype' 或 'embedded-opentype' */
}

@font-face {
    font-family: 'Bahn';
    src: url('/static/font/Bahn.ttf') format('truetype');
    /* 可以是其他格式，如 'opentype' 或 'embedded-opentype' */
}

@font-face {
    font-family: 'Impact';
    src: url('/static/font/impact.ttf') format('truetype');
    /* 可以是其他格式，如 'opentype' 或 'embedded-opentype' */
}

p {
    font-family: 'Abel', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Bahn', sans-serif;
    margin-bottom: 0;
}

ul {
    margin-bottom: 0;
}

ul li {
    list-style: none;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }

    /* 初始状态为原始大小 */
    50% {
        transform: scale(1.2);
    }

    /* 放大到1.2倍 */
    100% {
        transform: scale(1.4);
    }

    /* 最后放大到1.4倍 */
}

.mt-100 {
    margin-top: 100px;
}

.mb-100 {
    margin-bottom: 100px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.mlr-250 {
    margin-left: 250px;
    margin-right: 250px;
}

.plr-250 {
    padding-left: 250px;
    padding-right: 250px;
}










/* 折叠菜单样式 */
.accordion-menu {
    width: 100%;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 50px;
}

.accordion-item {
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 20px;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.accordion-title {
    font-family: 'Bahn', sans-serif;
    font-size: 2rem;
    color: #333;
    font-weight: 600;
}

.accordion-icon {
    font-size: 0.9rem;
    color: #6c757d;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    margin: 0;
    color: #666;
    font-size: 1.3rem;
    font-family: 'Abel', sans-serif;
    line-height: .5rem;
}

.accordion-content-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    background-color: #dde4e1;
    padding: 30px;
    border-radius: 25px;
}

.accordion-content-item-content {
    display: flex;
    gap: 10px;
    align-items: center;
}

.accordion-content-item-content-btn a {
    padding: 15px 30px;
    background-color: #ccd2cf;
    border-radius: 25px;
    color: #000;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-item.active .accordion-icon {
    transform: rotate(90deg);
}

/* 网站顶部 */
.header {
    padding: 20px 0;
}

.header-logo img {
    width: 120px;
}

/* 导航栏 */
.header-nav-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-nav ul li {
    position: relative;
    margin: 0 10px;
}

.header-nav .nav-item {
    font-family: 'Bahn', sans-serif;
    color: #272727;
    text-decoration: none;
    display: block;
    position: relative;
}

/* 添加样式使下拉菜单链接内容在一行显示并且垂直居中 */
.header-nav .nav-link.nav-item.dropdown-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 10px 0;
}

.header-nav .nav-link.nav-item.dropdown-box i.icon-xia {
    margin-left: 5px;
    vertical-align: middle;
}

/* 下拉菜单样式 */
.header-nav ul li.nav-item.dropdown {
    position: relative;
}

.header-nav ul li.nav-item.dropdown .dropdown-menu {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    width: 100%;
    background-color: #0954fc;
    padding: 0;
    margin: 0;
    z-index: 1000;
}

/* 添加一个类用于控制下拉菜单显示 */
.header-nav ul li.nav-item.dropdown.open .dropdown-menu {
    display: block;
}

.header-nav ul li.nav-item.dropdown .dropdown-menu .dropdown-item {
    color: #fff;
    padding: 10px 15px;
    display: block;
    text-decoration: none;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.header-nav ul li.nav-item.dropdown .dropdown-menu .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* 下拉菜单箭头图标样式 */
.header-nav ul li.nav-item.dropdown a.nav-link.dropdown-box i.icon-xia {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
    display: inline-block;
}

/* 当下拉菜单打开时箭头旋转 */
.header-nav ul li.nav-item.dropdown.open a.nav-link.dropdown-box i.icon-xia {
    transform: rotate(180deg);
}

/* 添加新的dropdown-box样式 */
.header-nav ul li.nav-item.dropdown .nav-link.dropdown-box {
    position: relative;
    display: inline-block;
}

/* 禁用bootstrap默认的下拉箭头 */
.header-nav ul li.nav-item.dropdown .nav-link.dropdown-box::after {
    display: none !important;
}

/* 移除之前的黄色线条样式 */
/* 鼠标悬停时显示黄色线的动画效果 - 应用于所有导航链接 */
/* .header-nav ul li a::after { ... }
.header-nav ul li a:hover::after { ... } */

/* 为带有下拉菜单的导航链接添加黄色线条效果，确保优先级 */
/* .header-nav ul li.nav-item.dropdown a.nav-link.dropdown-box::after { ... }
.header-nav ul li.nav-item.dropdown:hover a.nav-link.dropdown-box::after { ... } */

/* 新的通用黄色线条样式 - 使用更具体的选择器和更高的优先级 */
.header-nav ul li>a::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 0 !important;
    height: 2px !important;
    background-color: #ffcc00 !important;
    transition: width 0.3s ease !important;
    z-index: 9999 !important;
    display: block !important;
}

.header-nav ul li>a:hover::after {
    width: 100% !important;
}

/* 特别针对下拉菜单链接的强化样式 */
.header-nav ul li.nav-item.dropdown>a.nav-link.dropdown-box::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 0 !important;
    height: 2px !important;
    background-color: #ffcc00 !important;
    transition: width 0.3s ease !important;
    z-index: 9999 !important;
    display: block !important;
}

.header-nav ul li.nav-item.dropdown>a.nav-link.dropdown-box:hover::after {
    width: 100% !important;
}

.header-search {
    display: flex;
    justify-content: end;
    align-items: center;
    width: 100%;
    height: 41px;
}

/* 搜索按钮图标样式 */
.header-search form {
    display: flex;
    align-items: center;
}

.header-search input[type="text"] {
    padding: 8px 12px;
    background-color: #f3f3f3;
    border: none;
    border-radius: 15px 0 0 15px;
    outline: none;
}

.search-icon-btn {
    color: #272727;
    border: none;
    padding: 8px 12px;
    border-radius: 0 15px 15px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.search-icon-btn:hover {
    color: #fff;
    background-color: #ffcc00;
}

.search-icon-btn i.iconfont {
    font-size: 16px;
}

/* 移除原始提交按钮样式（如果仍存在） */
.header-search input[type="submit"] {
    display: none;
}


/*  suppor下拉菜单样式 */
.header-nav ul li.nav-item.dropdown .support-dropdown {
    background-color: #fff;
    /* 白色背景 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    /* 添加阴影 */
    padding: 20px;
    border: none;
}

.dropdown-important {
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: calc(100% - 400px) !important;
    right: auto !important
}

.support-content {
    display: flex;
    gap: 0;
    height: 400px;
}

/* 一级分类样式 */
.primary-categories {
    min-width: 180px;
    background-color: #f5f5f5;
    padding: 20px 15px;
    border-right: 1px solid #e0e0e0;
}

.primary-categories h6 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
    margin-bottom: 10px;
    font-weight: bold;
}

.primary-categories ul {
    margin-bottom: 15px;
}

.primary-categories ul li.category-item {
    margin: 0 0 5px 0;
}

.primary-categories ul li.category-item a {
    color: #333;
    font-family: 'Abel', sans-serif;
    font-size: 13px;
    padding: 5px 10px;
    display: block;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.2s ease;
}

.primary-categories ul li.category-item a:hover {
    background-color: #e8e8e8;
    color: #000;
}

.primary-categories ul li.category-item.active a {
    background-color: #ffcc00;
    color: #000;
    font-weight: bold;
}

/* 二级分类样式 */
.secondary-categories {
    min-width: 250px;
    padding: 20px;
    background-color: #fff;
    border-right: 1px solid #e0e0e0;
    overflow-y: auto;
}

.secondary-categories h4 {
    font-size: 16px;
    color: #000;
    margin-bottom: 15px;
    font-weight: bold;
}

.category-content {
    display: none;
}

.category-content.active {
    display: block;
}

.category-content ul li {
    margin: 0 0 8px 0;
}

.category-content ul li a {
    color: #333;
    font-family: 'Abel', sans-serif;
    font-size: 14px;
    padding: 6px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    transition: color 0.2s ease;
}

/*  careers页面下拉菜单样式 */
.careers-select-menu {
    margin-top: 20px;
}

.dropdown-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}

.career-dropdown {
    position: relative;
    margin: 0;
    width: 15%;
}

.career-dropdown .nav-link.nav-item.dropdown-box {
    padding: 8px 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    font-family: 'Abel', sans-serif;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.career-dropdown .nav-link.nav-item.dropdown-box:hover {
    background-color: #f8f9fa;
    border-color: #ffcc00;
}

.career-dropdown .dropdown-menu.support-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    margin-top: 5px;
    z-index: 1000;
}

.career-dropdown .support-content {
    height: auto;
    flex-direction: column;
}

.career-dropdown .primary-categories {
    background-color: #fff;
    border-right: none;
    padding: 10px 0;
    min-width: auto;
}

.career-dropdown .primary-categories ul li.category-item a {
    padding: 8px 20px;
    font-size: 13px;
}

.career-dropdown .primary-categories ul li.category-item a:hover {
    background-color: #f8f9fa;
    color: #ffcc00;
}

.view-all-btn {
    padding: 8px 15px;
    background-color: #ffcc00;
    color: #000;
    font-family: 'Abel', sans-serif;
    font-size: 14px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.view-all-btn:hover {
    background-color: #e6b800;
    color: #000;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .dropdown-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .career-dropdown {
        width: 100%;
    }
    
    .career-dropdown .nav-link.nav-item.dropdown-box {
        width: 100%;
        text-align: left;
    }
    
    .career-dropdown .dropdown-menu.support-dropdown {
        width: 100%;
        left: 0;
    }
    
    .view-all-btn {
        text-align: center;
        display: block;
    }
}

.category-content ul li a:hover {
    color: #ffcc00;
}

.category-content ul li a i.iconfont {
    font-size: 10px;
    opacity: 0.7;
}

/* 产品展示区域样式 */
.product-showcase {
    flex: 1;
    padding: 20px;
    background-color: #fff;
    display: flex;
    gap: 20px;
    overflow-y: auto;
}

.product-card {
    flex: 1;
    min-width: 200px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-img {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-img img {
    height: 100%;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-info {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 9;
    width: 100%;
    padding: 90px;
    border-radius: 0 80px 80px 0;
}

.product-info-mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 0 80px 80px 0;
    background-color: #2a3f59c7;
    z-index: 2;
    transform: translateX(-100%);
}

.product-card:hover .product-info-mask {
    transform: translateX(0);
    transition: all 0.5s ease;
}

.product-info-box {
    position: absolute;
    left: 25px;
    top: 25px;
    width: calc(100% - 30px);
    height: 100%;
    z-index: 3;
}

.product-info-box h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: bold;
    color: #fff;
}

.product-info-box p {
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.4;
}

.product-info-box a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffcc00;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #2a3832;
}

.product-card:hover .product-info-box a {
    background-color: #5D5E5E;
    color: #fff;
    transition: all 0.5s ease;
}


/* 网站顶部 */





/* 首页视频区域 */
.slider-area-box {
    position: relative;
    overflow: hidden;
    /* 确保容器占据完整的视口高度 */
    min-height: 100vh;
}

.slider-area-box-bg {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    /* 确保背景层占满整个容器 */
    width: 100%;
    height: 100%;
}

.slider-area-box-bg video {
    width: 100%;
    /* 确保视频占满整个容器并保持宽高比 */
    height: 100%;
    object-fit: cover;
}

.slider-area-box-bg-img {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.slider-area-box-bg-img img {
    width: 100%;
}

.slider-area-box-content {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 280px;
    color: #fff;
    gap: 15px;
}

.slider-area-box-content-line {
    border-bottom: 2px solid #ffcc00;
    width: 100px;
}

.slider-area-box-content h1 {
    font-size: 5.5rem;
    margin: 0;
    width: 50%;
    text-align: center;
}

.slider-area-box-content-btn {
    margin-top: 15px;
}

.slider-area-box-content-btn a {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #ffcc00;
    padding: 1px;
    border-radius: 25px;
    text-decoration: none;
    color: #272727;
    font-family: 'Bahn', sans-serif;
    width: 200px;
    justify-content: end;
}

.slider-area-box-content-btn a:hover {
    background-color: #4a4a4a;
    transition: all 1s ease;
    color: #fff;
}

.slider-area-box-content-btn .slider-area-box-content-btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 30px;
    background-color: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.slider-area-box-content-btn a:hover .slider-area-box-content-btn-icon {
    background-color: #ffcc00;
    transition: all 1s ease;
}

.slider-area-box-content-btn a:hover .slider-area-box-content-btn-icon i {
    transform: translateX(10px);
    transition: all 1s ease;
}

.slider-area-box-content-play {
    position: absolute;
    left: 30px;
    bottom: 30px;

}

.slider-area-box-content-play button {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid #fff;
    background: none;
}

.slider-area-box-content-play i {
    font-size: 1.2rem;
    color: #fff;
}

/* 首页视频区域 */






/* 首页产品分类 */
.home-category {
    position: relative;
}

.home-category-title {
    text-align: center;
    width: 30%;
    margin: 0 auto;
}

.home-category-title h1 {
    font-size: 3rem;
    color: #272727;
    font-family: 'Bahn', sans-serif;
}

.home-category-content {
    margin-top: 50px;
}

.home-category-content-small {
    padding: 30px;
    background-color: #EDEEEE;
    border-radius: 25px;
    margin-bottom: 30px;
    height: 400px;
    position: relative;
}

.home-category-content-small:hover {
    box-shadow: 0 0 10px 7px #00000027;
    background-color: #f5f6f6;
    transition: all 0.3s ease;
}

.home-category-content-small-text {
    text-align: center;
}

.home-category-content-small-img img {
    width: 100%;
    transform: translateY(-20%);
}

.home-category-content-small-btn {
    position: absolute;
    right: 30px;
    bottom: 30px;
    z-index: 2;
    background-color: #ffcc00;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

}

.home-category-content-small-btn a {
    text-decoration: none;
    color: #272727;
}

.home-category-content-small-btn:hover {
    background-color: #272727;
    transition: all 0.3s ease;
}

.home-category-content-small-btn:hover i {
    color: #fff;
    transition: all 0.3s ease;
}

.home-category-content-big {
    padding: 30px;
    background-color: #EDEEEE;
    border-radius: 25px;
    height: 830px;
}

.home-category-content-big:hover {
    box-shadow: 0 0 10px 7px #00000027;
    background-color: #f5f6f6;
    transition: all 0.3s ease;
}

.home-category-content-big-text {
    text-align: center;
}

.home-category-content-big-img img {
    width: 100%;
    transform: translateY(25%);
}

.home-category-content-small-text a {
    font-family: 'Bahn', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    color: #272727;
}

.homepro-switch {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    padding: 0 50px;
}

.homepro-switch .switch-btn {
    width: 50px;
    height: 80px;
    border-radius: 30px;
    background-color: #2A3F59;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.homepro-switch .switch-btn:hover {
    width: 50px;
    height: 100px;
    transition: all 0.3s ease;
}

.homepro-switch .switch-btn i {
    font-size: 1.2rem;
}

/* 首页产品分类 */








/* 首页优势 */
.home-audio-title {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.home-audio-title h1 {
    font-size: 3rem;
}

.home-audio-box-img {
    margin: 50px 0;
}

.home-audio-box-img img {
    width: 100%;
}

.home-audio-box-des {
    text-align: center;
}

.home-audio-box-des p {
    font-size: 1.2rem;
}

.home-audio-box-adv {
    margin-top: 50px;
}

/* 光线扫过动画效果 */
@keyframes lightSweep {
    0% {
        transform: translateX(-100%) rotate(30deg);
        opacity: 0;
    }

    20% {
        opacity: 0.5;
    }

    80% {
        opacity: 0.5;
    }

    100% {
        transform: translateX(200%) rotate(30deg);
        opacity: 0;
    }
}

/* 配合JavaScript的光线效果样式 */
.light-sweep-element {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.light-sweep-active .light-sweep-element {
    animation: lightSweep 3s ease-in-out forwards;
}

/* 为home-audio-box-adv-item添加光线效果 */
.home-audio-box-adv-item {
    position: relative;
    overflow: hidden;
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    border-radius: 50%;
    text-align: center;
}

.home-audio-box-adv-item strong {
    font-family: 'Bahn';
    font-size: 1.5rem;
    text-transform: uppercase;
}

.home-audio-box-adv-item-line {
    width: 100px;
    margin: 15px auto;
}

.home-audio-box-adv-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0) 100%);
    animation: lightSweep 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

/* 为每个item设置不同的动画延迟，创建连续的光线效果 */
.home-audio-box-adv-item:nth-child(1)::before {
    animation-delay: 0s;
}

.home-audio-box-adv-item:nth-child(2)::before {
    animation-delay: 1s;
}

.home-audio-box-adv-item:nth-child(3)::before {
    animation-delay: 2s;
}

/* 调整元素的z-index，确保内容在光效之上 */
.home-audio-box-adv-item strong,
.home-audio-box-adv-item h5,
.home-audio-box-adv-item h6,
.home-audio-box-adv-item p,
.home-audio-box-adv-item-line {
    position: relative;
    z-index: 2;
}

/* 首页优势 */







/* 首页听力产品 */
.home-hearing {
    background-color: #637C72;
    padding: 100px 0;
}

.home-hearing-title h1 {
    color: #fff;
}

.home-hearing-title-des {
    margin: 15px 0;
    color: #fff;
}

.home-hearing-title-des p {
    font-size: 1.2rem;
}

.home-hearing-title-btn {
    margin: 50px 0;
}

.home-hearing-title-btn a {
    border: 2px solid #fff;
    padding: 10px 30px;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
}

.home-hearing-title-btn a:hover {
    background-color: #fff;
    color: #637C72;
    transition: all 0.3s ease;
}

.home-hearing-box-item-img {
    border-radius: 30px;
    overflow: hidden;
}

.home-hearing-box-item-img img {
    width: 100%;
}

.home-hearing-box-item-title {
    margin-top: 20px;
    color: #fff;
}

.home-hearing-box-item-title p {
    margin: 15px 0;
}

.home-hearing-box-item-btn {
    margin-top: 30px;
}

.home-hearing-box-item-btn a {
    padding: 10px 30px;
    border-radius: 30px;
    background-color: #ffcc00;
    color: #fff;
    text-decoration: none;
}

.home-hearing-box-item-btn a:hover {
    background-color: #272727;
    color: #fff;
    transition: all 0.3s ease;
}

/* 首页听力产品 */








/* 首页客户评价 */
.home-customers-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.home-customers-title-line {
    border-bottom: 2px solid #ffcc00;
    width: 100px;
    margin: 15px 0;
}

.home-customers-title h1 {
    margin: 0;
    font-size: 3rem;
    font-weight: 800;
}

.home-customers-box {
    margin-top: 50px;
    background-color: #F5F0EB;
    border-radius: 30px;
    padding: 30px;
}

.home-customers-box-item-img {
    border-radius: 30px;
    overflow: hidden;
}

.home-customers-box-item-img img {
    width: 100%;
}

.home-customers-box-item-content-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-customers-box-item-content-icon i {
    font-size: 1.5rem;
}

.home-customers-box-item-content-title h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.home-customers-box-item-content-title p {
    font-size: 1.2rem;
    height: 20rem;
}

.home-customers-btn {
    width: 100%;
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

/* 首页客户评价 */






/* 首页特点 */
.home-feature {
    background-color: #C1CFC9;
}

.home-feature-box {
    height: 585px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.home-feature-box h1 {
    font-size: 3rem;
    font-weight: 800;
}

.home-feature-box-btn {
    margin-top: 20px;
}

.home-feature-box-btn a {
    padding: 10px 30px;
    border-radius: 30px;
    border: 2px solid #272727;
    color: #272727;
    text-decoration: none;
}

.home-feature-box-btn a:hover {
    background-color: #272727;
    color: #fff;
    transition: all 0.3s ease;
}

/* 首页特点 */






/* 首页售后服务 */
.home-service {
    background-color: #F5F0EB;
}

.home-service-box-item {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-radius: 30px;
    margin-bottom: 30px;
    height: 250px;
}

.home-service-box-item-btn a {
    display: flex;
    align-items: center;
    gap: 20px;
    border: 2px solid #272727;
    padding: 1px;
    border-radius: 25px;
    text-decoration: none;
    color: #272727;
    font-family: 'Bahn', sans-serif;
    width: 200px;
    justify-content: end;
}

.home-service-box-item-btn a:hover {
    background-color: #4a4a4a;
    transition: all 1s ease;
    color: #fff;
}

.slider-area-box-content-btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 30px;
    background-color: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.home-service-box-item-btn a:hover .slider-area-box-content-btn-icon {
    background-color: #fff;
    transition: all 1s ease;
}

.home-service-box-item-btn a:hover .slider-area-box-content-btn-icon i {
    transform: translateX(10px);
    transition: all 1s ease;
}

.home-service-box-item-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.home-service-box-item-social a {
    text-decoration: none;
}

.home-service-box-item-social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ffcc00;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-service-box-item-social a:hover .home-service-box-item-social-icon {
    background-color: #272727;
    transition: all 1s ease;
}

.home-service-box-item-social-icon i {
    font-size: 1.5rem;
    color: #272727;
}

.home-service-box-item-social a:hover .home-service-box-item-social-icon i {
    color: #fff;
    transition: all 1s ease;
}

/* 首页售后服务 */





/* 首页合作伙伴 */
.home-support {
    margin: 50px 0 100px 0;
}

.home-support-box {
    display: flex;
    gap: 150px;
    justify-content: center;
}

.home-support-box-item {
    text-align: center;
}

.home-support-box-item-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #F0F1F1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.home-support-box-item h6 {
    width: 100px;
    color: #272727;
}

.home-support-partner {
    margin-top: 80px;
}

.home-support-partner-item {
    padding: 0 5px;
    border-radius: 8px;
}

.home-support-partner-item img {
    width: 100%;
}

.home-support-partner-item:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.11);
    transition: all 1s ease;
}

.support-switch {
    position: absolute;
    left: 0;
    bottom: 15px;
    transform: translateX(-3%);
    width: 106%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.switch-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.switch-btn:hover {
    background-color: #EBEBEB;
    transition: all 1s ease;
}

/* 首页合作伙伴 */





/* 网站底部 */
.footer {
    background-color: #ECE1D7;
}

.footer-menu h5 {
    font-family: 'Bahn', sans-serif;
}

.footer-menu-item {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-menu-item a {
    font-family: 'Abel', sans-serif;
    color: #272727;
}

.footer-logo {
    margin: 80px 0 20px 0;
}

.footer-links {
    display: flex;
    gap: 10px;
}

.footer-links a {
    color: #272727;
    font-family: 'Abel', sans-serif;
    font-size: 0.9rem;
}

/* 网站底部 */







/* HEADSETE页面头部*/
.page-area {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.page-area-head-bg {
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
    position: absolute;
    z-index: 0;
    display: flex;
    justify-content: center;
    border-radius: 50% 0 0 50%;
    overflow: hidden;
}

.page-area-head-bg img {
    height: 100%;
}

.page-area-content {
    padding: 350px 0;
}

.page-area-content-line {
    border-bottom: 2px solid #ffcc00;
    width: 80px;
    margin: 20px 0;
}

.page-area-head {
    width: 100%;
    padding: 20px;
    background: linear-gradient(to bottom, #000, #00000000);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.page-area-head-links {
    display: flex;
    gap: 30px;
}

.page-area-head-links a {
    color: #fff;
    font-family: 'Abel', sans-serif;
    font-size: 0.9rem;
}

.page-area-head-contact a {
    padding: 5px 12px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-family: 'Abel', sans-serif;
    font-size: 0.9rem;
}

.page-area-head-contact a:hover {
    background-color: #fff;
    color: #000;
    transition: all 1s ease;
}

.page-area-content {
    width: 35%;
}

.page-area-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin: 0;
}

.page-area-content p {
    font-size: 1.5rem;
    white-space: wrap;
    margin: 10px 0 30px 0;
}

.page-area-content-btn {
    display: flex;
    gap: 20px;
    align-items: center;
}

.page-area-content-btn a {
    font-family: 'Bahn', sans-serif;
    font-weight: 600;
    text-decoration: none;
}

.page-area-content-btn .btn1 {
    padding: 12px 35px;
    background-color: #ffcc00;
    color: #000;
    border-radius: 25px;
}

.page-area-content-btn .btn1:hover {
    background-color: #5D5E5E;
    color: #fff;
    transition: all 1s ease;
}

.page-area-content-btn .btn2 {
    padding: 12px 35px;
    border: 2px solid #272727;
    color: #272727;
    border-radius: 25px;
}

.page-area-content-btn .btn2:hover {
    background-color: #5D5E5E;
    color: #fff;
    transition: all 1s ease;
}

/* HEADSETE页面头部*/







/* HEADSETE页面产品列表*/
.prolist-title {
    text-align: center;
}

.prolist-title h1 {
    font-size: 3rem;
    font-family: 'Bahn', sans-serif;
    font-weight: 800;
}

.prolist-title p {
    font-family: 'Abel', sans-serif;
    font-size: 1.5rem;
}

.prolist-content {
    margin-top: 50px;
}

.prolist-content-hot-item {
    border-radius: 15px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.prolist-content-item {
    border-radius: 15px;
    margin-bottom: 30px;
    width: 100%;
}

.prolist-content-hot-item-img-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 0;
    overflow: hidden;
    padding: 30px;
}

.prolist-content-hot-item-img-bg img {
    width: 60%;
    transform: translateY(-25%);
}

.prolist-content-hot-item-img-block {
    width: 80%;
    height: 250px;
    border-radius: 0 150px 150px 0;
    clip-path: inset(0 100% 0 0);
    /* 初始状态：左侧100%裁剪 */
    overflow: hidden;
    opacity: 0;
}

.prolist-content-hot-item-img-block img {
    width: 100%;
    height: 100%;
}

.prolist-content-hot-item-img:hover .prolist-content-hot-item-img-block {
    clip-path: inset(0 0 0 0);
    /* 初始状态：左侧100%裁剪 */
    transition: all 1s ease;
    opacity: 1;
}

.prolist-content-item-color {
    margin: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.prolist-content-item-color-item {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid #fff;
    cursor: pointer;
}

.prolist-content-item-color-item.active {
    border: 2px solid #00000063;
}

.prolist-content-item-title {
    padding: 0 20px;
    color: #fff;
}

.prolist-content-item-title h1 {
    height: 2em;
}

.prolist-content-item-title p {
    font-size: 1.3rem;
    line-height: 1.5rem;
    font-family: 'Abel', sans-serif;
    margin-top: 15px;
    height: 3.9rem;
}

.prolist-content-item-price {
    color: #272727;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: end;
    margin-top: 50px;
}

.prolist-content-item-price p {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}

.prolist-content-item-price d {
    margin: 0 5px;
}

.prolist-content-item-price del {
    text-decoration: line-through;
}

.prolist-content-item-price-btn {
    margin-top: 30px;
}

.prolist-content-item-price-btn a {
    display: flex;
    align-items: center;
    gap: 20px;
    border: 2px solid #fff;
    padding: 1px;
    border-radius: 25px;
    text-decoration: none;
    color: #fff;
    font-family: 'Bahn', sans-serif;
    width: 200px;
    justify-content: end;
}

.prolist-content-item-price-btn a:hover {
    background-color: #fff;
    transition: all 1s ease;
    color: #5D5E5E;
    border: 2px solid #fff;
}

.slider-area-box-content-btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 30px;
    background-color: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.slider-area-box-content-btn-icon i {
    font-size: 1.5rem;
}

.prolist-content-item-price-btn a:hover .slider-area-box-content-btn-icon {
    background-color: #5D5E5E;
    transition: all 1s ease;
}

.prolist-content-item-price-btn a:hover .slider-area-box-content-btn-icon i {
    transform: translateX(10px);
    transition: all 1s ease;
}

.prolist-content-hot-item {
    background-color: #35485F;
    border-radius: 15px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.prolist-content-item-img-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 0;
    overflow: hidden;
    padding: 30px;
}

.prolist-content-item-img-bg img {
    width: 80%;
}

.prolist-content-item-img-block {
    width: 100%;
    height: 250px;
    border-radius: 0 120px 120px 0;
    clip-path: inset(0 100% 0 0);
    /* 初始状态：左侧100%裁剪 */
    overflow: hidden;
    display: flex;
}

.prolist-content-item-img-block img {
    width: 100%;
}

.prolist-content-item-img:hover .prolist-content-item-img-block {
    clip-path: inset(0 0 0 0);
    /* 初始状态：左侧100%裁剪 */
    transition: all 1s ease;
    opacity: 1;
}

/* HEADSETE页面产品列表*/






/* HEADSETE页面OFIICE*/
.page-ofiice-area {
    background-color: #AABAD2;
}

.page-ofiice-area-title {
    text-align: center;
    margin-bottom: 50px;
}

.page-ofiice-area-title h1 {
    font-size: 3rem;
    font-family: 'Bahn', sans-serif;
}

.page-ofiice-area-title p {
    font-size: 1.5rem;
    margin-top: 30px;
}

.page-ofiice-area-content-item {
    border-radius: 20px;
    overflow: hidden;
}

.page-ofiice-area-content-item-img {
    height: 250px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-ofiice-area-content-item-img img {
    width: 100%;
}

.page-ofiice-area-content-item-des {
    padding: 20px;
    background-color: #fff;
    background-color: #35485F;
    color: #fff;
    text-align: center;
}

.page-ofiice-area-btn {
    margin-top: 80px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.page-ofiice-area-btn a {
    padding: 10px 30px;
    border-radius: 25px;
    border: 2px solid #5D5E5E;
    text-decoration: none;
    color: #5D5E5E;
    font-family: 'Bahn', sans-serif;
    font-weight: 800;
}

.page-ofiice-area-btn a:hover {
    background-color: #5D5E5E;
    color: #fff;
    transition: all 1s ease;
}

/* HEADSETE页面OFIICE*/







/* HEADSETE页面FEATURE*/
.page-related-item-img {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-related-item-img-bg {
    position: absolute;
    left: 50%;
    top: 8%;
    transform: translateX(-50%);
    z-index: -1;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #35485F;
}

.page-related-item-img-block img {
    width: 200px;
    transform: translateY(50px);
}

.page-related-item-title {
    text-align: center;
    margin-top: 50px;
}

.page-related-item-title h1 {
    font-family: 'Bahn', sans-serif;
}

.page-related-item-title p {
    font-family: 'Abel', sans-serif;
    font-size: 1.2rem;
    color: #5D5E5E;
    margin: 20px 0;
}

.page-related-item-title span {
    font-family: 'Abel', sans-serif;
    font-size: 1.2rem;
    color: #5D5E5E;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.page-related-item-btn {
    margin: 30px 0;
    display: flex;
    justify-content: center;
}

.page-related-item-btn a {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #ffcc00;
    padding: 1px;
    border-radius: 25px;
    text-decoration: none;
    color: #5D5E5E;
    font-family: 'Bahn', sans-serif;
    width: 200px;
    justify-content: end;
}

.page-related-item-btn a:hover {
    background-color: #5D5E5E;
    transition: all 1s ease;
    color: #fff;
}

.page-related-item-btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 30px;
    background-color: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.page-related-item-btn-icon i {
    font-size: 1.5rem;
}

.page-related-item-btn a:hover .page-related-item-btn-icon {
    background-color: #ffcc00;
    transition: all 1s ease;
}

.page-related-item-btn a:hover .page-related-item-btn-icon i {
    transform: translateX(10px);
    transition: all 1s ease;
    color: #fff;
}

.page-related-item-feature {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.page-related-item-feature-icon i {
    font-size: 1.8rem;
}

.page-related-item-feature-line {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    width: 100%;
    margin: 20px 0;
}

.page-related-btn {
    margin-top: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.page-related-btn a {
    padding: 10px 30px;
    border-radius: 25px;
    background-color: #EBEBEB;
    font-family: 'Bahn', sans-serif;
    font-weight: 800;
    color: #5D5E5E;
    text-decoration: none;
}

.page-related-btn a:hover {
    background-color: #5D5E5E;
    color: #fff;
    transition: all 1s ease;
}

/* HEADSETE页面FEATURE*/






/* HEADSETE页面PARTNER*/
.page-partner {
    background-color: #AABAD2;
}

.page-partner-title {
    text-align: center;
}

.page-partner-title h1 {
    font-family: 'Bahn', sans-serif;
    font-size: 3rem;
    font-weight: 800;
}

.page-partner-title p {
    margin-top: 30px;
    font-family: 'Abel', sans-serif;
    font-size: 1.3rem;
}

.page-partner-des {
    margin: 80px 0;
    text-align: center;
    font-family: 'Abel', sans-serif;
    font-size: 1.3rem;
}

.page-partner-des a {
    color: #000;
}

.page-partner-img-item {
    display: flex;
    justify-content: center;
}

/* HEADSETE页面PARTNER*/







/* HEADSETE页面COLLECTION*/
.page-collection {
    background-color: #AABAD2;
}

.page-collection-title {
    text-align: center;
    margin-bottom: 50px;
}

.page-collection-title h1 {
    font-size: 3rem;
    font-family: 'Bahn', sans-serif;
    font-weight: 800;
}

.page-collection-title p {
    font-family: 'Abel', sans-serif;
    font-size: 1.3rem;
    margin-top: 20px;
}

/* HEADSETE页面COLLECTION*/








/* HEADSETE页面SIMPLE*/
.page-simple {
    background-color: #F5F0EB;
}

.page-simple-text-line {
    border-bottom: 2px solid #ffcc00;
    width: 80px;
    margin: 20px 0;
}

.page-simple-text h1 {
    font-size: 3rem;
    font-family: 'Bahn', sans-serif;
    font-weight: 800;
    line-height: 3rem;
}

.page-simple-text p {
    font-size: 1.3rem;
    font-family: 'Abel', sans-serif;
    margin-top: 20px;
}

.page-simple-text-btn {
    margin-top: 50px;
}

.page-simple-text-btn a {
    padding: 12px 30px;
    border-radius: 25px;
    border: 2px solid #5D5E5E;
    color: #5D5E5E;
    text-decoration: none;
    font-family: 'Bahn', sans-serif;
    font-weight: 800;
}

.page-simple-text-btn a:hover {
    background-color: #5D5E5E;
    color: #fff;
    transition: all 1s ease;
}

.page-simple-img img {
    width: 100%;
    margin-top: 50px;
}

/* HEADSETE页面SIMPLE*/








/* HEADSETE页面留言板*/
.page-contact-form-info-item {
    margin-bottom: 30px;
}

.page-contact-form-info-item h3 {
    font-family: 'Bahn', sans-serif;
    font-weight: 800;
}

.page-contact-form-info-item a {
    color: #000;
}

.page-contact-form-box-item {
    margin-bottom: 20px;
}

.page-contact-form-box {
    padding: 50px;
    border-radius: 15px;
    background-color: #EEF1F7;
}

.page-contact-form-box-item-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.page-contact-form-box-item-title span {
    color: red;
}

.page-contact-form-box-item input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Abel', sans-serif;
    background-color: #fff;
    color: #272727;
    cursor: pointer;
}

.page-contact-form-box-item textarea {
    height: 100px;
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Abel', sans-serif;
    background-color: #fff;
    color: #272727;
    cursor: pointer;
}

/* 下拉框样式 */
.page-contact-form-box-item select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Abel', sans-serif;
    background-color: #fff;
    color: #272727;
    cursor: pointer;
}

.page-contact-form-box-item select:focus {
    outline: none;
    border-color: #ffcc00;
    box-shadow: 0 0 5px rgba(255, 204, 0, 0.3);
}

.page-contact-form-box-item select option {
    padding: 10px;
}

/* 自定义单选框样式 */
.contact-radio-label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
    font-family: 'Abel', sans-serif;
    font-size: 1rem;
}

.contact-radio-label input[type="radio"] {
    opacity: 0;
    position: absolute;
}

.radio-custom {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border: 2px solid #272727;
    border-radius: 50%;
    vertical-align: middle;
}

.contact-radio-label input[type="radio"]:checked+.radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ffcc00;
}

.radio-text {
    vertical-align: middle;
}

/* 自定义勾选框样式 */
.contact-checkbox-label {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
    color: #333;
    transition: color 0.3s ease;
}

.contact-checkbox-label:hover {
    color: #ffcc00;
}

.contact-checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-custom {
    position: relative;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 4px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.contact-checkbox-label:hover input[type="checkbox"]~.checkbox-custom {
    border-color: #ffcc00;
}

.contact-checkbox-label input[type="checkbox"]:checked~.checkbox-custom {
    background-color: #ffcc00;
    border-color: #ffcc00;
}

.checkbox-custom:after {
    content: "";
    position: absolute;
    display: none;
}

.contact-checkbox-label input[type="checkbox"]:checked~.checkbox-custom:after {
    display: block;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    flex: 1;
    line-height: 1.5;
}

.page-contact-form-box-btn {
    margin: 20px 0;
}

.page-contact-form-box-btn button {
    padding: 10px;
    width: 100%;
    border-radius: 25px;
    background-color: #ffcc00;
    border: none;
    font-family: 'Bahn', sans-serif;
    font-weight: 800;
}

.page-contact-form-box-btn button:hover {
    background-color: #272727;
    color: #fff;
    transition: all 1s ease;
}

/* HEADSETE页面留言板*/








/* 产品页视频 */
.page-video {
    position: relative;
}

.page-video-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 65%;
    z-index: -1;
}

.page-video-title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-video-title-line {
    border-bottom: 2px solid #ffcc00;
    width: 100px;
    margin: 20px 0;
}

.page-video-title h1 {
    margin: 0;
    font-size: 3rem;
    font-family: 'Bahn', sans-serif;
    font-weight: 800;
}

.page-video-title p {
    font-size: 1.3rem;
    font-family: 'Abel', sans-serif;
}

.page-video-content {
    width: 60%;
    margin: 0 auto;
    text-align: center;
}

.page-video-content p {
    font-size: 1.3rem;
    font-family: 'Abel', sans-serif;
    margin: 30px 0 20px 0;
}

.page-video-box {
    margin-top: 100px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.page-video-box-bg img {
    width: 100%;
}

.page-video-box-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.363);
    z-index: 1;
}

.page-video-box-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.page-video-box-content-text p {
    font-size: 1.3rem;
    font-family: 'Abel', sans-serif;
    margin: 0;
}

.page-video-box-content-text h1 {
    font-size: 4rem;
    font-family: 'Bahn', sans-serif;
    font-weight: 800;
    margin: 0;
}

.page-video-box-btn {
    width: 80px;
    height: 120px;
    border-radius: 50px;
    background-color: #ffcc0073;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-video-box-btn button {
    width: 60px;
    height: 100px;
    border-radius: 50px;
    background-color: #ffcc00;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.page-video-box-btn button i {
    font-size: 1.5rem;
}

.page-video-box-btn:hover {
    background-color: #2727276e;
    transition: all 1s ease;
}

.page-video-box-btn:hover button {
    background-color: #272727;
    transition: all 1s ease;
}

.page-video-box-btn:hover button i {
    color: #fff;
    transition: all 1s ease;
}

.page-video-box-text {
    margin-top: 50px;
}

.prolist-content-item-speaker-title {
    padding: 0 20px;
    color: #272727;
}

.prolist-content-item-speaker-title p {
    font-size: 1.3rem;
    line-height: 1.5rem;
    font-family: 'Abel', sans-serif;
    margin-top: 15px;
}

.prolist-content-item-speaker-price {
    display: flex;
    flex-direction: column;
    align-items: end;
    padding: 20px;
    margin-top: 50px;
}

.prolist-content-item-speaker-price p {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}

.prolist-content-item-speaker-price del {
    text-decoration: line-through;
}

.prolist-content-item-speaker-price-btn {
    margin-top: 30px;
}

.prolist-content-item-speaker-price-btn a {
    display: flex;
    align-items: center;
    gap: 20px;
    border: 2px solid #5D5E5E;
    padding: 1px;
    border-radius: 25px;
    text-decoration: none;
    color: #5D5E5E;
    font-family: 'Bahn', sans-serif;
    width: 200px;
    justify-content: end;
}

.prolist-content-item-speaker-price-btn a:hover {
    background-color: #5D5E5E;
    transition: all 1s ease;
    color: #fff;
    border: 2px solid #5D5E5E;
}

.slider-area-box-content-speaker-btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 30px;
    background-color: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.slider-area-box-content-speaker-btn-icon i {
    font-size: 1.5rem;
}

.prolist-content-item-speaker-price-btn:hover .slider-area-box-content-speaker-btn-icon {
    background-color: #fff;
    transition: all 1s ease;
}

.prolist-content-item-speaker-price-btn a:hover .slider-area-box-content-speaker-btn-icon i {
    transform: translateX(10px);
    transition: all 1s ease;
}

.prolist-content-speaker-btn {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.prolist-content-speaker-btn a {
    padding: 10px 30px;
    border: 2px solid #5D5E5E;
    border-radius: 25px;
    font-family: 'Bahn', sans-serif;
    text-decoration: none;
    font-weight: 800;
    color: #5D5E5E;
}

.prolist-content-speaker-btn a:hover {
    background-color: #5D5E5E;
    color: #fff;
    transition: all 1s ease;
}

/* 产品页视频 */





/* 产品页挑战 */
.page-challenge-title {
    text-align: center;
}

.page-challenge-title h1 {
    font-size: 3rem;
    font-family: 'Bahn', sans-serif;
    font-weight: 800;
}

.page-challenge-title p {
    font-size: 1.3rem;
}

.page-challenge-content {
    margin-top: 50px;
}

.page-area-content-item-line {
    border-bottom: 1px solid #5d5e5e73;
    width: 100%;
    margin: 30px 0;
}

.page-area-content-item-title h1 {
    font-size: 5rem;
    margin: 0;
}

.page-area-content-item-des {
    text-align: center;
}

.page-area-content-item-des p {
    font-size: 1.3rem;
}

.page-area-content-tag-des {
    margin-top: 30px;
    text-align: center;
}

/* 产品页挑战 */







/* 产品页MEET */
.page-meet {
    position: relative;
}

.page-meet-bg {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.page-meet-title {
    text-align: center;
}

.page-meet-title h1 {
    font-size: 3rem;
    font-family: 'Bahn', sans-serif;
    font-weight: 800;
}

.page-meet-title p {
    font-size: 1.3rem;
}

.page-meet-box img {
    width: 100%;
}

.page-voice-item {
    border: 1px solid #f5f0eb62;
    padding: 50px 30px;
    border-radius: 25px;
}

.page-voice-item-icon {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #F5F0EB;
    margin: 0 auto;
    margin-bottom: 30px;
}

.page-voice-item-icon i {
    font-size: 1.5rem;
    font-weight: 800;
}

.page-voice-item h5 {
    text-align: center;
    margin-bottom: 20px;
}


.page-voice-item-des {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

/* 产品页MEET */









/* 产品页-合作伙伴 */
.page-partnership-content {
    margin-top: 50px;
}

.page-partnership-content-item {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
}

.page-partnership-content-item-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.page-partnership-content-item-logo {
    position: absolute;
    left: 0;
    top: 80px;
    width: 30%;
    border-radius: 0 40px 40px 0;
    padding: 0 10px;
    background-color: #fff;
    overflow: hidden;
}

.page-partnership-content-item-logo img {
    width: 100%;
}

.page-partnership-content-item-title {
    text-align: center;
    padding: 250px 0;
}

.page-partnership-content-item-title h1 {
    color: #fff;
}

.page-partnership-content-item-btn {
    position: absolute;
    right: 30px;
    bottom: 30px;
    z-index: 2;
}

.page-partnership-content-item-btn a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffcc00;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.page-partnership-content-item-btn i {
    color: #fff;
}

/* 产品页-合作伙伴 */






/* 产品页测试页面 */
.page-test-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.page-test-img img {
    width: 100%;
}

.page-test-text {
    margin-top: 200px;
}

.page-test-text h1 {
    font-family: 'Bahn', sans-serif;
    font-size: 3rem;
    font-weight: 800;
}

.page-test-text p {
    font-size: 1.3rem;
    margin-top: 20px;
}

.page-test-text-btn {
    margin-top: 50px;
}

.page-test-text-btn a {
    padding: 10px 30px;
    border: 2px solid #5D5E5E;
    border-radius: 25px;
    text-decoration: none;
    color: #5D5E5E;
    font-family: 'Bahn', sans-serif;
    font-weight: 800;
}

.page-test-text-btn a:hover {
    background-color: #5D5E5E;
    color: #fff;
    transition: all 1s ease;
}

/* 产品页测试页面 */










/* 产品页一级目录样式 */
.page-area-head-business-bg {
    padding: 80px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.page-area-head-business-bg img {
    width: 80%;
}

.page-business-title {
    text-align: center;
    color: #fff;
}

.page-business-title h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: 'Bahn', sans-serif;
}

.page-business-title p {
    font-size: 1.3rem;
    font-family: 'Abel', sans-serif;
}

.page-business-btn {
    margin-top: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.page-business-btn-icon {
    color: #fff;
}

.page-business-btn a {
    display: flex;
    align-items: center;
    gap: 20px;
    border: 2px solid #fff;
    padding: 1px;
    border-radius: 25px;
    text-decoration: none;
    color: #fff;
    font-family: 'Bahn', sans-serif;
    width: 200px;
    justify-content: end;
}

.page-business-btn a:hover {
    background-color: #fff;
    transition: all 1s ease;
    color: #5D5E5E;
    border: 2px solid #fff;
}

.page-business-btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 30px;
    background-color: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.page-business-btn-icon i {
    font-size: 1.5rem;
}

.page-business-btn:hover .page-business-btn-icon {
    background-color: #5D5E5E;
    transition: all 1s ease;
}

.page-business-btn a:hover .page-business-btn-icon i {
    transform: translateX(10px);
    transition: all 1s ease;
}

/* 产品页一级目录样式 */









/* 产品页一级目录视频 */
.page-business-video-box {
    position: relative;
}

.page-business-video-box-bg video {
    width: 100%;
}

.page-business-play {
    position: absolute;
    left: 0;
    bottom: 50px;
    z-index: 2;
}

.page-business-room-title {
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}

.page-business-room-title h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: 'Bahn', sans-serif;
}

.page-business-room-title p {
    font-size: 1.3rem;
    font-family: 'Abel', sans-serif;
}

.page-business-room-box-item-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #637C72;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.page-business-room-box-item-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.page-business-room-box-item-text {
    margin-top: 20px;
}

.page-business-room-box-item-text {
    text-align: center;
    color: #fff;
}
/* 产品页一级目录视频 */








/* Tab容器样式 */
.page-space {
    position: relative;
}

.page-space-tab-container {
    margin-top: 30px;
}

/* Tab选项卡样式 */
.page-space-tab-headers {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    padding: 5px;
    background-color: #384B43;
    border-radius: 40px;
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.page-space-tab-header {
    padding: 10px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Bahn', sans-serif;
    font-weight: 800;
    color: #fff;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.page-space-tab-header:hover {
    background-color: #051810;
    transition: all 0.3s ease;
}

.page-space-tab-header.page-space-tab-active {
    color: #384B43;
    background-color: #fff;
}

/* Tab内容样式 */
.page-space-tab-contents {
    position: relative;
    min-height: 400px;
}

/* 添加默认隐藏Tab内容的样式 */
.page-space-tab-content {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.page-space-tab-content.page-space-tab-content-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
}

.page-space-tab-content h3 {
    color: #384B43;
    margin-bottom: 20px;
}

.page-space-tab-content p {
    font-size: 1.3rem;
    display: -webkit-box;          /* 必须结合的弹性盒子模型 */
    -webkit-box-orient: vertical;  /* 设置子元素的排列方式 */
    -webkit-line-clamp: 3;         /* 限制显示行数（此处为3行） */
    overflow: hidden;              /* 隐藏超出内容 */
    text-overflow: ellipsis;  
}

.prolist-content-item-speaker-price d {
    margin: 0 5px;
}

.page-space-tab-content-inner-text-line {
    border-bottom: 2px solid #ffcc00;
    width: 80px;
    margin: 20px 0;
}

.page-space-tab-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Bahn', sans-serif;
}

.page-space-tab-content-inner-bg {
    border-radius: 20px;
    overflow: hidden;
}

.page-space-tab-content-inner-bg img {
    width: 100%;
}

.page-space-tab-content-inner-text-des {
    margin-top: 80px;
}

.page-space-tab-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.page-space-tab-content li {
    margin-bottom: 10px;
    color: #666;
}

.page-space-tab-content .btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: #384B43;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.page-space-tab-content .btn-primary:hover {
    background-color: #2a3832;
}

.page-space-title {
    text-align: center;
}

.page-space-title h1 {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Bahn', sans-serif;
}

.page-space-title p {
    font-size: 1.3rem;
    font-family: 'Abel', sans-serif;
    margin: 20px 0;
}

.page-space-mask {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 65%;
    background-color: #384B43;
}

.page-space-more {
    width: 60%;
    margin: 0 auto;
    margin-top: 30px;
}

.page-space-more p {
    font-size: 1.3rem;
    font-family: 'Abel', sans-serif;
    color: #fff;
    text-align: center;
}
/* 产品页一级目录视频样式 */











/* 产品页certified */
.page-certified-title {
    text-align: center;
}

.page-certified-title h1 {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Bahn', sans-serif;
}

.page-certified-title p {
    font-size: 1.3rem;
    font-family: 'Abel', sans-serif;
    margin-top: 20px;
}

.page-certified-box {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap:20px;
}

.page-certified-box-item {
    padding: 15px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-certified-box-item img {
    width: 40%;
}

.page-rooms-title {
    color: #fff;
    margin: 150px 0;
}

.page-rooms-title p {
    font-size: 1.3rem;
}

.page-rooms-title-line {
    border-bottom: 2px solid #ffcc00;
    width: 80px;
    margin: 20px 0;
}

.page-rooms-title h1 {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Bahn', sans-serif;
}

.page-rooms-title-btn {
    margin-top: 50px;
}

.page-rooms-title-btn a {
    padding: 10px 30px;
    border: 2px solid #fff;
    border-radius: 25px;
    color: #fff;
    text-decoration: none;
    font-family: 'Bahn', sans-serif;
    font-weight: 800;
}

.page-rooms-title-btn a:hover {
    background-color: #fff;
    color: #384B43;
    transition: all 1s ease;
}

.page-rooms-img img {
    width: 100%;
}

.page-videobar img {
    width: 100%;
}
/* 产品页certified */








/* 产品页accessories */
.page-accessories-title {
    margin: 150px 0;
}

.page-accessories-title h1 {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Bahn', sans-serif;
}

.page-accessories-title p { 
    font-size: 1.3rem;
    font-family: 'Abel', sans-serif;
    margin: 20px 0;
}

.page-accessories-btn {
    margin-top: 50px;
}

.page-accessories-btn a {
    padding: 12px 30px;
    border-radius: 25px;
    background-color: #ffcc00;
    font-family: 'Bahn', sans-serif;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
}

.page-accessories-btn a:hover {
    background-color: #4a4a4a;
    transition: all 1s ease;
}

.page-accessories-img img {
    width: 100%;
}
/* 产品页accessories */







.page-table-title {
    text-align: center;
}

.page-table-title h1 {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Bahn', sans-serif;
    margin: 0;
}

.page-table-box {
    margin-top: 30px;
}







/* 产品列表页 */

/* 产品列表页多选框样式 */
.prolist-checkbox-group {
    margin-top: 20px;
}

.prolist-checkbox-label {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    cursor: pointer;
    user-select: none;
    font-size: 16px;
    color: #272727;
    transition: color 0.3s ease;
    font-family: 'Abel', sans-serif;
}

.prolist-checkbox-label:hover {
    color: #ffcc00;
}

.prolist-checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.prolist-checkbox-label .checkbox-custom {
    position: relative;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.prolist-checkbox-label input[type="checkbox"]:checked~.checkbox-custom {
    background-color: #fff;
    border-color: #000;
}

.prolist-checkbox-label input[type="checkbox"]:checked~.checkbox-custom:after {
    display: block;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid #000;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.prolist-checkbox-label .checkbox-text {
    flex: 1;
    line-height: 1.5;
}


.prolist-area-sidebar {
    padding: 20px;
    border-radius: 10px;
    background-color: #F5F5F5;
}

.prolist-area-sidebar-search form {
    position: relative;
}

.prolist-area-sidebar-search form input {
    padding: 10px 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.prolist-area-sidebar-search form input:focus {
    outline: none;
    border: 1px solid #ffcc00;
}

.prolist-area-sidebar-search form button {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
}

.prolist-area-sidebar-category {
    margin-top: 30px;
}

.prolist-area-content-item {
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.prolist-area-content-item-img {
    background-color: #F5F5F5;
    padding: 20px;
}

.prolist-area-content-item-img img {
    width: 100%;
}

.prolist-area-content-item-info {
    padding: 30px;
}

.prolist-area-content-item-info a {
    color: #000;
    font-size: 1.3rem;
    font-family: 'Bahn', sans-serif;
    font-weight: 800;
    height: 2.6rem;
}

.prolist-area-content-item-info p {
    margin-top: 15px;
}





.prolist-area-content-item-btn {
    display: flex;
    justify-content: end;
    padding: 0 30px 30px 30px;
}

.prolist-area-content-item-btn a {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #ffcc00;
    padding: 1px;
    border-radius: 25px;
    text-decoration: none;
    color: #5D5E5E;
    font-family: 'Bahn', sans-serif;
    width: 160px;
    justify-content: end;
}

.prolist-area-content-item-btn a:hover {
    background-color: #5D5E5E;
    transition: all 1s ease;
    color: #fff;
}

.prolist-area-content-item-btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 30px;
    background-color: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.prolist-area-content-item-btn-icon i {
    font-size: 1.5rem;
}

.prolist-area-content-item-btn a:hover .prolist-area-content-item-btn-icon {
    background-color: #ffcc00;
    transition: all 1s ease;
}

.prolist-area-content-item-btn a:hover .prolist-area-content-item-btn-icon i {
    transform: translateX(10px);
    transition: all 1s ease;
    color: #fff;
}

.prolist-area-partner {
    padding: 30px 0;
}
/* 产品列表页 */




.prolist-detail {
    position: relative;
}



.prolist-detail-bg {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 50%;
    height: 100%;
    border-radius: 0 50% 50% 0;
    background-color: #ECE1D7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.prolist-detail-bg-img {
    width: 50%;
    margin: 0 auto;
}

.prolist-detail-bg-img img {
    width: 100%;
}

.prolist-detail-content {
    margin: 300px 0;
    padding-left: 50px;
}

.prolist-detail-content h1 {
    font-size: 3rem;
    font-family: 'Bahn', sans-serif;
    font-weight: 800;
}

.prolist-detail-content p {
    font-size: 1.3rem;
}

.prolist-detail-bg-btn {

}




.prolist-detail-bg-btn {
    margin-top: 30px;
}

.prolist-detail-bg-btn button {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #D9CFC6;
    padding: 1px;
    border-radius: 25px;
    text-decoration: none;
    color: #000;
    font-family: 'Bahn', sans-serif;
    width: 160px;
    justify-content: end;
    border: none;
}

.prolist-detail-bg-btn button:hover {
    background-color: #B4ABA4;
    transition: all 1s ease;
    color: #fff;
}

.prolist-detail-bg-btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 30px;
    background-color: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.prolist-detail-bg-btn-icon i {
    font-size: 1.5rem;
}

.prolist-detail-bg-btn button:hover .prolist-detail-bg-btn-icon {
    background-color: #ffcc00;
    transition: all 1s ease;
}

.prolist-detail-bg-btn button:hover .prolist-detail-bg-btn-icon i {
    transform: translateX(10px);
    transition: all 1s ease;
    color: #fff;
}







.prolist-detail-content-btn {
    margin-top: 30px;
}

.prolist-detail-content-btn a {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #ffcc00;
    padding: 1px;
    border-radius: 25px;
    text-decoration: none;
    color: #5D5E5E;
    font-family: 'Bahn', sans-serif;
    width: 160px;
    justify-content: end;
}

.prolist-detail-content-btn a:hover {
    background-color: #5D5E5E;
    transition: all 1s ease;
    color: #fff;
}

.prolist-detail-content-btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 30px;
    background-color: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.prolist-detail-content-btn-icon i {
    font-size: 1.5rem;
}

.prolist-detail-content-btn a:hover .prolist-detail-content-btn-icon {
    background-color: #ffcc00;
    transition: all 1s ease;
}

.prolist-detail-content-btn a:hover .prolist-detail-content-btn-icon i {
    transform: translateX(10px);
    transition: all 1s ease;
    color: #fff;
}
/* 产品详情页 */









/* 全屏图片展示样式 */
.fullscreen-image-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
}

.fullscreen-image-container.active {
    display: flex;
}

.fullscreen-image-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fullscreen-image {
    max-width: 100%;
    max-height: 100vh;
    object-fit: contain;
}

.fullscreen-close-btn {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #000;
    color: #fff;
    border: none;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: all 0.3s ease;
}

.fullscreen-close-btn:hover {
    background-color: #ffcc00;
    color: #000;
    transform: rotate(90deg);
}
/* 全屏图片展示样式 */

.prolist-detail-related-title {
    margin-bottom: 30px;
    text-align: center;
}

.prolist-detail-related-title h1 {
    font-size: 3rem;
    font-family: 'Bahn', sans-serif;
    font-weight: 800;
}









/* 服务支持页面 */
.support-area {
    position: relative;
}

.support-area-bg {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    width: 50%;
    height: 100%;
    border-radius: 0 80px 80px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.support-area-bg img {
    width: 100%;
}

.support-area-content {
    padding: 100px 0;
    color: #fff;
}

.support-area-content p {
    font-size: 1.3rem;
}

.support-area-content h1 {
    font-size: 3rem;
    font-family: 'Bahn', sans-serif;
    font-weight: 800;
}

.support-area-content-line {
    border: 2px solid #ffcc00;
    width: 100px;
    margin: 30px 0;
}

.support-area-content-search {
    margin-top: 30px;
}

.support-area-content-search form {
    position: relative;
}

.support-area-content-search form input { 
    padding: 10px 35px;
    border: 1px solid #f3f3f3;
    border-radius: 5px;
    width: 30%;
    font-family: 'Abel', sans-serif;
}

.support-area-content-search form input:focus {
    outline: none;
    border: 1px solid #ffcc00;
}

.support-area-content-search button { 
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background:none;
}

.support-area-content-search button i {
    font-size: 1.2rem;
}

.support-resouces-title h1 {
    font-size: 3rem;
    font-family: 'Bahn', sans-serif;
    font-weight: 800;
    text-align: center;
}

.support-resouces-content {
    margin-top: 30px;
}

.support-resouces-content a {
    text-decoration: none;
}

.support-resouces-item {
    padding: 30px;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #f3f3f3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:20px;
}

.support-resouces-item:hover {
    border: 1px solid #000;
    transition: all 0.3s ease-in-out;
}

.support-resouces-item-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #C1CFC9;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.support-resouces-item-icon i {
    font-size: 2rem;
    color: #000;
}

.support-resouces-item-title {
    margin-top: 20px;
}

.support-resouces-item-title h5 {
    color: #000;
}

.support-resouces-item-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.support-resouces-item-btn i {
    color: #000;
}

.support-resouces-item-btn:hover {
    background-color: #000;
    transition: all 1s ease-in-out;
}

.support-resouces-item-btn:hover i {
    color: #fff;
    transition: all 1s ease-in-out;
}
/* 服务支持页面 */







/* SUPPORT 页面相关视频 */
.page-video-related-item {
    position: relative;
    padding: 50px 30px;
    border-radius: 8px;
    overflow: hidden;
}

.page-video-related-item-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    display: flex;
}

.page-video-related-item-bg img {
    width: 100%;
}

.page-video-related-item-mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #00000080;
    z-index: -1;
}

.page-video-related-item-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}
/* SUPPORT 页面相关视频 */








/* SUPPORT 页面相关视频按钮 */
.page-video-related-more {
    margin-top: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.page-video-related-more a {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #ffcc00;
    padding: 1px;
    border-radius: 25px;
    text-decoration: none;
    color: #5D5E5E;
    font-family: 'Bahn', sans-serif;
    width: 320px;
    justify-content: end;
}

.page-video-related-more a:hover {
    background-color: #5D5E5E;
    transition: all 1s ease;
    color: #fff;
}

.page-video-related-more-icon {
    width: 40px;
    height: 40px;
    border-radius: 30px;
    background-color: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.page-video-related-more-icon i {
    font-size: 1.5rem;
}

.page-video-related-more a:hover .page-video-related-more-icon {
    background-color: #ffcc00;
    transition: all 1s ease;
}

.page-video-related-more a:hover .page-video-related-more-icon i {
    transform: translateX(10px);
    transition: all 1s ease;
    color: #fff;
}
/* SUPPORT 页面相关视频按钮 */







.support-look-title p {
    font-size: 1.3rem;
}

.support-look-title-line {
    border-bottom: 2px solid #ffcc00;
    width: 100px;
    margin: 20px 0;
}

.support-look-title h1 {
    font-size: 3rem;
    font-weight: 800;
}

.support-look-content {
    margin-top: 50px;
}

.support-look-content-big-item {
    position: relative;
    width: 100%;
    height: 980px;
    border-radius: 20px;
    overflow: hidden;
    padding: 30px;
    margin-bottom: 30px;
}

.support-look-content-item-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.support-look-content-item-bg img {
    width: 100%;
}

.support-look-content-item {
    position: relative;
    width: 100%;
    height: 475px;
    border-radius: 20px;
    overflow: hidden;
    padding: 30px;
    margin-bottom: 30px;
}

.support-look-content-item-mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #000, #0000004b);
    z-index: -1;
}

.support-look-content-item-more {
    display: flex;
    justify-content: space-between;
    align-items: end;
    width: 100%;
    height: 100%;
}

.support-look-content-item-more-btn a {
    text-decoration: none;
}

.support-look-content-item-more-btn .btn1 {
    width: 50px;
    height: 50px;   
    border-radius: 50%;
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.support-look-content-item-more-btn .btn1:hover {
    background-color: #fff;
    transition: all 1s ease;
}

.support-look-content-item-more-btn .btn1 i {
    font-size: 1.3rem;
    color: #fff;
}

.support-look-content-item-more-btn .btn1:hover i {
    color: #000;
    transition: all 1s ease;
}

.support-look-content-item-more-btn .btn2 {
    width: 50px;
    height: 50px;   
    border-radius: 50%;
    border: 1px solid #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.support-look-content-item-more-btn .btn2:hover {
    background-color: #000;
    transition: all 1s ease;
}

.support-look-content-item-more-btn .btn2 i {
    font-size: 1.3rem;
    color: #000;
}

.support-look-content-item-more-btn .btn2:hover i {
    color: #fff;
    transition: all 1s ease;
}








.support-finder-img img {
    width: 100%;
}

.support-finder-content {
    margin: 160px 0;
}

.support-finder-content p {
    font-size: 1.3rem;
}

.support-finder-content h1 {
    font-size: 3rem;
    font-weight: 800;
}

.support-finder-content-line {
    border-bottom: 2px solid #ffcc00;
    width: 100px;
    margin: 20px 0;
}




.support-finder-content-btn {
    margin-top: 50px;
    width: 100%;
}

.support-finder-content-btn a {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #ffcc00;
    padding: 1px;
    border-radius: 25px;
    text-decoration: none;
    color: #5D5E5E;
    font-family: 'Bahn', sans-serif;
    width: 160px;
    justify-content: end;
}

.support-finder-content-btn a:hover {
    background-color: #5D5E5E;
    transition: all 1s ease;
    color: #fff;
}

.support-finder-content-btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 30px;
    background-color: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.support-finder-content-btn-icon i {
    font-size: 1.5rem;
}

.support-finder-content-btn a:hover .support-finder-content-btn-icon {
    background-color: #ffcc00;
    transition: all 1s ease;
}

.support-finder-content-btn a:hover .support-finder-content-btn-icon i {
    transform: translateX(10px);
    transition: all 1s ease;
    color: #fff;
}










.download-area {
    text-align: center;
}

.download-area-box {
    margin-top: 50px;
}

.download-area-box-item {
    padding: 30px 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.download-area-box-item-icon {
    margin-bottom: 20px;
}

.download-area-box-item-icon i {
    font-size: 2.5rem;
    font-weight: bold;
}

.download-area-box-item:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: all .3s ease;
}





/* 行业分类页 */
.industry-video {
    position: relative;
}

.industry-video-bg {
    position: absolute;
    left: 0;
    top:50%;
    transform: translateY(-50%);
    width: 100%;
    height: 800px;
    background-color: #f4f0eb;
    z-index: -1;
}

.industry-video-img {
    display: flex;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
}

.industry-video-img img {
    width: 100%;
}






.industry-connect-img img {
    width: 100%;
}

.industry-connect-text h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.industry-connect-text p {
    font-size: 1.3rem;
}





.industry-control {
    background-color: #f4f0eb;
}

.industry-control-text h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.industry-control-text p {
    font-size: 1.3rem;
}

.industry-control-img img {
    width: 100%;
}
/* 行业分类页 */







/* BLOG列表页 */
.bloglist-area-box h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.bloglist-area-box p {
    font-size: 1.3rem;
    color: #fff;
}

.bloglist-hot-left-img {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.bloglist-hot-left-img img {
    width: 100%;
}

.bloglist-hot-left a {
    font-size: 3rem;
    font-family: 'Bahn', sans-serif;
    font-weight: 400;
    line-height: 2.8rem;
    color: #000;
}

.bloglist-hot-right-item-img {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.bloglist-hot-right-item-img img {
    width: 100%;
}

.bloglist-hot-right-item a {
    font-size: 1.5rem;
    font-family: 'Bahn', sans-serif;
    font-weight: 400;
    line-height: 1.5rem;
    color: #000;
}

.bloglist-guide {
    position: relative;
}

.bloglist-guide-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 80%;
    background-color: #f4f0eb;
    z-index: -5;
}

.bloglist-guide-title {
    margin-bottom: 20px;
}

.bloglist-guide-content-item {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
}

.bloglist-guide-content-item-img a {
    width: 100%;
    height: 300px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bloglist-guide-content-item-img img {
    width: 100%;
}

.bloglist-guide-content-item-text {
    padding: 30px;
}

.bloglist-guide-content-item-text-title {
    margin-bottom: 20px;
}

.bloglist-guide-content-item-text-title a {
    font-size: 1.5rem;
    font-family: 'Bahn', sans-serif;
    font-weight: 400;
    color: #000;
}

.bloglist-guide-content-item-text-btn a {
    color: #272727;
    text-decoration: none;
}

.bloglist-guide-btn {
    margin-top: 50px;
}

.bloglist-guide-btn a {
    font-family: 'Bahn', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #000;
    text-decoration: none;
}

.bloglist-guide-btn a:hover i {
    transform: translateX(10px);
    transition: all .3s ease;
}

.bloglist-guide-study {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.bloglist-guide-study-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    z-index: -2;
}

.bloglist-guide-study-bg img {
    width: 100%;
}

.bloglist-guide-study-mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 60%;
    height: 100%;
    background-color: #2A3F59;
    border-radius: 0 150px 150px 0;
    z-index: -1;
}

.bloglist-guide-study-text {
    padding: 80px 50px;
    color: #fff;
    width: 40%;
}

.bloglist-guide-study-text a {
    text-decoration: none;
}

.bloglist-guide-study-text h1 {
    margin: 20px 0;
    color: #fff;
    font-family: 'Bahn', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
}

.bloglist-guide-study-text p {
    font-family: 'Abel', sans-serif;
    font-size: 1.3rem;
    color: #fff;
}

.bloglist-guide-study-text b {
    font-weight: 600;
    color: #ffcc00;
}

.bloglist-feature-content {
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
}

.bloglist-feature-content img {
    width: 100%;
}

.bloglist-front-content {
    margin-top: 30px;
}

.bloglist-front-content-item-img {
    border-radius: 15px;
    overflow: hidden;
}

.bloglist-front-content-item-img img {
    width: 100%;
}

.bloglist-front-content-item-text {
    margin-top: 20px;
}

.bloglist-front-content-item-text a {
    color: #272727;
    text-decoration: none;
    font-size: 1.3rem;
    font-family: 'Abel', sans-serif;
}







.bloglist-video-item-content {
    margin-top: 30px;
}

.bloglist-video-item-content video {
    width: 100%;
}

.bloglist-video-item-content img {
    width: 100%;
}






.bloglist-guide-more-item-img a {
    width: 100%;
    height: 400px;
    display: flex;
    overflow: hidden;
}

.bloglist-guide-more-item-img img {
    width: 100%;
}
/* BLOG列表页 */











.blog-details-box {
    position: relative;
}

.blog-details-box-img img {
    width: 100%;
}

.blog-details-box-title {
    position: absolute;
    right: 0;
    bottom: 100px;
    padding: 50px 100px;
    width: 60%;
    color: #fff;
    background-color: #71849d;
    border-radius: 150px 0 0 150px;
}

.blog-details-box-title p {
    font-size: 1.3rem;
    font-family: 'Abel', sans-serif;
}

.blog-details-box-title h1 {
    font-size: 3rem;
    font-family: 'Bahn', sans-serif;
    font-weight: 400;
    line-height: 2.8rem;
    margin-bottom: 20px;
}

.blog-details-box-content {
    margin: 50px 0;
}

.blog-details-box-content p {
    font-size: 1.3rem;
}

.blog-details-related-posts-box-content {
    margin-top: 30px;
}

.blog-details-related-posts-box-content-item {
    border-radius: 15px;
    overflow: hidden;
    background-color: #fff;
}

.blog-details-related-posts-box-content-item-img {
    width: 100%;
    display: flex;
}

.blog-details-related-posts-box-content-item-img img {
    width: 100%;
}

.blog-details-related-posts-box-content-item-title {
    padding: 30px;
}

.blog-details-related-posts-box-content-item-title a {
    font-size: 1.5rem;
    font-family: 'Bahn', sans-serif;
    font-weight: 400;
    color: #000;
}

.blog-details-related-posts-box-content-item-title p {
    margin-top: 80px;
}








.article-list-title h1 {
    font-size: 2.5rem;
    font-family: 'Bahn', sans-serif;
}

.article-list-content {
    margin-top: 30px;
}

.article-list-content-item {
    margin-bottom: 30px;
}

.article-list-content-item-img {
    border-radius: 15px;
    overflow: hidden;
}

.article-list-content-item-img img {
    width: 100%;
}

.article-list-content-item-title h2 {
    margin: 20px 0;
}

.article-list-content-item-title p {
    font-size: 1.3rem;
    font-family: 'Abel', sans-serif;
}

.article-list-content-item-btn {
    padding: 10px 20px;
    border-radius: 25px;
    background-color: #ffcc00;
    color: #fff;
    width: 150px;
    text-align: center;
    margin-top: 20px;
}

.article-list-content-item-btn a {
    color: #fff;
    text-decoration: none;
    font-family: 'Bahn', sans-serif;
}

.article-list-content-item-btn:hover {
    background-color: #272727;
    transition: all 0.3s ease-in-out;
}

.article-media-title {
    margin-bottom: 100px;
}

.article-media-title h1 {
    text-align: center;
    font-size: 2.5rem;
    font-family: 'Bahn', sans-serif;
}

.article-media-content {
    margin-top: 100px;
    display: flex;
    padding: 20px;
    gap: 20px;
    border-radius: 80px;
    background-color: #ffcc00;
    width: 40%;
    margin: 0 auto;
}

.article-media-content-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
}

.article-media-content-img img {
    width: 100%;
}











/* case页面 */
.page-space-tab-content-inner-big {
    padding: 30px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    height: 650px;
    margin-bottom: 50px;
}

.page-space-tab-content-inner-middle-heng {
    padding: 30px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    height: 300px;
    margin-bottom: 50px;
}

.page-space-tab-content-inner-middle-shu {
    padding: 30px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    height: 650px;
    margin-bottom: 50px;
}

.page-space-tab-content-inner-middle {
    padding: 30px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.page-space-tab-content-inner-small {
    padding: 30px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    height: 300px;
    margin-bottom: 50px;
}

.page-space-tab-content-inner-channel {
    position: absolute;
    right: 30px;
    top:30px;
    padding: 8px 15px;
    border-radius: 25px;
    background-color: #00000095;
    color: #fff;
}

.page-space-tab-content-inner-text {
    position: absolute;
    left: 30px;
    bottom: 30px;
}

.page-space-tab-content-inner-text-logo {
    margin-bottom: 15px;
}

.page-space-tab-content-inner-text-logo img {
    width: 100px;
}
/* case页面 */








/* 资料下载 */
.brochures-box-title {
    margin-bottom: 50px;
}

.brochures-box-content-item {
    border-radius: 15px;
    margin-bottom: 30px;
    border: 1px solid #00000020;
    padding: 30px;
}

.brochures-box-content-item-img img {
    width: 100%;
}

.brochures-box-content-item-more-detail {
    margin-top: 25px;
}

.brochures-box-content-item-more-detail p {
    font-size: 1.3rem;
    display: flex;
    gap:15px;
    align-items: center;
}

.brochures-box-content-item-more-detail img {
    width: 30px;
}

.brochures-box-content-item-more {
    margin: 50px 0;
}

.brochures-box-content-item-download {
    margin: 20px 0;
}

.brochures-box-content-item-download-up {
    text-align: end;
    display: flex;
    flex-direction: column;
    gap:5px;
    margin-bottom: 20px;
}

.brochures-box-content-item-download-up a {
    color: #000;
    font-size: 1.3rem;
    font-family: 'Abel', sans-serif;
    text-decoration: underline;
}

.brochures-box-content-item-download-down {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: end;
    gap:15px;
}

.brochures-box-content-item-download-down a {
    padding: 10px 20px;
    border-radius: 25px;
    background-color: #ffcc00;
    color: #fff;
    width: 150px;
    text-align: center;
}
/* 资料下载 */










.report-banner-content p {
      font-size: 1.3rem;
      font-family: 'Abel', sans-serif;
      color: #fff;
}

.report-banner-content h1 {
    font-size: 2.5rem;
    font-family: 'Bahn', sans-serif;
    color: #fff;
    margin-bottom: 30px;
}

.report-banner-content img {
    width: 100%;
}






.report-content-text h1 {
    font-size: 2.5rem;
    font-family: 'Bahn', sans-serif;
    color: #000;
}

.report-content-text-line {
    border-bottom: 1px solid #ffcc00;
    margin: 20px 0;
    width: 100%;
}

.report-content-text p {
    font-size: 1.3rem;
    font-family: 'Abel', sans-serif;
    color: #000;
}






.report-content-highlights-text h1 {
    font-size: 2.5rem;
    font-family: 'Bahn', sans-serif;
    color: #000;
}

.report-content-highlights-text-box {
    margin-top: 50px;
}

.report-content-highlights-text-box-item {
    padding: 15px 30px;
    border-radius: 0 100px 100px 0;
    margin-bottom: 30px;
    background-color: #2f3e57;
    display: flex;
    align-items: center;
    gap:50px;
}

.report-content-highlights-text p {
    font-size: 1.3rem;
    font-family: 'Abel', sans-serif;
    color: #fff;
}

.report-content-highlights-text-box-item strong {
    font-size: 6rem;
    color: #596579;        
}






.report-finding-title {
    display: flex;
    gap:20px;
    align-items: center;
}

.report-finding-title-no {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #2f3e57;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-family: 'Bahn', sans-serif;
}

.report-finding-line {
    border-bottom: 1px solid #ffcc00;
    margin: 30px 0;
    width: 100%;
}

.report-finding-text p {
    font-size: 1.3rem;
    font-family: 'Abel', sans-serif;
    color: #000;
}

.report-finding-img {
    margin-top: 50px;
}

.report-finding-img img {
    width: 100%;
}

.report-finding-more {
    display: flex;
    gap:50px;
    align-items: center;
    justify-content: center;
    width: 60%;
    margin: 0 auto;
}

.report-finding-more-no {
    width: 30%;
    height: 210px;
    border-radius: 50%;
    background-color: #ffcc00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    font-family: 'Bahn', sans-serif;
}

.report-finding-more-text {
    width: 60%;
}

.report-finding-more-text p {
    font-size: 1.3rem;
    font-family: 'Abel', sans-serif;
    color: #000;
    font-style: italic;
}

.report-finding-more-no {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.report-finding-more-no small {
    font-size: 1rem;
}






.webinars-area {
    position: relative;
}

.webinars-area-bg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: -2;
    height: 100%;
    background-color: #f5f5f5;
}

.webinars-area-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
}

.webinars-area-bottom img {
    width: 100%;
}

.webinars-area-title h1 {
    font-size: 2.5rem;
    font-family: 'Bahn', sans-serif;
    color: #000;
}

.webinars-area-title p {
    font-size: 1.3rem;
    font-family: 'Abel', sans-serif;
    color: #000;
}

.webinars-area-content {
    margin-top: 50px;
}

.webinars-area-content-item {
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    margin-bottom: 30px;
}

.webinars-area-content-item p {
    font-size: 1.3rem;
    font-family: 'Abel', sans-serif;
    color: #000;
    margin: 20px 0;
}

.webinars-area-content-item-btn {
    width: 100%;
    display: flex;
    justify-content: end;
}

.webinars-area-content-item-btn a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ffcc00;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
}










/* papers页面 */
.papers-download-title {
    text-align: center;
    margin-bottom: 50px;
}

.papers-download-content-item {
    position: relative;
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
}

.papers-download-content-item-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.papers-download-content-item-icon {
    position: absolute;
    left: 30px;
    top: 30px;
    z-index: 1;
}

.papers-download-content-item-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.papers-download-content-item-img {
    width: 100%;
    overflow: hidden;
}

.papers-download-content-item-img img {
    width: 100%;
}

.papers-download-content-item-text {
    padding: 0 30px;
    margin-bottom: 100px;
    color: #fff;
}

.papers-download-content-item-btn {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.papers-download-content-item-btn-icon {
    border: 1px solid #fff;
    border-radius: 25px;
    padding: 1px;
}

.papers-download-content-item-btn-icon a {
    display: flex;
    align-items: center;
    justify-content: end;
    gap:20px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    width: 160px;
}

.papers-download-content-item-btn-icon-bg {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.papers-download-content-item-btn-icon:hover {
    background-color: #5d5e5e;
    transition: all 0.3s ease-in-out;
    color: #fff;
}

.papers-download-content-item-btn-icon:hover a {
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.papers-download-content-item-btn-icon:hover .papers-download-content-item-btn-icon-bg {
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

.papers-download-content-item-btn-icon:hover i {
    color: #000;
    transition: all 0.3s ease-in-out;
}

.papers-download-content-item-btn-detail {
    text-align: right;
    color: #fff;
}
/* papers页面 */









/* Company页面 */
.company-ceo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap:50px;
}

.company-ceo-img {
    width: 30%;
    height: 330px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-ceo-img img {
    width: 100%;
}

.company-ceo-text {
    width: 60%;
}

.company-ceo-text p {
    font-size: 1.3rem;
    font-family: 'Abel', sans-serif;
    color: #000;
    margin-bottom: 20px;
}




.company-moving-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.company-moving-img {
    width: 48%;
    height: 520px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-moving-img img {
    width: 100%;
}

.company-moving-text {
    width: 48%;
}

.company-moving-text h2 {
    font-size: 2.5rem;
    font-family: 'Bahn', sans-serif;
    color: #fff;
    margin-bottom: 20px;
}

.company-moving-text p {
    font-size: 1.3rem;
    font-family: 'Abel', sans-serif;
    color: #fff;
}

.company-read-box {
    margin-bottom: 50px;
}

.company-read-content-item-img {
    border-radius: 15px;
    overflow: hidden;
    display: flex;
}

.company-read-content-item-img img {
    width: 100%;
}

.company-read-content-item-text {
    margin-top: 30px;
}

.company-read-content-item-text p {
    font-size: 1.3rem;
    font-family: 'Abel', sans-serif;
    color: #000;
    margin: 15px 0;
}

.company-read-content-item-btn {
    margin-top: 30px;
}

.company-read-content-item-btn a {
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid #000;
    color: #000;
    text-decoration: none;
}

.company-read-content-item-btn a:hover {
    background-color: #5d5e5e;
    color: #fff;
    transition: all 0.3s ease-in-out;
}
/* Company页面 */











/* Careers页面 */
.careers-banner-bg img {
    width: 100%;
}

.careers-box {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.careers-select-search {
    margin: 30px 0;
}

.careers-select-search form {
    display: flex;
    align-items: center;
    gap: 20px;
}

.careers-select-search-icon {
    position: relative;
    width: 40%;
}

.careers-select-search-icon input {
    border: none;
    padding: 15px 25px;
    background-color: #f3f3f3;
    width: 100%;
}

.careers-select-search-icon i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}

.careers-select-search button {
    border: none;
    padding: 15px 35px;
    border-radius: 25px;
    background-color: #e6b800;
    color: #000;
    font-family: 'Bahn', sans-serif;
}

.career-content-left {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.career-content-left-title {
    padding: 30px;
    border-bottom: 1px solid #f3f3f3;
}

.career-content-left-item {
    padding: 30px;
    border-bottom: 1px solid #d3d3d3;
}

.career-content-left-item-title a {
    font-size: 1.2rem;
    color: #000;
}

.career-content-left-box {
    margin-top: 20px;
}

.career-content-left-box-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 5px 0;
}

.career-content-left-box-item i {
    font-size: 1.3rem;
}

.career-content-left-box-item span {
    color: #d1d1d1;
}

.career-content-right {
    padding: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.career-content-right-img {
    margin: 20px 0;
}

.career-content-right p {
    font-size: 1.3rem;
    font-family: 'Abel', sans-serif;
    color: #000;
}

.career-content-right-btn {
    margin-top: 30px;
}

.career-content-right-btn a {
    color: #000;
    text-decoration: none;
    font-family: 'Bahn', sans-serif;
    font-weight: bold;
}
/* Careers页面 */








.responsibility-title {
    text-align: center;
}

.responsibility-title h1 {
    font-size: 2.5rem;
    font-family: 'Bahn', sans-serif;
    color: #fff;
}

.responsibility-title p {
    font-size: 1.3rem;
    font-family: 'Abel', sans-serif;
    color: #fff;
}

.responsibility-content {
    margin-top: 50px;
}

.responsibility-content-item {
    width: 100%;
    padding: 50px 30px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #5a6a63;
    height: 300px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.responsibility-content-item-img {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.responsibility-content-item-img img {
    width: 60px;
}

.responsibility-content-item-text {
    text-align: center;
}

.responsibility-content-item-text h4 {
    color: #fff;
}

.responsibility-video-logo {
    margin-top: 30px;
    display: flex;
    gap:50px;
    align-items: center;
    justify-content: center;
}







.responsibility-leading-title {
    text-align: center;
    margin-bottom: 50px;
}

.responsibility-leading-title h1 {
    font-size: 2.5rem;
    font-family: 'Bahn', sans-serif;
    color: #000;
}

.responsibility-leading-title p {
    font-size: 1.3rem;
    font-family: 'Abel', sans-serif;
    color: #000;
}

.responsibility-leading-content-item {
    padding: 50px 30px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.responsibility-leading-content-item-text {
    text-align: center;
}

.responsibility-leading-content-item-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.responsibility-leading-content-item-btn a {
    padding: 1px;
    display: flex;
    justify-content: end;
    gap:3px;
    align-items: center;
    background-color: #e6b800;
    border-radius: 25px;
    width: 160px;
    text-align: center;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    width: 160px;
}

.slider-area-box-content-btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(-10px);
}

.slider-area-box-content-btn-icon i {
    font-size: 1.2rem;
    color: #000;
    font-weight: bold;
}

.responsibility-leading-content-item-btn a:hover {
    background-color: #5d5e5e;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.responsibility-leading-content-item-btn a:hover .slider-area-box-content-btn-icon {
    transform: translateX(0);
    transition: all 0.3s ease-in-out;
    background-color: #e6b800;
}









.responsibility-work-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.responsibility-work-box-left {
    width: 45%;
}

.responsibility-work-box-left p {
    font-size: 1.3rem;
    font-family: 'Abel', sans-serif;
    color: #000;
}

.responsibility-work-box-left h1 {
    font-size: 2.5rem;
    font-family: 'Bahn', sans-serif;
    color: #000;
    margin-bottom: 20px;
}

.responsibility-work-box-left-line {
    border-bottom: 5px solid #e6b800;
    width: 100px;
    margin-top: 20px;
}

.responsibility-work-box-left-btn {
    margin-top: 50px;
}

.responsibility-work-box-left-btn a {
    padding: 10px 20px;
    background-color: #e6b800;
    border-radius: 25px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

.responsibility-work-box-left-btn a:hover {
    background-color: #5d5e5e;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.responsibility-work-box-right {
    width: 40%;
    height: 800px;
    border-radius: 50%;
    overflow: hidden;
}

.responsibility-work-box-right img {
    width: 100%;
}

.responsibility-report-title {
    margin-bottom: 30px;
}

.responsibility-report-title h1 {
    font-size: 2.5rem;
    font-family: 'Bahn', sans-serif;
    color: #000;
}

.responsibility-report-search form {
    width: 50%;
    position: relative;
}

.responsibility-report-search form input {
    width: 100%;
    padding: 20px;
    border-radius: 25px;
    background-color: #fff;
    font-family: 'Abel', sans-serif;
    color: #000;
    border: none;
}

.responsibility-report-search form button {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
    border: none;
    background: none;
}










.partner-customer-box {
    border-radius: 25px;
    padding: 80px 200px;
}

.partner-customer-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2f3e57;
    margin-bottom: 30px;
}

.partner-customer-icon i {
    font-size: 1.3rem;
    color: #fff;
    font-weight: bold;
}

.partner-customer-text h4 {
    font-size: 2rem;
    font-style: italic;
    font-family: 'Abel', sans-serif;
    color: #000;
}

.partner-customer-text p {
    font-size: 1.3rem;
    font-family: 'Abel', sans-serif;
    color: #000;
    margin: 20px 0;
}

.partner-customer-name {
    display: flex;
    gap:10px;
    align-items: center;
}

.partner-customer-name-line {
    border-bottom: 2px solid #e6b800;
    width: 20px;
}

.partner-customer-btn {
    margin-top: 30px;
}

.partner-customer-btn a {
    padding: 1px;
    border: 1px solid #000;
    border-radius: 25px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 10px;
    width: 160px;
}

.partner-customer-btn a:hover {
    background-color: #5d5e5e;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.partner-customer-btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(-10px);
}

.partner-customer-btn a:hover .partner-customer-btn-icon {
    transform: translateX(0);
    transition: all 0.3s ease-in-out;
    background-color: #e6b800;
}






.partner-yellow-title {
    text-align: center;
    width: 60%;
    margin: 0 auto;
}

.partner-yellow-title h1 {
    font-size: 2.5rem;
    font-family: 'Bahn', sans-serif;
    color: #000;
}

.partner-yellow-title p {
    font-size: 1.3rem;
    font-family: 'Abel', sans-serif;
    color: #000;
}

.partner-yellow-video {
    border-radius: 20px;
    overflow: hidden;
    margin-top: 30px;
}

.partner-yellow-video video {
    width: 100%;
}

.partner-yellow-btn {
    width: 100%;
    display: flex;
    justify-content: center;
}





.partner-feature-title {
    text-align: center;
    margin-bottom: 30px;
}

.partner-feature-title h1 {
    font-size: 2.5rem;
    font-family: 'Bahn', sans-serif;
    color: #000;
}

.partner-feature-content-item {
    padding: 30px;
    border-radius: 20px;
    background-color: #ffffff48;
    border: 3px solid #fff;
    text-align: center;
}