@charset "utf-8";
/******** global css  ********/
/* 禁用iPhone中Safari的字号自动调整 */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    /* 解决IOS默认滑动很卡的情况 */
    -webkit-overflow-scrolling : touch;
    width:100%;
    height: 100%;
}
/* 禁止缩放表单 */
input[type="submit"], input[type="reset"], input[type="button"], input,textarea{
    resize: none;
    border: none;
    outline:none;
}
body, div, ul, li, ol, h1, h2, h3, h4, h5, h6, input, textarea, select, p, dl, dt, dd, a, img, button, form, table, th, tr, td, tbody, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    /* 取消链接高亮  */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    margin: 0;
    padding: 0;
    -webkit-boxd-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
/* 取消默认样式 */
select{
    -webkit-appearance: none;/*兼容苹果手机*/
}
button{
    border: none;
}
/* 设置HTML5元素为块 */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
/* 图片自适应 */
img {
    width: 100%;
    height: auto;
    width: auto\9; /* ie8 */
    display: block;
    -ms-interpolation-mode: bicubic;/*为了照顾ie图片缩放失真*/
    border: none;
}
body {
    /* font: 0.9rem/1.5 Avenir, -apple-system, BlinkMacSystemFont, Segoe UI, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Helvetica Neue, Helvetica, Arial, sans-serif; */
    font-family:'pingfang SC', 'Adobe Heiti bold', "Source Han Sans CN", helvetica, arial, verdana, tahoma, sans-serif;
	color: #555;
    background-color: #f2f2f2; 
	min-width: 300px;
}
em, i {
    font-style: normal;
}
ul,li{
    list-style-type: none;
}
button{
    border: none;
    outline:none;
}
table{
	border-collapse:collapse; /*表格的边框合并，如果相邻，则共用一个边框*/
    border-spacing:0; /*设置行与单元格边框的间距。当表格边框独立（即border-collapse:separate;）此属性才起作用*/
}
.hide{
	display:none;
}
.show{
	display:block;
}
/* 使用webkit内核的浏览器 */
::-webkit-input-placeholder{
	color:#999;
	font-size:0.9em;
}
/* Firefox版本4-18 */
::-moz-placeholder{
	color:#999;
	font-size:0.9em;
}
/* Firefox版本19+ */
::-moz-placeholder{
	color:#999;
	font-size:0.9em;
}
/* IE浏览器 */
::-ms-input-placeholder{
	color:#999;
	font-size:0.9em;
}
.loading{
	position:fixed;
	width:100%;
	height:100%;
	top:0px;
	z-index:100000;
}
.loading img{
	position:absolute;
	width:auto;
	left: 50%;
	top: 50%;
	margin-left: -30px;
	margin-top: -12px;
}
.anmateScale12:hover img{
	transform:scale(1.2,1.2);
	-webkit-transform:scale(1.2,1.2);
	-moz-transform:scale(1.2,1.2);
	-o-transform:scale(1.2,1.2);
 	-ms-transform:scale(1.2,1.2);
}
.animateY{
	transform:translate(0,0px);
	-webkit-transform:translate(0,0px);
	-moz-transform:translate(0,0px);
	-o-transform:translate(0,0px);
 	-ms-transform:translate(0,0px);
}
.animateY:hover{
	transform:translate(0,-10px);
	-webkit-transform:translate(0,-10px);
	-moz-transform:translate(0,-10px);
	-o-transform:translate(0,-10px);
 	-ms-transform:translate(0,-10px);
}
.animateX{
	transform:translate(0px,0);
	-webkit-transform:translate(0px,0);
	-moz-transform:translate(0px,0);
	-o-transform:translate(0px,0);
 	-ms-transform:translate(0px,0);
}
.animateX:hover{
	transform:translate(10px,0);
	-webkit-transform:translate(10px,0);
	-moz-transform:translate(10px,0);
	-o-transform:translate(10px,0);
 	-ms-transform:translate(10px,0);
}
.transitionM{
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.transitionL{
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
}
.clear{
    clear: both;
}
.clearfix:after {
    content: "";
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;
}
.clearfix {
    zoom: 1;
}
a {
    text-decoration: none;
    color: #303030;
}
a:hover {
    text-decoration: none;
}
ul, ol {
    list-style: none;
}
h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
}
.rotate{
    transform-origin:center center;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transition: transform 0.2s;
    -moz-transition: -moz-transform 0.2s;
    -moz-transition: -moz-transform 0.2s;
    -o-transition: -o-transform 0.2s;
    -ms-transition: -ms-transform 0.2s;
}
.rotate1{
    transform-origin:center center;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transition: transform 0.2s;
    -moz-transition: -moz-transform 0.2s;
    -moz-transition: -moz-transform 0.2s;
    -o-transition: -o-transform 0.2s;
    -ms-transition: -ms-transform 0.2s;
}
.rotate90{
    transform-origin:center center;
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transition: transform 0.2s;
    -moz-transition: -moz-transform 0.2s;
    -moz-transition: -moz-transform 0.2s;
    -o-transition: -o-transform 0.2s;
    -ms-transition: -ms-transform 0.2s;
}
/*单行溢出*/
.one_txt_cut{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
/*多行溢出 手机端使用*/
.txt_cut{
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    /* -webkit-line-clamp: 2; */
    -webkit-box-orient: vertical;
}
p.g_two_cut{
	float: left;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	position: relative;
	max-height: 46px;
	font-size: 0.9rem;
	line-height: 24px;
	color: #666;
}
p.g_three_cut{
	float: left;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	position: relative;
	height:72px;
	font-size: 0.9rem;
	line-height: 24px;
	color: #666;
}
p.g_two_cut:after{
	content: "...";
	position: absolute;
	bottom: 0;
	right: 0;
	padding-left: 40px;
	background: -webkit-linear-gradient(left, transparent, #fff 55%);
	background: -o-linear-gradient(right, transparent, #fff 55%);
	background: -moz-linear-gradient(right, transparent, #fff 55%);
	background: linear-gradient(to right, transparent, #fff 55%);
}
p.g_three_cut:after{
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	padding-left: 40px;
	background: -webkit-linear-gradient(left, transparent, #fff 55%);
	background: -o-linear-gradient(right, transparent, #fff 55%);
	background: -moz-linear-gradient(right, transparent, #fff 55%);
	background: linear-gradient(to right, transparent, #fff 55%);
}
.global_width{
    max-width: 1400px;
    margin: 0 auto;
}
.lg_global_width{
    max-width:1200px;
    margin:0 auto;
}
.global_float{
	float:left;
	width:100%;
}

/* WebKit browsers */
::-webkit-input-placeholder {
	color: #303030;
}
/* Mozilla Firefox 4 to 18 */
:-moz-placeholder {
	color: #303030;
	opacity: 1;
}
/* Mozilla Firefox 19+ */
::-moz-placeholder {
	color: #303030;
	opacity: 1;
}
/* Internet Explorer 10+ */
:-ms-input-placeholder {
	color: #303030;
}


/* 布局组 */
.fl{
    float: left;
}
.fr{
    float: right;
}
.mg15{
    margin:  0 15px;
}
.acenter{
	text-align:center;
}
/* 状态组 */
.pcshow{
	display:block;
}
.ipshow{
	display:none;
}
.ip_banners{
	display:none;
}


/* 按钮组 */

/* 面包屑 */
.tz_bread_crumb{
	float:left;
	width:100%;
	padding:30px 0;
	font-size:0.96rem;
	color:#999;
}
.tz_bread_crumb a,.tz_bread_crumb label{
	color:#666;
}
.tz_bread_crumb a:hover{
	color:#093090;
}
/* 面包屑 end */

/* 头部header */
.banner_box{
	float:left;
	width:100%;
	margin-top:100px;
}

.ip_header{
	display:none;
   float: left;
   width: 100%;
   background-color: #fff;
   padding: 6px 15px;
   text-align: center;
   position: fixed;
   z-index: 10000;
   -webkit-box-shadow: 0 1px 4px rgba(0,0,0,.1);
   -moz-box-shadow: 0 1px 4px rgba(0,0,0,.1);
   box-shadow: 0 1px 4px rgba(0,0,0,.1);
}
.ip_header i.wet-sousuo1{
    position: absolute;
    font-size: 2.4em;
    right: 15px;
    top: 10px;
    cursor: pointer;
    color: #303030;
}
.ip_search_box .confirm_btn {
    width: 20%;
    float: left;
    text-align: center;
    padding: 14px 0px;
    background-color: #093090;
	color:#fff;
    cursor: pointer;
}
.idsearch_list{
	float:left;
}
.idsearch_list li{
	float:left;
	line-height:72px;
	margin-right:16px;
	color:#fff;
	font-size:0.9rem;
}
.idsearch_list li:first-child{
	margin-right:0px;
}
.idsearch_list li a{
	color:#fff;
}
.header_box{
    position:fixed;
	top:0px;
	left:0px;
    width:100%;
	height:100px;
    background-color:#fff;
    text-align:center;
	z-index:10001;
	box-shadow: 0 6px 20px rgba(0,0,0,.1);
}
.header_fl{
	float:left;
}
.header_box.squashed{
	height:60px;
	transition: all linear 0.2s;
}
.header_box.squashed .header_fl span{
	margin:18px 0 0;
}
.header_box.squashed .nav_section ul li{
	line-height:60px;
	transition: all linear 0.2s;
}
.header_box.squashed .logo{
	background-size:80%;
	width:96px;
	height:36px;
	margin:14px 0 0 2rem;
	transition: all linear 0.2s;
}
.logo{
	float:left;
	background:url("/web/public/img/logo.png") no-repeat;
	width:164px;
	height:44px;
	margin:22px 16px 0 0;
	background-size:100%;
	text-indent: -200000px;
}
.header_fl span{
	display:inline-block;
	float:left;
	margin:40px 0 0 0;
	padding-left:16px;
	border-left:1px solid #dcdcdc;
	font-size:1rem;
	font-weight:bold;
	
}
.nav_section{
	float:right;
	width:56%;
}
.nav_section ul{
	float:left;
	width:100%;
	height:100%;
}
.nav_section ul li{
	float:left;
	line-height:100px;
	width:16.66%;
	text-align:center;
}
.nav_section ul li.active{
	background-color:#093090;
}
.nav_section ul li.active a{
	color:#fff;
}
.nav_section ul li:not(.active):hover a{
	color:#093090;
}
.nav_section ul li a{
	display:inline-block;
	color:#303030;
	width:100%;
	font-size:1rem;
}
.ip_search_icon{
	float:right;
	margin:16px 16px 0 0;
	font-size:1.2rem;
}
.ip_search_icon.active{
	color:#093090;
}

/* 移动端 */
.ip_header{
	display:none;
   float: left;
   width: 100%;
   background-color: #fff;
   padding: 6px 15px;
   text-align: center;
   position: fixed;
   z-index: 10000;
   -webkit-box-shadow: 0 1px 4px rgba(0,0,0,.1);
   -moz-box-shadow: 0 1px 4px rgba(0,0,0,.1);
   box-shadow: 0 1px 4px rgba(0,0,0,.1);
}
.navbar-collapse {
    padding-right: 15px;
    padding-left: 15px;
    overflow-x: visible;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
    position: fixed;
    top:56px;
	left:0px;
    background-color:#fff;
    width:100%;
    text-align: center;
    display: none;
	z-index:10000;
	border-top: 1px solid #e5e5e5;
}
.nav > li{
    position: relative;
    display: block;
}
.navbar-collapse ul li a{
    border-bottom: 1px solid #e7e7e7;
    display: inline-block;
    width:100%;
    padding: 15px 0;
    text-align: center;
    color: #666;
    font-size:1.2em;
}
.navbar-collapse ul li a:hover{
    color:#458eec;
}
.navbar-nav > li > a{
    line-height: 20px;
}
.navbar-toggle{
    position: relative;
    float: right;
    padding: 9px 0px;
    margin-top: 8px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    cursor: pointer;
}
.navbar-toggle:hover{
    background-color:transparent;
}
button.click .icon-bar:nth-child(3) {
    opacity: 0;
}
button.click .icon-bar + .icon-bar {
    margin-top: 0;
}
.click span.icon-bar1{
    -webkit-transform: rotate(45deg) translateX(1px);
    -moz-transform: rotate(45deg) translateX(1px);
    -ms-transform: rotate(45deg) translateX(1px);
    -o-transform: rotate(45deg) translateX(1px);
    transform: rotate(45deg) translateX(1px);
}
.click span.icon-bar2{
    -webkit-transform: rotate(-45deg) translateX(1px) translateY(-1px);
    -moz-transform: rotate(-45deg) translateX(1px) translateY(-1px);
    -ms-transform: rotate(-45deg) translateX(1px) translateY(-1px);
    -o-transform: rotate(-45deg) translateX(1px) translateY(-1px);
    transform: rotate(-45deg) translateX(1px)
}
.sr-only{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}
.navbar-toggle .icon-bar + .icon-bar{
    margin-top:6px;
}
.navbar-toggle .icon-bar{
    height: 1px;
    display: block;
    width: 30px;
    border-radius: 1px;
    background-color: #303030;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    -webkit-transform: rotate(0);
    transform: rotate(0);
}
.overings{
	position:fixed;
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,.7);
	z-index:999;
}
/* 头部end */


/* homepage */
.search_box{
	float:left;
	width:100%;
	height:72px;
	background-color:#fff;
}
.search_input{
	float:left;
	width:100%;
	margin:14px 0 0 0;
	position: relative;
	background-color:#f2f2f2;
	position:relative;
}
.search_input input{
	width:90%;
	padding: 14px 16px;
	background-color:#f2f2f2;
}
::-webkit-input-placeholder { /* WebKit browsers */
  color: #999;
  font-size:0.9rem;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #999;
  font-size:0.9rem;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
  color: #999;
  font-size:0.9rem;
}
.si_box{
	float:left;
	width:100%;
}
.si_btn{
	position:absolute;
	right:0px;
	top:0px;
	background-color:#093090;
	width:44px;
	height:44px;
	cursor:pointer;
}
.si_btn i{
	position:absolute;
	right:12px;
	top:12px;
	color:#fff;
	font-size:1.2rem;
}
.ip_search_box{
    padding: 20px;
    position: fixed;
    z-index: 10001;
    background-color: #eee;
    top: 63px;
    width: 100%;
    -webkit-box-shadow: 0 1px 4px rgba(0,0,0,.1);
    -moz-box-shadow: 0 1px 4px rgba(0,0,0,.1);
    box-shadow: 0 1px 4px rgba(0,0,0,.1);
    left: 0px;
}
.ip_search_box input {
    padding: 16px 10px;
    width: 80%;
    float: left;
}
.tz_box{
	float:left;
	width:100%;
	padding:60px 0;
}
.tz_index_title{
	text-align:center;
	width:100%;
	color:#093090;
	font-size:1.8rem;
	margin-bottom:40px;
}
.tz_index_pro_box{
	height:640px;
	background-color:#fff;
}
.tz_index_pro_cate_box{
	float:left;
	width:26%;
	text-align:center;
	display: flex; 
	flex-direction: column;
	overflow:hidden;
	overflow-y:auto;
	height:100%;
	border-right:1px solid #e5e5e5;
}
.tz_index_pro_cate_box li{
	width:100%;
	flex: 1;
	border-bottom:1px solid #e5e5e5;
	display:flex;
	align-items:center;
	
}
.tz_index_pro_cate_box li:hover span{
	color:#093090;
}
.tz_index_pro_cate_box li:hover i{
	color:#093090;
}
.tz_index_pro_cate_box li a{
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: space-between;
    align-items: center;
	padding:20px;
	color:#999;
}
.tz_index_pro_cate_box li i{
	font-size:1.5rem;
}
.tz_index_pro_cate_box li .tz_pro_libox{
	color:#999;
	display:flex;
	justify-content: space-between;
	width:100%;
}
.tz_index_pro_list_box{
	float:left;
	width:74%;
	padding:30px 20px;
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
}
.tz_inpro_box{
	width:29.33%;
	margin:0 2% 20px 2%;
	text-align:center;
}
.tz_pro_img_box{
	border:1px solid #e5e5e5;
	height:150px;
	display: flex;
	justify-content: center;
	overflow:hidden;
}
.tz_pro_img_box img{
	/* width: auto; */
	object-fit: contain;
}
.tz_pro_img_box img:hover {
    transform: scale(1.2);
}
.tz_inpro_box:hover span{
	color:#093090;
}
.tz_inpro_box span{
	display:inline-block;
	padding-top:10px;
	color:#303030;
	width:100%;
}
.advantage_bg{
	background-color:#093090;
	padding:40px 0;
}
.advantage_bg h3{
	color:#fff;
}
.tz_advantage{
	display:flex;
	flex-direction:row;
	width:80%;
	margin:0 10%;
}
.tz_advantage li{
	flex:23%;
	margin:0 1%;
	text-align:center;
	display:flex;
	flex-direction:column;
	color:#fff;
}
.tz_advantage li i{
	font-size:2.4rem;
}
.tz_advantage li span{
	padding-top:10px;
}
.application_bg{
	background: url(/web/public/img/app_bg.jpg) no-repeat;
	height:560px;
}
.tz_app_img_box{
	height:160px;
}
.tz_app_img_box img{
	object-fit:cover;
	height:100%;
}
.tz_app_box:hover{
	box-shadow: 0 0 20px rgba(0,0,0,.2);
}
.tz_app_desc_box{
	background-color:#fff;
	height:140px;
	padding:20px;
}
.tz_app_section{
	height:360px;
}
.app_top_line{
	height:3px;
	width:20px;
	background-color:#093090;
}
.tz_app_desc_box span{
	display:inline-block;
	color:#303030;
	font-size:1rem;
	padding-top:6px;
}
.tz_news_index_top{
	display:flex;
	flex-direction:row;
	justify-content: center;
	padding-bottom:30px;
}
.tz_news_index_top li{
	border:1px solid #d2d2d2;
	margin:0 10px;
}
.tz_news_index_top li.active{
	border:none;
}
.tz_news_index_top li.active a{
	background-color:#093090;
	color:#fff;
}
.tz_news_index_top li a{
	padding:8px 16px;
	display:inline-block;
	width:100%;
	height:100%;
}
.tz_news_index_top li:hover{
	background-color:#093090;
}
.tz_news_index_top li:hover a{
	color:#fff;
}
.tz_news_box{
	display:flex;
	margin-top:20px;
}
.tz_news_main{
	display:flex;
	width:30%;
	flex-direction:column;
	background-color:#fff;
	padding:26px;
	margin-right:4%;
	height:472px;
}
.tz_news_list{
	display:flex;
	width:66%;
	flex-direction:column;
	border-top:1px solid #fff;
}
.tz_news_m_date{
	display:flex;
	flex-direction:row;
	justify-content: space-between;
}
.tz_news_m_date .tz_nm_date{
	color:#093090;
	font-size:1.4rem;
	font-weight:600;
}
.tz_news_m_rion{
	border:2px solid #dcdcdc;
	width:40px;
	height:40px;
	justify-content: center;
	display: flex;
	align-items: center;
}
.tz_news_m_rion i{
	font-size:1.2rem;
}
.tz_news_main h3{
	padding-top:12px;
	font-size:1.1rem;
	font-weight:500;
}
.tz_news_main p{
	padding-top:20px;
	line-height:28px;
	color:#999;
	font-size:1rem;
	height: 100px;
	overflow: hidden;
}
.tz_news_m_img_box{
	padding-top:40px;
	width:100%;
	height:226px;
	overflow:hidden;
}
.tz_news_m_img_box img{
	height:100%;
	object-fit:cover;
}
.tz_news_main:hover img{
	transform: scale(1.2);
}
.tz_news_lsection:hover img{
	transform: scale(1.2);
}
.tz_news_line_box{
	width:100%;
	padding:20px;
	border-bottom:1px solid #fff;
}
.tz_news_line_box:hover{
	background-color:#fff;
}
.tz_news_lsection{
	display:flex;
	width:100%;
	justify-content: space-between;
}
.tz_news_lsection:hover img{
	transform: scale(1.2);
}
.tz_news_title{
	font-size:1.1rem;
	font-weight:500;
	color:#303030;
}
.tz_news_date{
	display:inline-block;
	padding-top:10px;
	font-size:1.1rem;
}
.tz_news_desc{
	margin-top:10px;
	font-size:0.9rem;
	color:#999;
	line-height:24px;
	height:70px;
	overflow:hidden;
}
.tz_news_le_box{
	width:70%;
	margin-right:4%;
}
.tz_news_img_box{
	width:240px;
	height:136px;
	overflow:hidden;
}
.tz_more_btn{
	display:inline-block;
	background-color:#093090;
	color:#fff;
	padding:6px 16px;
	margin-top:20px;
}
.tz_center{
	padding-top:40px;
	width:100%;
	text-align:center;
}
.tz_watch_more{
	display:inline-block;
	padding:10px 20px;
	background-color:#093090;
	color:#fff;
	font-size:1rem;
}
#coope_projects{
	width: 100%;
	height: 100%;
	padding: 0 0 40px;
	overflow-x: hidden;
}
#coope_projects .merchant_box{
	height: 130px;
	background-color:#fff;
	border:1px solid #e5e5e5;
}
#coope_projects .merchant_logo_box{
	float: left;
	width: 100%;
	text-align: center;
	height: 80px;
	overflow: hidden;
}
#coope_projects .merchant_logo {
    display: table;
    width: 100%;
    text-align: center;
}
#coope_projects .merchant_logo_a {
    height: 80px;
    vertical-align: middle;
    display: table-cell;
    width: 100%;
    text-decoration: none;
    color: #666;
}
#coope_projects .merchant_logo_a img {
    clear: both;
    max-width: 70%;
    max-height: 70%;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}
#coope_projects .merchant_box label{
	text-align: center;
	font-size: 1rem;
	color:#999;
	float: left;
	width: 100%;
	display:inline-block;
}
.cooperation{
	background-color:#fff;
}
.tz_index_contact{
	float:left;
	width:50%;
	background-color:#093090;
	padding:65px 0;
}
.contact_way{
	padding:0px;
}
.tz_index_map{
	float:left;
	width:50%;
}
.tz_incontact{
	display:flex;
	flex-direction:column;
	float:right;
	width:600px;
	color:#fff;
}
.tz_incontact h1{
	font-size:1.4rem;
	font-weight:500;
	padding-bottom:20px;
}
.tz_incontact span{
	padding-bottom:10px;
	font-size:1rem;
}
#container {
    width: 100%;
    height: 300px;
    float: left;
    margin-top: 10px;
}
#contact_container{
	width: 100%;
    height: 400px;
    float: left;
    margin-top: 10px;
}
/* homepage end */

/* footer */
.tz_foo{
	background-color:#000000;
	padding:60px 0;
}
.tz_foo_logo{
	float:left;
	width:120px;
}
.tz_foo_nav{
	float:right;
	width:50%;
	font-size:0.96rem;
	display:flex;
	flex-direction:row;
}
.tz_foo_nav a{
	color:#fff;
}
.tz_foo_nav a.foo_tit{
	display:inline-block;
	color:#999;
	padding-bottom:20px;
	align-items: center;
}
.tz_foo_nav a.foo_tit i{
	font-size:1.4rem;
	display:none;
}
.tz_foo_nav a.foo_tit:hover{
	color:#fff;
	text-decoration: underline;
}
.tz_foo_nav_box{
	width:33.3333%;
}
.tz_foo_nav_box ul li{
	padding-bottom:10px;
}
.tz_foo_nav_box ul li:hover a{
	text-decoration: underline;
}
.tz_foo_bot_box{
	float:left;
	width:100%;
	background-color:#313131;
	padding:20px 0;
	color:#999;
	text-align:center;
	font-size:0.96rem;
}
.tz_foo_bot_box a{
	color:#999;
}
.tz_foo_bot_box a.active:hover{
	text-decoration: underline;
}
/* footer end */

/* 侧边栏 */
.sidebar{
	position:fixed;
	right:40px;
	bottom:100px;
	height:180px;
	box-shadow:0 0 10px rgba(0,0,0,.1);	
	z-index:998;
}
.fcaction{
	width:60px;
	height:60px;
	text-align:center;
	background-color:#fff;
	cursor:pointer;
}
.fcaction i.imain{
	display:inline-block;
	margin-top:16px;
}
#totop i.imain{
	display:inline-block;
	margin-top:6px;
}
.fcaction span{
	display:inline-block;
	width:100%;
}
.contact_sider{
	border-bottom:1px solid #f2f2f2;
}
.ip_tel_sider{
	border-bottom:1px solid #f2f2f2;
}
.wechatcontent{
	width: 120px;
	position:absolute;
	background-color:#fff;
	left:-120px;
	box-shadow:0 0 10px rgba(0,0,0,.1);	
	top:60px;
	padding:10px;
	display:none;
}
.wechat_sider{
	border-bottom: 1px solid #f2f2f2;
}
.wechat_sider:hover .wechatcontent{
	display:block;
}
#totop i{
	display:inline-block;
	margin-top:6px;
}
.vbcontent{
	width: 240px;
	position:absolute;
	background-color:#fff;
	left:-240px;
	box-shadow:0 0 10px rgba(0,0,0,.1);	
	top:0px;
	display:none;
}
.contact_sider:hover .vbcontent{
	display:block;
}
.vbcontent .vblist{
	float:left;
	padding:10px 16px;
	border-bottom:1px solid #f2f2f2;
	width:100%;
}
.vbcontent .vblist i{
	float:left;
	font-size:1.6rem;
}
.vbcontent .vblist span{
	width:auto;
	font-size:0.8rem;
}
.vblist_box{
	float:left;
	text-align:left;
	margin-left:10px;
}
.vblist_box p{
	width:100%;
	font-size:0.96rem;
	display:inline-block;
}
.vbcontent .vblist p.qqtxt{
	float:left;
	width:auto;
	font-size:0.96rem;
	margin:6px 0 0 10px;
}

/* 侧边栏 end */

/* 产品列表 */
#product .search_box{
	margin-top:100px;
	background-color:#f2f2f2;
}
#product .search_input,#product .search_input input{
	background-color:#fff;
}
.tz_product_bg{
	background-color:#fff;
}
.tz_pro_left{
	float:left;
	width:20%;
	margin-right:4%;
}
.tz_pro_right{
	float:left;
	width:76%;
	padding-bottom:40px;
}
.tz_pro_title{
	float:left;
	width:100%;
	padding:16px 20px;
	background-color:#093090;
}
.tz_pro_title span{
	font-size:1rem;
	color:#fff;
}
.tz_pro_cate_list{
	float:left;
	width:100%;
	background-color:#f7f7f7;
	padding:0 20px;
}
.tz_pro_cate_list li.active a{
	color:#093090;
	font-weight:bold;
}
.tz_pro_cate_list li{
	padding:20px 0;
	border-bottom:1px solid #e8e8e8;
	display: flex;
	justify-content: space-between;
	cursor:pointer;
}
.tz_pro_cate_list li.ca_children{
	display:none;
}
.tz_pro_cate_list li i{
	font-size:1.2rem;
	
}

.tz_pro_cate_list li a{
	color:#999;
}
.tz_pro_cate_list li:hover a{
	color:#093090;
}
.tz_pro_h1_tit{
	font-size:1.8rem;
	color:#303030;
	margin-bottom:20px;
	margin-left:2%;
}
.tz_pro_list_box{
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
}
.tz_pro_list_box li{
	width:46%;
	margin:0 2% 20px 2%;
}
.tz_pro_main_box{
	width:100%;
	height:330px;
	border:1px solid #dcdcdc;
}
.tz_pro_main_box img{
	object-fit:contain;
	height: 100%;
}
.tz_pro_desc_box{
	width:100%;
	background-color:#f0f0f0;
	padding:20px;
}
.tz_pro_desc_box span{
	display:inline-block;
	width:100%;
}

.tz_pro_desc_box h3{
	padding-bottom:10px;
}
/* 产品详情 product-detail */
#product_detail .search_box{
	margin-top:100px;
	background-color:#f2f2f2;
}
#product_detail .search_input,#product_detail .search_input input{
	background-color:#fff;
}
.tz_pro_detail_main{
	display:flex;
	width:100%;
	flex-direction:row;
	margin-bottom:40px;
}
.tz_pro_detail_lemain{
	width:70%;
	margin-right:4%;
}
.tz_pro_detail_img{
	width:26%;
	height:184px;
}
.tz_pro_detail_img img{
	height:100%;
	object-fit:contain;
}
.tz_pro_detail_h1{
	font-size:1.6rem;
	color:#303030;
	padding-bottom:10px;
}
.tz_pro_detail_desc{
	font-size: 0.9rem;
    height: 70px;
    line-height: 1.4rem;
	overflow:hidden;
	overflow-y:auto;
	margin-bottom:12px;
}
.tz_pro_dc_box{
	display:flex;
	align-items: center;
}
.tz_pro_dc_box i{
	display:inline-block;
	font-size:1.5rem;
	color:#999;
}
.tz_pro_dc_box span{
	font-size:1.1rem;
	padding-left:10px;
	color:#999;
}
.tz_pro_detail_info{
	padding-bottom:30px;
}
.tz_pro_detail_info_tit{
	font-size:1.4rem;
	color:#303030;
	padding-bottom:10px;
}
.tz_pro_detail_inline_box{
	width:100%;
	padding:40px;
	background-color:#f7f7f7;
}
.tz_pro_detail_inline_box img{
	width:80%;
	margin:0 auto;
}
.tz_pro_detail_inline_box p{
	color:#303030;
	padding-bottom:10px;
}
.tz_pro_detail_file_box{
	width:40px;
	height:40px;
	background-color:#ed5a5a;
	color:#fff;
	font-weight:bold;
	justify-content: center;
    display: flex;
    align-items: center;
}
.tz_space_between{
	display:flex;
	justify-content: space-between;
}
.tz_pro_detail_left_box{
	display: flex;
    align-items: center;
}
.tz_pro_detail_left_box span{
	display:inline-block;
	padding-left:40px;
}
.tz_normal_btn{
	padding:10px 20px;
	background-color:#093090;
	color:#fff;
}
.tz_pro_detail_ri_box{
	display:flex;
}
.tz_pro_detail_app{
	display:flex;
	width:100%;
	flex-direction:row;
}
.tz_pro_detail_app li{
	width:14.285%;
	text-align:center;
	color:#303030;
	font-size:0.96rem;
}
.tz_pro_nav{
	display:flex;
	width:100%;
	justify-content: space-between;
	padding: 20px 0 60px 0;
}
.tz_pro_nav span{
	color:#999;
}
.tz_pro_small_box{
	width:36px;
	height:36px;
	border:1px solid #dcdcdc;
	margin-left:10px;
}
.tz_pro_small_box img{
	height:100%;
	object-fit:cover;
}
.tz_pro_pn_box{
	display:flex;
	align-items: center;
}
.tz_pro_pn_box:hover span{
	color:#093090;
}
/* 产品详情 product-detail  end */


/* 新闻列表 */
.tz_news_bg_box{
	float:left;
	width:100%;
	height:300px;
	background:url(/web/public/img/news_blue.jpg) no-repeat;
	background-size: cover;
	margin-top:100px;
}
#news_category .search_box{
	
	background-color:#f2f2f2;
}
#news_category .search_input,#news_category .search_input input{
	background-color:#fff;
}
.tz_news_cate_title{
	text-align: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
	color:#fff;
	flex-direction: column;
}
.tz_news_cate_title h1{
	font-size:1.6rem;
}
.tz_news_bg{
	background-color:#fff;
}
.tz_news_ca_main{
	display:flex;
	width:100%;
	flex-direction:row;
	padding-bottom:40px;
}
.tz_news_ca_main li{
	width:31%;
	margin:0 1%;
}
.tz_news_ca_main li:hover img{
	transform: scale(1.2);
}
.tz_news_ca_main li a{
	display:inline-block;
	width:100%;
	height:100%;
}
.tz_news_ca_desc{
	display:flex;
	flex-direction:column;
	margin-top:10px;
}
.tz_news_ca_img_box{
	height:258px;
	overflow:hidden;
}
.tz_news_ca_img_box img{
	height:100%;
	object-fit:cover;
}
.tz_news_ca_desc span{
	font-size:1rem;
	color:#999;
}
.tz_news_ca_desc label{
	display:inline-block;
	color:#093090;
	font-size:1rem;
	padding-top:6px;	
	cursor: pointer;
}
.news_ca_list{
	padding:60px 0;
}
.news_ca_list .tz_news_index_top{
	width:100%;
}
.tz_news_li_list li{
	padding:30px;
	background-color:#fff;
	margin-bottom:20px;
}
.tz_news_li_list li:hover{
	box-shadow: 0 6px 20px rgba(0,0,0,.1);
}
.tz_news_li_list li:hover .tz_news_title{
	color:#093090;
}
.tz_news_li_list .tz_news_date{
	color:#999;
	padding-top:0px;
	padding-right:20px;
}
.tz_news_date_box{
	display:flex;	
	align-items: center;
	padding-top:10px;
}
.tz_news_date_box .tz_news_m_rion{ 
	width:30px;
	height:30px;
}
/* 新闻列表 end */

/* 新闻详情 */
#news_detail .search_box{
	margin-top:100px;
	background-color:#f2f2f2;
}
#news_detail .search_input,#news_detail .search_input input{
	background-color:#fff;
}
.tz_new_prev_next{
	padding:20px 0 40px;
}
.tz_new_prev_next a{
	padding:8px 12px;
	border:1px solid #dcdcdc;
	border-radius:30px;
	max-width:200px;
}
.tz_new_prev_next a:hover{
	background-color:#093090;
	color:#fff;
	border:1px solid #093090;
}
.tz_news_det_h1{
	width:100%;
	font-size:2rem;	
	text-align:center;
	font-weight:400;
	color:#303030;
}
.tz_news_det_date{
	display:inline-block;
	width:100%;
	font-size:1.2rem;	
	text-align:center;
	color:#303030;
	padding-top:10px;
}
.tz_news_det_desc{
	width:100%;
	margin-top:20px;
	padding:10px 0 0 0;
	border-top:1px solid #e5e5e5;
	font-size:0.96rem;
}
.tz_news_det_content p{
	padding: 10px 0;
	text-align: left;
	display: inline-block;
	font-size: 1.1rem;
	color:
	#666;
	line-height: 30px;
	text-indent: 2.2rem;
	width: 100%;
}
.tz_news_det_content img{
	width:auto;
	display:inline-block;
}
.tz_lastest_news{
	padding:60px 0;
	background-color:#f2f2f2;
}
.tz_lastest_news .tz_news_ca_main{
	padding-bottom:0px;
}
.tz_news_det_other_tit{
	font-size:1.5rem;
	font-weight:400;
	padding-bottom:20px;
	padding:0 0 20px 1%;
	color:#303030;
}
/* 新闻详情 end */


/* 联系我们 */
.tz_contact_message{
	padding-top:40px;
}
#contactus .search_box{
	margin-top:100px;
	background-color:#f2f2f2;
}
#contactus .search_input,#contactus .search_input input{
	background-color:#fff;
}
.tz_global_title{
	font-size:1.6rem;
	padding-bottom:10px;
	text-align: center;
    width: 100%;
    color: #093090;
}
.tz_line{
	width:32px;
	height:2px;
	background-color:#093090;
	margin:8px auto 0;
}
.tz_contact_list{
	display:flex;
	flex-direction:row;
	width:100%;
	padding:20px 0;
}
.tz_contact_wechat{
	padding-bottom:20px;
	text-align:center;
}
.tz_contact_wechat p{
	padding:10px 0 20px;
}
.tz_contact_title{
	font-size:1.3rem;
}
.tz_contact_list li{
	width: 25%;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
}
.tz_contact_icon_box{
	width:64px;
	height:64px;
	line-height:64px;
	border-radius:50%;
	background-color:#f2f2f2;
	color:#093090;
	font-weight:bold;
}
.tz_contact_icon_box i{
	font-size:1.4rem;
}
.tz_contact_desc_box{
	padding-top:10px;	
}
.tz_contact_desc_box label{
	display:inline-block;
	width:100%;
	color:#303030;
	font-weight:600;
	padding-bottom:4px;
}
.contact_users{
	display:flex;
	padding-top:40px;
}
.contact_users dd {
    width: 150px;
    font-size: 18px;
    font-weight: bold;
}
.contact_users dt {
    width: calc(100% - 150px);
    font-size: 18px;
}
.contact_users dt input {
    width: 100%;
    height: 33px;
    font-size: 18px;
    line-height: 33px;
    border: #D2D2D2 1px solid;
	border-radius: 3px;
	background:#F6F6F6;
	padding-left:10px;
}
.contact_users dt textarea {
    width: 100%;
    height: 235px;
    font-size: 18px;
    line-height: 33px;
    border: #D2D2D2 1px solid;
	border-radius: 3px;
	background:#F6F6F6;
	padding-left:10px;
}
.tz_contact_mes_box{
	margin-bottom:60px;
}
.tz_commit_btn{
    padding: 20px 80px;
    color: #FFF;
    font-size: 24px;
    font-weight: bold;
    border: none;
    border-radius: 5032px;
    display: inline-block;
    background: #000;
    align-content: center;
    cursor: pointer;
}
.tz_cwechat_box img{
	margin:0 auto;
	width:200px;
}
/* 联系我们 end */

/* 关于途致 */
#aboutus .tz_ab_title{
	color:#093090;
}
.tz_aboutus_bg_box{
	float: left;
    width: 100%;
    height: 292px;
    background: url(/web/public/img/ab_bg.jpg);
    margin-top: 100px;
}
.tz_ab_bg{
	background-color:#fff;
}
.tz_ab_title{
	font-size:1.3rem;
	color:#303030;
	width: 100%;
    display: inline-block;
}
.tz_ab_title:hover{
	color:#093090;
}
.tz_ab_box p{
	padding-top:10px;
	line-height:30px;
	color:#666;
	font-size:0.9rem;
}
.tz_ab_img_box{
	padding-top:20px;
}
.tz_ab_box{
	padding:20px 0;
}
.tz_ab_sbox{
	padding:40px 0 80px;
}
.tz_ab_file_sbox{
	display:flex;
	width:100%;
	padding-top:20px;
	flex-wrap: wrap;
}
.tz_ab_file_sbox li{
	width:18%;
	margin:0 1% 20px 1%;
	border:1px solid #e5e5e5;
}
/* 关于途致 end */

/* 应用案例 */
.tz_application_box{
	display:flex;
	flex-wrap: wrap;
	width:100%;
}
.tz_application_box li{
	width:48%;
	margin-bottom:20px;
}
.tz_application_box li:hover .tz_ab_title{
	color:#093090;
}
.tz_app_imgbox{
	padding-top:10px;
}
.app_bottom_box{
	padding-bottom:40px;
}
.tz_application_bg{
	background-color:#fff;
}
/* 应用案例 end */

/* 分页 */
.comment_wrap ul.pagination {
 	padding-top:0;
 	margin-bottom:30px;
}
.comment_wrap .pagedown,
.comment_wrap .pageup {
 	padding:0;
}
.comment_wrap .pagedown i,
.comment_wrap .pageup i {
 	vertical-align:-1px;
	font-size: 0.72rem;
}
.comment_wrap .pagedown span,
.comment_wrap .pageup span {
 	display:none;
}
.pagination {
 	text-align:center;
 	padding:30px 0;
 	overflow:hidden;
 	font-size:0;
 	-webkit-text-size-adjust:none;
}
.pagination .pgDotStyle {
 	cursor:auto;
}
.pagination li {
 	min-width:30px;
 	display:inline-block;
 	width:auto;
 	height:30px;
 	line-height:30px;
 	margin:0 4px;
 	color:#666;
 	-webkit-border-radius:2px;
 	border-radius:2px;
 	background:#f7f7f7;
 	overflow:hidden;
 	font-size:14px;
}
.pagination li.active{
	background-color:#093090;
	color:#fff;
}
.pagination li span,
.pagination li span.dotStyle {
 	padding:0;
}
.pagination li.jumpToPage {
 	width:100px;
 	background-color:#fff;
}
.pagination li.jumpBtn {
 	width:42px;
}
.pagination a {
 	display:block;
 	width:auto;
 	height:100%;
 	color:#666;
 	padding-left:5px;
 	padding-right:5px;
}
.pagination .pageCurrent,
.pagination .pageCurrent:hover,
.pagination a:hover {
 	background-color:#093090;
 	-webkit-border-radius:2px;
 	-moz-border-radius:2px;
 	-ms-border-radius:2px;
 	-o-border-radius:2px;
 	border-radius:2px;
 	color:#fff;
 	font-weight:700;
}
.pagination .pagedown a:hover,
.pagination .pageup a:hover {
 	background-color:#093090;
 	color:#fff;
}
.pagination .noClick a,
.pagination .noClick a:hover {
 	background-color:#fff;
 	-webkit-border-radius:0;
 	-moz-border-radius:0;
 	-ms-border-radius:0;
	-o-border-radius:0;
	border-radius:0;
	color:#999;
	font-weight:400;
	text-decoration:none;
}
.pagination span {
 	font-size:12px;
}
.pagination .a_jumpTo {
 	height:30px;
 	line-height:30px;
 	background-color:#093090;
 	color:#fff;
 	padding:0 10px;
 	-webkit-border-radius:2px;
 	-moz-border-radius:2px;
 	-ms-border-radius:2px;
 	-o-border-radius:2px;
 	border-radius:2px;
	cursor:pointer;
}
.pagination li.teshu{
	background-color:unset;
}
.pagination .a_jumpTo:hover {
 	font-weight:400;
}
.input_num {
    vertical-align: 1px;
    height: 28px !important;
    line-height: 28px !important;
    border: 1px solid #dcdcdc !important;
	-webkit-border-radius: 2px !important;
	-moz-border-radius: 2px !important;
	-ms-border-radius: 2px !important;
	-o-border-radius: 2px !important;
	border-radius: 2px !important;
	padding: 0 5px !important;
	color:#666 !important;
    width: 46px !important;
    margin: 0 5px !important;
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important;
}
/* 分页 end */


/* 搜索页 */
.children_banner {
    float: left;
    width: 100%;
    height: 200px;
    background: url("/web/public/img/news_blue.jpg") center center;
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.g_title{
    font-size: 1.4rem;
    color: #fff;
    font-weight: bold;
}
.search_title{
	float: left;
    width: 100%;
    padding: 0 0 10px;
    font-size: 1.6em;
	border-bottom:1px solid #dcdcdc;
	margin-bottom:20px;
}
.search_title h3{
	font-weight: normal;
    font-size: 1.1em;
    display: inline-block;
    color: #666;
}
.search_title span{
	display: inline-block;
    font-size: 0.8em;
    color: #999;
}
.nodata{
	float:left;
	width:100%;
	text-align:center;
	margin-bottom:40px;
}
.nodata i{
	font-size:4rem;
	color:#dadada;
}
/* 网站地图 */
.tz_sitemap_bg{
	background-color:#fff;
}
.tz_smap_title{
	font-size:1rem;
	color:#093090;
	padding-bottom:10px;
	border-bottom:1px solid #093090;
	margin-bottom:10px;
}
.tz_smap_tip{
	color:#093090;
}
.tz_smap_box{
	margin-bottom:20px;
}
.tz_smap_line_box ul li.teshu{
	width:100%;
}
.tz_smap_line_box ul{
	display:flex;
	flex-direction:row;
	width:100%;
	flex-wrap: wrap;
	margin-bottom:20px;
}
.tz_smap_line_box ul li{
	margin-bottom:10px;
}
.tz_smap_line_box ul li:hover a{
	color:#093090;
}
.sitemap_box{
	margin-bottom:60px;
}
/* 网站地图 end */

/* 404页面 */
.construct {
    float: left;
    width: 100%;
    text-align: center;
    padding: 160px 0 200px;
}
.construct img {
    width: auto;
    display: inline-block;
}
.construct h4 {
    font-size: 2em;
	color:#999;
	font-weight:normal;
}
.gtindex_btn{
	padding: 12px 20px;
    background-color: #999;
    color: #fff;
    font-size: 1rem;
    display: inline-block;
    border-radius: 4px;
    margin-top: 20px;
}
.gtindex_btn:hover{
	background-color:#093090;
}
/* 404页面 end */

/* 应用案例 */
#application .search_box{
	margin-top:100px;
	background-color:#f2f2f2;
}
#application .search_input,#application .search_input input{
	background-color:#fff;
}
.tz_empty_box{
	text-align:center;
	font-size:1.4rem;
	padding:80px 0 120px;
}
.tz_empty_box  i{
	color:#093090;
	font-size:6rem;
}
.tz_empty_box span{
	padding-top:10px;
	display:inline-block;
	width:100%;
}
/* 应用案例 end */


/* 响应式调整 - 手机端 */
@media screen and (max-width:1200px){
	.tz_pro_detail_main{
		padding:0 20px 20px 20px;
	}
	.tz_pro_detail_info{
		padding:0 20px 20px 20px;
	}
	.tz_pro_nav{
		padding:0 20px 20px 20px;
	}
}

@media screen and (max-width:800px){ 
	/* 首页 */
	.lg_global_width{margin:0 20px;}
	.header_box{display:none;}
	.ip_header{display:block;}
	.ip_header .logo{
		float:left;
		width:70px;
		height:42px;
		background: url("/web/public/img/logo.png") no-repeat;
		background-size: contain;
		margin:10px 0 0 0;
	}
	.banner_box {margin-top: 64px;}
	.pc_banners {display: none;}
	.ip_banners {display: inline;}
	.search_box{
		display:none;
	}
	.tz_box{
		padding:30px 0;
	}
	.tz_index_title{
		font-size:1.4rem;
	}
	.tz_index_pro_cate_box{
		width:100%;
		flex-direction: row;
		height:auto;
		
        height: 60px;
        line-height: 60px;
        white-space: nowrap;
        box-shadow: 0 1px 2px rgba(0,0,0,.1);
        overflow-x: scroll;
        overflow-y: hidden;
        -webkit-backface-visibility: hidden;
        -webkit-perspective: 1000;
        -webkit-overflow-scrolling: touch;
        text-align: justify;
        background: #f7f7f7;
        padding: 0px 5px;
        box-sizing: border-box;
	}
	.tz_index_pro_cate_box li i{
		display:none;
	}
	.tz_index_pro_list_box{
		width:100%;
	}
	.tz_inpro_box{
		width: 46%;
	}
	.tz_index_pro_box{
		height:auto;
	}
	.tz_advantage{
		width:100%;
		margin:0px;
		flex-wrap: wrap;
	}
	.tz_advantage li{
		flex:48%;
		margin:0 1% 20px 1%;;
	}
	.tz_app_section{
		width:100%;
		padding:0 20px;
		height:284px;
	}
	.application_bg{
		height:390px;
	}
	.tz_news_main{
		width:100%;
		margin-right:0px;
	}
	.tz_news_list{
		width:100%;
		margin-top:20px;
	}
	.tz_news_box{
		flex-direction: column;
	}
	.tz_news_line_box{
		margin-bottom:20px;
		background-color:#fff;
	}
	.tz_center{
		padding-top:20px;
	}
	#coope_projects{
		padding:0 20px 40px;
	}
	.tz_index_contact{
		width:100%;
		text-align: center;
	}
	.tz_index_map{
		width:100%;
	}
	.contact_way{
		padding:0px;
	}
	.tz_index_map{
		display:none;
	}
	.tz_foo{
		padding:20px;
	}
	.tz_foo_bot_box{
		padding:20px;
		font-size:0.8rem;
	}
	.tz_foo_nav{
		width:100%;
		flex-direction:column;
		margin-top:20px;
	}
	.tz_foo_nav_box{
		width:100%;
	}
	.tz_foo_nav a.foo_tit{
		width:100%;
		display: flex;
    	justify-content: space-between;
		padding-bottom:10px;
		font-size:1rem;
	}
	.tz_foo_nav_box ul{
		margin-bottom:10px;
		display:none;
	}
	.tz_incontact{
		width:100%;
		padding:0 20px;
	}
	.tz_index_contact{
		padding:40px 0;
	}
	.sidebar{
		right:20px;
		bottom:50px;
		height:60px;
	}
	.tz_foo_nav a.foo_tit:hover{
		color:#fff;
		text-decoration: unset;
	}
	.tz_foo_nav a.foo_tit i{
		font-size: 1.6rem;
    	font-weight: 600;
		display:block;
	}
	.contact_sider,.wechat_sider{display:none;}
	.tz_incontact span{
		font-size:0.88rem;
	}
	.tz_incontact h1{
		font-size:1.2rem;
	}
	#coope_projects .merchant_logo_box{height:64px;}
	#coope_projects .merchant_logo_a{height:64px;}
	#coope_projects .merchant_box label{font-size:0.88rem;}
	#coope_projects .merchant_box{height:110px;}
	.tz_watch_more{font-size:0.9rem;}
	.tz_news_index_top li a{
		padding:8px 12px;
		font-size:0.8rem;
	}
	.tz_news_index_top{
		padding-bottom:20px;
	}
	.tz_index_title{
		margin-bottom:20px;
	}
	.tz_news_le_box{width:100%;margin-right:0;}
	.tz_news_lsection{flex-direction:column;}
	.tz_news_img_box{margin-top:14px;width:100%;}
	/* 首页 end */
	
	/* 产品中心 */
	.tz_pro_detail_inline_box{
		padding:20px;
	}
	.tz_pro_left{
		width:100%;
		margin-right:0px;
	}
	.tz_pro_cate_list{
		display:flex;
		height: 60px;
        line-height: 60px;
        white-space: nowrap;
        box-shadow: 0 1px 2px rgba(0,0,0,.1);
        overflow-x: scroll;
        overflow-y: hidden;
        -webkit-backface-visibility: hidden;
        -webkit-perspective: 1000;
        -webkit-overflow-scrolling: touch;
        text-align: justify;
        background: #f7f7f7;
        padding: 0px 5px;
        box-sizing: border-box;
	}
	.tz_pro_cate_list li{
		margin-bottom: 0px;
		padding:0 10px;
    	width: 100%;
    	flex: 1;
    	border-bottom: 1px solid #e5e5e5;
    	display: flex;
    	align-items: center;
	}
	.tz_pro_right{
		width:100%;
		padding:20px 10px 0;
	}
	.tz_pro_main_box{
		height:200px;
	}
	.tz_pro_h1_tit{
		font-size:1.4rem;
	}
	.tz_pro_detail_lemain{
		width:100%;
		margin-right:0;
	}
	.tz_pro_detail_main{
		flex-direction:column;
	}
	.tz_pro_detail_img{
		width:100%;
		text-align:center;
		margin-top:20px;
	}
	.tz_pro_detail_img img {
	    height: 100%;
	    width: 50%;
	    object-fit: cover;
	    display: inline-block;
	}
	/* 产品中心 end */
	
	/* 产品详情 */
	.tz_pro_detail_left_box span{
		padding-left:0px;
	}
	.tz_pro_detail_left_box span.tz_pro_file{
		padding-left:10px;
	}
	.tz_pro_detail_left_box span.tz_pro_size,.tz_pro_detail_left_box span.tz_pro_time{
		display:none;
	}
	.tz_space_between{
		flex-direction:column;
	}
	.tz_pro_detail_left_box{
		width:100%;
	}
	.tz_pro_detail_ri_box{
		margin-left:auto;
	}
	.tz_pro_detail_inline_box{
		padding:14px;
	}
	.tz_pro_detail_app{
		flex-wrap:wrap;
	}
	.tz_pro_detail_app li{
		width:50%;
		padding-bottom:10px;
	}
	.tz_pro_prev,.tz_pro_next{
		width:100%;
	}
	.tz_pro_prev{
		margin-bottom:20px;
	}
	.tz_pro_nav{
		flex-direction:column;
	}
	.tz_foo_logo{
		width:100px;
	}
	.tz_bread_crumb{
		margin-top:64px;	
		padding:16px 20px;
		font-size:0.9rem;
	}
	.tz_pro_cate_list li.ca_children{
		display:flex;
	}
	/* 产品详情 end */
	
	/* 新闻中心 */
	.tz_news_bg_box{
		margin-top:64px;
		height:160px;
	}
	.tz_news_det_content img{
		width:100%;
		display:block;
	}
	.tz_news_cate_title h1{
		font-size:1.4rem;
	}
	#news_category .tz_bread_crumb{
		margin-top:0px;
	}
	.tz_news_ca_main{
		flex-direction:column;
		padding:0 20px 20px;
	}
	.tz_news_ca_main li{
		width:100%;
		margin-bottom:20px;
	}
	.news_ca_list{
		padding:20px 0;
	}
	/* 新闻中心 end */
	
	/* 新闻详情 */
	.news_main_content{
		padding:0 20px;
	}
	.tz_lastest_news{
		padding:20px 0;
	}
	.tz_news_det_other_tit{
		padding:0 20px 20px;
		font-size:1.3rem;
	}
	.tz_news_det_h1{
		font-size:1.6rem;
	}
	.tz_new_prev_next{
		display:flex;
		flex-direction:column;
		padding:10px 0 20px; 
	}
	.news_prev{
		margin-bottom:10px;
	}
	.tz_news_det_content p{
		font-size:1rem;
	}
	/* 新闻详情 end */
	
	/* 联系我们 */
	.tz_contact_list{
		flex-wrap: wrap;
		padding:20px;
	}
	.tz_contact_list li{
		width:33.333%;
		margin-bottom:10px;
	}
	.tz_contact_desc_box span{
		font-size:0.86rem;
		line-height:24px;
		color:#999;
	}
	.tz_contact_mes_box{
		padding:0 20px;
	}
	.contact_users{
		padding-top:20px;
	}
	.contact_users dd {
	    width: 100px;
	    font-size: 14px;
	}
	.contact_users dt {
	    width: calc(100% - 100px);
	    font-size: 14px;
	}
	.contact_users dt input {
	    height: 26px;
	    font-size: 14px;
	    line-height: 26px;
	}
	.tz_global_title{
		font-size:1.2rem;
	}
	.tz_line {
	    width: 28px;
	    height: 4px;
	    background-color: #093090;
	    margin: 8px auto 0;
	}
	.contact_users dt textarea {
	    height: 150px;
	    font-size: 14px;
	    line-height: 26px;
	}
	.tz_commit_btn{
		padding:16px 0;
		width:100%;
		font-size:18px;
	}
	/* 联系我们 end */
	/* 网站地图 */
	.sitemap_box{
		padding:0 20px;
	}
	/* 网站地图 end */
	/* 关于我们 */
	.tz_aboutus_bg_box{
		margin-top:64px;
	}
	#aboutus .tz_bread_crumb{
		margin-top:20px;
		padding:16px 0;
	}
	.tz_ab_sbox{
		padding:0 0 20px;
	}
	.tz_ab_file_sbox li{
		width:48%;
	}
	/* 关于我们 end */
}


@media screen and (max-width:500px){ 
	.tz_app_desc_box{
		height:90px;
		padding:14px;
	}
	.tz_app_img_box{
		height:120px;
	}
	.tz_pro_main_box{
		height:150px;
	}
	.tz_pro_desc_box{
		padding:14px;
	}
	.tz_pro_detail_img{
		height:auto;
	}
	.tz_pro_detail_img img{
		height:auto;
		width:100%;
	}
	.tz_pro_detail_info_tit{
		font-size:1.1rem;
	}
	.tz_pro_detail_main{
		padding:0 20px;
		margin-bottom:20px;
	}
	.tz_ab_title{
		font-size: 1.2rem;
	}
	.tz_application_box li{
		width:100%;
	}
}
	
