/* Main Content Sections */

/* Section title icons */
section {
    padding: 20px 0;
}

.wxhl-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.wxhl-section-title {
    text-align: center;
    font-size: 28px;
    position: relative;
}

.wxhl-section-title .iconLeft,
.wxhl-section-title .iconRight {
    height: 12px;
    margin: 0 20px;
    vertical-align: middle;
}

/* Section title responsive */
@media (max-width: 768px) {
    .wxhl-section-title {
        font-size: 20px;
    }

    .wxhl-section-title .iconLeft,
    .wxhl-section-title .iconRight {
        height: 8px;
        margin: 0 8px;
    }
}

@media (max-width: 480px) {
    .wxhl-section-title {
        font-size: 18px;
    }

    .wxhl-section-title .iconLeft,
    .wxhl-section-title .iconRight {
        height: 6px;
        margin: 0 5px;
    }
}

/* wxhl-section-AI section */
.wxhl-section-AI {
    background-color: transparent;
    margin-top: 30px;
}

.wxhl-section-AI .features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 0 auto 20px;
    text-align: center;
    background-color: #fff;
    position: relative;
    max-width: 800px;
    padding: 20px;
}

.wxhl-section-AI .features::after {
    display: none;
}

@media (max-width: 768px) {
    .wxhl-section-AI {
        margin-top: 20px;
    }

    .wxhl-section-AI .features {
        gap: 20px;
        margin: 0 auto 15px;
        padding: 15px;
        max-width: 100%;
        flex-direction: column;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .wxhl-section-AI .features {
        gap: 15px;
        margin: 0 auto 10px;
        padding: 12px;
        font-size: 13px;
    }
}

/* Feature Contents */
.feature-contents {
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-contents img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .feature-contents {
        margin-bottom: 25px;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .feature-contents {
        margin-bottom: 15px;
        padding: 0 8px;
    }
}

.platform-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: #ff7a00;
    color: white;
    border-radius: 0;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.platform-btn:hover {
    background-color: #e56e00;
}

.wxhl-section-AI .content {
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--white-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.wxhl-section-AI .text-content {
    flex: 1;
}

.wxhl-section-AI .text-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.wxhl-section-AI .image-content {
    flex: 1;
}

/* wxhl-products-section */
.wxhl-products-section {
    background-color: var(--white-color);
}

.wxhl-products-section .content-block {
    display: flex;
    justify-content: center;
}

.wxhl-products-section .content-block .content-block-content {
    max-width: 1200px;
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
    padding: 40px 0 0;
}

.wxhl-products-section .content-block:last-child .content-block-content {
    border-bottom: none;
}

.wxhl-products-section .content-block:nth-child(2n-1) {
    background-color: #F8F8F8;
}

.wxhl-products-section .content-block:nth-child(2n) .content-block-content {
    flex-direction: row-reverse;
}

.wxhl-products-section .text-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.wxhl-products-section .image-section {
    flex: 0 0 auto;
    max-width: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
}

.wxhl-products-section .solution-image {
    width: 100%;
    max-width: 550px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: block;
}

.wxhl-products-section .solution-image:hover {
    transform: scale(1.02);
}

.wxhl-products-section .image-section:hover .wxhl-view-details-btn {
    opacity: 1;
}

.wxhl-products-section .wxhl-view-details-btn {
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.wxhl-products-section .title {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 5px;
    position: relative;
}

.wxhl-products-section .abstract {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
    text-align: justify;
    text-indent: 2rem;
}

.wxhl-btn {
    text-align: center;
    margin-bottom: 20px;
}

.wxhl-view-details-btn {
    background-color: rgba(255, 122, 0, 0.9);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.wxhl-view-details-btn:hover {
    background-color: rgba(229, 110, 0, 1);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .wxhl-btn {
        margin-bottom: 15px;
    }

    .wxhl-view-details-btn {
        font-size: 12px;
        padding: 7px 16px;
    }

    .wxhl-view-details-btn:hover {
        transform: scale(1.02);
    }
    .wxhl-products-section .content-block .content-block-content {
        flex-direction: column !important;
        gap: 20px;
        padding: 25px 0 0;
        margin-bottom: 15px;
    }

    .wxhl-products-section .image-section {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .wxhl-products-section .solution-image {
        max-width: 100%;
        width: 100%;
    }

    .wxhl-products-section .text-section {
        flex: 1;
    }

    .wxhl-products-section .title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .wxhl-products-section .abstract {
        font-size: 14px;
        text-indent: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .wxhl-products-section .content-block .content-block-content {
        gap: 15px;
        padding: 20px 0 0;
        margin-bottom: 10px;
    }

    .wxhl-products-section .image-section {
        margin-bottom: 15px;
    }

    .wxhl-products-section .title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .wxhl-products-section .abstract {
        font-size: 13px;
        text-indent: 0.8rem;
        line-height: 1.5;
    }

    .wxhl-btn {
        margin-bottom: 12px;
    }

    .wxhl-view-details-btn {
        font-size: 11px;
        padding: 6px 12px;
    }

    .wxhl-view-details-btn:hover {
        transform: scale(1);
    }
}

/* services-section */

.wxhl-services {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1200px;
    flex-wrap: wrap;
}

.services-items {
    flex: 1;
    min-width: 240px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.services-item-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.item-content-title {
    margin: 20px;
    font-family: "Source Han Sans CN";
    font-weight: 500;
    font-size: 24px;
    color: #444444;
    line-height: 35px;
    text-align: center;
}

.item-content-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.item-content-content>span {
    font-weight: 400;
    font-size: 12px;
    color: #999999;
    line-height: 24px;
    text-align: center;
}

@media (max-width: 768px) {
    .wxhl-services {
        justify-content: center;
        gap: 20px;
        margin-bottom: 30px;
    }

    .services-items {
        min-width: auto;
        flex: 0 1 calc(50% - 10px);
    }

    .item-content-title {
        margin: 15px;
        font-size: 18px;
        line-height: 28px;
    }

    .item-content-content>span {
        font-size: 11px;
        line-height: 20px;
    }
}

@media (max-width: 480px) {
    .wxhl-services {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 20px;
    }

    .services-items {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .item-content-title {
        margin: 12px;
        font-size: 16px;
        line-height: 24px;
    }

    .item-content-content>span {
        font-size: 10px;
        line-height: 18px;
    }
}