/* banner */
.top-banner .banner-first {
    background: url('/static/images/solution/nb5.png') no-repeat center center / cover;
}

/* 深耕30+行业，为每一个业务场景找到解决方案 */
.business-solution {}

.business-solution-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.business-solution-wrapper .card {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.business-solution-wrapper .card:not(:first-child) {
    margin-top: 80px;
}

.business-solution-wrapper .card .image {
    width: 580px;
    height: 330px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 1px 40px 0px rgba(0, 0, 0, 0.13);
    border: 2px solid #F8F9FF;
}

.business-solution-wrapper .card .content {
    width: calc(100% - 580px - 40px);
}

.business-solution-wrapper .card .image img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.business-solution-wrapper .card .content h3 {
    font-size: 24px;
    font-weight: 600;
}

.business-solution-wrapper .card .content .subtitle {
    font-size: 14px;
    font-weight: 400;
}

.business-solution-wrapper .card .content ul {
    /* margin: 30px 0; */
}

.business-solution-wrapper .card .content ul li {
    margin-top: 10px;
}

.business-solution-wrapper .card .content ul li .title {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
}

.business-solution-wrapper .card .content ul li .desc {
    color: var(--content-color);
    font-size: 14px;
    font-weight: 400;
}

.business-solution-wrapper .card .content ul li .desc img {
    width: 13px;
    height: auto;
}

/* 更多行业，同样专业 */
.more-industry {}

.more-industry-wrapper {
    max-width: 1200px;
    margin: 0 auto;

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

.more-industry-wrapper .card {
    height: 157px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.more-industry-wrapper .card .mask {
    width: 100%;
    height: 100%;

    background: linear-gradient(90deg, #4385FF 0%, rgba(67, 133, 255, 0.01) 99%);
    box-shadow: 0px 1px 20px 0px rgba(9, 67, 135, 0.2);

    padding: 10px;
    color: #FFFFFF;
    font-weight: 400;

    position: absolute;
    top: 0;
    left: 0;
}

.more-industry-wrapper .card .mask .title {
    font-size: 14px;
}

.more-industry-wrapper .card .mask .description {
    font-size: 14px;
    margin-top: 10px;
}

.more-industry-wrapper .card:hover img {
    transform: scale(1.1);
    transition: all ease-out 0.3s;
}


/* 为什么选我们 */
.why-choose-us {}

.why-choose-us-wrapper {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    gap: 30px;
}

.why-choose-us-wrapper .card {
    padding: 30px 20px;
    width: calc((100% - 3*30px) / 4);

    background-image: url('/static/images/production/ai-voice-robot/ty0.png');
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;

    background-color: #FFFFFF;
    box-shadow: 0px 1px 20px 0px rgba(9, 67, 135, 0.2);
    border-radius: 8px;

    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.why-choose-us-wrapper .card img {
    height: 124px;
    width: auto;
}

.why-choose-us-wrapper .card h3 {
    font-weight: 500;
    font-size: 18px;
    color: var(--primary-color);
}

.why-choose-us-wrapper .card .line {
    width: 34px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}


.why-choose-us-wrapper .card ul li {
    font-weight: 400;
    font-size: 14px;
    color: var(--content-color);
    text-align: center;
}