/* 通配符 */
* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

/* 最大容器 */
.solution {
    width: 1500px;
    height: 100%;
    margin: auto;
}

/* 轮播图盒子 */
.solution_carousel,.solution_carousel1 {
    width: 1500px;
    /* border: 1px solid red; */
    height: 400px;
    /* margin: auto; */
    position: relative;
}

.solution_carousel>img {
    width: 100%;
    height: 100%;
}
.solution_carousel1>img {
    width: 100%;
    height: 120%;
}

/* 标语 */
.slogan {
    position: absolute;
    right: 0px;
    top: 50%;
}

.slogan_an {
    width: 350px;
    height: 50px;
    line-height: 50px;
    background-color: rgba(55, 120, 85, 0.3);
}

.slogan_an>i>span {
    font-size: 30px;
    color: white;
    font-weight: bold;
    margin-right: 35px;
}

.slogan_en {
    width: 350px;
    height: 50px;
    line-height: 50px;
}

.slogan_en>i>span {
    font-size: 18px;
    color: white;
    font-weight: bold;
    margin-right: 15px;
}

.slogan_en>i>span:nth-child(2) {
    margin-right: 25px !important;
}

/* 解决方案 */
.solution_branch {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
}
.solution_branch1 {
    display: flex;
    flex-direction: column;
    margin-top: 110px;
}

.branch_title {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.branch_title>p {
    font-weight: bold;
}

.branch_title>p:nth-child(1) {
    font-size: 30px;
    margin-bottom: 10px;
}

.branch_title>p:nth-child(2) {
    font-size: 20px;
}

/* 方案 */
.branch_plan {
    /* height: 900px; */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 100px;
    /* border: 1px solid red; */
}

.plan1 {
    width: 400px;
    height: 375px;
    /* border: 1px solid red; */
    padding: 10px;
    position: relative;
    margin: 20px 0;
}

.plan1>div:nth-child(1) {
    width: 100%;
    height: 285px;
    overflow: hidden;
}

.plan1>div>a>img {
    width: 100%;
    transition: all 1s;
}

.plan1>div>a>img:hover {
    transform: scale(1.2, 1.2);
}

.plan1_content>p {
    margin: 10px 0;
    font-size: 20px;
    font-weight: bold;
}

.plan1_content>div {
    width: 370px;
    height: 40px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.plan1>.btn {
    position: absolute;
    left: 138.64px;
    top: 230px;
}
.plan1>.btn>a{
    color: white;
    text-decoration: none;
}
.plan1>.btn>a:hover{
    text-decoration: none;
}