@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: #fafafa;
    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 !important;
}

.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;
}

.bg_white {
    background-color: #fff;
}

.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;
}


/* 按钮组 */

/* 面包屑 */
.bread_crumb {
    width: 100%;
    padding: 30px 0;
    font-size: 0.96rem;
    color: #999;
    background-color: #fafafa;
}

.bread_crumb a, .bread_crumb label {
    color: #666;
}

.bread_crumb a:hover {
    color: #1366ec;
}

/* 面包屑 end */

/* 头部header */
.active1 {
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

#header.active1, #header.activeC {
    background-color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .1);
}

#header.active1 ul li a, #header.activeC ul li a {
    color: #303030;
}

#header.active1 .logo2, #header.activeC .logo2 {
    display: block;
}

#header.active1 .logo, #header.activeC .logo {
    display: none;
}

.logo2 {
    float: left;
    background: url("/web/public/img/logo2.png") no-repeat;
    width: 140px;
    height: 30px;
    margin: 16px 16px 0 0;
    background-size: 100%;
    text-indent: -200000px;
    display: none;
}

.banner_box {
    float: left;
    width: 100%;
    position: relative;
}

.banner_box .info_box {
    position: absolute;
    top: 40%;
    left: 44%;
    text-align: center;
    color: #fff;
}

.banner_box .info_box h2 {
    font-weight: bold;
    font-size: 2rem;
}

.banner_box .info_box p {
    padding-top: 12px;
    font-size: 1.2rem;
}

.btn_list {
    margin-top: 30px;
}

.btn_style {
    display: inline-block;
    padding: 6px 20px;
    color: #fff;
    font-size: 0.8rem;
    border: 1px solid #fff;
    position: relative;
}

.ab_btn {
    margin-right: 10px;
}

.btn_style:after,
.btn_style:before {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    -webkit-transition: 0.7s all, 0.1s border-color;
    -moz-transition: 0.7s all, 0.1s border-color;
    -ms-transition: 0.7s all, 0.1s border-color;
    -o-transition: 0.7s all, 0.1s border-color;
    transition: 0.7s all, 0.1s border-color;
    z-index: 1;
}

.btn_style:after {
    border-left: 2px solid transparent;
    border-top: 2px solid transparent;
    left: -1px;
    top: -1px;
}

.btn_style:before {
    border-right: 2px solid transparent;
    border-bottom: 2px solid transparent;
    right: -1px;
    bottom: -1px;
}

.btn_style:hover:after,
.btn_style:hover:before {
    width: 100%;
    height: 100%;
    border-color: #1366ec;
}


.btn_style:hover {
    background: #1366ec;
    -webkit-transition: .5s .6s;
    -moz-transition: .5s .6s;
    -ms-transition: .5s .6s;
    -o-transition: .5s .6s;
    transition: .5s .6s;
    border-color: transparent;
}


.common_box {
    padding: 40px 0;
}

.h3_title {
    font-size: 1.6rem;
    color: #303030;
    text-align: center;
    padding-bottom: 30px;
}

.pro_index {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

}

.pro_index li {
    width: 23%;
    margin: 0 1% 20px 1%;
    background-color: #e5e5e5;
    text-align: center;

}

.pro_index li:hover a {
    color: #1366ec;
}

.pro_index li a {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.pro_icon {
    display: inline-block;
    width: 80px;
    margin: 18px 0;
    height: 70px;
}

.pro_index li p {
    margin-bottom: 16px;
}

.co_index {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.co_index li {
    width: 18%;
    margin: 0 1% 20px 1%;
    text-align: center;
}

.co_box {
    width: 120px;
    display: inline-block;
}

.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: #1366ec;
    color: #fff;
    cursor: pointer;
    font-size: 0.9rem;
}

.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: 140px;
    height: 30px;
    margin: 16px 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: #1366ec;
}

/* 移动端 */
.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: 50px;
    left: 0px;
    background-color: #fff;
    width: 100%;
    text-align: center;
    display: none;
    z-index: 10000;
    border-top: 1px solid #e5e5e5;
}

.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_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;
}

.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: 0.9em;
}

.navbar-collapse ul li a:hover {
    color: #1366ec;
}

.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;
    width: 44px;
    height: 44px;
    cursor: pointer;
}

.si_btn:hover {
    background: #1366ec;
}

.si_btn:hover i {
    color: #fff;
}

.si_btn i {
    position: absolute;
    right: 12px;
    top: 12px;
    color: #1366ec;
    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: #1366ec;
    color: #fff;
}

.tz_news_index_top li a {
    padding: 8px 16px;
    display: inline-block;
    width: 100%;
    height: 100%;
    font-size: 0.9rem;
}

.tz_news_li_list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.tz_news_index_top li:hover {
    background-color: #1366ec;
}

.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%;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.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 */


/* 侧边栏 */
.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;
}
.ip_show{
    display: none;
}
.pc_show{
    display: block;
}
.fcaction span {
    display: inline-block;
    width: 100%;
    font-size:0.9rem;
}

.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 */

/* 产品列表 */
.search_box {
    margin-top: 70px;
    background-color: #f2f2f2;
    color: #1366ec;
}

.search_input, .search_input input {
    background-color: #fff;
}

/* 新闻列表 */
.news_bg_box {
    float: left;
    width: 100%;
    height: 330px;
    background: url(/web/public/img/news_blue.jpg);
    margin-top: 70px;
}

.news_lbox {
    display: flex;
    width: 100%;
    flex-direction: row;
    padding: 40px 0;
}

.news_lbox li {
    width: 31%;
    margin: 0 1%;
}

.news_lbox li:hover img {
    transform: scale(1.2);
}

.news_box li:hover img {
    transform: scale(1.2);
}

.news_box li:hover .index_gntext h4 {
    color: #1366ec;
}

.abhs_btn_box {
    display: flex;
    justify-content: center;
    padding-top: 20px;
}

.news_cate_title {
    text-align: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    flex-direction: column;
    font-size: 1.8rem;
}

.news_img_box {
    height: 258px;
    overflow: hidden;
}

.news_img_box img {
    height: 100%;
    object-fit: cover;
}

.news_desc_box {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.news_desc_box span {
    font-size: 1rem;
    color: #999;
}

.news_desc_box p {
    display: inline-block;
    color: #1366ec;
    font-size: 1rem;
    padding-top: 6px;
    cursor: pointer;
}

/* 新闻列表 end */

/* 新闻详情 */
.news_bg {
    padding: 30px 0;
}

.lastest_news {
    padding: 30px 0;
}

.lastest_news .news_lbox {
    padding: 20px 0;
}

.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: #1366ec;
    color: #fff;
    border: 1px solid #1366ec;
}

.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;
}

.lastest_news {
    padding: 60px 0;
    background-color: #f2f2f2;
}

.tz_lastest_news .tz_news_ca_main {
    padding-bottom: 0px;
}

.news_det_other_tit {
    font-size: 1.5rem;
    font-weight: 400;
    padding: 0 0 0 1%;
    color: #303030;
}

/* 新闻详情 end */


/* 联系我们 */
.tz_product_bg {
    padding: 30px 0;
}

.tz_global_title {
    font-size: 1.6rem;
    padding-bottom: 10px;
    text-align: center;
    width: 100%;
    color: #1366ec;
}

.tz_line {
    width: 32px;
    height: 2px;
    background-color: #1366ec;
    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: #1366ec;
    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_bg_box {
    float: left;
    width: 100%;
    height: 292px;
    background: url(/web/public/img/ab_bg.jpg);
    margin-top: 70px;
    background-position: center;
}

.intro_cbox {
    background-color: #fafafa;
    padding: 50px 0;
}

.intro_icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro_icon i {
    font-size: 2.2rem;
}

.intro_lbox {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.intro_lbox li {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 25%;
}

.intro_lbox li p {
    padding-left: 10px;
}

/* 关于途致 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: #fff;
    overflow: hidden;
    font-size: 14px;
}

.pagination li.active {
    background-color: #1366ec;
    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: #1366ec;
    -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: #1366ec;
    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.2em;
    border-bottom: 1px solid #dcdcdc;
    margin-bottom: 20px;
}

#search .pro_ri_box_ul {
    width: 100%;
}

.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: #1366ec;
    padding-bottom: 10px;
    border-bottom: 1px solid #1366ec;
    margin-bottom: 10px;
}

.tz_smap_tip {
    color: #1366ec;
}

.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;
}

.search_cbox {
    padding: 30px 0;
}

.tz_smap_line_box ul li {
    margin-bottom: 10px;
}

.tz_smap_line_box ul li:hover a {
    color: #1366ec;
}

.sitemap_box {
    padding: 30px 0;
}

/* 网站地图 end */

/* 404页面 */
.construct {
    float: left;
    width: 100%;
    text-align: center;
    padding: 80px 0;
}

.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: #1366ec;
}

/* 404页面 end */

/* 应用案例 */

.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 */


/* 新css */
.app_nav {
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.app_nav_box {
    display: flex;
    width: 100%;
}

.app_nav_box li {
    cursor: pointer;
    width: 25%;
    text-align: center;

}

.app_nav_box li span {
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 2px solid transparent;
}

.app_nav_box li span.active {
    border-bottom: 2px solid #1366ec;
    color: #1366ec;
    font-weight: bold;
}

#news .tz_news_index_top {
    padding: 30px 0 0 0;
}

.app_nav_box li:hover span {
    border-bottom: 2px solid #1366ec;
    color: #1366ec;
    font-weight: bold;
}

.app_le_box {
    width: 60%;
    background-color: #eee;
    height: 480px;
    
}

.app_ldc {
    background: url(/web/public/img/app_1.jpg) no-repeat;
}

.app_gf {
    background: url(/web/public/img/app_2.jpg) no-repeat;
}

.app_bdt {
    background: url(/web/public/img/app_3.jpg) no-repeat;
}

.app_yl {
    background: url(/web/public/img/app_4.jpg) no-repeat;
}

.app_qc {
    background: url(/web/public/img/app_5.jpg) no-repeat;
}


.app_ri_box {
    width: 40%;
}

.app_main_box {
    height: 480px;
    display: flex;
}

.app_ri_tbox {
    height: 300px;
    background: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app_ri_bbox {
    height: 180px;
    background: #1366ec;
    padding: 30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.app_ri_bbox h4 {
    color: #fff;
}

.app_ri_bbox p {
    font-size: 0.8rem;
    color: #fff;
    padding-top: 10px;
}

.abhs {
    height: 540px;
    background: url(/web/public/img/abgd.jpg);
    padding-bottom: 0px !important;
}

.abhs .aabtn {
    border: 1px solid #1366ec;
    color: #1366ec;
}

.abhs .btn_style:hover {
    color: #fff;
}

.pro_tp {
    display: flex;
    justify-content: center;
}

.ab_box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
}

.ab_le_box {
    width: 40%;
}

.ab_ri_box {
    width: 56%;
    padding-left: 4%;
}

.ab_ri_box p {
    line-height: 28px;
    text-indent: 2rem;
}

.news_box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.news_box li {
    width: 48%;
    margin: 1%;
    padding: 1%;
    background: #fff;
}

.news_abox {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.news_abox .img_box {
    width: 150px;
    height: 110px;
    overflow: hidden;
}

.news_abox .img_box img {
    height: 100%;
    object-fit: cover;
}

.index_gntext {
    flex: 1;
    padding-left: 2%;
}

.index_gntext h4 {
    padding-bottom: 10px;
}

.index_gntext p {
    color: #afafaf;
    font-size: 0.9rem;
}


.h1_title {
    padding: 30px 0;
    font-size: 1.5rem;
    color: #303030;
}

.pro_box {
    display: flex;
    flex-direction: row;
    padding: 40px 0;
}

.pro_le_box {
    width: 24%;
    background-color: #fff;
    height: fit-content;
}

.pro_ri_box {
    flex: 1;
    padding-left: 1%;
    width: 100%;

}

.pro_ri_box_ul {
    display: flex;
    flex-wrap: wrap;
    height: max-content;
}

.pro_ri_box_ul li {
    width: 30%;
    height: 214px;
    background-color: #fff;
    margin: 0 1% 2% 1%;
}

.pro_ri_box_ul li:hover .pro_img_box img {
    transform: scale(1.2);
}

.pro_ri_box_ul li:hover p {
    color: #1366ec;
}

.pro_ri_box_ul li a.pro_img_a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 80%;
}

.pro_ri_box_ul li p {
    text-align: center;
    width:80%;
}

.pro_img_box {
    width: 100px;
    height: 100px;
    overflow: hidden;
}

.pro_cate_box {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.pro_icon_box {
    width: 30px;
}

.pro_dimg_box {
    width: 200px;
}

.pro_cate_main a.active, .pro_cate_list li a.active {
    color: #1366ec;
    font-weight: bold;
}


.pro_cate_main p {
    padding-left: 10px;
}

.pro_center_box {
    display: inline-block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    background-color: #1366ec;
    color: #fff;
    text-indent: 1.2rem;
    font-size: 1.1rem
}

.pro_cate_main {
    display: flex;
    width: 100%;
    flex-direction: row;
    height: 52px;
    justify-items: center;
    align-items: center;
    padding: 0 6%;
}

.pro_cate_list {
    padding: 20px;
    background-color: #e5e5e5;
}

.pro_cate_list li {
    padding-bottom: 10px;
    padding-left: 20px;
}

.pro_cate_list li a {
    font-size: 0.9rem;
}

.pro_cate_list li:last-child {
    padding-bottom: 0px;
}

.pro_detail_box {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
}

.pro_dri_box {
    padding: 30px 0;
}

.dinfo_lbox {
    padding-bottom: 10px;
}

.pro_dcontent {
    background-color: #fff;
    margin-left: 2%;
    padding: 0px;
    height: fit-content;
}

.dcontent_mbox {
    padding: 10%;
}

.dcon_top_box {
    display: flex;
    flex-direction: row;
    width: 100%;
    background-color: #e5e5e5;
}

.dcon_top_box li {
    padding: 12px 32px;
    font-size: 0.9rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.dcon_top_box li.active {
    border-bottom: 2px solid #1366ec;
    color: #1366ec;
    background-color: #fff;
}


.pcHidden {
    display: none;
}

#header {
    position: fixed;
    width: 100%;
    height: 70px;
    left: 0;
    top: 0;
    z-index: 30;
}

#header ul {
    float: right;
}

#header ul li {
    font-size: 0.9rem;
    padding: 0 20px;
    float: left;
    line-height: 70px;
}

#header ul li:hover a, #header ul li.active a {
    color: #1366ec;
}


#header ul li a {
    color: #fff;
    display: inline-block;
    padding: 0 20px;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-container .swiper-pagination {
    left: 30px;
    bottom: 80px;
    width: auto;
}

.swiper-container .swiper-slide {
    position: relative;
    overflow: hidden;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: none;
    border: 1px solid #fff;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #fff;
}

.full {
    position: absolute;
}

.full img {
    width: 100%;
}

/*.slide-1 .preload {
	background: url(../uploads/01_s.jpg) no-repeat left top/100% 100%;
}

.slide-2 .preload {
	background: url(../uploads/02_s.jpg) no-repeat left top/100% 100%;
}

.slide-3 .preload {
	background: url(../uploads/03_s.jpg) no-repeat left top/100% 100%;
}

.slide-4 .preload {
	background: url(../uploads/04_s.jpg) no-repeat left top/100% 100%;
}*/

.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:#1366ec;
    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_detail_info_tit{
    font-size: 1.1rem;
    padding-bottom: 10px;
}
.tz_pro_detail_info{
    margin-bottom:20px;
}


.homepage-left100 {
    width: 100%;
    position: absolute;
    left: 100%;
    top: 44%;
    z-index: 10;
    transform: translate(-50%, -50%);
}

.homepage-left100 .txt {
    text-transform: uppercase;
    font-size: 48px;
    letter-spacing: 16px;
    line-height: 72px;
}

.txtCenter {
    position: absolute;
    top: 45%;
    left: 50%;
    z-index: 10;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 15px;
}

.txtCenter .txt {
    font-size: 125px;
    letter-spacing: -2px;
    line-height: 115px;
    color: #121212;
    text-align: center;
    text-transform: uppercase;
    font-family: "Arial Black", Gadget, sans-serif;
}

.whiteTxt {
    position: absolute;
    top: 45%;
    left: 50%;
    z-index: 10;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.whiteTxt .txt {
    font-size: 65px;
    letter-spacing: -2px;
    line-height: 82px;
    color: #ffffff;
    text-align: center;
    font-family: "Arial Black", Gadget, sans-serif;
}

.foot_box {
    float: left;
    width: 100%;
    position: relative;
    background: #303030;
}

.foo_main_box {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 40px 0;
}

.foo_main_le_box {
    width: 40%;
}

.foo_main_ri_box {
    flex: 1;
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
}

.foo_nav_top {
    display: inline-block;
    color: #fff;
    padding-bottom: 14px;
}

.foo_top_box {
    color: #848484;
    display: flex;
    align-items: center;
    padding-bottom: 8px;
}

.foo_top_box .foo_size {
    padding-left: 8px;
}
.foo_size:hover{
    color:#e5e5e5;
}

.foo_size {
    color: #848484;
    font-size: 0.8rem;
}

.foo_nav_box {
    padding-left: 8%;
}

.foo_nav_box ul li {
    padding-bottom: 8px;
}

.foo_line {
    width: 100%;
    height: 1px;
    background-color: #626262;
}

.foo_bot_box {
    display: flex;
    flex-direction: row;
    padding: 20px 0;
    width: 100%;
    justify-content: space-between;
}

.app_img_box {
    width: 100%;
    height: 100%;
}

.app_img_box img {
    height: 100%;
    object-fit: contain;
}

.foo_le_bbox .bot_logo_box {
    display: inline-block;
    text-align: center;
    width: 120px;
}

.tz_news_det_desc {
    color: #999;
}

.closeBtn {
    border: 1px solid #1366ec;
    font-size: 0.7rem;
    cursor: pointer;
}

.nodata_box{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nodata_imgbox{
    width:200px;
    margin-bottom: 10px;
}
.nodata_box span{
    font-size:0.9rem;
    color:#999;
}


/* 响应式调整 - 移动端 */
@media screen and (max-width: 1400px) {
    #header {
        padding: 0 20px;
    }

    #header ul li {
        padding: 0 10px;
    }

    #header ul li a {
        padding: 0 10px;
    }
}


@media screen and (max-width: 800px) {
    .tz_pro_detail_ri_box{
        flex-direction: row-reverse;
    }
    .tz_space_between{
        flex-direction: column;
    }
    .tz_pro_detail_left_box{
        flex-wrap: wrap;
    }
    .tz_pro_detail_left_box span{
        width: 100%;
        padding-left:0px;
        margin-bottom:10px;
        font-size:0.9rem;
    }
    .tz_pro_detail_left_box .tz_pro_file{
        padding-left:10px;
        width:70%;
    }
    .tz_pro_detail_file_box{
        margin-bottom:10px;
    }
    .tz_pro_detail_inline_box{
        padding:16px;
    }
    body{
        background-color:#f2f2f2;
    }
    .pc_show{
        display: none;
    }
    .ip_show{
        display: block!important;
    }
    .pro_le_box{
        width:20%;
    }
    .pro_icon{
        height: 36px;
    }
    .tz_news_index_top {
        padding-bottom: 20px;
    }

    .tz_news_index_top li a {
        font-size: 0.8rem;
    }

    .tz_news_title {
        font-size: 1rem;
    }

    .tz_news_date_box {
        font-size: 0.9rem;
    }

    .tz_news_li_list .tz_news_date {
        font-size: 0.8rem;
    }

    .tz_news_desc {
        font-size: 0.8rem;
        height: 46px;
    }

    .tz_news_m_rion i {
        font-size: 0.9rem;
    }

    .tz_news_date_box .tz_news_m_rion {
        width: 20px;
        height: 20px;
    }

    .tz_news_le_box {
        width: 100%;
        margin-right: 0;
    }

    .tz_news_img_box {
        width: 100%;
        margin-top: 20px;
    }

    .tz_news_li_list li {
        padding: 16px;
    }

    .tz_commit_btn {
        font-size: 1rem;
    }

    .contact_users dd {
        font-size: 1rem;
    }

    .tz_contact_list {
        flex-wrap: wrap;
    }

    .tz_contact_desc_box span {
        font-size: 0.8rem;
    }

    .tz_contact_list li {
        width: 50%;
        margin-bottom: 10px;
    }

    .dcontent_mbox {
        padding: 10px;
    }

    .pro_dimg_box {
        width: 120px;
    }

    .intro_cbox {
        padding: 20px 0;
    }

    .intro_lbox {
        flex-wrap: wrap;
    }

    .intro_lbox li {
        width: 33%;
        flex-direction: column;
        margin-bottom: 16px;
    }

    .intro_lbox li p {
        padding: 10px 0 0 0;
        font-size: 0.9rem;
    }

    .aboutus_bg_box {
        margin-top: 64px;
        height: 160px;
    }

    .news_det_other_tit {
        font-size: 1.1rem;
    }

    .lastest_news .news_lbox {
        padding: 10px 0;
    }

    .lastest_news {
        padding: 20px 0;
    }

    .news_bg {
        padding: 16px 0;
    }

    .tz_new_prev_next a {
        max-width: unset;
    }

    .tz_new_prev_next a:first-child {
        margin-bottom: 10px;
    }

    .tz_new_prev_next {
        display: flex;
        flex-direction: column;
        padding: 10px 0 20px;
        width: 100%;
        font-size: 0.8rem;
    }

    .tz_news_det_content img {
        width: 100%;
        display: block;
    }

    .tz_news_det_content p {
        font-size: 1rem;
        padding: 6px 0;
    }

    .tz_news_det_h1 {
        font-size: 1.4rem;
    }

    .tz_news_det_date {
        font-size: 0.9rem;
    }

    .news_img_box {
        height: 150px;
    }

    .news_lbox {
        flex-direction: column;
    }

    .news_lbox li {
        width: 100%;
        margin: 0 0 16px 0;
    }

    #news_category .bread_crumb {
        margin-top: 16px;
    }


    #news .bread_crumb{
        margin-top:0px;
    }


    #aboutus .bread_crumb {
        margin-top: 0px;
    }

    .news_bg_box {
        margin-top: 64px;
        height: 160px;
        background-position: center;
    }

    .news_cate_title h1 {
        font-size: 1.4rem;
    }

    #product_detail .h1_title {
        font-size: 1.2rem;
    }

    .bread_crumb {
        margin-top: 64px;
        padding: 16px 0;
        font-size: 0.8rem;
    }

    .foo_le_bbox a {
        display: inline-block;
        width: 100%;
        text-align: center;
    }

    .foo_ri_box {
        text-align: center;
    }

    .foo_bot_box {
        flex-direction: column;
    }

    .foo_main_ri_box {
        flex-direction: row;
        width: 100%;
    }

    .foo_nav_box {
        padding: 0 8% 0 0;
        margin-top: 20px;
    }

    .foo_main_box {
        flex-direction: column;
        padding: 30px 0;
    }

    .foo_main_le_box {
        width: 100%;
    }

    .foo_main_ri_box {

    }

    .co_index li {
        width: 31%;
        margin: 0 1% 16px 1%;
    }

    .index_gntext {
        font-size: 0.9rem;
        width: 56%;
        padding-left: 4%;
    }

    .index_gntext p {
        font-size: 0.8rem;
    }

    .news_box li {
        width: 100%;
        margin: 0 0 16px 0;
    }

    .ab_ri_box {
        width: 100%;
        padding-left: 0;
    }

    .ab_le_box {
        width: 70%;
        padding-bottom: 16px;
    }

    .ab_box {
        flex-direction: column;
        padding-top: 10px;
    }

    .abhs {
        background-size: cover;
        height: auto;
        padding-bottom: 20px !important;
    }

    .app_nav_box li span {
        font-size: 0.9rem;
    }

    .app_ri_bbox {
        height: 130px;
    }

    .app_ri_tbox {
        height: 160px;
    }

    .app_le_box {
        height: 150px;
        float: left;
        width: 100%;
        background-position: center;
    }

    .app_ri_box {
        float: left;
        width: 100%;
    }

    .app_ldc {
        background-position: center;
    }

    .app_main_box {
        display: block;
    }

    .app_nav_box {
        overflow: hidden;
        overflow-x: auto;
        white-space: nowrap;
        background-color:#fff;
    }

    .app_nav_box li {
        width: 120px;
        display: inline-block;
        padding-bottom: 0px;
    }

    .app_nav_box li::after {
        counter-increment: ii;
        font-weight: bolder;
        vertical-align: middle;
        font-size: 40px;
        content: counter(ii);
        color: white;
    }

    header, footer {
        position: static;
    }

    .swiper-container {
        height: auto;
    }

    .homepage-left100 .txt {
        font-size: 24px;
        letter-spacing: 8px;
        line-height: 36px;
    }

    .txtCenter .txt {
        font-size: 60px;
        letter-spacing: 0;
        line-height: 55px;
    }

    .whiteTxt .txt {
        font-size: 30px;
        letter-spacing: 0;
        line-height: 40px;
    }

    .swiper-container .swiper-pagination {
        bottom: 10px;
    }

    .pcHidden {
        display: block;
    }

    /* 首页 */
    .banner_box .info_box {
        top: 0px;
        left: auto;
        display: flex;
        width: 100%;
        flex-direction: column;
        height: 100%;
        justify-content: center;
    }

    .banner_box .info_box h2 {
        font-size: 1.4rem;
    }

    .banner_box .info_box p {
        font-size: 1rem;
    }

    .btn_list {
        margin-top: 20px;
    }

    .btn_style {
        margin-right: 5px;
        padding: 6px 10px;
    }

    .lg_global_width {
        padding: 0 10px;
    }

    .pro_icon {
        width: 40px!important;
    }
    .ppn7{
        width: 50px!important;
    }

    .pro_index li p {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .pro_index li {
        width: 48%;
        margin: 0 1% 10px 1%;
    }

    .h3_title {
        padding-bottom: 16px;
        font-size: 1.2rem;
    }

    .common_box {
        padding: 30px 0;
    }

    #header {
        display: none !important;
    }

    .ip_header {
        display: block !important;
    }

    .ip_header .logo2 {
        display: block !important;
        margin: 8px 16px 0 0;
    }

    .banner_box {
        margin-top: 64px;
    }

    .pc_banners {
        display: none;
    }

    .ip_banners {
        display: inline;
    }

    .search_box {
        display: none;
    }

    .sidebar {
        right: 10px;
        height: 144px;
    }

    .fcaction {
        width: 48px;
        height: 48px;
    }

    .fcaction span {
        font-size: 0.8rem;
    }

    #totop i {
        display: inline;
    }

    .pro_center_box {
        font-size: 0.8rem;
        text-align: center;
        text-indent: 0;
    }

    .pro_cate_main p {
        font-size: 0.7rem;
        padding: 8px 0 0 0;
        font-weight: bold;
    }

    .pro_cate_list {
        padding: 8px;
    }

    .pro_cate_list li {
        padding-left: 0px;

    }

    .pro_cate_list li a {
        font-size: 0.7rem;
    }

    .h1_title {
        padding: 16px 0;
        font-size: 1.4rem;
    }

    .pro_box {
        padding: 20px 0;
    }
    .pro_ri_box{
        width: 78%;
    }
    .pro_ri_box_ul li {
        width: 48%;
    }

    .pro_icon_box {
        width: 22px;
    }

    .pagination li {
        margin-bottom: 10px;
    }

    .pro_ri_box_ul li p {
        font-size: 0.9rem;
    }

    .pro_cate_main {
        padding: 8px;
        flex-direction: column;
        height: auto;
        color: #1366ec;
    }
}


@media screen and (max-width: 600px) {
    .foo_nav_box ul {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .foo_main_ri_box {
        flex-direction: column;
    }

    .foo_nav_box {
        width: 100%;
    }

    .foo_nav_box ul li {
        width: 33%;
    }
}



	
