﻿@charset "utf-8";
/*banner*/
.banner {
    width: 100%;
    position: relative;
    overflow: hidden;
}
.slick-dotted.slick-slider {
    margin-bottom: 0;
}
.banner .slick-slide {
    width: 100%;
}
.banner .slick-dots {
    width: 1200px;
    margin: 0 auto;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: right;
    box-sizing: border-box;
}
.banner .news_images {
    width: 100%;
    position: relative;
}
.banner .news_images a {
    display: block;
}
.news_images img {
    display: block;
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.banner .slick-dots {bottom: 10px;text-align: center;}
.slick-dots li{
    width: 20px;
    margin-right: 5px;
}
.banner .slick-dots li.slick-active,
.banner .slick-dots li.slick-active button {
    width: 20px;
    height: 20px;
}
.banner .slick-dots li.slick-active button:before {
    width: 10px;
    height: 10px;
    background: #00ebb6;
    border-radius: 100%;
}

.banner .slick-dots li button:before {
    width: 10px;
    height: 10px;
    border-radius: 100%;    
    content: '';
    opacity: 1;
    background: #fff;
}
.banner {
    position: relative;
}
.banner p{
    position: absolute;
    z-index: 99;
    left: 0;
    right: 0;
    margin: auto;
    top: 50%;
    transform: translateY(-35%);
}
.banner p span{
    display: block;
    letter-spacing: 1px;
    text-shadow: 0 0 14px #4e4e4e;
}
.banner p span:nth-of-type(1){
    font-size: 18px;
    color: #faeb00;
    font-weight: bold;
    line-height: 20px;
    margin-bottom: 20px;
}
.banner p span:nth-of-type(2),.banner p span:nth-of-type(3){
    font-size: 60px;
    color: #fff;
    font-weight: bold;
    line-height: 70px;
    margin-bottom: 10px;
}
.banner p span:nth-of-type(4){
    margin-top: 30px;
}
.banner p span:nth-of-type(4),.banner p span:nth-of-type(5),.banner p span:nth-of-type(6),.banner p span:nth-of-type(7){
    font-size: 17px;
    color: #fff;
    line-height: 26px;
}
/* 栏目标题 */
div.tit{
    text-align: center;
}
div.tit h2{
    display: inline-block;
    font-size: 40px;
    line-height: 50px;
    padding:0 20px;
    color: #333;
    background: url(../img/tit_bg.png) no-repeat right center;
}
div.tit p{
    font-size: 14px;
    color: #2555a6;
    line-height: 30px;
    font-weight: bold;
    margin-bottom: 20px;
}
/* 更多 */
a.more{
    display: block;
    width: 170px;
    line-height: 50px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    margin: 0 auto;
    background: #2555a6;
    box-shadow: 0 0 10px 1px rgba(37, 85, 166, 0.7);
    border-radius: 5px;
    margin-top: 50px;
}
a.more:hover{
    background: #faeb00;
    box-shadow: 0 0 10px 1px rgba(155, 235, 0, 0.7);
}
/* 通知 */
.events{
    padding: 60px 0;
    background: #f7f7f7;
}
.events ul li{
    float: left;
    width: calc(49% - 35px);
    position: relative;
    margin-left: 35px;
    margin-top: 50px;
    margin-right:2%;
}
.events ul li:nth-of-type(2n){
    margin-right:0;
}
.events ul li a{
    display: block;
    padding: 30px 20px 30px 90px;
    background: #fff;
    box-shadow: 0 0 10px 1px rgba(0,0,0,0.1);
    box-sizing: border-box;
    border-radius: 10px;
    overflow: hidden;
}
.events ul li a p.time{
    width: 100px;
    height: auto;
    font-size: 16px;
    text-align: center;
    font-weight: bold;
    background: #2555a6;
    border-radius: 10px;
    color: #fff;
    padding: 20px 0;
    line-height: 30px;
    position: absolute;
    top: -30px;
    left: -30px;
}
.events ul li a p.time span{
    display: block;
    font-size: 24px;
}
.events ul li a p.tit{
    font-size: 16px;
    line-height: 30px;
    height: 60px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-align: left;
    font-weight: bold;
}
.events ul li:hover p.time{
    background: #000;
}
.events ul li:hover a{
    color: #fff;
    background: #2555a6;
    box-shadow: 0 0 10px 1px rgba(37, 85, 166, 0.7);
}

/* 新闻 */
.news{
    margin: 60px 0;
    width: 100%;
}
.news ul{
    width: 100%;
}
.news ul li{
    position: relative;
}
.news ul li::before{
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 10px;
    overflow: hidden;
}
.news ul li a{
    display: block;
}
.news ul li a p.img{
    float: left;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 10px 0 0 10px;
}
.news ul li a p.img img{
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}
.news ul li a div.con{
    padding: 40px;
    float: left;
    width: 50%;
    height: 400px;
    box-sizing: border-box;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    background: #f7f7f7;
    border-radius: 0 10px 10px 0;
}
.news ul li.slick-active.slick-center::before{
    display: none;
}
.news ul li.slick-active.slick-center a{
    padding: 0 20px;
    box-sizing: border-box;
}
.news ul li.slick-active.slick-center a p.img{
   width:50%;
   background: #f7f7f7;
}
.news ul li.slick-active.slick-center a div.con{
    display: flex;
}
.news ul li a div.con p.time{
    font-size: 16px;
    line-height: 26px;
    color: #2555a6;
    font-weight: bold;
}
.news ul li a div.con p.tit{
    font-size: 16px;
    line-height: 26px;
    color: #333333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    max-height: 78px;
    font-weight: bold;
}
.news ul li a div.con p.tit:hover{
    color: #2555a6;
}
.news ul li a div.con p.txt{
    font-size: 14px;
    line-height: 26px;
    color: #999999;
    max-height: 52px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.news ul li a div.con p.more{
    display: block;
    width: 170px;
    line-height: 50px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    background: #2555a6;
    box-shadow: 0 0 10px 1px rgba(37, 85, 166, 0.7);
    border-radius: 5px;
}
.news ul li a div.con p.more:hover{
    background: #faeb00;
    box-shadow: 0 0 10px 1px rgba(155, 235, 0, 0.7);
}

/* 媒体查询 */
@media only screen and (max-width: 1680px){
    .news_images img{
        height: 800px;
    }
}
@media only screen and (max-width: 1560px){
    .news_images img{
        height: 720px;
    }
    .news ul li a p.img{
        border-radius: 5px 0 0 5px;
    }
    .news ul li a p.img img{
        height: 360px;
        border-radius: 5px;
    }
    .news ul li a div.con{
        height: 360px;
        border-radius: 0 5px 5px 0;
    }
}
@media only screen and (max-width: 1440px){
    .news_images img{
        height: 640px;
    }
    .banner p{
        transform: translateY(-32%);
    }
    .banner p span:nth-of-type(1){
        font-size: 16px;
        margin-bottom: 15px;
    }
    .banner p span:nth-of-type(2),.banner p span:nth-of-type(3){
        font-size: 34px;
        line-height: 40px;
    }
    .banner p span:nth-of-type(4){
        margin-top: 15px;
    }
    .banner p span:nth-of-type(4),.banner p span:nth-of-type(5),.banner p span:nth-of-type(6),.banner p span:nth-of-type(7){
        font-size: 15px;
        line-height: 20px;
    }
    .news{
        margin:40px 0;
    }
    .events{
        padding:40px 0;
    }
    div.tit h2{
        font-size: 32px;
        line-height: 35px;
        color: #333;
    }
    div.tit p{
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 1200px){
    .news_images img{
        height: 540px;
    }
    .banner p{
        transform: translateY(-50%);
    }
    .news ul li::before{
        display:none;
    }
    .events ul li{
        float: left;
        width: calc(49% - 25px);
        position: relative;
        margin-left: 25px;
        margin-top: 40px;
    }
    .events ul li a{
        padding: 15px 15px 15px 70px;
        border-radius: 5px;
    }
    .events ul li a p.time{
        width: 80px;
        border-radius: 5px;
        padding: 5px 0;
        font-size: 14px;
        top: -20px;
        left: -20px;
    }
    .events ul li a p.time span{
        font-size: 18px;
    }
    .events div.tit p{
        margin-bottom: 0;
    }
    a.more{
        margin-top:35px;
    }
}
@media only screen and (max-width: 1080px){
    .news_images img{
        height: 480px;
    }
}
@media only screen and (max-width: 960px){
    .news_images img{
        height: 440px;
    }
    .banner p span:nth-of-type(1){
    }
    .banner p span:nth-of-type(2),.banner p span:nth-of-type(3){
    }
    .banner p span:nth-of-type(4){
        margin-top: 10px;
    }
    .banner p span:nth-of-type(4),.banner p span:nth-of-type(5),.banner p span:nth-of-type(6),.banner p span:nth-of-type(7){
        font-size: 14px;
        line-height: 18px;
    }
    .news{
        margin:30px 0;
    }
    .events{
        padding:30px 0;
    }
     .news ul li a p.img{
        border-radius: 5px 0 0 5px;
    }
    .news ul li a p.img img{
        height: 320px;
        border-radius: 5px;
    }
    .news ul li a div.con{
        height: 320px;
        border-radius: 0 5px 5px 0;
        padding: 30px;
    }
    .events ul li{
        float:none;
        width:calc(100% - 30px);
    }
}
@media only screen and (max-width: 768px){
    .news{
        margin: 20px 0;
    }
    .events{
        padding:20px 0;
    }
    .news_images img{
        height: 320px;
    }
    .banner p span:nth-of-type(4),.banner p span:nth-of-type(5),.banner p span:nth-of-type(6),.banner p span:nth-of-type(7){
        display:none;
    }
    .banner p span:nth-of-type(1){
        font-size: 16px;
        margin-bottom: 15px;
    }
    .banner p span:nth-of-type(2),.banner p span:nth-of-type(3){
        font-size: 26px;
        line-height: 30px;
    }
    .news ul li a p.img img{
        height: 240px;
        border-radius: 5px;
    }
    .news ul li a div.con{
        height: 240px;
        border-radius: 0 5px 5px 0;
        padding: 20px;
    }
    .news ul li a div.con p.time{
        font-size: 14px;
        line-height: 20px;
    }
    .news ul li a div.con p.tit{
        font-size: 14px;
        line-height: 20px;
        max-height: 60px;
    }
    .news ul li a div.con p.txt{
        font-size: 12px;
        line-height: 20px;
        max-height: 40px;
    }
    .news ul li a div.con p.more{
        width: 120px;
        line-height: 40px;
        font-size: 14px;
    }
    div.tit h2{
        font-size: 26px;
        line-height: 30px;
    }
    div.tit p{
        margin-bottom: 10px;
        line-height: 20px;
    }
    .events ul li{
        margin-top: 30px;
    }
    .events ul li a{
        padding: 10px 10px 10px 55px;
        border-radius: 5px;
    }
    .events ul li a p.time{
        width: 70px;
        line-height: 25px;
        top: -15px;
        left:-25px;
    }
    .events ul li a p.time span{
        font-size: 17px;
    }
    .events ul li a p.tit{
        font-size: 14px;
        line-height: 25px;
        height: 50px;
    }
    a.more{
        margin-top:20px;
    }
}
@media only screen and (max-width: 640px){
    .news_images img{
        height: 260px;
    }
    .banner p span:nth-of-type(1){
        font-size: 14px;
        margin-bottom: 5px;
    }
    .banner p span:nth-of-type(2),.banner p span:nth-of-type(3){
        font-size: 20px;
        line-height: 25px;
        letter-spacing: 0;
        margin-bottom: 5px;
    }
}
@media only screen and (max-width: 580px){
    .news ul li.slick-active.slick-center a p.img{
       width:100%;
    }
    .news ul li.slick-active.slick-center a div.con{
        display:block;
    }
    .news ul li a div.con{
        width:100%;
        display: block;
        height: auto;
    }
    .news ul li a div.con p.tit{
      margin:10px 0;
    }
    .news ul li a div.con p.more{
       margin-top:10px;
    }
    .news ul li a p.img img{
        height:280px;
    }
    .news{
        margin:20px 0 0;
    }
}
@media only screen and (max-width: 480px){
    .news_images img{
        height: 220px;
    }
    .news ul li a p.img img{
        height:240px;
    }
}