@import url("./public.css");
@import url("./header.css");
@import url("./footer.css");
@import url("../font/iconfont.css");

.banner {
    background: url(../images/banner5.png) no-repeat center;
}

.row1 {
    padding: 110px 0 180px;
    background: #fff;
}

.row1 ul {
    margin-top: 86px;
}

.row1 ul li {
    box-sizing: border-box;
    padding: 24px;
    width: calc((100% - 76px) / 3);
    height: 439px;
    background: #FFFFFF;
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.4);
    color: #666666;
}

.row1 ul li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all .3s ease;
}

.row1 li .date {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
}

.row1 li .date span {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 34px;
    font-weight: bold;
}

.row1 li .date span::after {
    content: '';
    margin: 0 12px;
    display: inline-block;
    width: 2px;
    height: 22px;
    background: #D8D8D8;
}

.row1 li h3 {
    margin: 52px 0 25px;
    font-size: 20px;
    font-weight: bold;
}

.row1 li p {
    font-size: 14px;
    line-height: 20px;
    color: #666666;
    transition: all .3s ease;
}

.row1 li .multiline {
    margin-bottom: 60px;
    height: 40px;
    -webkit-line-clamp: 2;
}

.row1 li p i {
    margin-left: 6px;
    font-size: 16px;
}

.row1 li:hover {
    background: #498432;
    transition: all .3s ease;
}

.row1 li:hover a,
.row1 li:hover p {
    color: #fff;
    transition: all .3s ease;
}

.row2 {
    padding: 86px 0 123px;
}

.row2 .caption p {
    color: #fff;
}

.row2 ul {
    flex-wrap: wrap;
    margin-top: 56px;
}

.row2 ul li {
    box-sizing: border-box;
    margin-top: 36px;
    padding: 20px 40px;
    width: calc((100% - 40px) / 2);
    height: 164px;
    background: #FFFFFF;
}

.row2 ul li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.row2 ul li h3 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
}

.row2 ul li p {
    height: 50px;
    font-size: 16px;
    line-height: 25px;
    color: #9E9E9E;
    text-indent: 2rem;
    -webkit-line-clamp: 2;
    transition: all .3s ease;
}

.row2 ul li:hover {
    background: #498432;
    transition: all .3s ease;
}

.row2 ul li:hover a,
.row2 ul li:hover p {
    color: #fff;
    transition: all .3s ease;
}

.row3 {
    padding: 100px 0 122px;
    background: #fff;
}

.row3 .hjbh {
    margin-top: 98px;
    align-items: flex-start;
}

.hjbh-img {
    width: 45%;
    height: 425px;
}

.hjbh-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hjbh ul {
    width: 54%;
}

.hjbh ul li {
    margin-bottom: 70px;
}

.hjbh ul li:last-child {
    margin-bottom: 0;
}

.hjbh ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .3s ease;
}

.hjbh ul li .date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
    font-size: 16px;
}

.hjbh ul li .date span {
    font-size: 34px;
    font-weight: bold;
}

.hjbh ul li .date p {
    color: #999;
}

.hjbh ul li .title {
    position: relative;
    padding: 0 10px 0 40px;
    width: calc(100% - 175px);
}

.hjbh ul li .title::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    display: block;
    width: 2px;
    height: 84px;
    background: #D8D8D8;
}

.hjbh ul li h3 {
    margin-bottom: 17px;
    font-size: 20px;
    font-weight: bold;
}

.hjbh ul li .multiline {
    height: 52px;
    line-height: 26px;
    font-size: 16px;
    color: #999;
    -webkit-line-clamp: 3;
    transition: all .3s ease;
}

.hjbh ul li:hover a,
.hjbh ul li:hover .multiline {
    color: #498432;
    transition: all .3s ease;
}

@media only screen and (max-width: 1400px) {}

@media only screen and (max-width: 1200px) {

    .row1,
    .row2,
    .row3 {
        padding: 40px 0;
    }

    .row1 ul {
        margin-top: 40px;
    }

    .row1 ul li {
        width: calc((100% - 40px) / 3);
        height: 380px;
    }

    .row2 ul {
        margin-top: 0;
    }

    .row2 ul li {
        width: calc((100% - 20px) / 2);
    }
}

@media only screen and (max-width: 996px) {
    .caption p {
        font-size: 36px;
    }

    .row1 ul li {
        width: calc((100% - 20px) / 2);
    }

    .row1 ul li:nth-child(3) {
        display: none;
    }

    .row2 ul li {
        width: 100%;
    }

    .row2 ul li:nth-child(4) {
        display: none;
    }

    .row3 .hjbh {
        margin-top: 40px;
    }

    .hjbh-img {
        display: none;
    }

    .hjbh ul {
        width: 100%;
    }

}

@media only screen and (max-width: 768px) {

    .row1 ul li {
        width: 100%;
        height: 380px;
        box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.05);
    }

    .row1 ul li:nth-child(2) {
        display: none;
    }

    .row1 li .date {
        font-size: 24px;
    }

    .row1 li .date span::after {
        height: 36px;
    }

    .row1 li h3 {
        font-size: 24px;
    }

    .row1 li .multiline {
        height: 80px;
        font-size: 24px;
        line-height: 40px;
    }

    .row1 li p,
    .row1 li p i {
        font-size: 18px;
    }

    .row2 ul li h3,
    .hjbh ul li h3 {
        font-size: 24px;
    }

    .row2 ul li p,
    .hjbh ul li .multiline {
        height: 66px;
        font-size: 24px;
        line-height: 33px;
    }

    .hjbh ul li .date p {
        font-size: 24px;
    }

    .more {
        font-size: 24px;
    }

    .more i {
        font-size: 30px;
    }
}