body{color:#595959;}
a{color:#595959;}
/* 主体宽度 */
.body{
    font:14px PingFangSC-Regular,Tahoma,Microsoft Yahei,sans-serif,helvetica,Segoe UI;
    width:100%;
    max-width:1320px;
    margin:0 auto;
    padding:0 10px;
    box-sizing: border-box;
}

/* layui优化 */
.layui-btn{ line-height: 36px;}
.layui-btn-sm{ line-height: 30px;}
@media screen and (min-width:0px) and (max-width:768px){
    .layui-col-xs-space5{margin:0 -5px;}
    .layui-col-xs-space10{margin:0 -10px;}
    .layui-col-xs-space5 .layui-col-xs6{padding:5px;}
    .layui-col-xs-space10 .layui-col-xs6{padding:10px;}
}



.header{
    width:100%;
    z-index: 99;
    background-color: rgba(255, 255, 255, 1);
    position: sticky;
    top:0px;
    left:0px;
    min-height: 50px;
}
.header.active{
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.header-main{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.header-left .logo{
    display: flex;
    align-items: center;
}
.header-left .logo-img{
    height: 55px;
    display: block;
}
.header-left .logo-text{
    padding-left:8px;
}
.header-left .logo-text .t1{
    font-size:18px;
    margin-bottom: 1px;
}
.header-left .logo-text .t1 .strong{
    color:#d7171a;
}
.header-left .logo-text .t2{
    color:#999;
    font-size:12px;
}

.header-nav{
    display: flex;
    align-items: center;
}
.header-nav ul li{
    position: relative;
    -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease;
}
.header-nav ul li a{
    -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease;
}
.header-nav ul li a.on{
    color: #d7171a;
}
/* 父类 */
.header-nav ul.parent{
    display: flex;
}
.header-nav ul.parent>li{
    margin:0 12px;
}
.header-nav ul.parent>li>a{
    display: block;
    height: 70px;
    line-height: 70px;
    -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease;
}
.header-nav ul.parent>li>a:after {
    content: '';
    display: block;
    width: 0%;
    height: 3px;
    background: #d7171a;
    margin: -3px auto 0 auto;
    position: relative;
    z-index: 999;
    -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease;
}
.header-nav ul.parent>li>a .iconfont{
    font-size:11px;
}
.header-nav ul.parent>li>a:hover{
    color:#d7171a;
}
.header-nav ul.parent>li>a:hover:after{
    width: 100%;
}
.header-nav ul.parent>li>a.on:after{
    width: 100%;
}
.header-nav ul.parent>li:hover>.child{
    visibility: visible;
    opacity: 1;
    top:100%;
}

/* 子类 */
.header-nav ul.child{
    min-width: 100%;
}
.header-nav ul.child li a{
    white-space: nowrap;
}
.header-nav ul.child li a:hover{
    color:#d7171a;
}
.header-nav ul.child{
    position: absolute;
    top:115%;
    left: 0%;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease;
}
.header-nav ul.child li a{
    display: block;
    padding:10px 10px;
    background-color: rgba(255, 255, 255, 0.95);
}
.header-nav ul.child li a:hover{
    background-color: rgba(255, 255, 255, 1);
}
.header-nav ul.child li:last-child a{
    border:none;
    border-radius: 0 0 5px 5px;
}
.header-nav ul.child li a .iconfont{
    font-size:11px;
}
.header-nav ul.child li:hover .child{
    display: block;
}
/* 子子类 */
.header-nav ul.three{
    left: 95%;
    top:0px;
    -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease;
}
.header-nav ul.child li:hover .three{
    visibility: visible;
    opacity: 1;
    left: 100%;
}

.header-right{
    display: flex;
    align-items: center;
    min-width: 261px;
    justify-content: flex-end;
}
.header-right .item{
    margin-left:20px;
}
.header-right .item:first-child{
    margin-left:0px;
}

/* ---搜索 */
.header-right .search{
    position: relative;
}
.header-right .search .icon .iconfont{
    font-size:22px;
    color:#666;
    cursor: pointer;
    display: none;
    height: 22px;
    width:22px;
    align-items: center;
    justify-content: center;
}
.header-right .search .iconfont.on{
    display: flex;
}
.header-right .search.active .icon .on{
    display: none;
}
.header-right .search.active .icon .off{
    display: flex;
}
.header-right .search .iconfont.off{
    font-size:16px;
}

.header-right .search .icon:hover .iconfont{
    color:#d7171a;
}
.header-right .search .form{
    position: absolute;
    top:120%;
    right:0px;
    padding:10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    visibility: hidden;
    -webkit-transition: all .3s ease;-moz-transition: all .3s ease;-o-transition: all .3s ease;transition: all .3s ease;
	opacity:0;
}
.header-right .search.active .form{
    top:100%;
    visibility: visible;
    opacity:1;
}
.header-right .search-bar{
    display: flex;
    position: relative;
    z-index: 999;
    background-color: #fff;
}
.header-right .search-bar .layui-btn{
    background-color:#d7171a;
    line-height: 30px;
}
.header-right .search-bar input{
    border:1px solid #ddd;
    border-radius: 3px 0 0 3px;
    border-right:none;
    padding:0 5px;
    height: 28px;
    line-height:28px;
    margin-right:-2px;
    width:180px;
}
.header-right .search-bar input::placeholder {
    color: #999; 
}
.header-right .search-bar input.on{
    border-color:#d7171a;
}

/* --语言 */
.header-right .language {
    position: relative;
    display:flex;
    align-items: center;
    cursor: pointer;
    
}
.header-right .language .value{
    height: 32px;
    line-height: 32px;
}
.header-right .language .value:hover{
    color:#d7171a;
}
.header-right .language .value:hover .option{
    visibility: visible;
    opacity: 1;
    top:100%;
}
.header-right .language .iconfont{
    font-size:12px;
}
.header-right .language .option{
    position: absolute;
    top:120%;
    background-color: #fff;
    box-shadow: 0 0 1px #999;
    border-radius: 3px;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: all .2s ease; -moz-transition: all .2s ease; -o-transition: all .2s ease; transition: all .2s ease;
    visibility: hidden;
}
.header-right .language .option a{
    display: block;
    padding:0 10px;
    border-bottom: 1px solid #eee;
    white-space: nowrap;
}
.header-right .language .option a:hover{
    background-color: #d7171a;
    color:#fff;
}
.header-right .language .option a:last-child{
    border:none;
}



/* 当前位置 */
.common_map{
}
.common_map ul{
    height: 45px;
    display: flex;
    align-items: center;
}
.common_map ul li:first-child::before{
    display: none;
}
.common_map ul li a{
    color:#6c7a91;
}
.common_map ul li a:hover{
    color:#333;
}
.common_map ul li::before{
    content: '›';
    margin:0 5px;
    color:#6c7a91;
}

/* 分页 */
.common_page{
    margin:-5px;
    display: flex;
    width:100%;
}
.common_page.aligin-right{
    justify-content: flex-end;
}
.common_page.aligin-center{
    justify-content: center;
}
.common_page ul.pagination{
    display: flex;
}
.common_page ul.pagination li{
    margin:4px;
    border-radius: 4px;
    overflow: hidden;
    background-color: #fff;
    border:1px solid #fff;
    transition: .3s ease-in-out; -webkit-transition: .3s ease-in-out; -moz-transition: .3s ease-in-out; -o-transition: .3s ease-in-out;
}
.common_page ul.pagination li:hover{
    border:1px solid #d7171a;
}
.common_page ul.pagination li.active{
    color:#fff;
    background-color: #d7171a;
}
.common_page ul.pagination li.disabled{
    background-color: #f5f5f5;
    border:1px solid #f5f5f5;
}
.common_page ul.pagination li a,.common_page ul.pagination li span{
    display: block;
    height: 32px;
    width:32px;
    line-height: 32px;
    text-align: center;
}

/* 菜单 */
.mobile-menu.active .menu-list{
    visibility: visible;
    opacity: 1;
}
.mobile-menu.active .menu-list-main{
    left:0%;
    opacity: 1;
}
.menu-icon{
    height: 24px;
    width: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 100;
    cursor: pointer;
}
.menu-icon .line{
    display:block;
	width:100%;
	height:3px;
	background:#d7171a;
	position:relative;
	transition: 0.3s;-moz-transition: 0.3s;	-webkit-transition: 0.3s;	-o-transition: 0.3s;
	transform:rotate(0deg);-ms-transform:rotate(0deg); 	-moz-transform:rotate(0deg); 	-webkit-transform:rotate(0deg); -o-transform:rotate(0deg); 	
	transform-origin:right;
	border-radius:3px;
	overflow:hidden;
}
.menu-icon.active .l1{
	transform:rotate(-45deg);-ms-transform:rotate(-45deg); 	-moz-transform:rotate(-45deg); -webkit-transform:rotate(-45deg); -o-transform:rotate(-45deg); 
	transform-origin:right;
}
.menu-icon.active .l2{
	opacity:0;
}
.menu-icon.active .l3{
	transform:rotate(45deg);-ms-transform:rotate(45deg); 	-moz-transform:rotate(45deg); 	-webkit-transform:rotate(45deg); -o-transform:rotate(45deg);
	transform-origin:right;
}

.menu-list{
    position: fixed;
    width:100%;
    height: 100%;
    top:0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 99;
    display: flex;
    justify-content: flex-end;
    visibility: hidden;
    transition: 0.3s ease-in-out;-moz-transition: 0.3s ease-in-out;	-webkit-transition: 0.3s ease-in-out;	-o-transition: 0.3s ease-in-out;
    opacity: 0;
}
.menu-list-main{
    background-color: #fff;
    height: 100%;
    width:75%;
    position: relative;
    left:100%;
    transition: 0.3s ease-in-out;-moz-transition: 0.3s ease-in-out;	-webkit-transition: 0.3s ease-in-out;	-o-transition: 0.3s ease-in-out;
    opacity: 0;
}
.menu-list-top{
    display: flex;
    height: 50px;
    border-bottom: 1px solid #eee;
    padding:15px 50px 15px 15px;
    box-sizing: border-box;
    text-align: center;
    align-items: center;
    justify-content: center;
    position: relative;
}
.menu-list-top .name{
    opacity: 0.7;
}

.menu-list-top .changeLanuge{
    position: absolute;
    left:10px;
}
.menu-list-top .changeLanuge:active{
    background-color: #eee;
}
.menu-list-top .changeLanuge .def{
    display: flex;
    align-items: center;
    border:1px solid #eee;
    padding:3px 5px;
    font-size:13px;
    border-radius: 5px;
}
.menu-list-top .changeLanuge .def .iconfont{
    margin-left:2px;
    font-size:14px;
}
.menu-list-top .changeLanuge .option{
    display: none;
    position: absolute;
    top: 105%;
    left:0px;
    width:120px;
    background-color: #fff;
    border:1px solid #eee;
    border-radius: 3px;
}
.menu-list-top .changeLanuge.active .option{
    display: block;
}
.menu-list-top .changeLanuge .option a{
    display: block;
    height: 30px;
    line-height: 30px;
    padding:0 8px;
    text-align: left;
    border-bottom: 1px solid #f5f5f5;
}
.menu-list-top .changeLanuge .option:first-child{
    border-bottom: none;
}

.menu-list ul li .parent{
    display: flex;
    border-bottom: 1px solid #eee;
    align-items: center;
    height: 40px;
    width:100%;
}
.menu-list ul li .parent.active .show_child .iconfont{
    transform: rotate(180deg);
}
.menu-list ul li a{
    display: block;
    width:100%;
    height: 100%;
    line-height: 40px;
    text-indent: 15px;
    word-break:break-all;
    display:-webkit-box;
    -webkit-line-clamp:1;
    -webkit-box-orient:vertical;
    overflow:hidden;
}
.menu-list ul li a:active{
    background-color: #f5f5f5;
}
.menu-list ul li .show_child{
    display: block;
    width: 45px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-left:1px solid #eee;
    background-color: #fff;
}
.menu-list ul li .show_child .iconfont{
    display: block;
    transition: transform 0.3s ease-in-out;
}

.menu-list .child{
    background-color: #fafafa;
    display: none;
}





/* 底部 */
#footer{
	background:#333333;
	background-size:cover;
	padding-top:50px;
	color:#fff;
    background: #333;
    background-size: cover;
}
#footer .copyright{
	margin-top:50px;
	border-top:1px solid rgba(255,255,255,0.2);
	display:flex;
	padding:20px 0;
	justify-content:center;
	color:#fff;
	opacity:0.7;
}
#footer .copyright a{
	color:#fff;
	opacity:0.7;
}
#footer .contact{
	display:flex;
	justify-content:space-between;
	align-items: center;
}
#footer .contact .info{
    margin-right:auto;
}
#footer .contact .title{
	font-size:22px;
	font-weight: 700;
	margin-bottom: 15px;
}
#footer .contact .flogo{
	margin-right: 35px;
}
#footer .contact .flogo img{
	display: block;
	max-height:160px;
}
#footer .contact .info-text {
	opacity: 0.9;
}
#footer .contact .info-text .item{
	margin:5px 0;
}
#footer .ewm{
    border-radius: 5px;
    overflow: hidden;
}
#footer .ewm .imgbox{
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}
#footer .ewm .imgbox img{
    height: 120px;
}
#footer .ewm .text{
    text-align: center;
    font-size:14px;
}

@media screen and (min-width:0px) and (max-width:768px){
    .header-main{
        height: 50px;
    }
    .header.active{
        background-color: rgba(255, 255, 255, 1);
    }
	.header-left .logo img{
        height: 36px;
    }
    .header-left .logo-text{
        padding-left:6px;
    }
    .header-left .logo-text .t1{font-size:17px;}
    .header-left .logo-text .t2{
        font-size:11px;
    }

    #footer{ padding-top:30px; }
	#footer .contact{flex-direction: column;}
	#footer .contact .info{margin-bottom: 30px;}
	#footer .ewm{width:120px;}
    #footer .copyright{margin-top:30px;}
}