.banner-desc-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.banner-desc-box-title {
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
}

.banner-desc-box-content {
    color: #fff;
    font-size: 18px;
}

/* About Section Styles */
.about-section,
.factory-section {
    padding: 80px 20px;
    background: #fff;
}

.about-container,
.factory-container {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0;
}

.about-row,
.factory-row {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-direction: row-reverse;
}

.about-text-column,
.factory-text-column {
    width: 50%;
}

.about-image-column,
.factory-image-column {
    width: 50%;
    position: relative;
}

.about-image-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 1;
    border-radius: 12px;
}

.about-image-column:hover::before {
    opacity: 1;
}

@media (max-width: 991px) {

    .about-text-column,
    .factory-text-column {
        width: 100%;
    }

    .about-image-column,
    .factory-image-column {
        width: 100%;
        position: relative;
    }
}

.about-title,
.factory-title {
    font-size: 36px;
    font-weight: bold;
    color: #222;
    margin-bottom: 30px;
}

.about-description,
.factory-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.about-image,
.factory-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.discover-more-btn {
    display: flex;
    background-color: #565656;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    width: 200px;
}

.discover-more-btn:hover {
    color: #fff;
}

.button-text-wrapper {
    display: inline-block;
    height: 1.2em;
    line-height: 1.2em;
    overflow: hidden;
    position: relative;
}

.button-text-original,
.button-text-hover {
    display: block;
    transition: transform 0.3s ease-in-out;
}

.button-text-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(100%);
}

.discover-more-btn:hover .button-text-original {
    transform: translateY(-100%);
}

.discover-more-btn:hover .button-text-hover {
    transform: translateY(0);
}

/* Tablet Styles */
@media (max-width: 991px) {

    .about-section,
    .factory-section {
        padding: 60px 0;
    }

    .about-row,
    .factory-row {
        flex-direction: column;
        gap: 30px;
    }

    .about-text-column,
    .factory-text-column {
        order: 1;
        text-align: center;
    }

    .about-image-column,
    .factory-image-column {
        order: 2;
    }

    .about-title,
    .factory-title {
        font-size: 30px;
    }

    .about-description,
    .factory-description {
        font-size: 15px;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {

    .about-section,
    .factory-section {
        padding: 40px 0;
    }

    .about-container,
    .factory-container {
        padding: 0 15px;
    }

    .about-title,
    .factory-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .about-description,
    .factory-description {
        font-size: 14px;
        line-height: 1.6;
        text-align: left;
    }

    .discover-more-btn {
        padding: 10px 25px;
        font-size: 14px;
        margin: auto;
    }
}

/* Pillars Section Styles */
.pillars-section {
    padding: 80px 0;
    background-color: #fff;
}

.pillars-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pillars-title {
    font-size: 42px;
    font-weight: bold;
    text-align: center;
    color: #222;
    margin-bottom: 20px;
}

.pillars-subtitle {
    font-size: 18px;
    text-align: center;
    color: #666;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.pillar-item {
    display: flex;
    gap: 50px;
    align-items: center;
}

.pillar-image-wrapper {
    flex: 0 0 45%;
    border-radius: 12px;
    overflow: hidden;
}

.pillar-image {
    width: 100%;
    height: auto;
    display: block;
}

.pillar-content {
    flex: 1;
}

.pillar-heading {
    font-size: 28px;
    font-weight: bold;
    color: #222;
    margin-bottom: 20px;
}

.pillar-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* Tablet Styles */
@media (max-width: 991px) {
    .pillars-section {
        padding: 60px 0;
    }

    .pillars-title {
        font-size: 36px;
    }

    .pillars-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .pillar-item {
        flex-direction: column;
        gap: 20px;
    }

    .pillar-image-wrapper {
        flex: 0 0 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    .pillars-section {
        padding: 40px 0;
    }

    .pillars-container {
        padding: 0 15px;
    }

    .pillars-title {
        font-size: 32px;
    }

    .pillars-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .pillar-heading {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .pillar-text {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* History Section Styles */
.history-section {
    padding: 80px 0;
    background-color: #fff;
    overflow: hidden;
}

.history-container {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 20px;
}

.history-title {
    font-size: 42px;
    font-weight: bold;
    text-align: center;
    color: #222;
    margin-bottom: 60px;
}

.history-timeline {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.timeline-years {
    width: 80px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px 0;
    min-width: 100px;
}

.year-item {
    font-size: 20px;
    color: #AEAEAE;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 20px;
}

.year-item::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #666;
    transition: all 0.3s ease;
}

.year-item.active {
    color: #000;
    /* font-weight: bold; */
}

.year-item.active::after {
    content: '';
    background-color: #000;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

@media (max-width: 767px) {
    .year-item.active::after {
        content: '';
        background-color: #000;
        position: absolute;
        left: 50%;
        bottom: -9px;
        top: auto;
        transform: translateX(-50%);
        width: 8px;
        height: 8px;
        border-radius: 50%;
    }
}

.year-item.active::before {
    background-color: #222;
    width: 12px;
    height: 12px;
}

.history-swiper {
    flex: 1;
    overflow: hidden;
}

.history-slide {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
    padding: 20px;
    width: 100%;
}

.history-image {
    width: 50%;
    overflow: hidden;
    border-radius: 12px;
}

@media (min-width: 768px) and (max-width: 1365px) {
    .history-image {
        width:50%;
    }
}

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

.history-content {
    flex: 1;
    display: flex;
    align-items: center;
}

.content-wrapper {
    width: 100%;
}

.history-content h3 {
    font-size: 32px;
    font-weight: bold;
    color: #222;
    margin-bottom: 20px;
}

.history-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* Tablet Styles */
@media (max-width: 991px) {
    .history-section {
        padding: 60px 0;
    }

    .history-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .history-timeline {
        flex-direction: column;
        gap: 30px;
    }

    .timeline-years {
        flex: none;
        flex-direction: row;
        overflow-x: auto;
        padding: 10px 0;
        gap: 20px;
        max-width: 100%;
        justify-content: center;
    }

    .history-swiper {
        flex: none;
        width: 100%;
    }

    .year-item {
        padding-left: 0;
        padding-top: 20px;
    }

    .year-item::before {
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }

    .history-slide {
        flex-direction: column;
        min-height: auto;
        gap: 30px;
        padding: 15px;
    }

    .history-image {
        flex: 0 0 auto;
        width: 100%;
        height: 300px;
    }

    .history-content {
        flex: 0 0 auto;
        width: 100%;
        text-align: center;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    .history-section {
        padding: 40px 0;
    }

    .history-container {
        padding: 0 15px;
    }

    .history-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .timeline-years {
        gap: 15px;
        width: 100%;
    }

    .year-item {
        font-size: 16px;
    }

    .history-slide {
        padding: 10px;
        gap: 20px;
    }

    .history-image {
        height: 200px;
    }

    .history-content h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .history-content p {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* Breadcrumb Navigation Styles */
.breadcrumb-nav {
    padding: 20px 0;
    background-color: #fff;
}

.breadcrumb-container {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 14px;
}

.breadcrumb-item:not(:last-child)::after {
    content: '>';
    margin-left: 10px;
    color: #999;
}

.breadcrumb-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #222;
}

.breadcrumb-item.active {
    color: #222;
    font-weight: 500;
}

.home-icon {
    display: flex;
    align-items: center;
}

.home-icon img {
    width: 16px;
    height: 16px;
}

/* Mobile Styles */
@media (max-width: 767px) {
    .breadcrumb-nav {
        padding: 15px 0;
    }

    .breadcrumb-container {
        padding: 0 15px;
    }

    .breadcrumb-item {
        font-size: 12px;
    }

    .breadcrumb-item:not(:last-child)::after {
        margin-left: 8px;
    }

    .home-icon img {
        width: 14px;
        height: 14px;
    }
}

.breadcrumb-item+.breadcrumb-item::before {
    display: none;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

/* Team Section Styles */
.team-section {
    padding: 80px 0;
    background-color: #fff;
    overflow: hidden;
}

.team-container {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.team-content {
    display: flex;
    gap: 50px;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.team-info {
    width: 40%;
}

.team-image {
    flex: 1;
    width: 100%;
    overflow: hidden;
}

.team-title {
    font-size: 42px;
    font-weight: bold;
    color: #222;
    margin-bottom: 30px;
}

.team-text-swiper {
    height: auto;
}

.team-text {
    padding: 20px 0;
}

.team-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.team-text p:last-child {
    margin-bottom: 0;
}

.team-image-swiper {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.team-image-swiper .swiper-slide {
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 比例 */
    position: relative;
}

.team-image-swiper .swiper-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-pagination {
    position: absolute;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%);
    width: auto !important;
    text-align: center;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 100px;
    padding: 8px 15px;
    font-size: 0;
    /* 消除分页器之间的间隙 */
}

.team-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    margin: 0 5px !important;
    transition: all 0.3s ease;
    vertical-align: middle;
    border-radius: 50%;
}

.team-pagination .swiper-pagination-bullet-active {
    background: #fff;
    width: 10px;
    height: 10px;
}

/* Tablet Styles */
@media (max-width: 991px) {
    .team-section {
        padding: 60px 0;
    }

    .team-content {
        flex-direction: column;
        gap: 30px;
    }

    .team-info,
    .team-image {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .team-title {
        font-size: 36px;
        text-align: center;
    }

    .team-text {
        text-align: center;
    }

    .team-image-swiper .swiper-slide {
        padding-top: 66.67%;
        /* 3:2 比例，更适合平板 */
    }

    .team-pagination {
        text-align: center;
        left: 50% !important;
        transform: translateX(-50%);
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    .team-section {
        padding: 40px 0;
    }

    .team-container {
        padding: 0 15px;
    }

    .team-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .team-text p {
        font-size: 16px;
        line-height: 1.6;
    }

    .team-image-swiper .swiper-slide {
        padding-top: 75%;
        /* 4:3 比例，更适合手机 */
    }

    .team-pagination {
        padding: 6px 12px;
        bottom: 15px !important;
    }

    .team-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 4px !important;
    }

    .team-pagination .swiper-pagination-bullet-active {
        width: 8px;
        height: 8px;
    }
}

/* Contact Section Styles */
.contact-section-box {
    padding: 80px 20px;
    background-color: #fff;
}

.contact-container {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0;
}

.contact-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.contact-image {
    flex: 0 0 calc(55% - 25px);
    border-radius: 12px;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-info {
    flex: 0 0 calc(45% - 25px);
}

.contact-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 15px;
}

.contact-title {
    font-size: 42px;
    font-weight: bold;
    color: #222;
    margin-bottom: 30px;
    line-height: 1.2;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    color: #222;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link .arrow {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.contact-link:hover {
    color: #000;
}

.contact-link:hover .arrow {
    transform: translateX(5px);
}

/* Tablet Styles */
@media (max-width: 991px) {
    .contact-section-box {
        padding: 60px 0;
    }

    .contact-content {
        flex-direction: column;
        gap: 30px;
    }

    .contact-image,
    .contact-info {
        flex: none;
        width: 100%;
        text-align: center;
    }

    .contact-title {
        font-size: 36px;
    }

    .contact-subtitle {
        font-size: 16px;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    .contact-section-box {
        padding: 40px 0;
    }

    .contact-container {
        padding: 0 15px;
    }

    .contact-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .contact-subtitle {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .contact-link {
        font-size: 16px;
    }
}

/* 全球业务部分 */
.global-section {
    padding: 80px 20px;
    background-color: #fff;
}

.global-container {
    max-width: 1680px;
    margin: 0 auto;
    padding: 0;
}

.global-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    color: #222;
    margin-bottom: 20px;
}

.global-subtitle {
    font-size: 16px;
    text-align: center;
    color: #666;
    margin-bottom: 60px;
}

/* 国家导航 */
.countries-nav {
    position: relative;
    margin-bottom: 50px;
    border: 1px solid #B8B8B8;
    border-radius: 100px;
}

.countries-swiper {
    padding: 5px;
    margin: 0 auto;
    width: calc(100% - 100px);
    overflow: hidden;
}

.countries-swiper .swiper-wrapper {
    align-items: center;
}

.country-link {
    width: 100%;
    display: inline-block;
    padding: 10px;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    min-width: 100px;
    box-sizing: border-box;
    text-align: center;
    cursor: pointer;
}

.country-link:hover {
    color: #000;
}

.country-link.active {
    color: #fff;
    background-color: #555;
    border-radius: 30px;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    color: #222;
}

.nav-arrow.prev {
    left: 10px;
}

.nav-arrow.next {
    right: 10px;
}

.nav-arrow img {
    width: 30px;
}

/* 图片网格 */
.global-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1/1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* 平板端样式 */
@media (max-width: 991px) {
    .global-section {
        padding: 60px 0;
    }

    .global-title {
        font-size: 32px;
    }

    .global-subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .countries-nav {
        margin-bottom: 40px;
    }

    .country-link {
        padding: 12px 20px;
        font-size: 15px;
    }

    .global-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

/* 移动端样式 */
@media (max-width: 767px) {
    .global-section {
        padding: 40px 0;
    }

    .global-container {
        padding: 0 15px;
    }

    .global-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .global-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .countries-nav {
        margin-bottom: 30px;
    }

    .country-link {
        padding: 10px 15px;
        font-size: 14px;
        white-space: nowrap;
    }

    .nav-arrow {
        width: 30px;
        height: 30px;
        font-size: 20px;
    }

    .global-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

.play-icon {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.play-button svg {
    fill: #ffffff;
    width: 30px;
    height: 30px;
}

.play-button:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button:hover svg {
    fill: #000;
}

.factory-image-swiper {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.factory-image-swiper .swiper-slide {
    width: 100%;
}

.factory-image-swiper .swiper-pagination {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.factory-image-swiper .swiper-pagination-bullet {
    background-color: #fff;
}

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

.factory-pagination {
    position: absolute;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%);
    width: auto !important;
    text-align: center;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 100px;
    padding: 8px 15px;
    font-size: 0;
    /* 消除分页器之间的间隙 */
}

.factory-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    margin: 0 5px !important;
    transition: all 0.3s ease;
    vertical-align: middle;
    border-radius: 50%;
}

.factory-pagination .swiper-pagination-bullet-active {
    background: #fff;
    width: 10px;
    height: 10px;
}

/* Design Process Section */
.design-process-section {
    padding: 80px 20px;
}

.design-process-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
}

.design-process-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.design-process-image-container {
    flex: 0 0 50%;
    position: relative;
}

.design-process-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.design-process-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.4s ease;
}

.design-process-steps {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.design-process-header {
    margin-bottom: 20px;
}

.design-process-subtitle {
    font-size: 18px;
    color: #777;
    font-weight: normal;
    margin-bottom: 8px;
}

.design-process-title {
    font-size: 36px;
    color: #222;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 30px;
}

.step-title {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

.step-number {
    display: inline-block;
    margin-right: 8px;
    color: #333;
    font-weight: bold;
}

.step-description {
    font-size: 16px;
    line-height: 1.6;
    color: #000;
}

/* 移动端轮播版本 */
.design-process-slider {
    display: none;
    margin-top: 30px;
    padding: 0 20px;
}

.design-process-slider .swiper-slide {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.design-process-slider .swiper-slide-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.design-process-slider .step-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.design-process-slider .step-description {
    font-size: 14px;
}

.design-process-slider .swiper-pagination {
    margin-top: 20px;
}

/* 平板端样式 */
@media (max-width: 991px) {
    .design-process-section {
        padding: 60px 0;
    }

    .design-process-content {
        flex-direction: column;
    }

    .design-process-image-container,
    .design-process-steps {
        flex: 0 0 100%;
        width: 100%;
    }

    .design-process-image-container {
        margin-bottom: 30px;
    }

    .design-process-title {
        font-size: 30px;
    }

    .step-title {
        font-size: 18px;
    }
}

/* 移动端样式 */
@media (max-width: 767px) {
    .design-process-section {
        padding: 40px 0;
    }

    .design-process-container {
        padding: 0 15px;
    }

    .design-process-content {
        display: none;
    }

    .design-process-slider {
        display: block;
    }

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

    .design-process-subtitle {
        font-size: 16px;
    }

    .design-process-title {
        font-size: 26px;
        margin-bottom: 20px;
    }
}

/* PC/Pad Layout (Hidden on Mobile) */
.service-process-content {
    display: flex;
    gap: 50px;
    /* Space between image and text */
}

.service-process-image-container {
    flex: 1 1 50%;
    /* Image takes up half the space */
    position: relative;
    /* For sticky positioning context */
}

.service-process-image {
    position: sticky;
    top: 200px;
    /* Adjust based on your header height or desired sticky position */
    width: 100%;
    height: 60vh;
    /* Example height, adjust as needed */
    max-height: 500px;
    /* Max height */
    overflow: hidden;
    background-color: #f0f0f0;
    /* Placeholder background */
}

.service-process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.4s ease-in-out;
    /* For potential fade effect */
}

.service-process-steps {
    flex: 1 1 50%;
    /* Steps take up the other half */
    padding-top: 15vh;
    /* Add padding above first step */
    padding-bottom: 15vh;
    /* Add padding below last step */
}

.step-item {
    margin-bottom: 60px;
    /* Moderate margin between items */
    padding: 20px 0;
    color: #888;
    /* Default inactive color (gray) */
    transition: color 0.3s ease, opacity 0.3s ease;
}

.step-item:last-child {
    margin-bottom: 0;
    /* Remove margin for the last item, rely on container padding */
}

.step-item.active {
    color: #000;
    /* Active color (black) */
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
    text-align: center;
}

.step-number {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: #6c757d;
    /* Lighter color for number */
    margin-bottom: 5px;
}

.step-item.active .step-number {
    color: #333;
    /* Slightly darker number when active */
}


.step-description {
    font-size: 16px;
    line-height: 1.7;
}

/* Mobile Layout (Hidden on PC/Pad) */
.service-process-slider {
    display: none;
    /* Hidden by default */
    width: 100%;
    margin-top: 40px;
    padding-bottom: 40px;
    /* Space for pagination */
}

.service-process-slider .swiper-slide {
    text-align: center;
}

.swiper-slide-image {
    width: 100%;
    max-width: 400px;
    /* Limit image size on mobile */
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto 20px auto;
    /* Center image */
    display: block;
}

.service-process-slider .step-title {
    font-size: 20px;
}

.service-process-slider .step-number {
    font-size: 16px;
}

.service-process-slider .step-description {
    font-size: 15px;
    /* Add some horizontal padding */
}

.service-process-slider .swiper-pagination {
    left: 0px !important;
    bottom: 0px !important;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.service-process-slider .swiper-pagination-bullet {
    background-color: #aaa;
    opacity: 0.8;
}

.service-process-slider .swiper-pagination-bullet-active {
    background-color: #ff6c00;
    /* Active bullet color */
    opacity: 1;
}

/* --- Tablet Adjustments --- */
@media (min-width: 768px) and (max-width: 1199px) {
    .service-process-content {
        gap: 30px;
    }

    .service-process-image {
        top: 80px;
        /* Adjust sticky top for tablet */
        height: 50vh;
    }

    .step-item {
        margin-bottom: 50px;
        /* Adjust margin for tablet */
    }

    .step-title {
        font-size: 22px;
    }

    .step-number {
        font-size: 17px;
    }

    .step-description {
        font-size: 15px;
    }

    .service-process-steps {
        padding-top: 25vh;
        /* Adjust padding for tablet */
        padding-bottom: 25vh;
    }
}

/* --- Mobile Adjustments --- */
@media (max-width: 767px) {
    .service-process-section {
        padding: 50px 0;
    }

    .service-process-title {
        font-size: 26px;
    }

    .service-process-intro {
        font-size: 15px;
        margin-bottom: 40px;
        padding: 0 10px;
    }

    /* Hide PC/Pad layout */
    .service-process-content {
        display: none;
    }

    /* Show Mobile Swiper layout */
    .service-process-slider {
        display: block;
        position: relative;
        overflow: hidden;
        padding: 0 15px;
    }
}

/* --- End: Custom Service Process Section --- */

.learn-more-text-wrapper {
    position: relative;
    display: inline-block;
    height: 1.2em;
    /* 根据字体大小调整，例如 15px * 1.2 = 18px */
    line-height: 1.2em;
    /* 保持与高度一致 */
    overflow: hidden;
    vertical-align: middle;
    /* 尝试对齐 */
    margin-right: 5px;
    /* 在文本和箭头之间添加一些间距 */
}

.slide-text-original,
.slide-text-hover {
    display: block;
    /* 使 transform 生效 */
    transition: transform 0.3s ease-in-out;
}

.slide-text-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(100%);
    /* 初始状态：在下方隐藏 */
}

.contact-link:hover .slide-text-original {
    transform: translateY(-100%);
    /* 原始文本向上滑出 */
}

.contact-link:hover .slide-text-hover {
    transform: translateY(0%);
    /* 悬停文本从下方滑入 */
}

.contact-link svg {
    /* margin-left: 5px; */
    /* 间距已改到 .learn-more-text-wrapper 的 margin-right */
    transition: transform 0.3s ease-in-out;
    /* 控制恢复和滑动的动画时间 */
    transform: translateX(0);
    /* 明确初始位置 */
}

.contact-link:hover svg {
    transform: translateX(8px);
    /* 鼠标悬停时向右滑动8px */
    /* 移除 animation 属性 */
}

.site-footer {
    background: #fff !important;
}

.video-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-box {
    width: 960px;
    height: 540px;
    position: relative;
    background: #ffffff;
}

.dialog-close {
    position: absolute;
    top: -10px;
    right: -10px;
    cursor: pointer;
    width: 27px;
}

.play-button:focus-visible {
    outline: none;
}

@media (max-width: 767px) {
    .video-box{
        width: 90%;
        height:300px;
    }
}