/* @import url("../fonts/index.css");
@import url("../lib/animation.css"); */
@charset "UTF-8";

* {
/*    transition: all 0.3s;
    -webkit-transition: all 0.3s;*/
}
*{  -webkit-font-smoothing: antialiased;  /* 统一macOS抗锯齿方式 */ }


/* 修改滚动条轨道的宽度和颜色 */
::-webkit-scrollbar {
  width: 10px; /* 设置滚动条宽度 */
}

/* 修改滚动条轨道的颜色 */
::-webkit-scrollbar-track {
  background: #f7f7f7; /* 设置轨道背景颜色 */
}

/* 修改滑块（滚动的部分）的颜色和样式 */
::-webkit-scrollbar-thumb {
  background: #e8e8e8; /* 设置滑块颜色 */
  border-radius: 5px; /* 设置滑块圆角 */
}

/* 鼠标悬停时的滑块样式 */
::-webkit-scrollbar-thumb:hover {
  background: #d3d3d3; /* 设置鼠标悬停时滑块的颜色 */
}

/* webkit, opera, IE9 （谷歌浏览器）*/
::selection { 
    background:#d9727a;
    color:#fff;
}
/* mozilla firefox（火狐浏览器） */
::-moz-selection { 
    background:#d9727a;
    color:#fff;
}

/* * {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
} */
body{ transform: scale(1); -webkit-transform: scale(1); -moz-transform: scale(1); -o-transform: scale(1); -ms-transform: scale(1); }
body{font-family:'HarmonyOSHans-Regular',"Manrope",Arial,sans-serif,"Microsoft YaHei", 微软雅黑,\9ed1\4f53,\5b8b\4f53, "Microsoft JhengHei";font-size:16px;font-weight:500;color:#000;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}

html,body{padding:0; margin:0; font-size:14px; -webkit-text-size-adjust: none;}
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, pre, form, fieldset, legend, button, input, textarea, th, td,img { margin: 0; padding: 0 ;font-weight: normal}
body, button, input, select, textarea label{outline:none; }
h1, h2, h3, h4, h5, h6 {}
address, cite, dfn, em{ font-style: normal }
i{font-style: normal}
ul, ol, dl { list-style: none }
a {color:#333; text-decoration: none;outline: none ; cursor: pointer;}
img { border: 0 }
input{outline:none;}
table { border-collapse: collapse; border-spacing: 0 }
.fl{float: left}
.fr{float: right}
.clear{clear: both}
.clearFix:after{content: "";display: block;height: 0;clear: both;*zoom:1}
.ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}/*超出部分省略号*/
.ellipsis2,.ellipsis3,.ellipsis4,.ellipsis5,.ellipsis6{display:-webkit-box;-webkit-box-orient:vertical;overflow:hidden}
.ellipsis2{-webkit-line-clamp:2}/*超出两行省略号*/
.ellipsis3{-webkit-line-clamp:3}/*超出三行省略号*/
.ellipsis4{-webkit-line-clamp:4}/*超出四行省略号*/
.ellipsis5{-webkit-line-clamp:5}/*超出5行省略号*/
.ellipsis6{-webkit-line-clamp:6}/*超出6行省略号*/

.inner{width: 1200px;margin: 0 auto;position: relative}

body{
    background-image: linear-gradient(to bottom, rgba(167, 207, 255, 0.5) 302px, rgba(255, 255, 255, 1) 650px);
}
/* 头部样式 */
.header{
    width:100%; 
    height: 228px; 
    clear: both;
    background:url(../images/header_bg.png) top center no-repeat; background-size: cover;
    /* position:fixed; top:0; z-index:999999;  */
    /* --un-backdrop-blur: blur(6px);
    -webkit-backdrop-filter: var(--un-backdrop-blur);
    backdrop-filter: var(--un-backdrop-blur); */
}
.header>div.inner{height: 228px;  display:flex;  justify-content: space-between; align-items: center; }
.header>.inner>.logo{width:700px; height:72px; display:block; background:url(../images/logo.svg) top left no-repeat; background-size: 100%;}
.header>.inner>.search{width:355px; height:38px; display:flex; align-items: center; justify-content: space-between;}
.header>.inner>.search>input{ width:300px; height:38px; border:0; padding-left:15px; background:#fff; border-radius:2px; font-size: 16px; color: #333;}
.header>.inner>.search>button{ width:81px; height:38px; border:0; background:#0649A5; border-radius:0 2px 2px 0; font-size: 16px; color: #fff; font-weight: 400; cursor: pointer; border:none;}
.header>.inner>.search>button::after{ border:0;}
.header>.inner>.search>button>i{ width: 18px; height: 18px; background:url(../images/search.svg) no-repeat; background-size: 100%; margin-left: 5px; display: inline-block; vertical-align: middle;}
.header>.inner>i{display: none;}
/* 导航 */
.nav{width:100%; height:73px; background: rgba(6, 73, 165, 1);}
.nav>ul{display:flex; justify-content: space-around; align-items: center;}
.nav>ul>li{padding:0 45px 0 75px; background-position:  45px 23px; background-repeat: no-repeat; position: relative;}
.nav>ul>li>a{font-size: 18px; color: #fff; font-weight: bold; line-height:73px; display: block;}
.nav>ul>li>a:hover{color:#fff;}
.nav>ul>li.on{color:#fff;}
.nav>ul>li.on>a{color:#fff;}
.nav>ul>li[data-cate="home"]{background-image:url(../images/icon1.svg); }
.nav>ul>li[data-cate="party"]{background-image:url(../images/icon2.svg); }
.nav>ul>li[data-cate="business"]{background-image:url(../images/icon3.svg); }
.nav>ul>li[data-cate="international"]{background-image:url(../images/icon4.svg); }
.nav>ul>li[data-cate="information"]{background-image:url(../images/icon5.svg); }
.nav>ul>li[data-cate="about"]{background-image:url(../images/icon6.svg); }
.nav>ul>li:hover{background-color: rgba(1, 63, 148, 1);}

/* 二级菜单 */
.nav>ul>li .subnav{
    width: 100%; 
    line-height:60px;
    text-align: center;
    background: rgba(1, 63, 148, 0.8);
    position: absolute; 
    top:73px; 
    left:0; 
    z-index:99999999;
    display:none;
}
.nav li:hover>.subnav{display:block;}

.nav .subnav li{
    width: 100%;
    height: 60px;
    display: block;
    text-align: center;
    border-bottom: 1px solid #fff;
    position: relative;
}
.nav .subnav li a{ font-size: 16px; color: #fff; display: block;}
.nav .subnav li:hover{background: rgba(1, 63, 148, 0.9);}
.nav .subnav li a:hover { color: #fff;}

.nav>ul>li>.subnav>li:hover>.subnav{display:block; left: 100%; top: 0px; position: absolute;}


.flex{display: flex; justify-content: space-between; align-items: flex-start;}


/* 二级页面banner */
.banner{
    width: 1200px;
    height: 150px; 
    text-align:center; 
    /* background-color:#6b6b6b; 
    background-repeat: no-repeat; 
    background-size: auto 100%; 
    background-position:50% 50%;
    background-size:cover;  */
    clear: both; 
    display:flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    margin: 20px auto;
}
.banner img{ width: 1200px; height: 150px; display:block;}
.banner h1{font-size: 40px; color: #fff; line-height: 65px; position: relative; margin-bottom: 30px;}
/* .banner h1::after{
    content: "";
    width: 77px;
    height: 4px;
    background: #DA251D;
    position: absolute;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
} */
.banner h2{font-size: 18px; color:#ffffff; line-height: 30px;margin-bottom:0px;}
.banner p{font-size: 18px; color:#f8f8f8; line-height: 30px;}

/*翻页*/
.pagination {
    width: 100%; 
    line-height:30px; 
    margin:20px auto 51px; 
    text-align: center; 
    display: flex; 
    justify-content: center;
    font-size:14px;
}
.pagination span{
    display:block;
    color: #333;
    height:30px;
    padding:0 10px; 
    border-radius: 2px;
    background: #f2f2f7;
    margin:0 5px;
}
.pagination a{
    display:block;
    color: #333;
    height:30px;
    padding:0 10px; 
    border-radius: 2px;
    background: #f2f2f7;
    margin:0 5px;
}

.pagination a:hover{background: #185AAE;color: #fff}
.pagination li.active span{background: #185AAE;color: #fff}

.loading{
    text-align: center;
    font-size: 16px;
    color: #999;
    padding:150px 0 100px;
    position: relative;
    display: none;
}
.loading::after{ 
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 4px solid #dbdbdb;
    border-top: 4px solid #da251d;
    position: absolute;
    top: 30%;
    left: 48%;
    transform: translate(-50%, -50%);
    animation: loading 1.5s infinite;
    animation-timing-function: linear;
}
@keyframes loading{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}

.empty{
    line-height: 200px;
    text-align: center;
    display: none;
}


/*版权区域*/
.footer{font-size:14px;line-height: 28px; color: #fff; background:#185AAE;  margin-top: 0px; padding-top: 20px; padding-bottom: 64px; clear: both;}
.footer a{color: #fff; margin:0 5px; white-space: nowrap;}
.footer .yqlj{ display: flex; margin-bottom: 20px; border-bottom: #CCCCCC 1px solid; padding-bottom: 20px; align-items: center;}
.footer .yqlj .item{
    width: auto; 
    height: 35px;
    padding:0 30px; 
    margin-right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
}
.footer .yqlj .item::after{ 
    content: '▾'; 
    width: 10px; 
    height: 10px; 
    color: #fff; 
    position: absolute; 
    right: 10px; 
    top: 5px;
}
.footer .yqlj .item:hover{
    background: rgba(1, 63, 148, 0.8);
}
.footer .yqlj .item:hover::after{ 
    content: '▴'; 
}
.footer .yqlj .item div{
    display: none;
}
.footer .yqlj .item:hover div{
    transition: all 0.3s ease-in-out;
    position: absolute;
    bottom: 35px;
    left: 0px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
    background: rgba(1, 63, 148, 0.8);
    padding:20px 0;
    line-height: 35px;
}
.footer .yqlj .item:hover div a{ 
    width: calc(100% - 40px);
    display: block;
    padding:0 20px;
    margin: 0;
}
.footer .yqlj .item:hover div a:hover{ 
    color: #fff;
    background: rgba(1, 63, 148, 0.8);
}

.footer .inner img{
    width: 56px;
    height: 68px;
    margin: 8px 30px 0 0;
    float: left;
}

/*二维码开始*/
.enyzm{
	position:fixed;
	right:10px;
	bottom:145px;
	z-index:9999;
    display: flex;
    flex-direction: column;
}
.enyzm a{
    width:60px;
	height:60px;
    display:inline-block;
}
.enyzm a:nth-child(1){
	margin-bottom:10px;
	background:url(/static/index/img/12a.png) no-repeat left center;
}
.enyzm a:nth-child(2){
	background:url(/static/index/img/58.png) no-repeat left center;
}
.enyzm a:nth-child(2):hover{
	background:url(/static/index/img/59.png) center;
}
.enyzm a:hover>div{
    display:flex;
}
.enyzm a>div{
	width:230px;
	height:140px;
	border:1px solid #DCDEE3;
	position:fixed;
	right:74px;
	z-index:9999;
	background:#eff1f4;
	display:none;
    justify-content: space-around;
}
.enyzm a>div>div{
    width: 106px;
    text-align: center;
}
.enyzm a>div>div p{
	text-align:center;
}
.enyzm a>div>div img{
	display:inline-block;
	margin-top:6px;
	width: 106px;
	height: 106px;
}
/*二维码结束*/

/* 媒体查询 */
@media only screen and (max-width: 1200px) {
    
    body{zoom:0.840;}
}

@media only screen and (max-width: 1024px) {
    body{zoom:0.630;}
}

@media only screen and (max-width: 768px) {
    /* *{font-size: 0.45rem;} */
    body{zoom:1;}
    .inner{ 
        width: 96%;
        margin: 0 auto;
        padding:0;
    }
    .header{
        height: 10vw;
    }
    .header>div.inner{
        width: 100%;
        height: 10vw;
    }
    .header>.inner>.logo {
        width: 50vw;
        height: 5vw;
        margin: 0 auto;
    }
    .header>.inner>.search{
        display: none;
    }
    .header>.inner>i{
        width: 6vw;
        height: calc(6vw - 10px);
        position: absolute;
        right: 10px;
        top: 10px;
        cursor: pointer;
        z-index: 999999;
        display: block;
        border-top:3px #fff solid;
        border-bottom:3px #fff solid;
    }
    .header>.inner>i::after{
        content: '';
        display: block;
        width: 100%;
        height: 5vw;
        position: absolute;
        right:0px;
        top:1.5vw;
        z-index: 3;
        border-top:3px #fff solid;
    }

    .nav{
        width: 100vw;
        height: 100vh;
        position: fixed;
        top:0px; 
        right:0;
        z-index: 999999;
        flex-direction: column;
        justify-content: normal;
        background: rgba(0, 0, 0, .88);
        margin:0;
        padding-top:60px;
        overflow: auto;
        display: none;
    }
    .nav>i{
        width: 6vw;
        height: 6vw;
        line-height: 6vw;
        position: absolute;
        right: 10px;
        top: 10px;
        cursor: pointer;
        z-index: 999999;
        display: block;
    }
    .nav>i::after{
        content: '✕';
        display: block;
        width: 6vw;
        height: 6vw;
        line-height: 6vw;
        text-align: center;
        color:#fff;
        font-size: 30px;
        position: absolute;
        right: 0px;
        top: 0px;
        cursor: pointer;
        z-index: 999999;
    }
    
    .nav>ul{
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
    }

    .footer{
        height: 14vw;
    }
    .footer>.yqlj{
        display: none;
    }
    .footer>.inner{ 
        text-align: center;
    }
    .footer>.inner img{
        display: none;
    }


    
}