/* 品牌介绍区域 */
.brand-section {
    background-color: #f9f9f9;
    padding: 80px 0;
    width: 100%;
}

.brand-container {
    max-width: 1420px;
    height: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.brand-content {
    display: flex;
    gap: 60px;
    height: 100%;
    align-items: center;
}

.brand-left {
    flex: 1;
    padding-right: 20px;
}

.brand-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 50px;
    line-height: 1.4;
}

.brand-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.stat-label {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.brand-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    margin-bottom: 30px;
    overflow: hidden;
    /*border-radius: 8px;*/
    background: #000;
}
.video-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.play-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.video-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 40px;
    font-size: 16px;
    border: 1px solid #333;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
    border-radius: 8px;
}

.btn-primary {
    background: #fff;
    color: #333;
}

.btn-primary:hover {
    background: #d71f24;
    color: #fff;
    border-color: #d71f24;
}

.btn-secondary {
    background: #fff;
    color: #333;
}

.btn-secondary:hover {
    background: #333;
    color: #fff;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .brand-container {
        height: auto;
        padding: 40px 20px;
    }

    .brand-content {
        flex-direction: column;
        gap: 40px;
    }

    .brand-left {
        padding-right: 0;
    }

    .brand-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .brand-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 32px;
    }

    .video-wrapper {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .brand-section {
        padding: 40px 0;
    }

    .brand-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 13px;
    }

    .video-wrapper {
        height: 250px;
    }

    .video-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        min-width: auto;
    }
}
/**/

/* 产品类别区域 */
.products-section {
    background-color: #ffffff;
    padding: 80px 0;
    width: 100%;
}

.products-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.products-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.products-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% + 40px);
    height: 2px;
    background-color: #e0e0e0;
}

.products-divider {
    display: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    row-gap: 40px;
}

.product-category-item {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-category-item:hover {
    transform: translateY(-5px);
}

.category-image-wrapper {
    width: 100%;
    height: 232px;
    overflow: hidden;
    /*border: 1px solid #f0f0f0;*/
    /*border-radius: 8px;*/
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}


.category-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-category-item:hover .category-image {
    transform: scale(1.05);
}

.category-info {
    text-align: center;
}

.category-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.category-more {
    font-size: 14px;
    color: #999;
    transition: color 0.3s ease;
}

.product-category-item:hover .category-more {
    color: #d71f24;
}

/* 响应式设计 */
@media (max-width: 1400px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 1000px) {
    .products-section {
        padding: 60px 0;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .products-title {
        font-size: 28px;
    }

    .category-image-wrapper {
        height: 240px;
    }

    .category-name {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 40px 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .products-title {
        font-size: 24px;
    }

    .category-image-wrapper {
        height: 300px;
    }

    .category-name {
        font-size: 18px;
    }
}
/**/

/* 我们是谁区域 */
.about-us-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5;
}

.about-us-background {
    position: relative;
    width: 100%;
    padding-bottom: 68.75%; /* 1328/1920 = 0.6917，保持 16:9.3 的宽高比 */
    height: 0;
    overflow: hidden;
}

.about-us-background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-us-container {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1600px;
    height: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
}

.about-us-content {
    /*color: #fff;*/
    color: #333;
    padding: 80px;
}

.about-us-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 1.3;
    color: #333;
}

.about-us-description {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.5;
    opacity: 0.9;
    color: #333;
}

.about-us-btn {
    display: inline-block;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 300;
    /*color: #fff;*/
    color: #333;
    background: transparent;
    border: 1px solid #333;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 8px;
}

.about-us-btn:hover {
    background: #fff;
    color: #333;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .about-us-background {
        padding-bottom: 68.75%;
    }

    .about-us-container {
        padding: 60px 20px;
    }

    .about-us-content {
        padding: 40px;
    }

    .about-us-title {
        font-size: 36px;
    }

    .about-us-description {
        font-size: 22px;
    }

    .about-us-btn {
        padding: 18px 50px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .about-us-background {
        padding-bottom: 75%; /* 小屏幕调整比例 */
    }

    .about-us-container {
        padding: 40px 15px;
    }

    .about-us-content {
        padding: 20px;
    }

    .about-us-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .about-us-description {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .about-us-btn {
        padding: 15px 40px;
        font-size: 16px;
    }
}

/**/

/* 我们做什么区域 */
.what-we-do-section {
    background-color: #231f20;
    padding: 0;
    width: 100%;
    height: 245px;
}

.what-we-do-container {
    max-width: 1420px;
    height: 245px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
}

.what-we-do-left {
    width: 200px;
    flex-shrink: 0;
}

.what-we-do-title {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.what-we-do-right {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-left: 60px;
}

.what-we-do-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

}

.what-we-do-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    fill: #fff;
}

.what-we-do-item-name {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    line-height: 1.4;
}
.what-we-do-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    object-fit: contain;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .what-we-do-section {
        height: auto;
        padding: 60px 0;
    }

    .what-we-do-container {
        height: auto;
        flex-direction: column;
        text-align: center;
    }

    .what-we-do-left {
        width: 100%;
        margin-bottom: 40px;
    }

    .what-we-do-title {
        font-size: 28px;
    }

    .what-we-do-right {
        width: 100%;
        padding-left: 0;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .what-we-do-section {
        padding: 40px 0;
    }

    .what-we-do-right {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .what-we-do-title {
        font-size: 24px;
    }

    .what-we-do-icon {
        width: 40px;
        height: 40px;
    }

    .what-we-do-item-name {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .what-we-do-right {
        grid-template-columns: 1fr;
    }
}

/**/
/* 化妆品制造商容器 */
.cosmetics-manufacturer-section {
    background-color: #fff;
    padding: 80px 0;
    width: 100%;
}

.cosmetics-manufacturer-container {
    max-width: 1420px;
    height: 580px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.manufacturer-top,
.manufacturer-bottom {
    width: 100%;
    height: 100px;
    background: #fff;
    border: 2px solid #d9d9d9;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.manufacturer-top-text,
.manufacturer-bottom-text {
    font-size: 20px;
    /*加粗*/
    font-weight: 600;
    color: #666;
    line-height: 1.5;
    padding: 0 20px;
}

.manufacturer-middle {
    flex: 1;
    background: #fff;
    border: 2px solid #d9d9d9;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 40px 60px;
}

.manufacturer-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 30px;
}

.manufacturer-item:not(:last-child) {
    border-right: 2px solid #d9d9d9;
}

.manufacturer-item-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.manufacturer-item-text {
    font-size: 18px;
    color: #333;
    line-height: 1.4;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .cosmetics-manufacturer-container {
        height: auto;
        padding: 40px 20px;
    }

    .manufacturer-middle {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px;
    }

    .manufacturer-item:not(:last-child) {
        border-right: none;
        border-bottom: 2px solid #d9d9d9;
        padding-bottom: 40px;
    }

    .manufacturer-item:last-child {
        padding-top: 40px;
    }
}

@media (max-width: 768px) {
    .cosmetics-manufacturer-section {
        padding: 40px 0;
    }

    .manufacturer-top,
    .manufacturer-bottom {
        height: auto;
        min-height: 80px;
        padding: 20px;
        border-radius: 30px;
    }

    .manufacturer-top-text,
    .manufacturer-bottom-text {
        font-size: 16px;
    }

    .manufacturer-middle {
        padding: 30px 20px;
    }

    .manufacturer-item {
        padding: 0 20px;
    }

    .manufacturer-item-icon {
        width: 60px;
        height: 60px;
    }

    .manufacturer-item-text {
        font-size: 16px;
    }
}

/**/


/* 共同开启品牌区域 */
.cooperate-section {
    background-color: #f9f9f9;
    padding: 100px 0;
    width: 100%;
}

.cooperate-container {
    max-width: 1600px;
    height: 645px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cooperate-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 100px;
    text-align: center;
    position: relative;
    display: inline-block;
}

.cooperate-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% + 40px);
    height: 2px;
    background-color: #e0e0e0;
}

.cooperate-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex: 1;
    background: #fff;
    border-radius: 20px;
}

.cooperate-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.cooperate-step-icon {
    width: 150px;
    height: 150px;
    border: 2px solid #d9d9d9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: #fff;
    transition: all 0.3s ease;
}

.cooperate-step:hover .cooperate-step-icon {
    border-color: #d71f24;
    box-shadow: 0 4px 12px rgba(215, 31, 36, 0.2);
}

.cooperate-step-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.cooperate-step-text {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    /*max-width: 140px;*/
}

.cooperate-arrow {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.cooperate-arrow img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    opacity: 0.5;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .cooperate-container {
        height: auto;
        padding: 40px 20px;
    }

    .cooperate-title {
        font-size: 28px;
        margin-bottom: 50px;
    }

    .cooperate-steps {
        flex-wrap: wrap;
        gap: 40px;
        justify-content: center;
    }

    .cooperate-step {
        flex: 0 0 calc(33.333% - 20px);
    }

    .cooperate-arrow {
        display: none;
    }

    .cooperate-step-icon {
        width: 100px;
        height: 100px;
    }

    .cooperate-step-icon img {
        width: 50px;
        height: 50px;
    }

    .cooperate-step-text {
        font-size: 15px;
        /*max-width: 120px;*/
    }
}

@media (max-width: 768px) {
    .cooperate-section {
        padding: 40px 0;
    }

    .cooperate-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .cooperate-steps {
        gap: 30px;
    }

    .cooperate-step {
        flex: 0 0 calc(50% - 15px);
    }

    .cooperate-step-icon {
        width: 90px;
        height: 90px;
        margin-bottom: 20px;
    }

    .cooperate-step-icon img {
        width: 45px;
        height: 45px;
    }

    .cooperate-step-text {
        font-size: 14px;
        /*max-width: 110px;*/
    }
}

@media (max-width: 480px) {
    .cooperate-step {
        flex: 0 0 100%;
    }

    .cooperate-steps {
        gap: 40px;
    }
}


/**/

/* 品质保证区域 */
.quality-assurance-section {
    background-color: #fff;
    padding: 100px 0;
    width: 100%;
}

.quality-assurance-container {
    max-width: 1420px;
    height: 1255px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quality-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    display: inline-block;
}

.quality-title::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% + 40px);
    height: 2px;
    background-color: #e0e0e0;
}

.quality-map-wrapper {
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    /*margin-bottom: 60px;*/
}

.quality-map {
    width: 100%;
    /*max-width: 1200px;*/
    height: auto;
    object-fit: contain;
}

.quality-description {
    width: 100%;
    max-width: 680px;
    text-align: center;
    margin-bottom: 60px;

}

.quality-description-text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    /*text-align: justify;*/
    text-align: center;
}

.quality-certifications {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.quality-certification-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quality-certification-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
}

.quality-certification-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .quality-assurance-container {
        height: auto;
        padding: 40px 20px;
    }

    .quality-title {
        font-size: 28px;
        margin-bottom: 50px;
    }

    .quality-map {
        max-width: 900px;
    }

    .quality-description-text {
        font-size: 15px;
    }

    .quality-certifications {
        gap: 40px;
    }

    .quality-certification-logo {
        width: 100px;
        height: 100px;
    }

    .quality-certification-name {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .quality-assurance-section {
        padding: 40px 0;
    }

    .quality-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .quality-map {
        max-width: 600px;
    }

    .quality-description {
        margin-bottom: 40px;
    }

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

    .quality-certifications {
        gap: 30px;
    }

    .quality-certification-logo {
        width: 80px;
        height: 80px;
    }

    .quality-certification-name {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .quality-certifications {
        flex-direction: column;
        gap: 40px;
    }
}

/**/


/* 公司新闻区域 */
.company-news-section {
    background-color: #f9f9f9;
    padding: 80px 0;
    width: 100%;
}

.company-news-container {
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 20px;
}

.company-news-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    display: inline-block;
}

.company-news-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% + 40px);
    height: 2px;
    background-color: #e0e0e0;
}

.company-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.news-thumbnail {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f0f0f0;
}

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

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

.news-content {
    padding: 25px;
}

.news-date {
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
    display: inline-block;
    background: #f5f5f5;
    padding: 5px 12px;
    border-radius: 4px;
}

.news-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 50px;
}

.news-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 44px;
}

.news-more {
    font-size: 14px;
    color: #d71f24;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.news-more:hover {
    color: #b8181c;
}

.news-more::after {
    content: '>';
    font-size: 16px;
    transition: transform 0.3s ease;
}

.news-card:hover .news-more::after {
    transform: translateX(5px);
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .company-news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .company-news-section {
        padding: 40px 0;
    }

    .company-news-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .company-news-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .news-thumbnail {
        height: 240px;
    }

    .news-title {
        font-size: 17px;
        min-height: 48px;
    }

    .news-description {
        font-size: 13px;
        height: 40px;
    }
}


/**/

/* 疑问容器区域 */
.inquiry-section {
    background-color: #fff;
    padding: 80px 0;
    width: 100%;
}

.inquiry-container {
    max-width: 1200px;
    /*height: 630px;*/
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.inquiry-title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    display: inline-block;
}

.inquiry-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% + 40px);
    height: 2px;
    background-color: #e0e0e0;
}

.inquiry-form-wrapper {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.inquiry-label {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 500;
}

.inquiry-textarea {
    width: 100%;
    height: 150px;
    padding: 15px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    font-size: 14px;
    resize: none;
    margin-bottom: 25px;
    font-family: inherit;
}

.inquiry-textarea:focus {
    outline: none;
    border-color: #d71f24;
}

.inquiry-form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.inquiry-input-group {
    display: flex;
    flex-direction: column;
}

.inquiry-input-wrapper {
    position: relative;
    width: 100%;
}

.inquiry-input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    opacity: 0.5;
}

.inquiry-input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.inquiry-input:focus {
    outline: none;
    border-color: #d71f24;
}


.inquiry-submit {
    width: 100%;
    padding: 15px 40px;
    background-color: #d71f24;
    color: #fff;
    /*border: none;*/
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;

}

.inquiry-submit:hover {
    background-color: #b8181c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(215, 31, 36, 0.3);
}

.inquiry-company-wide {
    grid-column: span 2;
}

.inquiry-submit-group {
    grid-column: span 1;
    justify-self: start;
    max-width: 200px;
}

.inquiry-company-row {
    grid-column: span 2;
}

.inquiry-company-btn-wrapper {
    display: flex;
    gap: 15px;
    align-items: flex-end;
}

.inquiry-company-input {
    flex: 6;
    min-width: 0;
}
.inquiry-company-btn-wrapper .inquiry-submit {
    flex: 2;
    min-width: 100px;
    white-space: nowrap;
    padding: 6px 20px;
    background-color: transparent;
    color: #d71f24;
    border: 2px solid #333;
    font-weight: 600;
}

.inquiry-company-btn-wrapper .inquiry-submit:hover {
    background-color: #d71f24;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(215, 31, 36, 0.3);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .inquiry-section {
        padding: 40px 0;
    }

    .inquiry-container {
        height: auto;
        padding: 40px 20px;
    }

    .inquiry-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .inquiry-textarea {
        height: 120px;
    }

    .inquiry-form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .inquiry-input {
        padding: 12px 15px;
    }

    .inquiry-input-icon {
        display: none;
    }

    .inquiry-company-wide {
        grid-column: span 1;
    }

    .inquiry-submit-group {
        grid-column: span 1;
        max-width: 100%;
        justify-self: stretch;
    }

    .inquiry-company-row {
        grid-column: span 1;
    }

    .inquiry-company-btn-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .inquiry-company-input {
        flex: 1;
    }

    .inquiry-company-btn-wrapper .inquiry-submit {
        flex: 1;
        width: 100%;
    }
}



/**/