/* About Page Styles */

/* ========== Page Banner ========== */
.page_banner {
    position: relative;
    overflow: hidden;
}

.page_banner .img img {
    width: 100%;
    display: block;
}

.page_banner .text {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}

.page_banner .h2 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.page_nav {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    color: #fff;
    font-size: 14px;
}

.page_nav a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.page_nav a:hover {
    opacity: 0.8;
}

.page_nav .fa-angle-right {
    margin: 0 8px;
}

.page_nav .ico {
    margin-right: 10px;
}

/* ========== About Intro Section ========== */
.page-about-intro {
    padding: 80px 0;
}

.page-about-intro .container {
    padding: 0;
}

/* Wrapper - container for background image */
.page-about-intro .intro-wrapper {
    background-repeat: no-repeat;
    background-position: left top;
    background-size: auto;
}

/* Upper: flex row - left title, right text */
.page-about-intro .intro-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0;
}

.page-about-intro .intro-left {
    flex: 0 0 35%;
    max-width: 35%;
    padding-right: 35px;
}

.page-about-intro .intro-left .tit {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
}

.page-about-intro .intro-right {
    flex: 0 0 65%;
    max-width: 65%;
}

.page-about-intro .intro-right p {
    margin-bottom: 16px;
    line-height: 1.6;
    color: #555;
    font-size: 1.3rem;
    text-align: justify;
}

/* Button - matching homepage style, left-aligned with text */
.page-about-intro .btn-about-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Google Sans Flex', sans-serif;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    margin-top: 50px;
    z-index: 1;
}

@media (min-width: 769px) {
    .page-about-intro .btn-about-more {
        padding: 0.6rem 2.5rem;
        font-size: 1.3rem;
        font-weight: 500;
    }
}

.page-about-intro .btn-about-more::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    background: #c33c3b;
    border-radius: inherit;
}

.page-about-intro .btn-about-more::after {
    content: '';
    position: absolute;
    inset: -1px;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left center;
    background: #000;
    border-radius: inherit;
    transition: transform 0.7s ease;
}

.page-about-intro .btn-about-more:hover::after {
    transform: scaleX(1);
}

/* Lower: Stats card */
.page-about-intro .intro-stats {
    margin-top: 80px;
    padding: 30px 45px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    gap: 20px;
	display:none;
}

.page-about-intro .stat-item {
    flex: 1;
    text-align: center;
}

.page-about-intro .stat-number {
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.page-about-intro .stat-number .counter {
    font-size: 48px;
    font-weight: 700;
    font-family: 'Google Sans Flex', sans-serif;
    color: #c33c3b;
}

.page-about-intro .stat-number .fuhao {
    font-size: 48px;
    font-weight: 700;
    font-family: 'Google Sans Flex', sans-serif;
    color: #c33c3b;
}

.page-about-intro .stat-number .union {
    font-size: 20px;
    font-weight: 700;
    margin-left: 2px;
    color: #c33c3b;
}

.page-about-intro .stat-item .desc {
    font-size: 16px;
    color: #555;
    margin-top: 8px;
}

/* ========== Video Section ========== */
.page-about-intro .about-video {
    margin-top: 5rem;
    width: 100%;
    height: 680px;
    position: relative;
}

.page-about-intro .video-bg {
    position: relative;
    width: 100%;
    height: 100%;
}

.page-about-intro .video-shadow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80%;
    height: 620px;
    z-index: 0;
    overflow: hidden;
}

.page-about-intro .video-shadow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-about-intro .video-shadow::after {
    content: '';
    position: absolute;
    inset: 0;
}

.page-about-intro .video-main {
    position: absolute;
    right: 0;
    top: 0;
    width: 80%;
    height: 620px;
    z-index: 1;
    overflow: hidden;
}

.page-about-intro .video-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-about-intro .video-main .video.vp-a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.page-about-intro .video-main .video.vp-a::before {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fff;
    background-image: none;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.page-about-intro .video-main .video.vp-a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 18px solid #000;
    transform: translate(-34%, -50%);
    z-index: 2;
    pointer-events: none;
    transition: border-left-color 0.3s ease, transform 0.3s ease;
}

.page-about-intro .video-main .video.vp-a:hover::before {
    background: #c33c3b;
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 0 28px rgba(255, 255, 255, 0.72), 0 0 56px rgba(255, 255, 255, 0.42);
    filter: none;
}

.page-about-intro .video-main .video.vp-a:hover::after {
    border-left-color: #fff;
    transform: translate(-34%, -50%) scale(1.06);
}

/* ========== Go Into Factory Section ========== */
.section-into {
    padding: 80px 0;
    background: #f8f8f8;
    margin-top:10px;
}

.section-into .title {
    text-align: center;
    margin-bottom: 40px;
}

.section-into .tit {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-into .p p {
    line-height: 1.8;
    color: #555;
    font-size: 15px;
}

.section-into .large-img {
    gap: 20px;
    margin-bottom: 20px;
}

.section-into .large-img .img {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
    overflow: hidden;
}

.section-into .large-img .img img {
    width: 100%;
    display: block;
    transition: transform 0.4s;
}

.section-into .large-img .img:hover img {
    transform: scale(1.03);
}

.section-into .small-img {
    position: relative;
    
}

.section-into .small-img .swiper-slide .img {
    overflow: hidden;
}

.section-into .small-img .swiper-slide .img img {
    width: 100%;
    display: block;
    transition: transform 0.3s;
}

.section-into .small-img .swiper-slide .img:hover img {
    transform: scale(1.05);
}

.section-into .swiper-button-next,
.section-into .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: background 0.3s;
}

.section-into .swiper-button-next {
    right: 2.5rem;
}

.section-into .swiper-button-prev {
    left: 2.5rem;
}

.section-into .swiper-pagination {
    display: none;
}

.section-into .swiper-button-next:hover,
.section-into .swiper-button-prev:hover {
    background: #333;
}

.section-into .swiper-button-next::after,
.section-into .swiper-button-prev::after {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.section-into .swiper-button-next:hover::after,
.section-into .swiper-button-prev:hover::after {
    color: #fff;
}

/* ========== Manufacturer / Contact CTA ========== */
.section-manufacturer {
    padding: 80px 0;
    background: #333;
    color: #fff;
}

.section-manufacturer .title1 {
    flex: 0 0 70%;
    max-width: 70%;
}

.section-manufacturer .tit {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-manufacturer .p p {
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    font-size: 15px;
}

.section-manufacturer .more {
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
}

.section-manufacturer .more:hover {
    background: #eee;
    transform: translateY(-2px);
}

/* ========== Responsive: Tablet (max-width: 1024px) ========== */
@media (max-width: 1024px) {
    .page-about-intro .intro-left .tit {
        font-size: 32px;
    }

    .page-about-intro .intro-right p {
        font-size: 14px;
        line-height: 1.6;
    }

    .page-about-intro .intro-stats {
        padding: 25px 30px;
    }

    .page-about-intro .stat-number .counter,
    .page-about-intro .stat-number .fuhao {
        font-size: 36px;
    }

    .page-about-intro .stat-item .desc {
        font-size: 14px;
    }

    .page-about-intro .about-video {
        height: 540px;
    }

    .page-about-intro .video-shadow,
    .page-about-intro .video-main {
        height: 500px;
    }

    .section-manufacturer .title1,
    .section-manufacturer .more {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .section-manufacturer .more {
        margin-top: 20px;
    }
}

/* ========== Responsive: Mobile (max-width: 768px) ========== */
@media (max-width: 768px) {
    .page_banner .h2 {
        font-size: 32px;
    }

    .page-about-intro {
        padding: 50px 0;
    }

    .page-about-intro .intro-header {
        flex-direction: column;
    }

    .page-about-intro .intro-left {
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }

    .page-about-intro .intro-left .tit {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .page-about-intro .intro-right {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .page-about-intro .intro-right p {
        font-size: 14px;
        line-height: 1.6;
    }

    .page-about-intro .btn-about-more {
        margin-top: 25px;
    }

    .page-about-intro .intro-stats {
        margin-top: 35px;
        padding: 25px 20px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .page-about-intro .stat-item {
        flex: 0 0 calc(50% - 5px);
    }

    .page-about-intro .stat-number {
        flex-wrap: nowrap;
        white-space: nowrap;
    }

    .page-about-intro .stat-number .counter,
    .page-about-intro .stat-number .fuhao {
        font-size: 28px;
    }

    .page-about-intro .stat-number .union {
        font-size: 13px;
    }

    .page-about-intro .stat-item .desc {
        font-size: 13px;
    }

    .page-about-intro .about-video {
        height: 420px;
    }

    .page-about-intro .video-shadow,
    .page-about-intro .video-main {
        width: 90%;
        height: 380px;
    }

    .page-about-intro .video-shadow {
        left: 0;
    }

    .page-about-intro .video-main {
        right: 0;
    }

    .page-about-intro .video-main .video.vp-a::before {
        width: 56px;
        height: 56px;
    }

    .page-about-intro .video-main .video.vp-a::after {
        border-top-width: 10px;
        border-bottom-width: 10px;
        border-left-width: 15px;
    }

    .section-into .swiper-pagination {
        display: block;
    }

    .section-into .large-img .img {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .section-into,
    .section-manufacturer {
        padding: 50px 0;
    }

    .section-into .tit,
    .section-manufacturer .tit {
        font-size: 26px;
    }

    .section-manufacturer .title1 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .section-manufacturer .more {
        margin-top: 20px;
    }
}
.fancybox__container {
    --text: #fff;
    --theme: #fff;
    --fancybox-color: #fff;
}

.fancybox__container a,
.fancybox__container a:hover,
.fancybox__container .carousel__button,
.fancybox__container .fancybox__counter,
.fancybox__container .fancybox__caption,
.fancybox__container .fancybox__toolbar {
    color: #fff !important;
}
