/*您的位置导航栏*/
.location {
    display: flex;
    align-items: center;
    width: 100%;
    height: 35px;
    background-color: #f3f3f3;
    box-sizing: border-box;
    border-bottom: 2px solid #cccccc;
}

.location p {
    display: flex;
    align-items: center;
    width: 100%;
    height: 15px;
    font-size: 15px;
    font-weight: 300;
    text-align: left;
    color: #000000;
    line-height: 15px;
    padding: 0 50px;
}

.location p span {
    margin: 0 5px;
    cursor: pointer;
}

.location p i {
    height: 12px;
    color: #000;
}

/*切换按钮*/
.tabBtn {
    /*height: 44px;*/
    margin: 92px 124px 81px;
}

.tabBtn ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
}

.tabBtn ul li {
    width: 128px;
    height: 44px;
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    color: #000000;
    background: #E5E5E5;
    line-height: 44px;
    letter-spacing: -1px;
    margin-right: 12px;
    cursor: pointer;
}






.tabBtn ul li:hover {
    width: 128px;
    height: 44px;
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    color: #000000;
    background: #FFCC19;
    line-height: 44px;
    letter-spacing: -1px;
    margin-right: 12px;
    cursor: pointer;
}



.tabBtn ul .tabBtn_bgc {
    background-color: #FFCC19;
}

/*主要内容*/
.news_main_box {
    width: 100%;
    padding: 0 124px;
    background-image: url('../images/wave.png');
    background-size: cover;
    background-position: center 150px;
}

.news_main_box .box {
    margin: 0 86px 0 66px;
}

.news_article ul {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.news_article ul li {
    width: 100%;
    height: 263px;
    margin-bottom: 20px;
    transition: transform .2s;
    box-sizing: border-box;
    border: 2px solid transparent;
}

.news_article ul li a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    flex-direction: row;
}

.news_article ul li a .ico {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 3;
    height: 100%;
}

.news_article ul li a .ico .img {
    width: 368px;
    height: 208px;
    /*width: 100%;*/
}

.news_article ul li a .ico .img img {
    width: 100%;
}


.news_article ul li a .text {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    flex: 6;
    height: 208px;
    overflow: hidden;
    margin-left: 20px;
}

.news_article ul li a .text h4 {
    font-size: 25px;
    font-weight: 500;
    text-align: left;
    color: #15181d;
    line-height: 54px;
    letter-spacing: 1.25px;
}

.news_article ul li a .text .p1 {
    font-size: 18px;
    font-weight: 300;
    text-align: left;
    color: #000000;
    width: 100%;
    height: 60px;
    line-height: 30px;
    letter-spacing: 0.9px;
    padding-right: 157px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news_article ul li a .text .p2 {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding-right: 71px;
    font-size: 20px;
    font-weight: 500;
    text-align: left;
    color: #767676;
    line-height: 54px;
    letter-spacing: 1px;
}

.news_article ul li a .right {
    flex: 0.3;
    height: 100%;
}

.news_article ul li a .right i {
    display: none;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: #fcb82c;
    font-size: 40px;
    height: 100%;
    width: 100%;
}
.news_article ul li:hover {
    border: 2px solid #fcb82c;
    box-shadow: 0 5px 10px 0 rgba(0,0,0,.2) ;
}


.news_article ul li:hover .right i {
    display: flex;
}

/*页码*/
.page {
    display: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    margin-top: 20px;
}

.page ol {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.page ol li,
.page i {
    width: 38px;
    height: 38px;
    border: 1px solid #6f6f6f;
    box-sizing: border-box;
    line-height: 38px;
    text-align: center;
    margin: 2px;
    cursor: pointer;
}

.page ol .libgc {
    background-color: #ffcc19;
    color: #fff;
}

.page span {
    display: inline-block;
    width: 59px;
    height: 38px;
    border: 1px solid #6f6f6f;
    box-sizing: border-box;
    line-height: 38px;
    text-align: center;
    margin: 2px;
    cursor: pointer;
}

