@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Poppins',sans-serif;
}
*, ::after, ::before {
    box-sizing: border-box;
}
a{text-decoration:none;}

li{list-style:none;}
body{
    min-height:100vh;
    background: #ffffff;
}

/* 垂直滚动条样式 */
/* 宽度 */
::-webkit-scrollbar {
    width: 12px;
}
/* 背景色 */
::-webkit-scrollbar-track {
    background-color: #f5f5f5;
}
/* 滑块颜色 */
::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
}

/* 水平滚动条样式 */
/* 高度 */
::-webkit-scrollbar {
    height: 12px;
}
/* 背景色 */
::-webkit-scrollbar-track {
    background-color: #f5f5f5;
}
/* 滑块颜色 */
::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
}



header{
    position:fixed;
    top:0;
    z-index:999999;
    height:86px;
    width:100%;
    min-height:86px;
    background:#43a5f6;
    background:rgba(67,165,246,1);
    padding:0 100px;
    display: flex;
    justify-content:space-between;
    align-items:center;
}
header .logo{
    color:#ffffff;
    font-size:1.75em;
    font-weight:600;
}
header ul{
    position:relative;
	
}

header ul li{
    position:relative;
    float:left;
	
}
header ul li a{
    color:#ffffff;
    font-size:1.1em;
    padding:30px 25px;
    display:flex;
    justify-content:space-between;
 
}
header ul li a:hover{
    background:#2b93e3;
    /* background:rgba(246,246,246,0.9); */
}
header ul li ul{
    position:absolute;
    left:0;width:260px;
    background:rgba(255,255,255,0.9);
    display:none;
}
header ul li:hover > ul{
    display:block;
}
header ul li:hover ul li{
    position:relative;
    width:100%;
    border:0px solid rgba(0,0,0,0.2);
}
header ul li ul li a{
    color:#333333;
    font-size:1em;
    padding:10px 25px;
    border:0;
}
header ul li ul li a:hover{
    background:rgba(246,246,246,0.9);
}
header ul li ul li ul{
    top:0;
    left:200px;
}
header ul a b{
    font-weight: normal;font-size: .8em;line-height:2em;padding-left:.6em;
}
header ul li ul li:hover b{
    transform:rotate(-90deg);
    transition:transform .3s;
}
.set_language{
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 24px;
    font-family: OpenSans;
    position: relative;
    color:#ffffff;

}
.set_language a{color:#ffffff;}
.set_line{
    box-sizing:border-box;
    padding-left:15px;padding-right:15px;
}
.set_line span{
    display:block;
    width:1px;height:15px;
    background: #ffffff;;
    
}

.l_btn1 img{
    vertical-align: middle;
}
.l_btn2{
    position:relative;
}
.l_btn2 img{
    vertical-align: bottom;
}

.language_list{
    position:absolute;
    right:0;top:22px;
    width:180px;
    background:#ffffff;
    display:none;
    border-radius:3px;
}
.l_btn2:hover .language_list{display:block;}
.language_list li{
    padding:0;float:left;
    width:100%;
}
.language_list li a{
    color:#333333;padding:5px 10px;
}
.language_list li a:hover{color:#ffffff;}

.l_btn4{background:#2b93e3;vertical-align:middle;}


/*now, make it responsive*/
@media (max-width:1200px){

    header{
        padding:10px 20px;
        background:rgba(67,165,246,0.2);
    }
    header .logo img{
        width:60%;height:60%;
    }
    header nav{
        position:absolute;
        width:100%;
        top:66px;
        left:0;
        /* background:#445964; */
        background:rgba(68,89,100,0.9);
        height:auto;overflow:hidden;
        display:none;
    }
    header nav ul li{
        width:100%;
    }
    header nav ul li a{
        color:#ffffff;
        font-size:1.0em;
        padding:10px 25px;
     
    }
    header nav ul li ul{
        position:relative;
        width:100%;
    }
    header nav ul li ul li ul{
        top:0;left:0;
    }
    header nav ul li:hover ul li{
        background:#546e7b;
    }
    header nav ul li:hover ul li a{color:#f6f6f6;}
    .menuToggle{
        position:relative;
        width:35px;
        height:40px;
        cursor:pointer;
        display:flex;
        justify-content:center;
        align-items:center;
    }
    .menuToggle::before{
        content:'';
        position:absolute;
        width:100%;
        height:2px;
        background:#ffffff;
        transform:translateY(-12px);
        box-shadow:0 12px #ffffff;
    }
    .menuToggle::after{
        content:'';
        position:absolute;
        width:100%;
        height:2px;
        background:#ffffff;
        transform:translateY(12px);
    }
    header.active .menuToggle::before{
        transform:rotate(45deg);
        box-shadow:0 0 #ffffff;
    }
    header.active .menuToggle::after{
        transform:rotate(-45deg);
    }
    header.active nav{
        display:inline;
    }
    .set_language{display:none;}
}

@media (min-width:1201px)and (max-width: 1360px){
    header ul li a{
        color:#ffffff;
        font-size:.9em;
        padding:20px 15px;
        display:flex;
        justify-content:space-between;
     
    }
}



/* 轮播图 start*/
.swiper_block{
    width: 100%;

    
}
.swiper-container {
    width: 100%;
    /* padding-top:66px; */
    /* height: calc(100vh - 66px);  */
    height: 100vh; 
	height:auto;
    position: relative;
 }
 .swiper-zoom-container > img{
    object-fit: fill;
    height: 100%;
    width:100%;
 
  }
 .swiper-slide {
    overflow: hidden;
 }
 .swiper-zoom-container >.txtdesc{
    position: absolute;
    display: flex;
    top:0;
    left:0;
    width:100%;
    height:100%;
    box-sizing: border-box;
 }
 .swiper-zoom-container >.txtdesc h1{
    font-size:5em;color:#ffffff;
    line-height:2;
 }
 .swiper-zoom-container >.txtdesc p{
    font-size:2em;color:#ffffff;
    line-height:2;
 }
 .swiper-zoom-container >.txtdesc p:last-child{
    padding-bottom: 80px;
 }
 .swiper-zoom-container >.st1{
    flex-direction: column;
    align-items: left;
    justify-content:center;
    text-align:left;
    padding-left:5%;
 }
 .swiper-zoom-container >.st2{
    flex-direction: column;
    align-items: center;
    justify-content:center;
    
    
 }
 .swiper-zoom-container >.st3{
    flex-direction: column;
    
    justify-content:center;
    text-align: right;
    padding-right:150px;
 }

 .swiper-pagination-bullet {
   width: 1rem!important;
   height: 1rem!important;
   display: inline-block;
   border-radius: 100%;
   background: rgba(255,255,255,.5)!important;
   opacity: .8;
}
.swiper-pagination-bullet-active{
    background: rgba(255,255,255,1)!important;
}
@media screen and (max-width: 1024px) and (min-width: 0px){
    .swiper-container{
        height:250px;
     }
     /* .swiper-container>img{
        height:100%;width:100%;
     } */
     .swiper-zoom-container > img{
        object-fit: fill;height: 100%;
      }
     .swiper-button-prev,.swiper-button-next{
        display: none !important;
     }
  
     .swiper-zoom-container >.txtdesc{
        position: absolute;
        display: flex;
        top:0;
        left:0;
        width:100%;
        height:100%;
        box-sizing: border-box;
     }
     .swiper-zoom-container >.txtdesc h1{
        font-size:2em;color:#ffffff;
        line-height:60px;
        padding-top:20px;
     }
     .swiper-zoom-container >.txtdesc p{
        font-size:1em;color:#ffffff;
        line-height:26px;
     }
     .swiper-zoom-container >.txtdesc p:last-child{
        padding-bottom: 0px;
     }
     .swiper-zoom-container >.st1{
        flex-direction: column;
        align-items: left;
        justify-content:center;
        text-align:left;
        padding-left:10px;
     }
     .swiper-zoom-container >.st2{
        flex-direction: column;
        align-items: center;
        justify-content:center;
        
        
     }
     .swiper-zoom-container >.st3{
        flex-direction: column;
        
        justify-content:center;
        text-align: right;
        padding-right:10px;
     }
}

/* 轮播图 end */


/*work start -----------------------------------------------------------------*/
.section_three{}
.h_work{}
.work_desc{
    padding:3em 10%;
    text-align:center;
}
.work_desc h1{font-size: 3.8em;font-weight: 300;}
.work_desc p{}
.work_img{
    width:100%;
}
.work_img li{
    float:left;
    width: 33.3333333%;
    padding: 0;
    position: relative;
    overflow: hidden;
}
.work_img li img{
    display: block;
    transform: scale(1.005);
    transition: all 0.6s;
}

.work_img li .bottom-text{
    position: absolute;
    bottom: 0;
    color: #fff;
    font-family: OpenSans;
    padding:1em;
}
.work_img li .bottom-text a{
	color:#333333;
	text-shadow: 1px 2px 0px rgba(255, 255, 255, 0.8);
}
.work_img li .bottom-text .text1{font-size:2.2em;}
.aRed:hover p{color:#ff0000;}
.work_img li .bottom-text .text2{font-size:1.0em;}
.work_img .item:hover img{
    transform: scale(1.06);
    transition: all 0.6s;
}

@media screen and (max-width: 1024px) and (min-width: 0px){
    .work_desc{
        padding:15px 10px;
        text-align:center;
    }
    .work_desc h1{font-size: 36px;font-weight: 300;}
    .work_desc p{}
    .work_img{
        width:100%;
    }
    .work_img li{
        float:left;
        width: 100%;
        padding: 0;
        position: relative;
        overflow: hidden;
    }
    .work_img li img{
        display: block;
        transform: scale(1.005);
        transition: all 0.6s;
        width:100%;
    }
    
    .work_img li .bottom-text{
        position: absolute;
        bottom: 0;
        color: #fff;
        font-family: OpenSans;
        padding:1em;
    }
    .work_img li .bottom-text a{color:#ffffff;}
    .work_img li .bottom-text .text1{font-size:1.5em;}
    .aRed:hover p{color:#ff0000;}
    .work_img li .bottom-text .text2{font-size:1.0em;}
    .work_img .item:hover img{
        transform: scale(1.06);
        transition: all 0.6s;
    }
    
}

/*work end*/

/*leri start ----------------------------------------------------*/
.imttxtrotation_block{
    clear:both;box-sizing: border-box;width:100%;
}
.imgtxgTitle{
    padding:4em 10%;
    text-align:center;
}
.imgtxgTitle h1{font-size: 3.8em;font-weight: 300;}

.slide2{height:auto!important;border:0px #cc0000 solid;padding:2px 35px 55px 35px;

padding:0;

}
.slide2 .swiper-pagination-bullet {
    width: .8rem!important;
    height: .8rem!important;
    display: inline-block;
    border-radius: 100%!important;
    background:#333333!important;
    opacity: 1;
 }

 .slide2 .swiper-pagination-bullet-active{
    background:#cc0000!important;
 }

 .imgtxtrotation{
    margin:0 auto;width:1140px;
    position:relative;
    /* padding:50px;
    position:relative; */
    
 }
.rotation_img{
    /* z-index: 20;height:300px;position:absolute;left:0; */
    width:50%;background-color: #cccccc;display: inline-block;
}
.rotation_img img{z-index: 221;}
.rotation_img img{
    max-width:100%;
}
.rotation_txt{
    
    background-color: #ffffff;
    position:absolute;
    width:55%;
    height:90%;
    right:0;top:5%;
    font-family: OpenSans;
    padding: 24px 30px 15px 70px;
    
    box-shadow: 1px 3px 12px 1px rgba(54, 41, 0, 0.19);
}
.rotation_txt .imgtxt_title{
    font-weight: bold;
    display: flex;
    align-items: center;
    color:#ff0000;
    font-size:1em;
}
.rotation_txt .imgtxt_htitle{
    font-weight: 300;
}
.rotation_txt .imgtxt_desc{
    line-height: 24px;margin-bottom:20px;
}
.rotation_txt .btn{
    background: #fb3a4a;
    border-radius: 24px;
    font-size: 18px;
    line-height: 24px;
    color: #fff;
    font-weight: bold;
    padding: 10px 35px;
    text-decoration: none;
    background-size: 200% auto;
    transition: 0.5s;
}
.rotation_txt a{
	clear:both;
}


@media screen and (min-width: 1400px) {
    .imgtxtrotation{
        width:1320px;
        max-width:1320px;
    }
}
@media screen and (max-width: 1200px) {
    .imgtxgTitle h1{font-size: 1.0em;font-weight: 500;}
    .slide2{margin:0 auto;width:100%;height:auto!important;}
    .imgtxtrotation{
        margin:0 auto;width:100%;
        position:relative;
        /* padding:50px;
        position:relative; */
        height:auto;
        
     }
    .rotation_img{
        /* z-index: 20;height:300px;position:absolute;left:0; */
        width:100%;background-color: #cccccc;height:auto;
    }
    .rotation_img img{
        width:100%;max-width: 100%;height:100%;
    }
    .rotation_txt{
        
        font-family: OpenSans;
        position: relative;
        left: 12px;
        padding: 34px 5px;
        height: 100%;
        width: 100%;
        margin: 0 auto;
        box-shadow: none;
    }
}



/*leri end*/


/*show1 start*/
.container_show1{
    margin:0 auto;width:1140px;
    display:flex;
    flex-direction: row;
}
.container_show1>div {
    box-sizing: border-box;
    width:33.3333%;
    padding:0px;
}
.container_show1 .show1_one{
    padding-left:5%;
    display:flex;
    flex-direction: row;
    align-items: center;
}
.container_show1 .show1_img{

}
.container_show1 .show1_con{
    display:flex;
    flex-direction: column;
    align-items: center;
    padding-left:5%!important;
}
.show1_con p{text-align: left;font-size:1rem;width:100%;}

@media screen and (max-width: 1024px) {
    .container_show1{
        width: 100%!important;
        flex-direction: column;
    }
    .show1_one {
        padding-left:5px!important;
        width:100%!important;
    }
    .show1_con{}
    .show1_con p{text-align: left;font-size:1rem;width:100%;}
    .show1_img img{ width:50px;height:50px;}
    .show1_con{padding-left:5px!important;font-size:12px;}
}
@media screen and (min-width: 1400px) {
    .container_show1{
        width:1320px;
        max-width:1320px;
    }
}

@media screen and (max-width: 1200px) {

}
/*show1 end*/



/*container2 start*/
.container2{
    width:100%;
    background: #003366;
    clear:both;
    overflow: hidden;
    margin-top:100px;
    height:auto;
}
.container2_title{
    padding:4em 10%;
    text-align:center;
}
.container2_title111 h1{font-weight: 300;color:#ffffff;}
.container2_con{

}
.m_h1 h1{font-size: 3.8em;font-weight: 300;color:#ffffff;}


.container2_con{}
.container2item{
    
    float:left;
    width:33.333333%;
}
.small-item1{
    position:relative;
}
.small-item1 .img-fluid{
    display: block;
    vertical-align: middle;
    transition: all 0.6s;
}
.small-item1 .bofang{
    position: absolute;
    width: 61px;
    height: 61px;
    top: 50%;
    left: 50%;
    z-index: 111;
    margin-top: -30px;
    margin-left: -30px;
}
.container2item:hover .small-item1 .bg{
    background: rgba(0, 0, 0, 0.6);
}
.container2item:hover .small-item2{
    background: rgba(255, 255, 255, 0.9);
}
.container2item:hover .small-item2 p{
    color:#333333;
}
.small-item1 .bg{
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: 0;
    z-index: 222;
}
.small-item2{
    padding: 30px 0px 100px 40px;
}
.small-item2 p{margin-bottom: 0;
    font-family: OpenSans;
    font-size: 18px;
    color: #fff;
}



@media screen and (max-width: 1200px) {
    .container2{
        width:100%;
    }
    .container2_title h1{
        font-size: 2rem;
    }
    .container2item{
        float:left;
        width:100%;
    }
    .flex_action{
        /* display:flex;
        flex-direction:row;
        justify-content: space-between; */
    }
    .flex_action:nth-child(2){
        /* justify-content: right; */
        border:10px #cc0000 solid;
    }
    .small-item1{
        float:left;
        width:50%;
        overflow: hidden;
    }
    .small-item1 .img-fluid img{
        width:calc(100vw * 0.5);
    }
    .small-item2{
        float:right;
        width:50%;
        padding: 20px;
        
    }
    .container2item:nth-child(2) .flex_action .small-item1{
        float:right!important;
    }
    .container2item:nth-child(2) .flex_action .small-item2{
        float:left!important;
    }
    .small-item2 p{line-height:2;font-size:1.5rem;}
    
    .small-item1 .bofang{
        position: absolute;
        width: 61px;
        height: 61px;
        top: 50%;
        left: 50%;
        z-index: 111;
        margin-top: 0px;
        margin-left: 0px;
    }
    .small-item1 .bg{
        display:none;
    }
 
}
@media screen and (max-width: 960px) {
    .flex_action{
        display:flex;
        flex-direction:column;
        overflow: hidden;
    }
    .small-item1{
        width:100%!important;overflow: hidden;
    }
    .small-item2{
        width:100%!important;overflow: hidden;
        
    }
    .small-item1 .bofang{
        position: absolute;
        width: 61px;
        height: 61px;
        top: 40%;
        left: 40%;
        z-index: 111;
        margin-top: 0px;
        margin-left: 0px;
    }
    .small-item2 p{
        font-size:16px;
    }
    .small-item1 .img-fluid{
        width:100%;
    }
    .small-item1 .img-fluid img{
        width:calc(100vw)!important;
        max-width:100%!important;
    }
}
/*container2 end*/


/*server start*/
.container3{
    margin:0!important;
    padding:0!important;
    position:relative;

    margin-top: -16px;
    display: flex;
    justify-content: center;
    align-content: center;

}
.container3 img{
    position:absolute;
    left:0;top:0;
    z-index: -20;
}
.img-fluid{
    width:100%;
    max-width: 100%;
    height: auto;
}
.container3 .content3{
    padding:5%;
    color:#ffffff;
}
.container3 .content3 h1{font-size:56px;color:#ffffff;}
.container3 .content3 h1 a{
	color:#ffffff;
	text-shadow: 1px 2px 0px rgba(0, 0, 0, 0.8);
}
.container3 .content3 p{
    width: 75%;
    font-size: 22px;
    margin-top: 3%;
    padding-bottom:50px;
    line-height:2;
	text-shadow: 1px 2px 0px rgba(0, 0, 0, 0.8);
}
.container3 .content3 .btn {
    clear:both;
    width: 180px!important;
    height: 56px;
    font-size: 18px;
    padding: 16px 50px;
    margin-top: 13%;
    color: #fff;
    background-image: linear-gradient(to right, #f60e10, #fe4754);
}
.container3 .content3 .btn a{
    background-color: #cc0000;
}
.server_block{}

@media screen and (max-width: 1200px) {
    .container3 .content3 h1{font-size:20px;color:#ffffff;}
    .container3 .content3 p{
        width: 96%;
        font-size: 12px;
        line-height: 22px;
        margin-top: 5px;
        padding-bottom:20px;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 2!important;
        display: -webkit-box;
        -webkit-box-orient: vertical;
    }
    .container3 .content3 .btn {
        font-size: 12px;
        padding: 6px 30px;
    }
}
/*server end*/


/*container4 news start*/
.container4{
    clear:both;border:0px #cc0000 solid;margin-top:0px;
    background:#f6f6f6;
    padding-bottom: 120px;
}
.container_news_block{
    
}
.news_block_title{
    display:flex;
    flex-direction: row;
    justify-content:space-between;
    align-items: center;
    padding-top:5rem;
}
.news_block_title h1{
    font-size:56px;font-weight: 300;
}
.news_block_title a{
    font-size:22px;color:#fb3a4a;
}
.news_block_con{margin-top:2rem;}
.news_block_con ul{}
.news_block_con li{
    color:#333333;
    position: relative;
    padding: 26px 25px !important;
    margin:5px 0px;
    background:#ffffff;
}
.news_block_con li span{padding-right:60px;}
.news_block_con li a{color:#333333;}
.news_block_con li:hover{
    background:#fb3a4a;
    color:#ffffff;
}
.news_block_con li:hover a{
    background:#fb3a4a;
    color:#ffffff;
}
@media screen and (max-width: 1200px) {
    .container4{
        clear:both;border:0px #cc0000 solid;margin-top:0px;
        background:#cccccc;
    }
    .container_news_block{
        
    }
    .news_block_title{
        margin-top:0;
        padding-top:3rem;
    }
    .news_block_title h1{
        font-size:22px;
    }
    .news_block_title a{
        font-size:14px;color:#fb3a4a;
    }
    
    .news_block_con li{
        display:flex;
        flex-direction: column;
        overflow: hidden;
        text-overflow: ellipsis;
        border-bottom:2px #ccc solid;
    }
    .news_block_con li a:hover{
        color:#ffffff;
    }
}
@media screen and (min-width: 1360px) {

    .container4 .container{
        width:1360px!important;
    }
}
/*container4 news end*/


/*container5 start*/
.container5{
    position: relative;
    width:100%;
    margin-left:auto;margin-right:auto;
}
.container_map{
    max-width: 100%;
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    justify-content: center;
    border:10x #cc0000 solid!important;

    
}
.map_title{
    position: absolute;margin:0 auto;
    width:100%;
    max-width: 1140px;
    
}
.map_title h1{
    font-size: 2.8em;font-weight: 300;color:#ffffff;
    text-align: center;margin-top:6%;
}
.container_map .brand {
    position:absolute;display:block;
    top:0;right:0;margin:2%;
}
.map_img{
    position:absolute;left:0;top:0;
    z-index: -20;width:100%;height:auto;
    overflow: hidden;
}
.map_img img{
    vertical-align: middle;
}
.map_img img{width:100%;height:auto;}

.container5 .container_map .map1 {
    background: #f40000;
    position: absolute;
    left: 10%;
    top: 26.9%;

}
.container5 .container_map .map2 {
    background: #f40000;
    position: absolute;
    left: 40.6%;
    top: 171px;

}
.container5 .container_map .item{
    z-index: 50;
    background: #f40000;
    border-radius: 50%;
    position: relative;
    width: 10px;
    height: 10px;
}
.container5 .container_map .item span {
    z-index: 40;
    position: absolute;
    display: block;
    width: 8px;
    height: 8px;
    left:1px;top:1px;
    border-radius: 50%;
    animation: myfirst 3s infinite;
    overflow: hidden;
    box-shadow: 0px 0px 2px #f40000 inset!important;
    animation-delay: 2s;
    
}






.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    width: 100%;
    padding-right: var(--bs-gutter-x,.75rem);
    padding-left: var(--bs-gutter-x,.75rem);
    margin-right: auto;
    margin-left: auto;
    
}
.container-fluid {
    padding: 0;
}
.section6 {
    margin-top: -16px;
    position: relative;
}
.section6 .content .section6-content {
    position: absolute;z-index: 30;
}
.section6{padding:0!important;}
.section6 .content {
    max-width: 100%;
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    justify-content: center;
}
.section6 .content .section6-content {
    position: absolute;
}
.section6 .content .section6-content h1 {
    color: #fff;
    font-family: OpenSans;
    text-align: center;
    font-size: 2.5rem;
}
.section6 .content .section6-content .brand {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
}
@media (max-width: 996px){
    .section6 .content .section6-content h1 {
        font-size:1.5rem!important;
        margin-top:5%;
    }
    .section6 .content .section6-content .brand {
        width:200px; margin-top:1%;
    }
}
@media (min-width: 1200px) and (max-width: 1399px){
    
    .section6 .content .section6-content .brand {
        margin-top: 3%;
    }
    .section6 .content .section6-content h1 {
        margin-top: 5%;
    }
}
@media (min-width: 1400px){
    .section6 .content .section6-content .brand {
        margin-top: 4%;
    }
    .section6 .content .section6-content h1 {
        margin-top: 7%;
    }
}
.section6 .content .img-fluid {
    width: 100%;
}
.section6 .content .img-fluid {
    max-width: 100%;
    height: auto;
    z-index: 10;
    
}
/* .section6 .content .img-fluid{
    z-index: 10;
} */
img{
    vertical-align: middle;
}
.section6 .content .spain {
    background: #f40000;
    position: absolute;
    left: 8.5%;
    top: 37.5%;
 
}
.section6 .content .canada {
    background: #f40000;
    position: absolute;
    left: 68%;
    top: 27.5%;
}

.section6 .content .item {
    background: #f40000;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    
    z-index:80;

}
.section6 .content .item p {
    position: absolute;
    border-radius: 50%;
    animation: myfirst 3s infinite;
    box-shadow: 0px 0px 2px #f40000 inset;
    
}
.section6 .content .item span {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: block;
    border-radius: 50%;
    animation: myfirst 3s infinite;
    box-shadow: 0px 0px 2px #f40000 inset;
    animation-delay: 3s;
}
@keyframes myfirst{
    0% {
        transform: scale(1);
    }
    
    100% {
        transform: scale(3);
    }
}
@media (min-width: 1200px) and (max-width: 1399px){
    .section6 .content .item {
        width: 8px;
        height: 8px;
    }
}
@media (min-width: 1400px){
    .section6 .content .item {
        width: 10px;
        height: 10px;
        border:1px #cc0000 solid;
    }
}



/* @media screen and (min-width: 1400px) {
    .map_title h1{
        font-size: 3.8em;font-weight: 300;color:#ffffff;
        text-align: center;margin-top:6%;
    }
    .map_title{
        position: absolute;margin:0 auto;
        width:100%;
        max-width: 1360px;
        
    }
} */

/*container5 end*/


/*container8 start*/
.container8{
    background: #003366;
    color: #fff;
    margin-top: -16px;
    padding-top: 60px;
    padding-bottom: 50px;
}
.prolist_block{
    margin:0 auto;width:90%;
}
.prolist_block ul{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
}
.prolist_block ul li{

}
.prolist_block ul li a{
    font-size:.8rem;
    white-space:normal;
    word-break:break-word;
}
.prolist_block ul li dt a{
    color:#cc0000;font-weight: 500;font-size:1.2rem;
}
.prolist_block ul li dd a{
    color:#ffffff;font-weight:400;
}

@media (min-width: 992px) and (max-width: 1399px){

    .prolist_block{
        margin:0 auto;width:90%;
    }
    .prolist_block ul li dd a{
        font-size:.8rem;
    }
}
@media (min-width: 1400px){
    .prolist_block{
        margin:0 auto;width:1360px;
    }
    .prolist_block ul li dd a{
        font-size:.9rem;
    }
}
@media (max-width: 992px){
    .container8{
        display:none;
    }
}


/*container8 end*/


/*container9 start*/
.container9{
    text-align: center;
    padding: 10px;
    background: #002e5b;
    line-height: 30px;
    color: #fff;
    margin-top: -16px;
}
.footer_block{
    padding-top:20px;
}
.footer_block .line1 {
    font-family: OpenSans;
    font-size: 14px;
    margin-bottom: 0;
}
.footer_block .line2 {
    font-family: MicrosoftYaHei;
    font-size: 14px;
    margin-bottom: 0;
}

/* container9 end */

.swiper-zoom-container img{
	width:100%;
}