:root{
    --bg-color:#08ab5a;
}

input[type=text],button{
    border: 0;
    outline: none;
    border-radius: 5px;
}
li{
    list-style: none;
}
a{text-decoration: none;}
/* banner */
.blog-banner{
    width: 100%;
    height: 550px;
    background: url(../img/blog-banner.jpg);
    display: flex;
    justify-content: center;
    align-items: center;
}
.blog-container{
    width: 1200px;
    color: white;
    padding-top: 0;
}
.blog-banner .blog-subtitle{
    color: var(--bg-color);
}
.blog-banner .blog-banner-title{
    width: 340px;
    font-size: 47px;
}
.blog-banner-info{
    width: 540px;
    line-height: 30px;
    margin: 48px 0;
    color: #dedfe1;
}
.blog-from {
    width: 540px;
    height: 55px;
    background-color: white;
    border-radius: 5px;
    display: flex;
}
.blog-from input[type=text]{
    flex: 1;
    padding-left:23px;
    font-size: 16px;
    color: #888;
}
.blog-from-send{
    border: 0;
    outline: none;
    width: 175px;
    height: 100%;
    line-height: 55px;
    background-color: var(--bg-color);
    color:white;
    font-size: 16px;
    border-radius: 5px;
}


/* tag */
.blog-tag{
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 70px 0;
}
.blog-tag li a{
    transition: all .2s;
    display: block;
    width: 170px;
    height: 56px;
    border-radius: 5px;
    line-height: 56px;
    font-size: 18px;
    font-weight:600;
    text-decoration: none;
    text-align: center;
    color: #787d81;
}
.blog-tag li a:hover,.tag-active{
    background-color: var(--bg-color);
    color: white !important;
}

/* news1 */
.blog-news-1{
    display: flex;
    gap: 62px;
    height: 750px;
    margin-bottom: 110px;
}
.blog-news-1 .left{
    width: 768px;
    display: flex;
    flex-direction: column;
}
.blog-news-1 .left a{display: block;}
.blog-news-1 .left .pic{
    width: 100%;
    height: 433px;
    border-radius: 10px;
}
.blog-news-1 .left .pic{
    width: 764px;
    height: 430px;
    overflow: hidden;
}
.blog-news-1 .left .pic img{
    transition: all .3s;
    min-width: 100%;
    min-height: 100%;
}
.blog-news-1 .left .pic:hover img{
    transform: scale(1.1);
}
.blog-news-1 .left .news-subtitle{
    color: var(--bg-color);
    margin: 35px 0 20px;
}
.blog-news-1 .left h4{
    width: 720px;
    font-size: 25px;
    color: #252a2e;
}
.blog-news-1 .left .news-info{
    width: 740px;
    color: #8a8a8a;
    margin: 35px 0;
}
.blog-news-1 .left button{
    background-color: var(--bg-color);
    width: 188px;
    height: 50px;
    color: white;
    text-align: center;
    line-height: 50px;
    font-size: 18px;
}

.blog-news-1 .right {
    width: 390px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.blog-news-1 .right .item{width: 100%;}
.blog-news-1 .right .item .pic{
    width: 100%;height: 222px;
    border-radius: 10px;
    overflow: hidden;
}
.blog-news-1 .right .item .pic img{
    transition: all .2s;
    min-width: 100%;
    min-height: 100%;
}
.blog-news-1 .right .item .pic:hover img{
    transform: scale(1.1);
}
.blog-news-1 .right .item .right-subtitle{
    color: var(--bg-color);
    font-size: 14px;
    margin: 25px 0 15px 0;
}
.blog-news-1 .right .item h4{
    width: 100%;
    color: #252a2e;
    font-size: 18px;
}

.blog-news-2{
    display: flex;
    gap: 20px;
    flex-flow: wrap;
}
.blog-container2{
    padding-bottom: 10rem;
}
.blog-news-2 .item{
    position: relative;
    width: 390px;
    border-radius: 10px;
    box-shadow: 0px 2px 15px 1px rgba(0,0,0,.08);
}
.blog-news-2 .item .pic{
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 10px;
}
.blog-news-2 .item:hover .pic img{
    transform: scale(1.1);
}
.blog-news-2 .item .pic img{
    min-width: 100%;
    min-height: 100%;
    transition: all 0.3s;
    object-fit: cover;
}
.blog-news-2 .news-info{
    padding:0 26px;
}
.blog-news-2 .item h4{
    font-size: 24px;
    color: #242424;
    margin: 60px 0 25px 0 ;

    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
    overflow:hidden;
}
.blog-news-2 .item .news-info p{
    color: #8A8A8A;
    font-size: 16px;
    margin-bottom: 50px;
    line-height: 25px;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:6;
    overflow:hidden;
    min-height: 150px;
}
.blog-news-2 .item .circular{
    position: absolute;
    top: 210px;
    left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 113px;
    height: 113px;
    border-radius: 62px;
    background-color: #f7f7f7;
    border: 10px solid white;
    box-shadow: 0px 2px 20px 1px rgba(0,0,0,.1);
}
.blog-news-2 .item .circular p{
    font-size: 18px;
    font-weight: 600;
    color: #333 ;

}
.blog-news-2 .item .circular .title{
    font-size: 32px;
    color: var(--bg-color);
    font-weight: bold;
}
.blog-news-2 .news-info .bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f6f6f6;
    height: 66px;
}
.blog-news-2 .news-info .bottom span{
    color: var(--bg-color);
    font-weight: bold;
    font-size: 18px;
}

.blog-news-2 .news-info .bottom img{
    width: 16px;
    height: 10px;
}

.more{
    display: flex;    
    justify-content: center;
    margin: 90px 0;
}
.more a{
    width: 217px;
    height: 57px;
    line-height: 57px;
    border-radius: 5px;
    background-color: white;
    border: 1px solid #d3d3d3;
    cursor: pointer;
    color: #242424;
    font-size: 18px;
    font-weight: 600;
}
.load-more{
    position: relative;
    z-index: 9;
}