body {
    background-color: #EFF5FF;
}
/* 解决方案列表 */
.solution-page-main {
    margin-bottom: 120px;
}

/* 广告位 */
.banner-container {
    margin-bottom: 96px;
}
.banner-container img {
    width: 100%;
}

.solution-list {
    margin-top: 120px;
}

.solu-item {
    width: calc(33% - 26px);
    height: 428px;
    margin-left: 39px;
    margin-bottom: 40px;
    background: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
}
.solu-item:nth-child(3n + 1) {
    margin-left: 0;
}
.solu-item .item-img {
    width: 100%;
    height: 360px;
    overflow: hidden;
}
.solu-item .item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.item-content {
    position: relative;
    width: 100%;
    height: 68px;
    padding: 0 76px 0 30px;
    line-height: 68px;
    font-size: 24px;
    color: #333;
}
.item-content::after {
    content: '';
    display: block;
    position: absolute;
    right: 30px;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 36px;
    height: 36px;
    border: 2px solid #CDCDCD;
    background: url('../../image/common/right.png') no-repeat center / auto 50%;
    border-radius: 50%;
}
.solu-item:hover {
    box-shadow: 0px 24px 64px rgba(13, 89, 192, 0.2);
}
.solu-item:hover .item-content::after {
    border-color: #0859C0;
    background-color: #0859C0;
    background-image: url('../../image/common/rightw.png')
}
.solu-item:hover .item-content {
    color: #0859C0;
}
