/* 清除内外边距 */
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
/* structural elements 结构元素 */
dl,
dt,
dd,
ul,
ol,
li,
/* list elements 列表元素 */
pre,
/* text formatting elements 文本格式元素 */
fieldset,
lengend,
button,
input,
textarea,
/* form elements 表单元素 */
th,
td {
	/* table elements 表格元素 */
	margin: 0;
	padding: 0;
}

/* 设置默认字体 */
body,
button,
input,
select,
textarea {
	/* for ie */
	outline: none !important
}

h1 {
	font-size: 0.18rem;
	/* 18rem / 12rem = 1.5 */
}

h2 {
	font-size: 0.16rem;
}

h3 {
	font-size: 0.14rem;
}

h4,
h5,
h6 {
	font-size: 100%;
}

address,
cite,
dfn,
em,
var {
	font-style: normal;
}

/* 将斜体扶正 */
small {
	font-size: 12rem;
}

/* 小于 12rem 的中文很难阅读，让 small 正常化 */

/* 重置列表元素 */
ul,
ol {
	list-style: none;
}

/* 重置文本格式元素 */
a {
	text-decoration: none !important;
}

a:hover {
	text-decoration: none !important;
}

abbr[title],
acronym[title] {
	/* 注：1.ie6 不支持 abbr; 2.这里用了属性选择符，ie6 下无效果 */
	border-bottom: 1px dotted;
	cursor: help;
}

q:before,
q:after {
	content: '';
}

/* 重置表单元素 */
legend {
	color: #000;
}

/* for ie6 */
fieldset,
img {
	border: none;
}

/* img 搭车：让链接里的 img 无边框 */
/* 注：optgroup 无法扶正 */
button,
input,
select,
textarea {
	font-size: 100%;
	/* 使得表单元素在 ie 下能继承字体大小 */
}

/* 重置表格元素 */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* 重置 hr */
hr {
	border: none;
	height: 1rem;
}

label {
	font-weight: normal;
}

body,
* {
	font-family: 'Microsoft Yahei UI', Arial, sans-serif;
}

/* 文字颜色  */
.color-main {
	color: #333333;
}

.color-content {}

.color-tips {
	color: #999999;
}

.color-light {}

.color-red {
	color: #F85B4D;
}

/* 文字大小  */
.font-size-10 {
	font-size: 0.1rem;
}

.font-size-12 {
	font-size: 0.14rem;
}

.font-size-14 {
	font-size: 0.14rem;
}

.font-size-16 {
	font-size: 0.16rem;
}

.font-size-18 {
	font-size: 0.18rem;
}

.font-size-20 {
	font-size: 0.2rem;
}

.font-size-22 {
	font-size: 0.22rem;
}

.font-size-24 {
	font-size: 0.24rem;
}

.font-size-26 {
	font-size: 0.26rem;
}

.font-size-28 {
	font-size: 0.28rem;
}

.font-size-30 {
	font-size: 0.3rem;
}

.font-size-32 {
	font-size: 0.32rem;
}

.font-size-34 {
	font-size: 0.34rem;
}

.font-size-36 {
	font-size: 0.36rem;
}

.font-size-38 {
	font-size: 0.38rem;
}

.font-size-40 {
	font-size: 0.4rem;
}

/* 外边距  */
.margin-left-10 {
	margin-left: 0.1rem;
}

.margin-left-15 {
	margin-left: 0.15rem;
}

.margin-left-20 {
	margin-left: 0.2rem;
}

.margin-left-25 {
	margin-left: 0.25rem;
}

.margin-left-30 {
	margin-left: 0.3rem;
}

.margin-left-35 {
	margin-left: 0.35rem;
}

.margin-left-40 {
	margin-left: 0.4rem;
}

.margin-right-10 {
	margin-right: 0.1rem;
}

.margin-right-15 {
	margin-right: 0.15rem;
}

.margin-right-20 {
	margin-right: 0.2rem;
}

.margin-right-25 {
	margin-right: 0.25rem;
}

.margin-right-30 {
	margin-right: 0.3rem;
}

.margin-right-35 {
	margin-right: 0.35rem;
}

.margin-right-40 {
	margin-right: 0.4rem;
}

.margin-top-10 {
	margin-top: 0.1rem;
}

.margin-top-15 {
	margin-top: 0.15rem;
}

.margin-top-20 {
	margin-top: 0.2rem;
}

.margin-top-25 {
	margin-top: 0.25rem;
}

.margin-top-30 {
	margin-top: 0.3rem;
}

.margin-top-35 {
	margin-top: 0.35rem;
}

.margin-top-40 {
	margin-top: 0.4rem;
}

.margin-bottom-5 {
	margin-bottom: 0.05rem;
}

.margin-bottom-10 {
	margin-bottom: 0.1rem;
}

.margin-bottom-15 {
	margin-bottom: 0.15rem;
}

.margin-bottom-20 {
	margin-bottom: 0.2rem;
}

.margin-bottom-25 {
	margin-bottom: 0.25rem;
}

.margin-bottom-30 {
	margin-bottom: 0.3rem;
}

.margin-bottom-35 {
	margin-bottom: 0.35rem;
}

.margin-bottom-40 {
	margin-bottom: 0.4rem;
}


.u-flex {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.u-flex-wrap {
	flex-wrap: wrap;
}

.u-flex-nowrap {
	flex-wrap: nowrap;
}

.u-col-center {
	align-items: center;
}

.u-col-top {
	align-items: flex-start;
}

.u-col-bottom {
	align-items: flex-end;
}

.u-row-center {
	justify-content: center;
}

.u-row-left {
	justify-content: flex-start;
}

.u-row-right {
	justify-content: flex-end;
}

.u-row-between {
	justify-content: space-between;
}

.u-row-around {
	justify-content: space-around;
}

body{
	visibility: hidden;
	width: 100%;
	overflow-x: hidden;
}

/* hearer */
.header-box {
	position: fixed;
	top: 0rem;
	z-index: 99;
	width: 100%;
	padding-top: 0.2rem;
	padding-bottom: 0.18rem;
}

.header-box.sticky {
	background-color: #FFFFFF;
	box-shadow: 0rem 0rem 6px 0rem rgba(0, 0, 0, 0.1);
}
.header-sticky-placeholder{
	width: 100%;
	height: 0.8rem;
}
.header-main {
	position: relative;
	width: 16rem;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

.header-main .head-log,
.header-main .head-log-sticky {
	width: 1.56rem;
	height: 0.42rem;
}

.header-box .head-log-sticky,
.header-box.sticky .head-log {
	display: none;
}

.header-box.sticky .head-log-sticky,
.header-box .head-log {
	display: block;
}
.header-main .head-nav{
	height: 0.22rem;
}
.header-main .head-nav a {
	color: #CCCCCC;
	font-size: 0.16rem;
	margin-right: 0.6rem;
}

.header-box.sticky .head-nav a {
	color: #333333;
}

.header-main .head-nav a.active {
	color: #FFFFFF;
	font-weight: bold;
}

.header-box.sticky .head-nav a.active {
	color: #333333;
	font-weight: bold;
}

.header-main .head-nav a:last-child {
	margin-right: 0rem;
}

.header-box .nav-child{
	position: fixed;
	top: 0.8rem;
	left: 0px;
	width: 100%;
	display: none;
}
.header-box .nav-child-main{
	background-color: rgba(0,0,0,0.5);
	padding: 0.55rem 0px 0.65rem 0px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.header-box .nav-child-main .nav-child-item{
	width: 5.9rem;
	height: 3.3rem;
	border-radius: 12px;
	padding-top: 0.54rem;
	padding-left: 0.36rem;
	background-size: 100%;
}
.header-box .nav-child-main .nav-child-item:first-child{
	margin-right: 0.2rem;
}
.header-box .nav-child-main .nav-child-item>h2{
	font-size: 0.36rem;
	color: #343434;
	margin-bottom: 0.4rem;
}
.header-box .nav-child-main .nav-child-item>h5{
	width: 3rem;
	font-size: 0.16rem;
	line-height: 0.26rem;
}
.header-box .nav-child-main .nav-child-item>a{
	width: 1.08rem;
	height: 0.38rem;
	background: #FFFFFF;
	border: 1px solid #0C64C4;
	border-radius: 19px;
	display: inline-block;
	text-align: center;
	line-height: 0.38rem;
	margin-top: 0.45rem;
}
.header-main .head-contact-item {
	margin-right: 0.4rem;
}

.header-main .head-contact-item:last-child {
	margin-right: 0rem;
}

.header-main .head-contact-item {
	display: inline-block;
}

.header-main .head-contact-item .head-icon,
.header-main .head-contact-item .head-icon-sticky {
	width: 0.3rem;
	height: 0.3rem;
}

.header-box.sticky .head-icon,
.header-box .head-icon-sticky {
	display: none;
}

.header-box .head-icon,
.header-box.sticky .head-icon-sticky {
	display: inline-block;
}


.header-main .head-contact-item>label {
	font-size: 0.2rem;
	line-height: 0.3rem;
	color: #FFFFFF;
	margin-left: 0.1rem;
	margin-bottom: 0rem;
	vertical-align: middle;
}

.header-box.sticky .head-contact-item>label {
	color: #136FC0;
}
.head-qrcode-tips{
	padding: 15px;
}
.head-qrcode-tips>img{
	width: 170px;
	height: 170px;
}

.footer-box {
	background-color: #002648;
	padding: 0.45rem 0rem;
}
.footer-box .footer-main{
	width: 16rem;
	margin: 0 auto;
}
.footer-box .form-title {
	color: #FFFFFF;
	font-size: 0.2rem;
	margin-bottom: 0.3rem;
}

.footer-box .footer-form {
	font-size: 0rem;
}

.footer-box .form-input {
	width: 2.9rem;
	height: 0.56rem;
	background: #00203D;
	border: 1px solid #FFFFFF;
	font-size: 0.14rem;
	color: #CCCCCC;
	opacity: 0.5;
	padding: 0rem 0.2rem;
	margin-right: 0.2rem;
}

.footer-box .form-input:nth-child(3) {
	width: 5.6rem;
}

.footer-box .form-input::placeholder {
	color: #CCCCCC;
}

.footer-box .form-button {
	width: 4rem;
	height: 0.56rem;
	background: #0F529C;
	border: 1px solid #0F529C;
	font-size: 0.14rem;
	color: #FFFFFF;
}

.blogroll-box{
	margin-top: 0.3rem;
}
.blogroll-box>h2{
	width: 0.8rem;
	height: 0.36rem;
	background-color: #10529C;
	text-align: center;
	font-size: 0.14rem;
	color: #CCCCCC;
	line-height: 0.36rem;
}
.blogroll-box>.blogroll-list{
	border-top:1px solid #0C4A8C;
	border-bottom:1px solid #0C4A8C;
	padding: 0.26rem 0px 0.22rem 0px;
}
.blogroll-box>.blogroll-list>a{
	font-size: 0.14rem;
	color: #CCCCCC;
	margin-right: 0.35rem;
	position: relative;
	display: inline-block;
}
.blogroll-box>.blogroll-list>a::after{
	content: '';
	width: 0%;
	height: 2px;
	position: absolute;
	left: 0px;
	bottom: -5px;
	border-radius: 10px;
	background-color: #FFFFFF;
	transition: width .5s;
}
.blogroll-box>.blogroll-list>a:hover{
	color: #FFFFFF;
}
.blogroll-box>.blogroll-list>a:hover::after{
	width: 100%;
}
.footer-box .footer-content {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding-top: 0.26rem;
}

.footer-box .footer-nav a{
	font-size: 0.14rem;
	color: #CCCCCC;
	margin-right: 0.6rem;
	position: relative;
	display: inline-block;
}
.footer-box .footer-nav a::after{
	content: '';
	width: 0%;
	height: 2px;
	position: absolute;
	left: 0px;
	bottom: -5px;
	border-radius: 10px;
	background-color: #FFFFFF;
	transition: width .5s;
}

.footer-box .footer-nav a:hover{
	color: #FFFFFF;
}
.footer-box .footer-nav a:hover::after{
	width: 100%;
}
.footer-box .footer-copyright {
	font-size: 0.12rem;
	color: #CCCCCC;
}
.footer-box .footer-contact {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.footer-box .contact-item {}

.footer-box .contact-item:first-child {
	margin-right: 0.28rem;
}

.footer-box .contact-item>img {
	width: 0.24rem;
	height: 0.24rem;
	vertical-align: middle;
}

.footer-box .contact-item>span {
	font-size: 0.14rem;
	color: #CCCCCC;
	vertical-align: middle;
}


.fixed-tools-box{
	position: fixed;
	z-index: 9999;
	bottom: 2rem;
	right: 10px;
}
.fixed-tools-box .fixed-tools-item{
	background-color: #FFFFFF;
	border-radius:4px;
	padding: 6px 0px;
	margin-bottom: 5px;
	cursor: pointer;
	text-align: center;
	width: 0.72rem;
	height: 0.7rem;
	color: #666666;
	font-size: 12px;
	border: 1px solid #F1F1F1;
}
.fixed-tools-box .fixed-tools-item:hover{
	background: linear-gradient(45deg, #257CC1, #1253CB);
	color: #FFFFFF;
	border: 0px;
}
.fixed-tools-box .fixed-tools-icon{
	width: 0.4rem;
	height: 0.4rem;
	margin: 0 auto;
}
.fixed-tools-box .fixed-tools-icon-active{
	width: 0.4rem;
	height: 0.4rem;
	margin: 0 auto;
}
.fixed-tools-box .fixed-tools-icon,
.fixed-tools-box .fixed-tools-item:hover .fixed-tools-icon-active{
	display: block;
}

.fixed-tools-box .fixed-tools-icon-active,
.fixed-tools-box .fixed-tools-item:hover .fixed-tools-icon{
	display: none;
}

.fixed-tools-box .fixed-tools-name{
	
}
.tools-tips-box{
	padding: 20px 28px;
	text-align: center;
}
.layui-layer-tips .layui-layer-content{
	padding: 0px!important;
	border-radius: 6px!important;
}

.case-box {
	width: 100%;
	height: 14.63rem;
	background-size: 100% 100%;
}

.case-box .case-main {
	width: 16rem;
	margin: 0 auto;
	padding: 1.1rem 0rem 0rem 0rem;
}

.case-box h2 {
	font-size: 0.4rem;
	color: #FFFFFF;
	font-weight: bold;
}

.case-box.all h2 {
	color: #343434;
}

.case-box h3 {
	font-size: 0.26rem;
	margin-bottom: 0.2rem;
	color: #FFFFFF;
}

.case-box.all h3 {
	color: #343434;
}

.case-box h4 {
	font-size: 0.2rem;
	color: #666666;
}

.case-box .case-list {
	margin-top: 0.7rem;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.case-box .case-list>li {
	width: 5rem;
	height: 5rem;
	overflow: hidden;
	margin-right: 0.5rem;
	margin-bottom: 0.5rem;
}

.case-box .case-list>li:nth-child(3n) {
	margin-right: 0rem!important;
}

.case-box .case-list>li>a{
	display: block;
	position: relative;
	width: 5rem;
	height: 5rem;
}
.case-box .case-list>li>a>img{
	width: 5rem;
	height: 5rem;
	transform: scale(1);
	transition:all 0.5s;
}
.case-box .case-list>li>a>img:hover{
	transform: scale(1.1,1.1);
}
.case-box .case-info {
	position: absolute;
	bottom: 0rem;
	width: 100%;
	height: 1.38rem;
	background-color: rgba(255, 255, 255, 0.88);
	padding: 0.3rem 0.5rem 0rem 0.4rem;
}

.case-box .case-intro {
	margin-top: 0.24rem;
	color: #666666;
	font-size: 0.16rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.demand-layer{
	width: 800px;
	height: 424px;
	background-size: 100% 100%;
	position: relative;
	padding: 50px 40px;
	border-radius: 10px;
	display: none;
}
.demand-layer .demand-close{
	position: absolute;
	width: 24px;
	height: 24px;
	top: 20px;
	right: 20px;
	cursor: pointer;
}
.demand-layer h2{
	color: #333333;
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 30px;
}
.demand-layer h2>span{
	font-size: 18px;
	margin-left: 20px;
}
.demand-layer h2>span>em{
	color: #0F529C;
	font-weight: bold;
	margin: 0 10px;
}
.demand-layer .demand-form-input>input[type=text]{
	width: 400px;
	height: 56px;
	background: #FFFFFF;
	border: 1px solid #CCCCCC;
	border-radius: 3px;
	margin-bottom: 14px;
	font-size: 14px;
	padding: 0px 20px;
}
.demand-layer .demand-form-input>input[type=text]::placeholder{
	color: #999999;
}
.demand-layer .demand-form-input>textarea{
	width: 400px;
	background: #FFFFFF;
	border: 1px solid #CCCCCC;
	border-radius: 3px;
	margin-bottom: 14px;
	font-size: 14px;
	padding: 20px;
	resize: none;
}
.demand-layer .demand-form-input>textarea::placeholder{
	color: #999999;
}

.demand-layer .demand-form-btn{
	width: 400px;
	padding: 16px 0px;
	background: #0F529C;
	border: 1px solid #0F529C;
	border-radius: 3px;
	font-size: 16px;
	color: #FFFFFF;
}
.demand-toast{
	width: 420px;
	height: 400px;
	background: #FFFFFF;
	border-radius: 12px;
	text-align: center;
	padding-top: 15px;
	display: none;
}

.demand-toast .demand-toast-icon{
	width: 188px;
	height: 188px;
	margin-bottom: 10px;
}
.demand-toast h3{
	color: #333333;
	font-size: 20px;
	margin-bottom: 20px;
}
.demand-toast-message{
	color: #666666;
	font-size: 16px;
}
.demand-toast-ok{
	margin-top: 40px;
	width: 168px;
	height: 48px;
	background: #FFFFFF;
	border: 1px solid #0F529C;
	font-size: 16px;
	color: #0F529C;
}

.fixed-form-box{
	position: fixed;
	left: 0px;
	bottom: 0px;
	width: 100%;
	height: 1.1rem;
	background-color: rgba(0,0,0,0.6);
}
.fixed-form-box .fixed-form-main{
	position: relative;
	width: 16rem;
	height: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	align-items: center;
}
.fixed-form-box .service-icon{
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 1.12rem;
	height: 1.9rem;
}
.fixed-form-box .fixed-form-text{
	margin-left: 1.26rem;
	color: #FFFFFF;
}
.fixed-form-box .fixed-form-text>h3{
	font-size: 0.22rem;
	font-weight: bold;
	color: #FFFFFF;
	line-height: 0.3rem;
}
.fixed-form-box .fixed-form-text>h5{
	font-size: 0.18rem;
	color: #FFFFFF;
	line-height: 0.3rem;
}
.fixed-form-box .fixed-form{
	margin-left: 0.35rem;
	font-size: 0rem;
}
.fixed-form-box .fixed-form .form-input{
	width: 2rem;
	height: 0.56rem;
	background-color: #FFFFFF;
	border: 1px solid #FFFFFF;
	font-size: 0.14rem;
	color: #9A9A9A;
	padding: 0rem 0.15rem;
	margin-right: 0.1rem;

}
.fixed-form-box .fixed-form .form-input:nth-child(3){
	width: 3.8rem;
}
.fixed-form-box .fixed-form .form-input::placeholder {
	color: #9A9A9A;
}
.fixed-form-box .fixed-form .form-button{
	width: 2.4rem;
	height: 0.56rem;
	background-color: #10529C;
	border: 1px solid #10529C;
	font-size: 0.14rem;
	color: #FFFFFF;
}
.fixed-form-box .close-icon{
	width: 0.24rem;
	height: 0.24rem;
	margin-left: 0.5rem;
}

.layui-layer-loading .layui-layer-content{
	width: 96px!important;
	height: 96px!important;;
}

.empty-list{
	width: 100%!important;
	height: auto!important;
	text-align: center;
	margin-top: 1rem;
	display: block!important;
}
.empty-list>.image{
	width: 1.6rem;
	height: 1.6rem;
}
.empty-list>.tips{
	font-size: 0.16rem;
	color: #999999;
}