body,p,h1,h2,h3,h4,h5,h6,ul,ol,dl,li,dt,dd{
    /* 默认有边距，都要清除 */
    margin: 0;
    padding: 0;
    /*字体设置*/
    font-size: 14px;
    font-family: Arial,"Alibaba PuHuiTi 3.0","PingFang SC","Microsoft Yahei",sans-serif;
    color: #333;
    line-height: 1em;
    /* 去掉列表的原点 */
    list-style: none;
}

/*可选*/
html,body{
    font-size: 14px;
    line-height: 1em;
}

/*行内块元素*/
input,img{
    margin: 0;
    padding: 0;
    border: 0 none;
    outline-style: none;
}

/*行内元素*/
a,a:active,a:visited{
    /*下划线和颜色*/
    text-decoration: none;
    color: #333;
    outline: none;
    transition: color .3s;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    -ms-transition: color .3s;
}

a:hover{
    color:#222;
}

textarea{
    /* 边框清零 */
    border:none;
    /* 轮廓线清零 */
    outline: none;
    /* 防止文本域被随意拖拽 */
    resize: none;
}

i{
    /*文字样式*/
    font-style: normal;
}

table{
    /*边框合并*/
    border-collapse:collapse;
    border-spacing:0;
}

/* 版心*/
.container{
    width: 1500px;
    margin: 0 auto;
}

@media (max-width: 1600px) {
    .container{
        width: 1200px;
    }
}

a.btn {
    position: relative;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    height: 34px;
    padding: 0 20px;
    border-radius: 2px;
    background: #19a0ff linear-gradient(to right,rgba(255,255,255,0.5),transparent);
    color: #fff;
    transition: all 0.5s;
}

a.btn:hover {
    background-color: #1088df;
}

a.btn:active {
    background-color: #0577c9;
}

@media(max-width: 1600px){
    a.btn {
        height: 32px;
        padding: 0 16px;
    }
}

/*单选框和复选框的配置，一般是分开的*/
input[type="radio"],input[type="checkbox"]{
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    display: none;
}

label{
    display: inline-block;
}

label input[type="radio"]:checked~i,label input[type="checkbox"]:checked~i{
    color: #009CFF;
}

/* 面包屑导航 */
.common-crumbs {
    border-bottom: 1px solid #ebebeb;
    font-size: 0;
}

.common-crumbs a {
    color: #222;
    font-size: 16px;
    line-height: 40px;
}

.common-crumbs i {
    margin: 0 6px;
    color: #222;
    font-size: 16px;
}

.common-crumbs .more-btn {
    display: inline-block;
    float: right;
    margin: 5px 0;
    padding: 0 28px;
    background-color: #007a5e;
    border-radius: 15px;
    color: #fff;
    line-height: 30px;
}
/* 面包屑导航 */

/* 导航 */
.public-header {
    background: white;
}

.public-header.transparent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: none;
    backdrop-filter: blur(3px);
    mask: linear-gradient(to bottom, black 80%, transparent);
}

.public-header .public-header-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

@media (max-width: 1600px){
    .public-header.transparent {
        mask: linear-gradient(to bottom, black 85%, transparent);
    }

    .public-header .public-header-body {
        height: 90px;
    }
}

.public-header .public-header-body .header-body-logo a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 17px;
}

.public-header .public-header-body .header-body-logo a img {
    display: none;
    width: 186px;
    height: 50px;
}

.public-header .public-header-body .header-body-logo a img.logo-img-black {
    display: inline-block;
}

.public-header.transparent .public-header-body .header-body-logo a img.logo-img-black {
    display: none;
}

.public-header.transparent .public-header-body .header-body-logo a img.logo-img-white {
    display: inline-block;
}

.public-header .public-header-body .header-body-logo a span {
    display: block;
    font-size: 20px;
    white-space: nowrap;
    line-height: 40px;
    padding-left: 15px;
    border-left: 1px solid rgb(0, 0, 0, 0.3);
}

.public-header.transparent .public-header-body .header-body-logo a span {
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}

@media (max-width: 1600px){
    .public-header .public-header-body .header-body-logo a {
        gap: 15px;
    }

    .public-header .public-header-body .header-body-logo a img {
        width: 156px;
        height: 42px;
    }

    .public-header .public-header-body .header-body-logo a span {
        font-size: 16px;
        line-height: 32px;
        padding-left: 13px;
    }
}

.public-header .public-header-body .header-nav-box {
    display: flex;
    align-items: center;
    gap: 35px;
}

.public-header .public-header-body .header-nav-box .header-nav-group {
    display: flex;
    gap: 18px;
}

.public-header .public-header-body .header-nav-box .header-nav-group .header-nav-item {
    display: inline-block;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.public-header.transparent .public-header-body .header-nav-box .header-nav-group .header-nav-item a {
    color: rgba(255,255,255,0.8);
}

.public-header.transparent .public-header-body .header-nav-box .header-nav-group .header-nav-item:hover a {
    color: rgba(255,255,255,1);
}

@media (max-width: 1600px){
    .public-header .public-header-body .header-nav-box {
        gap: 25px;
    }

    .public-header .public-header-body .header-nav-box .header-nav-group {
        gap: 15px;
    }

    .public-header .public-header-body .header-nav-box .header-nav-group .header-nav-item {
        font-size: 14px;
        letter-spacing: 0.2px;
    }
}
/* 导航 */

/* 底部 */
.public-footer {
    padding-top: 35px;
    background: #f0f4f7 linear-gradient(90deg,#f0f4f7,#fafafa,#f0f4f7);
}

.public-footer .public-footer-company {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 25px;
}

@media (max-width: 1600px){
    .public-footer {
        padding-top: 30px;
    }

    .public-footer .public-footer-company {
        padding-bottom: 20px;
    }
}

.public-footer .public-footer-company .footer-company-logo {
    width: 270px;
}

.public-footer .public-footer-company .footer-company-logo img {
    width: 262px;
}

.public-footer .public-footer-company .footer-company-logo h2 {
    margin-top: 5px;
    color: #222;
    font-size: 26px;
    font-weight: normal;
    line-height: 1;
	letter-spacing: 4px;
}

.public-footer .public-footer-company .footer-company-slogan .company-slogan-title {
    display: inline-block;
    color: #222;
    font-size: 32px;
    line-height: 1.25;
}

.public-footer .public-footer-company .footer-company-slogan .company-slogan-describe {
    margin-top: 12px;
    color: #222;
    font-size: 18px;
}

.public-footer .public-footer-company .footer-company-contact {
    display: flex;
    align-items: center;
    gap: 80px;
    transition: box-shadow 0.4s;
}

.public-footer .public-footer-company .footer-company-contact .company-contact-tels {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.public-footer .public-footer-company .footer-company-contact .company-contact-tels a {
    display: block;
    font-size: 16px;
    line-height: 1.25;
}

.public-footer .public-footer-company .footer-company-contact .company-contact-qrcode {
    text-align: center;
}

.public-footer .public-footer-company .footer-company-contact .company-contact-qrcode a {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.public-footer .public-footer-company .footer-company-contact .company-contact-qrcode a img {
    width: 90px;
    height: 90px;
}

.public-footer-menu {
    position: relative;
}

.public-footer-menu:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 3px 20px rgba(0,0,0,0.05);
}

.public-footer-menu .footer-menu-body {
    position: relative;
    z-index: 99;
    padding: 35px 0;
    background-color: #f0f4f7;
}

.public-footer-menu .footer-menu-box {
    display: flex;
    justify-content: space-between;
}

.public-footer-menu .footer-menu-box ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.public-footer-menu .footer-menu-box ul li h4 {
    font-size: 16px;
}

.public-footer-menu .footer-menu-box ul li a {
    font-size: 16px;
}

.public-footer-menu .public-footer-links {
    margin-top: 30px;
}

.public-footer-menu .public-footer-links p {
    color: #222;
    font-size: 16px;
}

.public-footer-menu .public-footer-links p a {
    margin-right: 15px;
    color: #222;
}

.public-footer .public-footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 58px;
    font-size: 0;
}

@media (max-width: 1600px){
    .public-footer-menu .footer-menu-box ul {
        gap: 15px;
    }

    .public-footer .public-footer-copyright {
        height: 50px;
    }
}

.public-footer .public-footer-copyright p {
    display: inline-block;
    color: #222;
    font-size: 16px;
    line-height: 1em;
}

.public-footer .public-footer-copyright p a {
    color: #222;
}

.public-footer .public-footer-copyright .footer-copyright-menu {
    line-height: 1;
}

.public-footer .public-footer-copyright .footer-copyright-menu a {
    padding: 0 5px;
    border-left: 1px solid #d3d3d3;
    color: #222;
    font-size: 16px;
    line-height: 1em;
}

.public-footer .public-footer-copyright .footer-copyright-menu a:first-child {
    border-left: 0;
}
/* 底部 */

/* public-contact-us */
.public-contact-us {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 12000;
    display: none;
    width: 650px;
    margin-left: -325px;
    margin-top: -200px;
    background: #f5f5f5;
}

.public-contact-us-shade {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 11999;
    display: none;
    background-color: rgb(0,0,0);
    opacity: 0.5;
    filter: alpha(opacity=50);
}

.public-contact-us .public-contact-us-title {
    height: 45px;
    padding: 0 15px;
    background: #19a0ff linear-gradient(0, rgba(255, 255, 255, 0.5), transparent);
    line-height: 45px;
}

.public-contact-us .public-contact-us-title h5 {
    vertical-align: middle;
    display: inline-block;
    color: #fff;
    font-size: 20px;
}

.public-contact-us .public-contact-us-title h5 i {
    margin-right: 5px;
    vertical-align: middle;
    font-weight: normal;
    font-size: 26px;
}

.public-contact-us .public-contact-us-title .public-contact-us-close {
    float: right;
}

.public-contact-us .public-contact-us-title .public-contact-us-close i {
    vertical-align: middle;
    display: inline-block;
    width: 26px;
    height: 26px;
    cursor: pointer;
    background-image: url('/static/default/img/common/icon-public-contact-us-close.png');
}

.public-contact-us .public-contact-us-body {
    text-align: center;
    font-size: 0;
}

.public-contact-us .public-contact-us-body .contact-us-item {
    vertical-align: middle;
    display: inline-block;
    width: 280px;
    border-radius: 10px;
    background-color: #fff;
    margin: 25px 7px;
    padding: 25px 0;
}

.public-contact-us .public-contact-us-body .contact-us-item .contact-us-item-img {
    width: 54px;
    height: 54px;
    margin: 0 auto;
}

.public-contact-us .public-contact-us-body .contact-us-item h5 {
    margin-top: 5px;
    margin-bottom: 25px;
    font-size: 20px;
    color: #222;
}

.public-contact-us .public-contact-us-body .contact-us-item .contact-us-item-btn {
    display: inline-block;
    box-sizing: border-box;
    width: 180px;
    height: 35px;
    border-radius: 20px;
    background-color: #19a0ff;
    margin-bottom: 10px;
    line-height: 35px;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
    transition: background-color .3s;
    -webkit-transition: background-color .3s;
    -moz-transition: background-color .3s;
    -ms-transition: background-color .3s;
}

.public-contact-us .public-contact-us-body .contact-us-item .contact-us-item-btn:active {
    background-color: #015ea0;
}

.public-contact-us .public-contact-us-body .contact-us-item .contact-us-item-btn.item-btn-o {
    border: 2px solid #19a0ff;
    background-color: #fff;
    line-height: 32px;
    color: #19a0ff;
    transition: border,color .3s;
    -webkit-transition: border,color .3s;
    -moz-transition: border,color .3s;
    -ms-transition: border,color .3s;
}

.public-contact-us .public-contact-us-body .contact-us-item .contact-us-item-btn.item-btn-o:active {
    border-color: #015ea0;
    color: #015ea0;
}

.public-contact-us .public-contact-us-body .contact-us-item .contact-us-item-btn.item-btn-tel {
    font-size: 18px;
}

.public-contact-us .public-contact-us-body .contact-us-item .contact-us-item-btn i {
    vertical-align: middle;
    margin-right: 3px;
    font-size: 20px;
}

.public-contact-us .public-contact-us-foot {
    height: 55px;
    border-top: 1px solid #e6e6e6;
    background-color: #fff;
    line-height: 55px;
    text-align: center;
}

.public-contact-us .public-contact-us-foot a {
    margin: 0 12px;
    font-size: 16px;
}

.public-contact-us .public-contact-us-foot a i {
    font-family: SimSun, "Microsoft YaHei", Arial, sans-serif;
}
/* public-contact-us */

/* right-contact */
.rightContanct{
	position: fixed;
	right: 10px;
	top: 50%;
	margin-top: -147px;
	z-index: 99;
}

.rightContanct ul li{
	position: relative;
	width: 60px;
	height: 60px;
	margin-bottom: 5px;
	background: #ffffff;
    border-radius: 2px;
	box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
}

.rightContanct ul li span{
	display: block;
	width: 60px;
	height: 60px;
	text-align: center;
	line-height: 60px;
	padding: 10px 0;
}

.rightContanct ul li p{
	line-height: 20px;
	font-size: 12px;
	color: #fff;
	text-align: center;
}

.rightContanctNum{
	box-sizing: border-box;
    display: none;
	position: absolute;
	top: 0;
	left: -220px;
	z-index: -1;
	width: 220px;
	padding: 0 0 0 26px;
    background: #dfbd74 linear-gradient(90deg, #dfbd74, #ad8225);
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	line-height: 60px;
}
/* right-contact */