/* Banner 开始 */
.top-banner {
    height: 366px;
    position: relative;
}

.top-banner .banner-image {
    width: 100%;
    height: 366px;
    object-fit: cover;
    object-position: 50% 50%;
    position: absolute;
    top: 0;
    z-index: -1;
}

.banner-content {
    color: #fff;
    line-height: 1;
    margin-top: 60px;
}

.banner-content h2 {
    font-size: 34px;
    text-shadow: rgba(0, 0, 0, 0.298039) 0px 5px 0px;
}

.banner-content h3 {
    font-size: 40px;
    line-height: 1.2;
    text-shadow: rgba(255, 255, 255, 0.6) 1px 1px 1px, rgba(0, 0, 0, 0.6) -1px -1px 1px;
    margin-top: 20px;
}

.banner-content p {
    font-size: 18px;
    margin-top: 20px;
    line-height: 32px;
}

.section-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 420px;
    height: 32px;
    background: #fff;
    color: #0F6EEC;
    font-size: 14px;
    letter-spacing: 1.4px;
    margin-top: 36px;
    border: 1px solid #0F6EEC;
    transition: all 0.2s ease, visibility 0s;
}

.section-btn:hover {
    background: #0F6EEC;
    color: #fff;
}

.section-btn svg {
    width: 12px;
    height: 12px;
    fill: #0F6EEC;
    margin: 1px 0 0 4px;
    transition: inherit;
}

.section-btn:hover svg {
    fill: #fff;
}

/* banner 结束 */

/* 公司介绍 开始 */
.company-intro {
    padding: 31px 0 21px;
}

.company-intro .main-title {
    font-size: 32px;
    text-align: center;
    color: #0b3058;
}

.company-intro .intro-text {
    min-height: 187px;
    margin-top: 18px;
}

.company-intro .intro-text p,
.company-intro .bottom-text p {
    color: #486482;
    text-align: justify;
    line-height: 1.6em;
}

.company-intro .content-row {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-top: 15px;
}

.company-intro .subtitle {
    font-size: 26px;
    font-weight: bold;
    color: #0b3058;
}

.company-intro .service-list {
    margin-top: 12px;
}

.company-intro .service-list .service-item {
    display: flex;
}

.company-intro .service-list .service-item:nth-child(n+2) {
    margin-top: 16px;
}

.company-intro .service-item .service-icon {
    width: 100px;
    height: 100px;
    position: relative;
}

.company-intro .service-item .icon-border {
    background-color: #486482;
    border: 1px solid #486482;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .5);
    overflow: hidden;
}

.company-intro .service-item .service-icon:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #486482;
    border-radius: 5px;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity .4s ease 0s;
}

.company-intro .service-item .service-icon:hover:after {
    opacity: 1;
}

.company-intro .service-item .service-icon img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
    object-fit: cover;
}

.company-intro .service-item .service-name {
    color: #486482;
    margin: 10px 0 10px 30px;
}

.company-intro .main-image {
    width: 780px;
    height: 560px;
    margin-top: 16px;
}

.company-intro .main-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-intro .inquiry-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 317px;
    height: 32px;
    background-color: #0F6EEC;
    color: #fff;
    font-size: 14px;
    margin-top: 20px;
    transition: all 0.2s ease, visibility 0s;
}

.company-intro .inquiry-btn:hover {
    background: #6E7088;
}

.company-intro .bottom-text {
    min-height: 193px;
    margin-top: 13px;
}

.company-intro .bottom-text p {
    line-height: 1.7em;
}

/* 公司介绍 结束 */

/* 合作伙伴 开始 */
.partners-section {
    background-color: #f2f8ff;
    padding: 28px 0 64px;
}

.partners-section .partners-title {
    font-size: 36px;
    font-weight: 700;
    color: #0b3058;
    text-align: center;
}

.partners-section .partners-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 44px;
}

.partners-section .partner-logo {
    object-fit: cover;
}

/* 合作伙伴 结束 */

/* 主要产品 开始 */
.products-section {
    background-color: #0b3058;
    color: #fff;
    padding: 30px 0 47px;
}

.products-section .products-title {
    font-size: 36px;
    text-align: center;
}

.products-section .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px 55px;
    margin-top: 24px;
}

.products-section .product-card {
    text-align: center;
}

.products-section .product-img {
    aspect-ratio: 339/224;
    background-color: #fff;
    border: 8px solid #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, .1);
    overflow: hidden;
}

.products-section .product-img img {
    width: 100%;
    height: 100%;
}

.products-section .product-name {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    margin-top: 8px;
}

.products-section .product-name a {
    transition: all 0.2s ease, visibility 0s;
}

.products-section .product-name a:hover {
    color: #486482;
    text-decoration-line: underline;
    letter-spacing: 1.6px;
}

.products-section .solutions-title {
    font-size: 32px;
    font-weight: 700;
    margin-top: 47px;
}

.products-section .solutions-desc {
    margin-top: 19px;
}

.products-section .section-btn {
    margin-top: 28px;
}

/* 主要产品 结束 */

/* 服务行业 开始 */
.industries-section {
    padding: 31px 0 65px;
}

.industries-main-title {
    font-size: 36px;
    text-align: center;
    color: #0b3058;
}

.industries-subtitle {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: #0b3058;
    margin-top: 16px;
}

.industries-desc {
    text-align: justify;
    line-height: 1.8em;
    color: #486482;
    margin-top: 17px;
}

.industries-desc a {
    color: #0f6eec;
    font-style: italic;
    text-decoration: underline;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 54px;
    margin-top: 36px;
}

.industry-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.industry-img {
    width: 150px;
    height: 152px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.industry-img img {
    object-fit: cover;
}

.industry-name {
    font-size: 26px;
    font-weight: 700;
    font-style: italic;
    text-decoration: underline;
    color: #0b3058;
    margin-top: 11px;
}

.industry-desc {
    font-size: 14px;
    text-align: center;
    color: #666;
    line-height: 1.6em;
    margin-top: 6px;
}

/* 服务行业 结束 */

/* 制造能力 开始 */
.highlighted-section {
    background-color: #486482;
    color: #fff;
    padding: 36px 0 40px;
}

.highlighted-section h1 {
    font-size: 36px;
    text-align: center;
    padding-bottom: 24px;
    position: relative;
}

.highlighted-section h1::after {
    content: '';
    width: 42px;
    height: 3px;
    background-color: #fff;
    transform: translateX(-50%);
    position: absolute;
    bottom: 0;
    left: 50%;
}

.highlighted-section p {
    font-size: 16px;
    text-align: justify;
    line-height: 1.8em;
    margin-top: 25px;
}

.highlighted-section .why-choose h3 {
    font-size: 26px;
    margin-top: 32px;
}

.highlighted-section .why-choose .benefits {
    font-size: 16px;
    margin-top: 7px;
}

.highlighted-section .section-btn {
    width: 207px;
    margin-top: 25px;
    margin-left: 25px;
}

/* 制造能力 结束 */

/* 解决方案 开始 */
.solutions-section {
    padding: 31px 0 42px;
}

.solutions-section h3 {
    font-size: 32px;
    color: #0b3058;
}

.solutions-section p {
    line-height: 1.6em;
    text-align: justify;
    color: #486482;
    margin-top: 19px;
}

.solutions-section p a {
    font-style: italic;
    text-decoration: underline;
    color: #0f6eec;
}

.solutions-section .content-card-wrapper {
    display: flex;
    gap: 24px;
    margin-top: 28px;
    margin-bottom: 30px;
}

.solutions-section .content-card {
    flex: 1;
    display: flex;
    align-items: center;
    background-color: #0b3058;
    color: #fff;
    padding: 26px;
}

.solutions-section .content-card h4 {
    line-height: 2.2em;
    font-size: 26px;
}

.solutions-section .content-card .factory-img {
    flex: 1;
    width: 100%;
    aspect-ratio: 598/335;
}

.solutions-section .content-below-card {
    line-height: 1.7em;
    margin-top: 30px;
}

.solutions-section .link-text {
    color: #0071bc;
    text-decoration: underline;
}

/* 解决方案 结束 */

/* 近期帖子 开始 */
.posts-section {
    background-color: #486482;
    color: #fff;
    padding: 29px 0 49px;
}

.posts-section h2 {
    font-size: 36px;
    text-align: center;
}

.posts-section .posts-grid {
    display: grid;
    grid-template-columns: repeat(4, calc(25% - 15px));
    gap: 20px;
    margin-top: 26px;
}

.posts-section .posts-grid .post-card {
    background-color: #fff;
    color: #333;
    border: 1px solid rgba(242, 248, 255, 0.88);
    overflow: hidden;
}

.posts-section .posts-grid .post-img {
    width: 100%;
    aspect-ratio: 55/31;
    object-fit: cover;
}

.posts-section .posts-grid .post-content {
    color: #486482;
    padding: 28px 6px 25px;
}

.posts-section .posts-grid .post-date {
    display: flex;
    align-items: center;
    min-block-size: 34px;
    font-size: 12px;
}

.posts-section .posts-grid .post-link:hover {
    color: #0f6eec;
}

.posts-section .posts-grid .post-title {
    font-size: 22px;
    line-height: 1.4;
    margin-top: 12px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.posts-section .posts-grid .post-excerpt {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 11px;
    cursor: pointer;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 近期帖子 结束 */

/* 客户评价 开始 */
.review-section {
    display: flex;
    border: 1px solid #486482;
}

.review-section .review-card {
    width: 25%;
    padding-top: 29px;
}

.review-section .review-card:nth-child(n+2) {
    border-left: 1px solid #486482;
}

.review-section .review-card .review-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 393px;
}

.review-section .review-card .review-content .quotation-mark {
    width: 44px;
    height: 44px;
    opacity: 0.75;
}

.review-section .review-card .review-content svg:not([data-type=ugc]) {
    overflow: visible;
}

.review-section .review-card .review-content svg path {
    fill: #0F6EEC;
}

.review-section .review-card .review-content .review-name {
    width: 245px;
    line-height: 1.8em;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    color: #486482;
    margin-top: 21px;
}

.review-section .review-card .review-content .review-text {
    width: 245px;
    line-height: 1.6em;
    text-align: center;
    font-size: 14px;
    color: #486482;
    margin: 12px 0 10px;
}

/* 客户评价 结束 */

/* 响应式样式 */

/* Banner区域响应式 */
@media (max-width: 992px) {
    .top-banner {
        height: 280px;
    }

    .top-banner .banner-image {
        height: 280px;
    }

    .banner-content h2 {
        font-size: 26px;
    }

    .banner-content h3 {
        font-size: 30px;
    }

    .banner-content p {
        font-size: 16px;
        line-height: 28px;
    }

    .section-btn {
        width: 320px;
        height: 30px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .top-banner {
        height: 220px;
    }

    .top-banner .banner-image {
        height: 220px;
    }

    .banner-content {
        margin-top: 40px;
    }

    .banner-content h2 {
        font-size: 20px;
    }

    .banner-content h3 {
        font-size: 24px;
        line-height: 1.3;
    }

    .banner-content p {
        font-size: 14px;
        line-height: 24px;
        margin-top: 12px;
    }

    .section-btn {
        width: 260px;
        height: 28px;
        font-size: 12px;
        margin-top: 24px;
    }

    .section-btn svg {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .top-banner {
        height: 180px;
    }

    .top-banner .banner-image {
        height: 180px;
    }

    .banner-content {
        margin-top: 30px;
    }

    .banner-content h2 {
        font-size: 16px;
    }

    .banner-content h3 {
        font-size: 18px;
        line-height: 1.3;
    }

    .banner-content p {
        font-size: 12px;
        line-height: 20px;
        margin-top: 8px;
        display: none;
    }

    .section-btn {
        width: 200px;
        height: 24px;
        font-size: 11px;
        margin-top: 16px;
    }
    .content-card-wrapper .factory-img { max-width: 100%;}
}

/* 公司介绍区域响应式 */
@media (max-width: 992px) {
    .company-intro .main-title {
        font-size: 26px;
    }

    .company-intro .content-row {
        flex-direction: column;
        gap: 20px;
    }

    .company-intro .main-image {
        width: 100%;
        height: auto;
    }

    .company-intro .subtitle {
        font-size: 22px;
    }

    .company-intro .service-item .service-icon {
        width: 80px;
        height: 80px;
    }

    .company-intro .service-item .service-name {
        font-size: 14px;
        margin: 8px 0 8px 20px;
    }
}

@media (max-width: 768px) {
    .company-intro .main-title {
        font-size: 22px;
    }

    .company-intro .intro-text p,
    .company-intro .bottom-text p {
        font-size: 14px;
    }

    .company-intro .subtitle {
        font-size: 18px;
    }

    .company-intro .service-item .service-icon {
        width: 60px;
        height: 60px;
    }

    .company-intro .service-item .service-name {
        font-size: 13px;
        margin: 6px 0 6px 15px;
    }

    .company-intro .inquiry-btn {
        width: 260px;
        height: 28px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .company-intro {
        padding: 20px 0 15px;
    }

    .company-intro .main-title {
        font-size: 18px;
    }

    .company-intro .intro-text p,
    .company-intro .bottom-text p {
        font-size: 12px;
    }

    .company-intro .subtitle {
        font-size: 16px;
    }

    .company-intro .service-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .company-intro .service-item {
        flex-direction: column;
        align-items: center;
    }

    .company-intro .service-list .service-item:nth-child(n+2) {
        margin-top: 0;
    }

    .company-intro .service-item .service-icon {
        width: 60px;
        height: 60px;
    }

    .company-intro .service-item .service-name {
        font-size: 12px;
        margin: 8px 0 0 0;
        text-align: center;
    }

    .company-intro .inquiry-btn {
        width: 100%;
        height: 32px;
        font-size: 13px;
    }
}

/* 合作伙伴区域响应式 */
@media (max-width: 992px) {
    .partners-section .partners-title {
        font-size: 28px;
    }

    .partners-section .partners-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 20px 0 40px;
    }

    .partners-section .partners-title {
        font-size: 24px;
    }

    .partners-section .partner-logo {
        max-width: 100px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .partners-section .partners-title {
        font-size: 20px;
    }

    .partners-section .partner-logo {
        max-width: 80px;
        height: auto;
    }
}

/* 产品区域响应式 */
@media (max-width: 992px) {
    .products-section .products-title {
        font-size: 28px;
    }

    .products-section .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .products-section .solutions-title {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 20px 0 30px;
    }

    .products-section .products-title {
        font-size: 24px;
    }

    .products-section .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .products-section .solutions-title {
        font-size: 22px;
    }

    .products-section .solutions-desc {
        font-size: 14px;
    }

    .products-section .section-btn {
        width: 100%;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .products-section .products-title {
        font-size: 20px;
    }

    .products-section .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .products-section .solutions-title {
        font-size: 18px;
    }

    .products-section .solutions-desc {
        font-size: 12px;
    }

    .products-section .product-name {
        height: 36px;
    }
}

/* 行业服务区域响应式 */
@media (max-width: 992px) {
    .industries-main-title {
        font-size: 28px;
    }

    .industries-subtitle {
        font-size: 20px;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .industry-img {
        width: 120px;
        height: 122px;
    }

    .industry-name {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .industries-section {
        padding: 20px 0 40px;
    }

    .industries-main-title {
        font-size: 24px;
    }

    .industries-subtitle {
        font-size: 18px;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .industry-img {
        width: 100px;
        height: 102px;
    }

    .industry-name {
        font-size: 18px;
    }

    .industry-desc {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .industries-main-title {
        font-size: 20px;
    }

    .industries-subtitle {
        font-size: 16px;
    }

    .industries-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .industry-img {
        width: 100px;
        height: 102px;
    }

    .industry-name {
        font-size: 18px;
    }

    .industry-desc {
        font-size: 12px;
    }
}

/* 制造能力区域响应式 */
@media (max-width: 992px) {
    .highlighted-section h1 {
        font-size: 28px;
    }

    .highlighted-section p {
        font-size: 15px;
    }

    .highlighted-section .why-choose h3 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .highlighted-section {
        padding: 25px 0 30px;
    }

    .highlighted-section h1 {
        font-size: 24px;
    }

    .highlighted-section p {
        font-size: 14px;
    }

    .highlighted-section .why-choose h3 {
        font-size: 20px;
    }

    .highlighted-section .section-btn {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .highlighted-section h1 {
        font-size: 20px;
    }

    .highlighted-section p {
        font-size: 12px;
    }

    .highlighted-section .why-choose h3 {
        font-size: 18px;
    }
}

/* 解决方案区域响应式 */
@media (max-width: 992px) {
    .solutions-section h3 {
        font-size: 26px;
    }

    .solutions-section .content-card-wrapper {
        flex-direction: column;
    }

    .solutions-section .content-card h4 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .solutions-section {
        padding: 20px 0 30px;
    }

    .solutions-section h3 {
        font-size: 22px;
    }

    .solutions-section p {
        font-size: 14px;
    }

    .solutions-section .content-card h4 {
        font-size: 18px;
        line-height: 1.8em;
    }

    .solutions-section .content-card {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .solutions-section h3 {
        font-size: 18px;
    }

    .solutions-section p {
        font-size: 12px;
    }

    .solutions-section .content-card h4 {
        font-size: 16px;
        line-height: 1.6em;
    }
}

/* 近期帖子区域响应式 */
@media (max-width: 992px) {
    .posts-section h2 {
        font-size: 28px;
    }

    .posts-section .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .posts-section {
        padding: 20px 0 30px;
    }

    .posts-section h2 {
        font-size: 24px;
    }

    .posts-section .posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .posts-section .posts-grid .post-content {
        padding: 15px 6px 12px;
    }

    .posts-section .posts-grid .post-title {
        font-size: 18px;
    }

    .posts-section .posts-grid .post-excerpt {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .posts-section h2 {
        font-size: 20px;
    }

    .posts-section .posts-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .posts-section .posts-grid .post-title {
        font-size: 16px;
    }

    .posts-section .posts-grid .post-excerpt {
        font-size: 12px;
    }
}

/* 客户评价区域响应式 */
@media (max-width: 992px) {
    .review-section {
        flex-wrap: wrap;
    }

    .review-section .review-card {
        width: 50%;
    }

    .review-section .review-card:nth-child(n+2) {
        border-left: none;
    }

    .review-section .review-card:nth-child(2n+1) {
        border-right: 1px solid #486482;
    }
}

@media (max-width: 768px) {
    .review-section .review-card {
        width: 50%;
        padding-top: 20px;
    }

    .review-section .review-card .review-content {
        min-height: auto;
        padding-bottom: 20px;
    }

    .review-section .review-card .review-content .review-name {
        font-size: 16px;
        width: 180px;
    }

    .review-section .review-card .review-content .review-text {
        font-size: 13px;
        width: 180px;
    }
}

@media (max-width: 480px) {
    .review-section .review-card {
        width: 100%;
        padding-top: 15px;
    }

    .review-section .review-card:nth-child(2n+1) {
        border-right: none;
    }

    .review-section .review-card:nth-child(n+2) {
        border-top: 1px solid #486482;
    }

    .review-section .review-card .review-content {
        min-height: auto;
        padding-bottom: 15px;
    }

    .review-section .review-card .review-content .quotation-mark {
        width: 32px;
        height: 32px;
    }

    .review-section .review-card .review-content .review-name {
        font-size: 14px;
        width: 100%;
        padding: 0 15px;
    }

    .review-section .review-card .review-content .review-text {
        font-size: 12px;
        width: 100%;
        padding: 0 15px;
    }
}