/* =========================================================
   01. 全局设置
========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", sans-serif;
    color: #111;
    background: #fff;
}

section img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* =========================================================
   02. 导航栏
========================================================= */
header {
    width: 90%;
    min-height: 80px;
    margin: 30px auto;
    padding: 20px 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #fff;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.logo a {
    color: #b8860b;
    font-size: 42px;
    font-weight: 700;
    text-decoration: none;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

nav li {
    margin: 0;
}

nav a {
    position: relative;
    color: #222;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

nav a.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 30px;
    height: 3px;
    background: #000;
    transform: translateX(-50%);
}

.language {
    font-size: 18px;
    white-space: nowrap;
}

.language a {
    color: #222;
    text-decoration: none;
}

.contact a {
    display: inline-block;
    padding: 12px 28px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    background: #d5a021;
    border-radius: 30px;
}

/* ===============================
首页模块重新匹配
=============================== */


/* 全局 */

body{
    margin:0;
    font-family:"Microsoft YaHei",sans-serif;
    color:#111;
}

/* =========================================================
   03. 首页 Banner
========================================================= */
.banner {
    width: 90%;
    margin: 60px auto;
    padding: 80px 8%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.banner-left {
    width: 45%;
    max-width: 550px;
    display: flex;
    flex-direction: column;
}

.banner-left h1 {
    margin-bottom: 40px;
    font-size: 55px;
    line-height: 1.35;
    white-space: normal;
    word-break: keep-all;
}

.banner-left p {
    color: #666;
    font-size: 22px;
    line-height: 2;
}

.banner-btn {
    display: flex;
    gap: 25px;
    margin-top: 40px;
}

.banner-btn a {
    padding: 15px 45px;
    color: #d5a021;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    background: #fff;
    border: 2px solid #d5a021;
    border-radius: 40px;
    transition: 0.3s;
}

.banner-btn a:hover {
    color: #fff;
    background: #d7a329;
    border-color: #b8860b;
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.banner-right {
    width: 50%;
    text-align: center;
}

.banner-right img {
    width: 100%;
    max-width: 720px;
}

/* =========================================================
   04. 数据卡片
========================================================= */
.statistics {
    display: flex;
    gap: 20px;
    margin-top: 50px;
}

.statistics .card {
    width: 120px;
    height: 90px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: #fff;
    background: #17345c;
    border-radius: 18px;
    cursor: default;
    transition: 0.3s;
}

.statistics .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card h2 {
    margin: 0;
    font-size: 30px;
}

.card span {
    font-size: 16px;
}

/* =========================================================
   05. 关于公司
========================================================= */
.about-company {
    padding: 100px 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    background: #fff;
}

.company-logo {
    color: #9c6b20;
    font-family: serif;
    font-size: 50px;
    font-weight: 700;
}

.company-info {
    max-width: 700px;
}

.company-info h2,
.industry h2,
.solution h2,
.beauty-products h2,
.advantages h2 {
    color: #12284b;
    font-size: 38px;
    text-align: center;
}

.company-info p {
    color: #555;
    line-height: 35px;
}

.company-tags {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.company-tags > div {
    width: 120px;
    color: #222;
    font-size: 18px;
    text-align: center;
}

.company-tags img {
    display: block;
    width: 55px;
    height: 55px;
    margin: 0 auto 15px;
    object-fit: contain;
}
/* =========================================================
   06. 全球美妆产业带
========================================================= */
.industry {
    padding: 100px 8%;
    text-align: center;
}

.industry h2 {
    font-size: 40px;
}

.industry-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.industry-card {
    width: 190px;
    height: 220px;
    padding: 18px 15px 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    background: #fff;
    border: 2px solid #c6922e;
    border-radius: 25px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.industry-card img {
    display: block;
    width: 95px;
    height: 95px;
    object-fit: contain;
}

.industry-card p {
    margin-top: 12px;
    color: #222;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
}

/* =========================================================
   07. 供应链解决方案
========================================================= */
.solution {
    padding: 100px 15%;
}

.solution h2 {
    font-size: 40px;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.solution-card {
    
    padding: 40px;
    text-align: center;
    border: 1px solid #d5a021;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display:flex;
    flex-direction:column;
    height:100%;
    overflow:hidden;
    text-align:center;
}

.solution-image{
    width:100%;
    height:170px;
    margin-bottom:22px;
    overflow:hidden;
    border-radius:12px;
}

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

.solution-card h3{
    min-height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 0 14px;
    text-align:center;
}

.solution-card p{
    margin:0;
    line-height:1.8;
    text-align:center;
}

/* =========================================================
   08. 产品展示
========================================================= */
.beauty-products {
    padding: 100px 8%;
    text-align: center;
}

.product-preview {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.product-preview div {
    width: 300px;
    height: 300px;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.explore-btn {
    display: inline-block;
    margin-top: 50px;
    padding: 18px 65px;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    background: #d7a329;
    border-radius: 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: 0.35s;
}

.explore-btn:hover {
    background: #d5a021;
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

/* =========================================================
   09. 核心优势
========================================================= */
.advantages {
    padding: 100px 10%;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.advantage-card {
    padding: 40px;
    text-align: center;
    border: 1px solid #d5a021;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}
.advantage-image{

    width:100%;

    height:150px;

    margin-bottom:20px;

    overflow:hidden;

    border-radius:15px;

}


.advantage-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}

/* =========================================================
   10. 平板响应式
========================================================= */
@media (max-width: 1100px) {
    header {
        width: 95%;
        padding: 15px 25px;
        gap: 18px;
    }

    .logo a {
        font-size: 32px;
    }

    nav ul {
        gap: 18px;
    }

    nav a,
    .language {
        font-size: 16px;
    }

    .contact a {
        padding: 10px 18px;
    }

    .banner {
        width: 90%;
        padding: 60px 5%;
    }

    .banner-left h1 {
        font-size: 45px;
    }

    .banner-left p {
        font-size: 18px;
    }

    .industry-list,
    .product-preview,
    .company-tags {
        flex-wrap: wrap;
    }
}

/* =========================================================
   11. 手机响应式
========================================================= */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        height: auto;
        gap: 25px;
        padding: 25px;
        border-radius: 28px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .language,
    .contact {
        margin-top: 10px;
    }

    .banner {
        width: 100%;
        margin: 30px auto;
        padding: 40px 6%;
        flex-direction: column;
        text-align: center;
    }

    .banner-left,
    .banner-right {
        width: 100%;
    }

    .banner-left {
        align-items: center;
    }

    .banner-left h1 {
        font-size: 36px;
        line-height: 1.3;
    }

    .banner-left p {
        font-size: 18px;
    }

    .banner-btn,
    .statistics {
        justify-content: center;
        flex-wrap: wrap;
    }

    .banner-right {
        margin-top: 40px;
    }

    .about-company {
        padding: 70px 8%;
        flex-direction: column;
        gap: 45px;
        text-align: center;
    }

    .company-tags {
        gap: 25px;
    }

    .industry,
    .solution,
    .beauty-products,
    .advantages {
        padding: 70px 8%;
    }

    .industry-list,
    .product-preview {
        flex-wrap: wrap;
    }

    .solution-grid,
    .advantage-grid {
        grid-template-columns: 1fr;
    }

    .product-preview div {
        width: min(300px, 100%);
    }
}
/* 强制修正首页解决方案和核心优势图标 */

.solution-card,
.advantage-card{
    min-height:260px !important;
    padding:28px 24px !important;

    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:flex-start !important;
}

.solution-image,
.advantage-image{
    width:90px !important;
    height:90px !important;

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    margin:0 auto 18px !important;

    overflow:visible !important;
    border-radius:0 !important;
}

.solution-image img,
.advantage-image img{
    width:70px !important;
    height:70px !important;
    max-width:70px !important;
    max-height:70px !important;

    display:block !important;

    object-fit:contain !important;
    object-position:center !important;

    margin:0 auto !important;
}