:root {
    --yubang-gold: #F2C94C;
    --yubang-dark: #222222;
    --yubang-light: #F9F9F9;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--yubang-dark);
}
.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* 补充移动端内边距，避免内容贴边 */
}

.hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
}
.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.hero-tag {
    background-color: var(--yubang-gold);
    color: white;
    padding: 0.5rem 1.5rem;
    display: inline-block;
    font-weight: 600;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
}
.section-padding {
    padding: 4rem 0;
}
.section-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom:1rem;
    border-bottom:2px solid #acacac;
}

.about-one{
    margin:0 auto;
    padding-bottom:80px;
    border-bottom:2px solid #acacac;
}
.about-iso{
    margin:0 auto;
    padding-bottom:80px;
}

.stats-card {
    background: white;
    border: 1px solid #eee;
    padding: 1.5rem;
    text-align: center;
    border-radius: 8px;
}
.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--yubang-gold);
}
.process-wrapper {
    background: white;
    border: 3px solid var(--yubang-gold);
    border-radius: 50px;
    padding: 2rem;
    position: relative;
}
.process-item {
    text-align: center;
    margin-bottom: 1rem;
}
.process-item img {
    width: 100%;
    max-width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}
.process-item small {
    font-size: 0.7rem;
    font-weight: 600;
}
.philosophy-card {
    background-color: var(--yubang-dark);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}
.philosophy-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 50px;
    background-color: var(--yubang-gold);
    border-bottom-left-radius: 50px;
}
.trust-icon {
    background-color: #D4AF37; /* 更接近截图的金色 */
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}
.btn-gold {
    background-color: var(--yubang-gold);
    color: var(--yubang-dark);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    border: none; /* 移除默认边框 */
    transition: background-color 0.3s; /* 增加过渡效果 */
}

.btn-quote {
    border: none;
    font-weight: 600;
    color: #000;
    background: linear-gradient(to bottom, #f9d768, #e6a820);
    border-radius: 8px;
}


/* 修复轮播样式，确保容器高度正常 */
.swiper {
    width: 100%;
    height: auto; /* 自适应高度 */
    margin-bottom: 2rem;
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto !important; /* 强制自适应 */
}
.swiper-slide img {
    display: block;
/*    width: 100%;
    object-fit: cover;*/
    border-radius: 8px; /* 增加圆角，提升美观 */
}
.swiper-pagination-bullet-active {
    background-color: var(--yubang-gold);
}
.swiper-button-next, .swiper-button-prev {
    color: var(--yubang-gold);
    --swiper-navigation-size: 24px; /* 调整箭头大小 */
}

.company-num{
    margin-top:80px;
}
.company-num-last{
    text-align: right;
}

.btn-quote{
    margin-top: 50px;
}

/* 修复移动端轮播箭头位置 */
@media (max-width: 768px) {
    .section-padding{
        padding:2rem 0;
    }
    .hero{
        min-height: unset;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .process-wrapper {
        border-radius: 20px;
        padding: 1rem;
    }
    .swiper-slide img {
        height: 200px; /* 移动端缩小图片高度 */
    }
    /* 移动端轮播箭头靠内 */
    .swiper-button-next, .swiper-button-prev {
        transform: translateX(0);
        padding: 0 10px;
    }

    .about-one{
        margin:0;
        padding-bottom:0;
    }

    .about-iso{
        margin:0;
    }


    .company-num-last{
        text-align: left;
    }

    .company-num{
        margin: 2rem auto;
    }
    .company-num>*{
        width: auto;
    }

    .trust-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .company-num img {
        width: 80px;
    }



}
