@charset "utf-8";
    body,ul,li,div{ 
    padding: 0;
    margin: 0;
     }
li{
    list-style-type: none;
}
a{
    text-decoration: none;
}
a:hover{
    color: red;
}
input,img{
    border: none;
}
.clear{
    clear: both;
    height: 10px;
    width: 100px;
}
body{
    font-family: "微软雅黑"; 
}
p,h1,h2,h3,h4,h5,h6{
    padding: 0;
    margin:0;
}
/*
background-size: cover; 视觉差
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center; 


 img{ 放大
    transition: all 1s;
}
 img:hover{
    transform: scale(1.4);
}
.divw{  布局居中  
        width: 100%;
        height: 500px;
        border:1px solid red;
        justify-content:sflex-start 所有元素居左
        justify-content:sflex-end   所有元素居右
        justify-content:scenter     所有元素居中
        justify-content:sspace-between    所有元素两遍对齐
        justify-content:sspace-around     所有元素两遍留白 这五个元素只要一个就可以
        align-items:center;               水平居中
        display:-webkit-flex;             适应各种浏览器
        flex-direction: row;              可以换行
        flex-wrap: wrap;                  可以换行    
    }
.divw::before   ::after{ 伪元素，一个前一个后
        content: "1";
        width: 100px;
        height: 100px;
        border:1px solid red;
        text-align: center;
        line-height: 100px;
    }

    @media  (min-width:1600px) and (max-width:9999px){

   } 响应式



   .divb{   鼠标经过动画 
        width:230px;        
        height:270px;      
        position:fixed;     
        top: 50%;
        left: 50%;
        margin-left: -115px;
        margin-top: -135px;
        transition:all 0.3s linear; 
        border: 1px solid red;
        -webkit-transition:all 0.3s linear; 
        z-index: 999;
        overflow: hidden;
    }
    .divb .divn{
        width: 230px;
        height: 100%;
        position:absolute; left:0px; top:0px;
        top:-270px; transition:all 0.2s ease; 
        -webkit-transition:all 0.2s ease;
        background: rgba(0,0,0,0.5);
    }
    .divb:hover .divn{
        display:block; top:0px;
    }
    
    span{ position:absolute;left:15px; bottom:32px;transition:all 1s; -webkit-transition:all 1s;}

    .divb .divn:hover span{ 
        animation: img4 0.8s linear infinite alternate; 
        -webkit-animation: img4 1s linear infinite alternate;
    }

    @keyframes img4 {0% { bottom:32px;} 100% { bottom:27px;}}

    @-webkit-keyframes img4 {0% { bottom:32px;} 100% { bottom:27px;}}
*/
.rightNav{ position:fixed; width:140px;  left:0; top:100px; _position:absolute; text-align:left; cursor:pointer; background-image:url(about:blank);  }
.rightNav a{ display:block; position:relative; height:30px; line-height:30px; margin-bottom:2px; background:#fff; width:130px; overflow:hidden;  cursor:pointer; right:-100px;color: #000 }
.rightNav a:hover{ text-decoration:none; color:#1974A1;  }
.rightNav a:hover em{ background:#00b700}
.rightNav a em{ display:block; float:right; width:30px; background:#16c2a5; color:#fff; font-size:16px; text-align:center; margin-left:0px;}


@media  (min-width:1850px){
  .div1{
    margin: 0 auto;
    background: url(../image/bj-1.jpg) center center no-repeat;
    height:340px;
    position: relative;
    overflow: hidden;
}
.div11{
    margin: 0 auto;
    background: url(../image/bj-11.jpg) center center no-repeat;
    height:454px;
    position: relative;
    overflow: hidden;
}  
    
    
}
@media (min-width:1600px) and (max-width:1849px){
     .div1{
    margin: 0 auto;
    background: url(../image/bj-1.jpg) center center no-repeat;
    height:280px;
    position: relative;
    overflow: hidden;
    background-size: 100%;
}
.div11{
    margin: 0 auto;
    background: url(../image/bj-11.jpg) center center no-repeat;
    height:375px;
    position: relative;
    overflow: hidden;
    background-size: 100%;
}
}
@media (min-width:1200px) and (max-width:1599px){
   .div1{
    margin: 0 auto;
    background: url(../image/bj-1.jpg) center center no-repeat;
    height:221px;
    position: relative;
    overflow: hidden;
    background-size: 100%;
}
.div11{
    margin: 0 auto;
    background: url(../image/bj-11.jpg) center center no-repeat;
    height:299px;
    position: relative;
    overflow: hidden;
    background-size: 100%;
} 
    
}

/* Animation Three */
.three span {
  color: #b10e81;
  opacity: 0;
  transform: translate(-300px, 0) scale(0);
  animation: sideSlide .5s forwards;
}

@keyframes sideSlide {
  60% {
    transform: translate(20px, 0) scale(1);
    color: #b10e81;
  }
  80% {
    transform: translate(20px, 0) scale(1);
    color: #b10e81;
  }
  99% {
    transform: translate(0) scale(1.2);
    color: #b10e81;
  }
  100% {
    transform: translate(0) scale(1);
    opacity: 1;
    color: #fff;
  }
}
.animate {
  font-size: 130px;
  margin: 0;
  border-bottom: 2px solid #ccc;
}

.animate span {
  display: inline-block;
}
.animate span:nth-of-type(2) {
  animation-delay: .05s;
}

.animate span:nth-of-type(3) {
  animation-delay: .1s;
}

.animate span:nth-of-type(4) {
  animation-delay: .15s;
}

.animate span:nth-of-type(5) {
  animation-delay: .2s;
}

.animate span:nth-of-type(6) {
  animation-delay: .25s;
}

.animate span:nth-of-type(7) {
  animation-delay: .3s;
}

.animate span:nth-of-type(8) {
  animation-delay: .35s;
}

.animate span:nth-of-type(9) {
  animation-delay: .4s;
}

.animate span:nth-of-type(10) {
  animation-delay: .45s;
}

.animate span:nth-of-type(11) {
  animation-delay: .5s;
}

.animate span:nth-of-type(12) {
  animation-delay: .55s;
}

.animate span:nth-of-type(13) {
  animation-delay: .6s;
}

.animate span:nth-of-type(14) {
  animation-delay: .65s;
}
.div2{
    margin: 0 auto;
    background: url(../image/bj-2.png) center center   no-repeat;
    width: 1283px;
    height:960px;
    position: relative;
}
.div2 h5{
    background: url(../image/bt-1.png) center center no-repeat;
    width: 454px;
    height:157px;
    margin: 0 auto;
    position: relative;
    top: 70px;
    text-align: center;
    font-size: 40px;
    letter-spacing:16px;
    line-height: 180px;
    text-indent: 20px;
    color: #5c5c5c;
    font-weight: 100;
}

.div2  a, .div3  a, .div4  a, .div6  a{
    display: inline-block;
    width: 280px;
    height: 60px;
    text-align: center;
    position: absolute;
    bottom: 80px;
    left: 50%; 
    margin-left: -150px;
    background: #ffa902;
    color: #fff;
    letter-spacing:10px;
    line-height: 60px;
    border-radius: 50px;
    font-size: 26px;
}
.div2  a:hover, .div3  a:hover, .div4 a:hover, .div6 a:hover{
    background: #16c2a5
}

.div3{
    margin: 0 auto;
    background: url(../image/bj-3.jpg) center center  no-repeat;
    height:1267px;
    position: relative;
    overflow: hidden;
    background-size: cover; 
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center; 
}
.div3 ul{
    width: 1300px;
    height: 750px;
    margin: 0 auto;
    justify-content:scenter;     
    justify-content:space-between;
    align-items:center;               
    display:-webkit-flex;             
    flex-direction: row;  
    flex-wrap: wrap;
    position: relative;
    top: 260px; 
}
.div3 li{
    width: 317px;
    height: 242px;
    overflow: hidden;
}
.div3 li span{
    display: inline-block;
    width: 317px;
    height: 242px;
}
.div3 li span img{
    display: inline-block;
    width: 320px;
    height: 245px;
    transition: all 1s;
}
.div3 li span img:hover{
    transform: scale(1.4);
}
.div3 h5{
    background: url(../image/bt-2.png) center center no-repeat;
    width: 454px;
    height:157px;
    margin: 0 auto;
    position: absolute;
    top: 70px;
    left: 50%;
    margin-left: -227px;
    text-align: center;
    font-size: 40px;
    letter-spacing:16px;
    line-height: 180px;
    text-indent: 20px;
    color: #fff;
    font-weight: 100;
}
.div4 h5{
    background: url(../image/bt-3.png) center center no-repeat;
    width: 454px;
    height:157px;
    margin: 0 auto;
    position: absolute;
    top: 70px;
    left: 50%;
    margin-left: -226px;
    text-align: center;
    font-size: 40px;
    letter-spacing:16px;
    line-height: 180px;
    text-indent: 20px;
    color: #5c5c5c;
    font-weight: 100;
}
.div4{
    margin: 0 auto;
    width: 1300px;
    height:1360px;
    position: relative;
}
.div4 .top{
    width: 100%;
    height: 456px;
    position: relative;
    top: 300px;
}
.div4 .top .top1{
    position: absolute;
    top: 0;
    left: 0;
}
.div4 .top .top2{
    position: absolute;
    top: 100px;
    right: 0;
    width: 480px;
}
.top2 h2{
    color: #acacac;
    font-size: 44px;
    height: 60px;
}
.top2 h6{
    color: #000;
    height: 50px;
    font-size: 32px;
    font-weight: 100
}
.top2 h4{
    margin-top: 60px;
    color: 000;
    font-size: 22px;
    font-weight: 100
}
.div4 .botm{
    position: absolute;
    bottom: 260px;
    height: 300px;
    justify-content:scenter;     
    justify-content:space-between;
    align-items:center;               
    display:-webkit-flex;             
    flex-direction: row;  
    flex-wrap: wrap;
}
.botm1{
    width: 410px;
    height: 118px;
    position: relative;
}
.botm1 span{
    display: block;
    width: 40px;
    height: 100;
    font-weight: 800;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 30px;
    color:#484848;
}
.botm1 h3{
    position: absolute;
    top: 0;
    left: 60px;
    color: #363636;
    font-size: 32px;
}
.botm1 p{
    color:#484848;
    font-size: 20px;
    position: absolute;
    top: 60px;
    left: 60px;
    width: 300px;
}
.botm1:nth-child(1){
    border-right: 1px solid #484848
}
.botm1:nth-child(2){
    border-right: 1px solid #484848
}
.botm1:nth-child(5){
    border-right: 1px solid #484848
}
.botm1:nth-child(4){
    border-right: 1px solid #484848
}
.div5{
    margin: 0 auto;
    background: url(../image/bj-5.jpg) center center  no-repeat;
    height:1009px;
    position: relative;
    overflow: hidden;
    background-size: cover; 
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
     }
.div5 h5{
    background: url(../image/bt-4.png) center center no-repeat;
    width: 627px;
    height:157px;
    margin: 0 auto;
    position: absolute;
    top: 70px;
    left: 50%;
    margin-left: -313px;
    text-align: center;
    font-size: 40px;
    letter-spacing:16px;
    line-height: 180px;
    text-indent: 20px;
    color: #fff;
    font-weight: 100;
}
.div5 .a1{
    display: inline-block;
    width: 280px;
    height: 60px;
    text-align: center;
    position: absolute;
    bottom: 80px;
    left: 50%; 
    margin-left: -150px;
    background: #ffa902;
    color: #fff;
    letter-spacing:10px;
    line-height: 60px;
    border-radius: 50px;
    font-size: 26px;
}
.div5 .a1:hover{
     background: #16c2a5
}
.wrap {
    margin: 0px auto;
    position: relative;
    width: 1200px;
    height: 700px;
    top: 260px;
    
}
.content {
    position: absolute;
    width: 1200px;
    height: 532px;
}
.content li{
    position: absolute;
    background-size: 100% 100%;
    cursor: pointer;
}
.wrap a {
    position: absolute;
    display: none;
    z-index: 2;
    top: 50%;
    width: 60px;
    height: 60px;
    margin-top: -30px;
    font: 36px/60px "宋体";
    text-align: center;
    text-decoration: none;
    color: #fff;
    background: rgb(255, 100, 0);
    background: rgba(255, 100, 0, .6);
    transition: background 1s ease;
}
.wrap a:hover {
    background: rgb(255, 100, 0);
}
.prev {
    left: 30px;
}
.next {
    right: 30px;
}



.div6{
    margin: 0 auto;
    height:1020px;
    position: relative;
    overflow: hidden;
    background-size: cover; 
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
     }
.div6 h5{
    background: url(../image/bt-5.png) center center no-repeat;
    width: 627px;
    height:157px;
    margin: 0 auto;
    position: absolute;
    top: 70px;
    left: 50%;
    margin-left: -313px;
    text-align: center;
    font-size: 40px;
    letter-spacing:16px;
    line-height: 180px;
    text-indent: 20px;
    color: #000;
    font-weight: 100;
}
.div6 ul{
    width: 1280px;
    height: 570px;
    margin: 0 auto;
    justify-content:scenter;     
    justify-content:space-between;
    align-items:center;               
    display:-webkit-flex;             
    flex-direction: row;  
    flex-wrap: wrap;
    position: relative;
    top: 260px; 
}
.div6 li{
    width: 416px;
    height: 268px;
    overflow: hidden;
}
.div6 li span{
    display: inline-block;
    width: 416px;
    height: 268px;
}
.div6 li span img{
    transition: all 1s;
}
.div6 li span img:hover{
    transform: scale(1.4);
}
.div6 p{
     background: url(../image/xq-7.jpg) center center no-repeat;
     width: 1285px;
     height: 132px;
     position: absolute;
     bottom: 220px;
     left: 50%;
     margin-left: -643px;
}
