* {
    font-family: Open Sans;
    color: #000;
    font-size: 16px;
}

ul,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}

h2,
h3,
h4 {
    margin: 0;
}
@font-face {
 font-family: 'Open Sans';
 font-style: normal;
 font-weight: 300;
 font-stretch: normal;
 font-display: swap;
 src: url(../css/Open-Sans-2.ttf) format('truetype');
}

body {
    padding-top: 92px;
}
.controlBtn{
    position: absolute;
    left: 10px;
    top: 50%;
    transform: transl;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transform: translateY(-50%);

}
.controlBtn2{
    position: absolute;
    right: 10px;
    top: 50%;
    transform: transl;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transform: translateY(-50%);

}
.mbCate{
    display: none;
    margin-bottom: 30px;
}
.mbCate .mbCate-head{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #004188;
    padding: 5px 10px;
   
}
.mbCate .mbCate-head .name{
     color: #fff;
     font-size: 16px;
     font-weight: bold;
     text-transform: uppercase;
}
.mbCate .mbCate-head .icon{
    font-size: 22px;
    font-weight: bold;
    color: #fff;
}
.mbCate .mbCate-list{
    display: none;
}
.mbCate .mbCate-list .item{
    border: solid 1px #cdcdcd;
    margin-top: 10px;
    padding: 10px;
    font-size: 14px;
}
.footerMsg{
    display: none;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 300;
    background-color: #fff;
}
.footerMsg .top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #004188;
    padding: 10px 15px;
}
.footerMsg .top div{
    color: #fff;
}
.footerMsg .closeBtn{
    font-size: 20px;
}
.footerMsg .msgBox{
    padding: 15px 10px;
}
.footerMsg .msgBox .text{
        margin-bottom: 10px;
}
.footerMsg .form .item{
    margin-bottom: 15px;
}
.footerMsg .form .item input{
    width: 100%;
    border: 1px solid #e5e5e5;
    background: none;
    line-height: 38px;
    height: 40px;
    box-shadow: none;
    padding-right: 45px;
    border-radius: 0;
    padding-left: 10px;
}
.footerMsg .form textarea{
    height: 100px;
    max-height: 100px;
    max-width: 100%;
    min-width: 100%;
    min-height: 100px;
    padding-top: 10px;
    padding-left: 10px;
}
.footerMsg .main_more{
    position: relative;
    display: inline-block;
    transition: all .5s;
    z-index: 3;
    border-radius: 0;
    background: #004188;
    border: none;
    border-radius: 0;
}
.footerMsg .main_more input{
    line-height: 40px;
    height: 40px;
    padding: 0 20px;
    background-color: transparent;
    color: #fff;
    border: aliceblue;
}
.footerNav{
    display: none;
    background-color: #fff;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 200;
    width: 100%;
}
.footerNav .item{
    padding: 10px 0;
    flex: 1;
}
.footerNav .link1{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.footerNav .link1 img{
    width: 15px;
    height: 15px;
}
.footerNav .link1 p{
    margin: 0;
    padding-top: 5px;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 12px;
}
.footerNav .link2{
    display: flex;
    justify-content: center;
    align-items: center;
}
.footerNav .link2 img{
    margin-top: -20px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: solid 2px #fff;
}
#captcha{
    font-size: 16px;
    color: #000;
    margin-bottom: 0;
}
.pagination{
    display: flex;
    justify-content: center;
    
}
.pagination li{
    margin: 0 10px;
}
.pagination .active span{
    background-color: #004188;
}
.pagination li a{
    color: #004188;
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    width: 100%;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
    background-color: #fff;
}

.header-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 92px;
}

.header .logo img {
    width: 180px;
}

.header .right {
    display: flex;
    align-items: center;
}

.header .nav ul {
    display: flex;
    align-items: center;
}

.header .nav ul li {
    position: relative;
    height: 92px;
    line-height: 92px;
    margin-left: 45px;
}

.header .nav .link {
    position: relative;
    display: block;
    color: #000;
    font-size: 18px;
    font-weight: bolder;
    text-decoration: none;
}

.header .nav .link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 0%;
    height: 2px;
    background-color: #004188;
    transition: all 0.3s ease-in-out;
}

.header .nav .link:hover {
    color: #004188;
}

.header .nav .link:hover::after {
    width: 100%;
}
.header .nav ul .active .link{
    color: #004188;
}
.header .nav ul .active .link::after{
    width: 100%;
}

.header .nav .sub-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 310px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header .nav .sub-nav .sub-nav-box {
    position: relative;
}

.sub-nav-link {
    display: block;
    padding: 0px 30px;
    line-height: 47px;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.subSecond-nav {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.subSecond-nav-link {
    display: block;
    padding: 0px 30px;
    line-height: 47px;
    color: #000;
    font-size: 18px;
    font-weight: bolder;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.subSecond-nav-link:hover {
    background-color: #004188;
    color: #fff;
}

.header .nav li:hover .sub-nav {
    display: block;
}

.header .nav .sub-nav-box:hover .subSecond-nav {
    display: block;
}

.header .nav .sub-nav .sub-nav-link:hover {
    background-color: #004188;
    color: #fff;
}

.header .nav .sub-nav .sub-nav-link:hover {
    background-color: #004188;
}


.header .quote {
    margin-left: 45px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    background-color: #004188;
}

.header .quote:hover {
    background-color: #000;
    color: #fff;
}

.product .container {
    padding-top: 72px;
}

.product-title {
    text-align: center;
}

.product-title h2 {
    font-size: 48px;
    line-height: 54px;
    font-weight: 500;
    color: #333333;
    text-transform: uppercase;
}

.product-title h2::after {
    background: #004188;
    content: '';
    display: block;
    margin: 16px auto;
    height: 3px;
    width: 60px;
}

.product-title .description {
    max-width: 830px;
    overflow: hidden;
    max-height: 48px;
    line-height: 24px;
    font-size: 16px;
    color: #000;
    margin: 0 auto 0;
}

.product-list .item {
    position: relative;
    padding: 10px 10px 120px;
    text-align: center;
    overflow: hidden;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -o-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    border: 1px solid #eee;
    background: #fff;
    margin-top: 30px;
}

.product-list .item * {
    transition: 0.5s all;
}

.product-list .pic img {
    width: 100%;
}

.product-list .item .text {
    position: absolute;
    left: 6px;
    bottom: 10px;
    width: calc(100% - 12px);
    padding: 10px;
    z-index: 99;
    background: #f9f9f9;
    background-position: center center;
}

.product-list .item .text h3 {
    font-size: 18px;
    color: #404145;
    line-height: 26px;
    overflow: hidden;
    height: 52px;
    margin-bottom: 5px;
    margin-top: 10px;
    font-weight: bold;
}

.product-list .item .text .line {
    display: block;
    width: 0;
    background: #fff;
    height: 1px;
    transition: all .5s;
    margin: 0 auto;
}

.product-list .item .text p {
    font-size: 16px;
    color: #ffffff;
    line-height: 24px;
    overflow: hidden;
    opacity: 0.8;
    height: 0;
    padding: 0px 10px;
    margin-bottom: 0;
}

.product-list .item:hover {
    box-shadow: 0 0px 15px rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 0 0px 15px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0 0px 15px rgba(0, 0, 0, 0.08);
    transform: translate3d(0, -3px, 0);
    -webkit-transform: translate3d(0, -3px, 0);
    border: 1px solid #eee;
}

.product-list .item:hover .pic img {
    transform: scale(0.95);
}

.product-list .item:hover .text {
    background: #004188;
}

.product-list .item:hover .text h3 {
    color: #fff;
}

.product-list .item:hover .text .line {
    width: 80px;
    background-color: #fff;
}

.product-list .item:hover .text p {
    height: 48px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.aboutUs {
    padding-top: 90px;
    padding-bottom: 65px;
    position: relative;
    /* background-color: #f7f7f7; */
}

.aboutUs::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75%;
    z-index: -1;
    background-color: #f7f7f7;
}

.aboutUsHeader {
    position: absolute;
    top: 25px;
    right: 0;
}

.aboutUsHeader h2 {
    font-size: 100px;
    font-weight: bold;
    line-height: 90%;
    color: #000000;
    text-transform: uppercase;
    opacity: 0.03;
}

.aboutUsContent {
    overflow: hidden;
    padding: 20px 0;
}

.videoBox {
    position: relative;
    width: 50%;
    float: left;
}
.videoBox .playBtn{
    position: absolute;
    left: 50%;
    top: 50%;
    background: #fff;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    cursor: pointer;
}
.videoBox video{
    display: block;
}
.aboutUsText {
    float: left;
    width: 50%;
    background: #fff url(../img/about_icon1.png) no-repeat 95% 25px;
    box-shadow: 0 5px 20px 1px rgba(0, 0, 0, 0.1);
    position: relative;
    /* height: 520px; */
    padding: 60px 40px;
    box-sizing: border-box;
}

.aboutUsText_a {
    margin: 0;
    margin-bottom: 15px;
    font-style: italic;
    color: #004188;
    font-size: 18px;
    line-height: 20px;
    text-transform: capitalize;
}

.aboutUsText_b {
    margin-bottom: 15px;
    color: #000000;
    font-size: 18px;
    line-height: 36px;
    display: block;
    text-transform: uppercase;
    font-weight: bold;
}

.aboutUsText_c {
    font-size: 15px;
    line-height: 34px;
    overflow: hidden;
    max-height: 238px;
}

.aboutUsText_d {
    display: flex;
    align-items: center;
    padding-top: 20px;
}

.aboutUsText_d .moreBtn {
    display: block;
    transition: all .5s;
    z-index: 3;
    border-radius: 0;
    background: #004188;
    border: none;
    border-radius: 0;
    padding: 0 18px;
    line-height: 50px;
    color: #fff;
    margin-right: 30px;
}

.aboutUsText_d .moreBtn:hover {
    background: #333;
}

.aboutUsText_d .tel {
    display: flex;
    align-items: center;
}

.aboutUsText_d .tel .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    min-width: 42px;
    max-width: 42px;
    height: 42px;
    background: #004188;
}

.aboutUsText_d .tel a {
    margin-left: 10px;
    font-size: 20px;
    line-height: 20px;
    color: #333333;
    display: inline-block;
}

.choose {
    background-color: #f7f7f7;
    padding-bottom: 65px;
}

.chooseBox a {
    display: block;
    margin-top: 30px;
}

.chooseBox .item {
    background: #fff;
    border-radius: 30px;
    padding: 18px 35px 18px 20px;
    display: flex;
    align-items: center;
}

.chooseBox .icon {
    transition: 0.5s all;
    display: block;
    width: 91px;
    min-width: 91px;
    height: 97px;
    background: url(../img/bg_choose01.png) no-repeat center center;
    background-size: cover;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.chooseBox .icon i {
    position: relative;
    width: 60px;
    height: 60px;
    overflow: hidden;
}

.chooseBox .icon i img {
    transition: 0.5s all;
    position: absolute;
    top: -60px;
    width: 60px;
}

.chooseBox .text {
    padding-left: 25px;
}

.chooseBox .text h3 {
    height: 52px;
    font-size: 18px;
    line-height: 26px;
    overflow: hidden;
    color: #333333;
    margin-bottom: 7px;
    display: block;
    font-weight: bold;
}

.chooseBox .text p {
    font-size: 16px;
    line-height: 20px;
    overflow: hidden;
    height: 40px;
}

.chooseBox .item:hover .icon {
    background-image: url(../img/bg_choose02.png);
}

.chooseBox .item:hover .icon i img {
    top: 0;
}

.brand {
    background-color: #f7f7f7;
    padding-bottom: 65px;
}

.brandText {
    text-align: center;
    font-size: 28px;
    color: #333333;
    line-height: 36px;
    margin-bottom: 30px;
    font-weight: 500;
}

.brandImg {
    position: relative;
    padding: 0 50px;
}

.brandImg img {
    width: 100%;
}

.brandImg .swiper-button-prev {
    background-image: url(../img/prev_p.png);
    background-size: 15px auto;
}

.brandImg .swiper-button-next {
    background-image: url(../img/next_p.png);
    background-size: 15px auto;
}

.application {
    padding: 40px 0 75px;
}

.application .list {
    margin-top: 20px;
}

.application .list .item {
    position: relative;
    z-index: 5;
    overflow: hidden;
    margin-top: 20px;
}

.application .list .item .pic img {
    transition: all .9s;
    width: 100%;
}

.application .list .item .text {
    position: absolute;
    text-align: center;
    transition: all .5s;
    padding: 18px;
    left: 0;
    top: 75%;
    width: 100%;
    z-index: 1;
}

.application .list .item .text h3 {
    display: block;
    color: #ffffff;
    font-size: 22px;
    line-height: 26px;
    overflow: hidden;
    height: 26px;
    text-transform: capitalize;
}

.application .list .item .text p {
    font-size: 16px;
    line-height: 24px;
    height: 0;
    transition: all .5s;
    opacity: 0;
    overflow: hidden;
    color: #fff;
}

.application .list .item .mask {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 20%;
    display: block;
    opacity: 1;
    transition: all .5s;
}

.application .list .item:hover .text span {
    display: inline-block;
    transition: all .5s;
    opacity: 0;
    font-size: 15px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: underline;
    line-height: 20px;
}


.application .list .item:hover .pic img {
    transform: scale(1.05);
}

.application .list .item:hover .text {
    text-align: left;
    top: 20px;
}

.application .list .item:hover .text p {
    margin-top: 15px;
    height: 150px;
    opacity: 1;
}

.application .list .item:hover .text span {
    opacity: 1;
    margin-top: 20px;
}

.application .list .item:hover .mask {
    opacity: 0.65;
    background: #000;
    height: 100%;
}

.news {
    padding-bottom: 75px;
}

.news .list {
    display: flex;
    margin-top: 40px;
    flex-wrap: wrap;
}
.news .list .item .pic{
    overflow: hidden;
}
.news .list .item .pic img {
    transition: all .5s;
    width: 100%;
}

.news .list .item .title {
    color: rgb(0, 0, 0);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-top: 5px;
    line-height: 25px;
}

.news .list .item .bottom {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 40px;
}

.news .list .item .bottom .more {
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
}

.news .list .item .bottom .time {
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
}
.news .list .item:hover img{
    transform: scale(1.05);
}
.footer {
    position: relative;
    z-index: 5;
    /* background: url(../img/fot_bg.jpg) no-repeat center; */
    background-color: #333333;
    background-size: cover;
    padding: 44px 0 46px;
}

.footer-top {
    overflow: hidden;
    padding-bottom: 50px;
}

.footer-top .logo {
    float: left;
    width: 40%;
    padding-right: 30px;
}

.footer-top .logo .img img {
    max-height: 100px;
}

.footer-top .logo .text {
    color: #ffffff;
    font-size: 16px;
    line-height: 30px;
    overflow: hidden;
    max-height: 90px;
    margin-top: 15px;
}

.footer-top .logo .links {
    padding-top: 0;
    float: none;
    margin: 0;
    margin-top: 28px;
}

.footer-top .logo .links a {
    display: inline-block;
    margin-right: 10px;
}

.footer-top .tags {
    float: left;
    width: 20%;
    padding-left:50px;
}

.footer-top .tags a {
    display: block;
    font-size: 16px;
    color: #dddddd;
    text-transform: capitalize;
    margin-bottom: 6px;
    line-height: 24px;
}

.footer-top .help {
    float: left;
    width: 15%;
    padding-right: 30px;
}

.footer-top .help a {
    display: block;
    font-size: 16px;
    color: #dddddd;
    text-transform: capitalize;
    margin-bottom: 6px;
    line-height: 24px;
}

.footer-top .contact {
    float: left;
    width: 25%;
}

.footer-top .contact li {
    margin-bottom: 14px;
    color: #dddddd;
    padding-left: 33px;
    font-size: 16px;
    line-height: 32px;
}

.footer-top .contact li a {
    color: #dddddd;
    font-size: 16px;
}

.footer-top .contact li a:hover {
    color: #004188;
}

.footer-top .contact li.fcon_p {
    background: url(../img/fot_whats.png) no-repeat left 5px;
}

.footer-top .contact li.fcon_e {
    background: url(../img/fot_email.png) no-repeat left 8px;
}

.footer-top .contact li.fcon_t {
    background: url(../img/fot_tel.png) no-repeat left 0;
}

.footer-top .contact li.fcon_a {
    background: url(../img/fot_add.png) no-repeat left 2px;
    line-height: 24px
}

.footer-top .contact li.fcon_s {
    background: url(../img/fot_whats.png) no-repeat left 0;
}

.sendMsg {
    position: relative;
}

.sendMsg input {
    width: 100%;
    line-height: 55px;
    height: 55px;
    background-color: #fff;
    border-radius: 5px;
    border: none;
    box-sizing: border-box;
    padding-left: 15px;
}

.sendMsg input:focus {
    outline: none;
}

.sendMsg button {
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
    background-color: #004188;
    color: #fff;
    text-align: center;
    height: 55px;
    line-height: 55px;
    border: none;
    border-radius: 0 5px 5px 0;
}

.footer-top .title {
    display: block;
    color: #ffffff;
    font-size: 24px;
    text-transform: uppercase;
    line-height: 30px;
    margin-bottom: 14px;
}

.footer-top a:hover {
    color: #004188;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px 0 0;
    color: #fff;
}
.footer-bottom a{
    color: #fff;
}

.rightBar {
    z-index: 99999;
    position: fixed;
    right: 0;
    top: 30%;
    width: 50px;
    margin-top: -90px;
    opacity: 0;
    transition: all .4s;
    transform: translateX(95px);
    -webkit-transform: translateX(95px);
    -moz-transform: translateX(95px);
}

.rightBar .item-list {
    border-radius: 30px 0 0 30px;
    overflow: hidden;
}

.rightBar:hover .rightBarDetail {
    left: -250px;
}

.rightBar.show {
    transform: none;
    opacity: 1;
}

.rightBarDetail {
    position: absolute;
    left: 50px;
    top: 0;
    width: 300px;
    padding-right:50px;
    background: #004188;
    padding-bottom: 30px;
    overflow: hidden;
    line-height: 50px;
    text-align: center;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    border-radius: 30px 0 0 30px;
}

.rightBarDetail a {
    display: block;
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    color: #fff;
}

.rightBarDetail a:last-child {
    border-bottom: none;
}

.rightBarDetail p {
    color: #fff;
}

.rightBarDetail img {
    width: 100px;
    height: 100px;
}

.rightBar li {
    position: relative;
    height: 50px;
    background: #004188;
    overflow: hidden;
    transition: all .4s;
    list-style: none;
}

.rightBar li div {
    position: relative;
    z-index: 1000;
    display: block;
}

.rightBar li i {
    z-index: 1000;
    position: absolute;
    right: 0;
    display: block;
    width: 50px;
    height: 50px;
    transition: all .4s;
    background-color: #004188;
    background-repeat: no-repeat;
    background-position: center center;
}

.rightBar .online_p i {
    background-image: url(../img/right_p.png);
}

.rightBar .online_e i {
    background-image: url(../img/right_e.png);
}

.rightBar .online_w i {
    background-image: url(../img/right_w.png);
}

.rightBar .online_s i {
    background-image: url(../img/right_s.png);
}

.rightBar .online_code i {
    background-image: url(../img/right_code.png);
}

.rightBar li a {
    position: absolute;
    top: 0;
    right: 0px;
    display: block;
    width: 190px;
    line-height: 110%;
    padding: 20px 0 0 30px;
    color: #fff;
    background: #004188;
    white-space: nowrap;
    transition: all .4s;
    font-size: 16px;
    font-weight: normal;
    text-align: right;
}

.rightBar:hover a {
    background-color: #004188;
    right: 0;
}

.backTop {
    width: 48px;
    height: 48px;
    text-align: center;
    position: fixed;
    right: 5px;
    bottom: 100px;
    z-index: 99999999;
    display: none;
    background: #004188;
    background-size: cover;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.backTop::before {
    content: "↑";
    color: #fff;
    font-size: 22px;
    display: block;
    line-height: 44px;
    cursor: pointer;
}

.pagePic {
    max-height: 500px;
    overflow: hidden;
}

.pagePic img {
    width: 100%;
}

.pageCrumb {
    font-size: 12px;
    border-radius: 0;
    text-transform: capitalize;
    text-align: left;
    margin: 0;
    color: #808080;
    padding: 0;
    width: 100%;
    z-index: 5;
    left: 0;
    bottom: 0;
    background: #F7F7F7;
    position: relative;
}

.pageCrumbBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.pageCrumb .pageName {
    font-size: 46px;
    line-height: 54px;
    color: #333333;
    text-transform: uppercase;
    font-weight: 500;
}

.pageCrumb .crumbBox {
    display: flex;
    align-items: center;
}

.pageCrumb .crumbBox a {
    font-size: 16px;
    text-transform: capitalize;
    display: inline-block;
    vertical-align: middle;
}

.pageCrumb .crumbBox a:hover {
    color: #004188;
}

.pageCrumb .crumbBox span {
    padding: 0 5px;
}

.pageContent {
    padding: 70px 0 60px;
}

.richBox {
    font-size: 16px;
    line-height: 30px;
}
.richBox *{
    max-width:100% !important;
    text-wrap:inherit !important;
}
.richBox table{
    width: 100%;
}

.pageCompany {
    overflow: hidden;
    background-position: right 219px;
    background-repeat: no-repeat;
    background-image: url(../img/11.jpg);
}

.pageCompany .pageCompanyImg img {
    width: 100%;
}

.pageCompanyText {
    overflow: hidden;
}

.pageCompanyText .richBox {
    float: left;
    width: 620px;
    box-sizing: border-box;
    padding: 30px 0 30px 0px;
}

.pageCompanyMap {
    position: relative;
    height: 500px;
    margin-bottom: 60px;
    background-position: right bottom;
    background-repeat: no-repeat;
    background-image: url(../img/32.png);
}

.pageCompanyMap dl {
    width: 500px;
    position: absolute;
    left: 0;
    top: 70px;
}

.pageCompanyMap dt {
    font-size: 30px;
    margin-bottom: 30px;
}

.pageCompanyMap dd {
    font-size: 16px;
    line-height: 30px;
}

.pageCompanyList {
    overflow: hidden;
    margin-bottom: 70px;
}

.pageCompanyList ul {
    display: flex;
    justify-content: space-between;
}

.pageCompanyList li {
    float: left;
    width: 440px;
    box-sizing: border-box;
    padding: 25px 30px 50px 30px;
    border: solid 1px #c4c4c4;
    transition: all 0.5s ease;
}

.pageCompanyList li:hover {
    background-color: #004188;
}

.pageCompanyList li:hover dt {
    color: #FFFFFF;
}

.pageCompanyList li:hover dd {
    color: #FFFFFF;
}

.pageCompanyList dt {
    font-size: 30px;
    margin-bottom: 25px;
    text-align: center;
}

.pageCompanyList dd {
    font-size: 16px;
    line-height: 30px;
}

.sv_a {
    padding-top: 50px;
    text-align: center;
    margin-bottom: 70px;
}

.sv_a1 {
    font-size: 40px;
    margin-bottom: 30px;
}

.sv_a2 {
    width: 80%;
    min-width: 300px;
    font-size: 16px;
    line-height: 25px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.sv_a3 dl {
    display: inline-block;
    overflow: hidden;
    margin: 0 40px;
}

.sv_a3 dt {
    float: left;
    font-size: 60px;
    color: #004188;
    line-height: 60px;
    margin-right: 5px;
}

.sv_a3 dd {
    float: left;
    font-size: 16px;
    padding-top: 40px;
}

.pageServiceList .item {
    /* width: 440px; */
    margin-bottom: 40px;
}

.pageServiceList li:hover .pic img {
    transform: scale(1.2);
}

.pageServiceList li:hover .info {
    background-color: #004188;
}

.pageServiceList li:hover .info-c span {
    border: solid 1px #666;
    background-color: #666;
    color: #FFFFFF;
}

.pageServiceList li .pic {
    overflow: hidden;
    width: 100%;
}

.pageServiceList li .pic img {
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
}

.pageServiceList li .info {
    padding: 25px 20px;
    transition: all 0.5s ease;
}

.pageServiceList li .info-a {
    font-size: 28px;
    margin-bottom: 25px;
}

.pageServiceList li .info-b {
    font-size: 16px;
    line-height: 25px;
    height: auto;
    overflow: hidden;
    margin-bottom: 40px;
}

.pageServiceList li .info-c span {
    display: block;
    border: solid 1px #898989;
    text-align: center;
    font-size: 16px;
    width: 200px;
    line-height: 50px;
}

.pageProductBox {
    display: flex;
}

.pageProductCate {
    width: 24%;
}

.pageProductList {
    width: 76%;
    padding-left: 50px;
    box-sizing: border-box;
}

.pageProductCate-cat {
    padding: 25px 20px 5px;
    background: #fff;
    border-radius: 0;
    border-top: 3px solid #004188;
    box-shadow: 0 5px 20px 1px rgb(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.pageProductCate-cat h3 {
    position: relative;
    z-index: 1;
    color: #333;
    font-size: 26px;
    padding: 0 0 5px;
    text-transform: capitalize;
    margin-bottom: 10px;
    font-weight: bold;
}

.pageProductCate-cat .list .item {
    position: relative;
}

.pageProductCate-cat .list .item a {
    font-size: 15px;
    padding: 10px 0 10px 0;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -o-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    padding-right: 30px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    text-transform: capitalize;
}

.pageProductCate-cat .list .item .icon {
    position: absolute;
    right: 0;
    top: 0%;
    width: 30px;
    height: 47px;
    background-image: url(../img/41.png);
    background-repeat: no-repeat;
    background-size: 50% auto;
    background-position: center center;
    cursor: pointer;
}

.pageProductCate-cat .list .item:last-child a {
    border-bottom: none;
}

.pageProductCate-cat .list .item .sub-nav {
    display: none;
}

.pageProductCate-cat .list .item .sub-nav .proSubLink {
    display: block;
    font-size: 16px !important;
    font-weight: normal;
    position: relative;
    transition: all .5s;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 15px;
    padding-right: 0;
    background: #f7f7f7;
    color: #666;
}

.pageProductCate-cat .list .item .sub-nav .proSubLink:hover {
    color: #004188;
}

.pageProductCate-new {
    border: 1px solid #e5e5e5;
    padding: 25px 10px 5px;
    background: #fff;
}

.pageProductCate-new h3 {
    position: relative;
    z-index: 1;
    color: #333;
    font-size: 26px;
    padding: 0 0 5px;
    text-transform: capitalize;
    margin-bottom: 10px;
    font-weight: bold;
}

.pageProductCate-new .list {
    padding-top: 15px;
}

.pageProductCate-new .item a {
    display: block;
    display: flex;
    justify-content: space-between;
}

.pageProductCate-new .item {
    padding: 0 0 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ebebeb;
}

.pageProductCate-new .item .pic {
    width: 40%;
}

.pageProductCate-new .item .pic img {
    max-width: 100%;
    height: auto;
}

.pageProductCate-new .item .text {
    width: 60%;
    padding-left: 10px;
    box-sizing: border-box;
}

.pageProductCate-new .item .text .name {
    font-size: 16px;
    line-height: 24px;
    max-height: 72px;
    display: block;
    overflow: hidden;
    margin: 0;
    margin-bottom: 4px;
}

.pageProductCate-new .item .text .more {
    font-size: 12px;
    text-transform: uppercase;
    color: #515151;
    display: inline-block;
    line-height: 20px;
    position: relative;
    z-index: 2;
    margin-top: 10px;
    transition: all .5s;
    border: 1px solid #dddddd;
    height: 40px;
    line-height: 38px;
    padding-left: 24px;
    padding-right: 24px;
}

.pageProductCate-new .item:hover .text .more {
    background: #004188;
    color: #fff;
    border-color: #004188;
}

.pageProductCate-new .item:hover .text .name {
    color: #004188;
}

.pageProductList-text {
    color: #333;
    border-bottom: solid 1px #eee;
    padding: 0 0 20px;
    margin-bottom: 10px;
    line-height: 24px;
    font-size: 16px;
    overflow: hidden;
}

.pageProductList-list .item {
    border: solid 1px #eee;
    margin-bottom: 20px;
    overflow: hidden;
}

.pageProductList-list .item img {
    width: 100%;
    transition: all .5s;
}

.pageProductList-list .item .text {
    padding: 10px;
}

.pageProductList-list .item .text .name {
    display: block;
    color: #333333;
    font-size: 18px;
    line-height: 24px;
    overflow: hidden;
    height: 48px;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: bold;
}
                                   
.pageProductList-list .item .text .decription {
    font-size: 16px;
    line-height: 24px;
    height: 48px;
    overflow: hidden;
    color: #808080;
}

.pageProductList-list .item:hover img {
    transform: scale(1.1);
}

.pageProductList-list .item:hover .name {
    color: #004188;
}

.proInfo {
    border-bottom: solid 1px #eee;
    padding-bottom: 60px;
    margin-bottom: 60px;
}

.proInfo-text h2 {
    padding: 0;
    margin: 0;
    display: block;
    font-size: 20px;
    text-transform: capitalize;
    color: #333;
    margin-bottom: 20px;
    line-height: 24px;
    font-weight: bold;
}

.proInfo-text .main {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
}

.proInfo-text .pro-table {
    margin-bottom: 0;
    border-top: 1px solid #e5e5e5;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
    
}
.proInfo-text .pro-table table{
    width: 100%;
    /*word-break: break-all;*/
}
.proInfo-text .pro-table p{
    
}
.proInfo-text .ptab-list li {
    list-style: none;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.proInfo-text li p {
    display: inline-block;
    font-size: 16px;
    color: #808080;
    text-transform: capitalize;
    width: 25%;
    margin: 0;
}

.proInfo-text li span {
    display: inline-block;
    font-size: 16px;
    padding-left: 5px;
    color: #333;
}

.proInfo-text .mobile_inquiry {
    display: inline-block;
}

.proInfo-text .main_more {
    height: 46px;
    line-height: 46px;
    position: relative;
    display: inline-block;
    margin-top: 20px;
    transition: all .5s;
    z-index: 3;
    border-radius: 0;
    background: #004188;
    border: none;
    border-radius: 0;
}

.proInfo-text .main_more a {
    padding: 0 20px;
    color: #fff;
    text-transform: uppercase;
}

.pageProductDetail-name {
    display: flex;
    background: #fafafa;
}

.pageProductDetail-name h3 {
    background: #004188;
    color: #fff;
    font-size: 16px;
    line-height: 48px;
    vertical-align: middle;
    text-transform: capitalize;
    padding: 0 25px;
}

.pageProductDetail-content {
    padding: 35px 0;
}

.navigation {
    margin-top: 30px;
}

.navigation .item {
    margin-bottom: 10px;
}

.navigation .item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    transition: all .5s;
    background: #fff;
    border: 1px solid #eee;
    padding: 10px;
}

.navigation .item .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #f9f9f9;
    transition: all .5s;
}

.navigation .item .icon img {
    width: 50%;
}

.navigation .item .icon img:nth-child(2) {
    display: none;
}

.navigation .item .text {
    flex: 1;
    padding-left: 10px;
    box-sizing: border-box;
}

.navigation .item .text span {
    font-size: 16px;
    text-transform: uppercase;
    color: #808080;
    margin-bottom: 0;
    line-height: 24px;
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
    transition: all .5s;
}

.navigation .item .text h4 {
    font-size: 16px;
    overflow: hidden;
    line-height: 20px;
    max-height: 40px;
    margin: 0;
    transition: all .5s;
    font-weight: normal;
}

.navigation .item:hover .icon {
    background-color: #004188;
}

.navigation .item:hover .icon img:nth-child(1) {
    display: none;
}

.navigation .item:hover .icon img:nth-child(2) {
    display: block;
}

.navigation .item:hover .text span {
    color: #004188;
}

.navigation .item:hover .text h4 {
    color: #004188;
}

.proSendMsg {
    background: #f7f7f7;
    padding: 70px 0;
}

.proSendMsgBox {
    display: flex;
    align-items: center;
    border-radius: 50px 0 50px 50px;
    box-shadow: 0 5px 20px 1px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.proSendMsgBox-left {
    width: 33%;
    padding: 50px 40px;
    box-sizing: border-box;
}

.proSendMsgBox-left-a {
    font-size: 18px;
    line-height: 100%;
    color: #808080;
    margin: 0;
    margin-bottom: 15px;
}

.proSendMsgBox-left-b {
    margin-bottom: 30px;
}

.proSendMsgBox-left-b div:nth-child(1) {
    font-size: 42px;
    line-height: 110%;
    text-transform: uppercase;
}

.proSendMsgBox-left-b div:nth-child(2) {
    display: block;
    font-size: 42px;
    color: #004188;
    font-weight: normal;
}

.proSendMsgBox-left-c div {
    display: block;
    margin: 0;
    line-height: 110%;
    font-size: 16px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.proSendMsgBox-left-c p {
    font-size: 16px;
    color: #808080;
    line-height: 24px;
    margin: 0;
}

.proSendMsgBox-right {
    width: 77%;
    padding: 50px 40px;
    border-left: 1px solid #eee;
    padding-top: 70px;
}

.proSendMsgBox-right-a {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-bottom: 0;
    border-radius: 0;
    color: #333;
    text-align: left;
    text-transform: capitalize;
    background: #f7f7f7;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

.proSendMsgBox-right-a span {
    margin-right: 10px;
}

.proSendMsgBox-right-a a {
    color: #333;
}

.proSendMsgBox-right-a a:hover {
    color: #004188;
}

.proSendMsgBox-right .list li {
    position: relative;
    margin-bottom: 35px;
    padding-left: 0;
    padding-right: 30px;
}

.proSendMsgBox-right .list li label.title {
    font-weight: normal;
    font-size: 15px;
    color: #333;
    text-transform: capitalize;
    line-height: 20px;
    display: block;
    padding: 0 10px;
    background: #fff;
    position: absolute;
    left: 10px;
    top: -12px;
    z-index: 5;
}

.proSendMsgBox-right .list li p {
    margin: 0;
    margin-top: 0;
    font-size: 16px;
    margin-bottom: 0;
    border-radius: 0;
    color: #333;
    text-align: left;
    text-transform: capitalize;
    background: #f7f7f7;
    padding: 10px 20px;
    border-radius: 5px;
}

.proSendMsgBox-right .list li p:before {
    margin-right: 10px;
    color: #004188;
    content: "\f0ca";
    font-size: 16px;
}

.proSendMsgBox-right .list li p a {
    text-decoration: underline;
    font-size: 16px;
    display: inline-block;
    text-transform: capitalize;
}

.proSendMsgBox-right .list li span {
    display: block;
    position: relative;
}

.proSendMsgBox-right .list li span:before {
    content: '';
    position: absolute;
    right: 10px;
    top: 13px;
    width: 29px;
    height: 24px;
    display: inline-block;
    background-repeat: no-repeat;
}

.proSendMsgBox-right .list li span.ms_e:before {
    background-image: url(../img/mes_e1.png);
}

.proSendMsgBox-right .list li span.ms_p:before {
    background-image: url(../img/mes_p1.png);
}

.proSendMsgBox-right .list li span.ms_m:before {
    background-image: url(../img/mes_m1.png);
}

.proSendMsgBox-right .list li span.ms_n:before {
    background-position: 0 -197px;
}

.proSendMsgBox-right .list li input {
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    height: 50px;
    font-size: 12px;
    line-height: 50px;
    background: #fff;
    padding: 0 20px;
    color: #808080;
}

.proSendMsgBox-right .list li textarea {
    height: 100px;
    background: #fff;
    width: 100%;
    max-width: 100%;
    max-height: 100px;
    font-size: 12px;
    padding: 12px 50px 12px 20px;
    color: #808080;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    transition: all .5s;
}

.proSendMsgBox-right .list li input:focus {
    border: 1px solid #004188;
    color: #333;
}

.proSendMsgBox-right .list li textarea:focus {
    border: 1px solid #004188;
    color: #333;
}

.proSendMsgBox-right .list li input:-ms-input-placeholder {
    color: #808080;
}

/* Internet Explorer 10+ */
.proSendMsgBox-right .list li input::-webkit-input-placeholder {
    color: #808080;
}

/* WebKit browsers */
.proSendMsgBox-right .list li input::-moz-placeholder {
    color: #808080;
}

/* Mozilla Firefox 4 to 18 */
.proSendMsgBox-right .list li input:-moz-placeholder {
    color: #808080;
}

/* Mozilla Firefox 19+ */

.proSendMsgBox-right .list li textarea:-ms-input-placeholder {
    color: #808080;
}

/* Internet Explorer 10+ */
.proSendMsgBox-right .list li textarea::-webkit-input-placeholder {
    color: #808080;
}

/* WebKit browsers */
.proSendMsgBox-right .list li textarea::-moz-placeholder {
    color: #808080;
}

/* Mozilla Firefox 4 to 18 */
.proSendMsgBox-right .list li textarea:-moz-placeholder {
    color: #808080;
}

/* Mozilla Firefox 19+ */
.proSendMsgBox-right .submit {
    display: inline-block;
    color: #fff;
    font-size: 15px;
    position: relative;
    background: #004188;
    height: 50px;
    line-height: 50px;
    padding-left: 35px;
    padding-right: 35px;
    float: right;
    margin-right: 20px;
    text-transform: uppercase;
    border-radius: 0
}

.proSendMsgBox-right .list li.form_choose label.title {
    display: inline-block;
    position: relative;
    padding-left: 0;
    left: auto;
}

.proSendMsgBox-right .list li.form_choose .gfield_checkbox {
    list-style: none;
}

.proSendMsgBox-right .list li.form_choose li {
    display: inline-flex;
    width: 25%;
    padding: 5px;
    align-items: center;
    float: left;
    margin-bottom: 0;
}

.proSendMsgBox-right .list li.form_choose li input {
    border: 2px solid #e5e5e5;
    height: 20px;
    width: 20px;
    line-height: 20px;
    background-color: #fff;
    padding-left: 15px;
    font-size: 12px;
    color: #808080;
    box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.05) inset;
    margin: 0;
}

.proSendMsgBox-right .list li.form_choose li label {
    margin: 0;
    margin-left: 10px;
    font-weight: normal;
    line-height: 20px;
    text-transform: capitalize;
}

.proSendMsgBox-right .list li.form_upload {
    margin-top: -20px;
    margin-bottom: 10px;
}

.proSendMsgBox-right .list li.form_upload input {
    height: auto;
    border: none;
    padding: 0;
}

.proSendMsgBox-right .list li .cform-item__wrap {
    display: flex;
    align-items: center;
}

.proSendMsgBox-right .list li .cform-item__wrap .verify-img {
    display: inline-block;
    margin-left: 10px;
    max-width: 100px;
}

.proSendMsgBox-right-c button {
    color: #fff;
    font-size: 15px;
    position: relative;
    background: #004188;
    height: 50px;
    padding-left: 35px;
    padding-right: 35px;
    float: right;
    margin-right: 20px;
    text-transform: uppercase;
    border-radius: 0;
}

.proSendMsgBox-right-c button:hover {
    background: #333;
    color: #fff;
}

.proRelated {
    padding: 50px 0;
}

.proRelated-title {
    position: relative;
    text-align: center;
    font-size: 42px;
    line-height: 54px;
    color: #333333;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 500;
}

.proRelated-title::after {
    background: #004188;
    content: '';
    display: block;
    margin: 16px auto;
    height: 3px;
    width: 60px;
}

.proRelated-list {
    position: relative;
    padding: 0 50px;
}

.proRelated-list .item {
    border: solid 1px #eee;
    margin-bottom: 10px;
    overflow: hidden;
}

.proRelated-list .item img {
    width: 100%;
    transition: all .5s;
}

.proRelated-list .item .text {
    padding: 10px;
}

.proRelated-list .item .text .name {
    display: block;
    color: #333333;
    font-size: 16px;
    line-height: 24px;
    overflow: hidden;
    height: 48px;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: bold;
}

.proRelated-list .item .text .description {
    font-size: 16px;
    line-height: 24px;
    height: 48px;
    overflow: hidden;
    color: #808080;
}

.proRelated-list .item:hover img {
    transform: scale(1.1);
}

.proRelated-list .item:hover .name {
    color: #004188;
}

.proRelated-list .swiper-button-prev {
    background-image: url(../img/prev_p.png);
    background-size: 15px auto;
}

.proRelated-list .swiper-button-next {
    background-image: url(../img/next_p.png);
    background-size: 15px auto;
}

.pageApplicationList .item {
    transition: all .5s;
    overflow: hidden;
    margin-bottom: 20px;
}

.pageApplicationList .item .pic {
    overflow: hidden;
    position: relative;
}

.pageApplicationList .item .pic img {
    width: 100%;
    max-width: 100%;
    transition: all .5s;
}

.pageApplicationList .item .line {
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 10px;
    background-color: #004188;
    transition: all .5s;
}

.pageApplicationList .item .text {
    background: #fff;
    padding: 20px;
    position: relative;
}

.pageApplicationList .item .text .title {
    color: #333333;
    font-size: 18px;
    line-height: 24px;
    overflow: hidden;
    height: 48px;
    display: block;
    margin-bottom: 0;
    transition: all .5s;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: center;
}

.pageApplicationList .item .text .decription {
    font-size: 16px;
    line-height: 24px;
    overflow: hidden;
    height: 48px;
}

.pageApplicationList .item:hover {
    box-shadow: 0 5px 27px rgba(0, 0, 0, 0.15);
}

.pageApplicationList .item:hover .pic img {
    transform: scale(1.1);
}

.pageApplicationList .item:hover .pic .line {
    bottom: 0;
}

.pageNewsBox {
    display: flex;
}

.pageNewsBoxList {
    width: 76%;
    padding-left: 50px;
}

.pageNewsBoxList .item {
    display: flex;
    position: relative;
    list-style: none;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: all .5s;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 20px;
}

.pageNewsBoxList .item a {
    display: flex;
}

.pageNewsBoxList .item .pic {
    overflow: hidden;
    width: 34%;
}

.pageNewsBoxList .item .pic img {
    width: 100%;
    transition: all .5s;
}

.pageNewsBoxList .item .text {
    width: 66%;
    padding: 0 20px;
    box-sizing: border-box;
}

.pageNewsBoxList .item .time {
    display: flex;
    align-items: center;
}

.pageNewsBoxList .item .time img {
    width: 18px;
    margin-right: 10px;
}

.pageNewsBoxList .item .time span {
    color: #004188;
    text-transform: uppercase;
    position: relative;
    font-size: 12px;
    margin-top: 3px;
    line-height: 19px;
}

.pageNewsBoxList .item .title {
    display: block;
    font-size: 18px;
    line-height: 26px;
    overflow: hidden;
    height: 52px;
    color: #333;
    margin-bottom: 10px;
    margin-top: 10px;
    font-weight: bold;
}

.pageNewsBoxList .item .decription {
    font-size: 16px;
    line-height: 24px;
    max-height: 48px;
    overflow: hidden;
    margin-bottom: 10px;
}

.pageNewsBoxList .item .more {
    font-size: 12px;
    text-transform: uppercase;
    color: #515151;
    display: inline-block;
    line-height: 20px;
    position: relative;
    z-index: 2;
    margin-top: 20px;
    transition: all .5s;
    border: 1px solid #dddddd;
    height: 40px;
    line-height: 38px;
    padding-left: 24px;
    padding-right: 24px;
}

.pageNewsBoxList .item:hover .pic img {
    transform: scale(1.1);
}

.pageNewsBoxList .item:hover .title {
    color: #004188;
}

.pageNewsBoxList .item:hover .more {
    color: #fff;
    background: #004188;
    border: 1px solid #004188;
}

.detailBox {
    width: 76%;
    padding-left: 50px;
}

.detailBox .detailTitle {
    font-size: 20px;
    display: block;
    color: #333;
    line-height: 24px;
    margin-bottom: 10px;
    margin-top: 0;
    font-weight: bold;
}

.detailBox .detailTime {
    display: flex;
    align-items: center;
}

.detailBox .detailTime img {
    width: 20px;
    margin-right: 10px;
}

.detailBox .detailTime span {
    color: #004188;
    text-transform: uppercase;
    position: relative;
    font-size: 16px;
    margin-top: 3px;
    line-height: 19px;
}

.detailBox .detailContent {
    padding-top: 20px;
}

.contactBox {
    box-shadow: 0 5px 20px 1px rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 50px;
}

.contactInfo .item {
    display: flex;
    margin-bottom: 50px;
}

.contactInfo .item .icon img {
    width: 40px;
}

.contactInfo .item .text {
    flex: 1;
    padding-left: 20px;
    font-size: 16px;
    line-height: 28px;
}

.contactForm button {
    width: 100%;
    height: 50px;
    background: #004188;
    color: #fff;
    font-size: 16px;
    line-height: 50px;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
}

.contactForm button:hover {
    background: #333;
}

.contactForm .list li input {
    width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    height: 50px;
    font-size: 16px;
    line-height: 50px;
    background: #fff;
    padding: 0 20px;
    color: #000;
    margin-bottom: 30px;
}

.contactForm .list li textarea {
    height: 100px;
    background: #fff;
    width: 100%;
    max-width: 100%;
    max-height: 100px;
    font-size: 16px;
    padding: 12px 50px 12px 20px;
    color: #000;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    transition: all .5s;
    margin-bottom: 20px;
}

.contactForm .list li input:focus {
    border: 1px solid #004188;
    color: #333;
}

.contactForm .list li textarea:focus {
    border: 1px solid #004188;
    color: #333;
}

.contactForm .list li input:-ms-input-placeholder {
    color: #808080;
}

.mNav .toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    text-indent: -9999em;
    line-height: 24px;
    font-size: 1px;
    background: #004188;
}

.mNav .toggle span {
    display: block;
    width: 28px;
    background: #fff;
    transition: all .1s ease;
    height: 2px;
}

.mNav .toggle span:nth-child(2) {
    margin: 8px 0;
}

.mNav .active span:nth-child(1) {
    transform: translateY(10px) rotate(-45deg);
}

.mNav .active span:nth-child(2) {
    opacity: 0;
}

.mNav .active span:nth-child(3) {
    transform: translateY(-10px) rotate(45deg);
}

.mHeaderFixedMenu {
    position: fixed;
    left: -100%;
    top: 0px;
    width: 280px;
    height: 100%;
    background-color: #fafafa;
    padding: 20px;
    z-index: 199;
    transition: all 0.5s ease-in-out;
}

.mHeaderFixedMenu.show {
    left: 0;
}

.mHeaderFixedMenu .item {
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}

.mHeaderFixedMenu .closeBtn {
    font-size: 30px;
    cursor: pointer;
    color: #000;
}

.mHeaderFixedMenu .itemF {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 50px;
    color: #000;
    font-size: 16px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
}

.mHeaderFixedMenu .itemF a {
    display: block;
    line-height: 50px;
    color: #000;
    font-size: 16px;
}

.mHeaderFixedMenu .item i {
    position: relative;
    display: block;
    width: 12px;
    height: 12px;
    margin-right: 5px;
}

.mHeaderFixedMenu .item i::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    background-color: #000;
    width: 12px;
    height: 2px;
}

.mHeaderFixedMenu .item i::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    display: block;
    background-color: #000;
    width: 12px;
    height: 2px;
    transition: all 0.3s ease-in-out;
}

.mHeaderFixedMenu .itemF.on i::before {
    transform: translateY(-50%) rotate(0deg);
}

.mHeaderFixedMenu .itemS_Btn.on i::before {
    transform: translateY(-50%) rotate(0deg);
}

.mHeaderFixedMenu .itemS {
    display: none;
    color: #000;
    font-size: 16px;
    line-height: 40px;
    padding-left: 15px;
}

.mHeaderFixedMenu .itemS a {
    display: block;
    line-height: 40px;
    color: #000;
    font-size: 16px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
}

.mHeaderFixedMenu .itemS .itemS_Btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 40px;
    color: #000;
    font-size: 16px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
}

.mHeaderFixedMenu .itemT {
    display: none;
    color: #000;
    font-size: 12px;
    line-height: 40px;
    padding-left: 15px;
}

.mHeaderFixedMenu .itemT a {
    display: block;
    line-height: 40px;
    color: #000;
    font-size: 12px;
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
}

@media (max-width: 1600px) {
    .pageCompanyList li {
        width: 30%;
    }

    .pageCompanyList dt {
        font-size: 20px;
    }
    .pageCompanyText .richBox{
        width: 480px;
    }
}

@media (max-width: 1299px) {
    .header .nav .link {
        font-size: 16px;
    }

    .header .nav ul li {
        margin-left: 25px;
    }

    .product-title h2 {
        font-size: 40px;
    }

    .product-list .item .text p {
        padding: 0;
    }

    .application .list .item:hover .text {
        top: 0;
    }

    .application .list .item .text h3 {
        font-size: 18px;
    }

    .news .list .item .title {
        font-size: 18px;
    }

    .footer-top .logo .img img {
        max-height: 80px;
    }

    .footer-top .title {
        font-size: 18px;
    }

    .pageCompany {
        background: none;
    }

    .pageCompanyText .richBox {
        width: 100%;
    }

    .pageCompanyMap dl {
        background-color: rgba(255, 255, 255, 0.8);
        padding: 30px;
        box-shadow: 0 0 10px #DEDEDE;
        margin-left: 10px;
    }
}

@media (max-width: 992px) {
    .product-title h2 {
        font-size: 32px;
    }

    .videoBox {
        width: 100%;
    }

    .aboutUsText {
        width: 100%;
    }

    .chooseBox .text h3 {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 0;
    }

    .footer-top .logo {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-top .tags {
        width: 50%;
    }

    .footer-top .help {
        width: 50%;
    }

    .footer-top .contact {
        width: 100%;
        padding-top: 20px;
    }

    .pageCrumb .pageName {
        font-size: 30px;
    }

    .pageProductCate {
        display: none;
    }

    .detailBox {
        width: 100%;
        padding-left: 0;
    }

    .pageNewsBoxList {
        width: 100%;
        padding-left: 0;
    }

    .pageProductList {
        width: 100%;
        padding-left: 0;
    }

    .footer-top .logo .img img {
        max-height: 60px;
    }

    .proSendMsgBox {
        flex-direction: column;
    }

    .proSendMsgBox-left {
        width: 100%;
        padding-bottom: 0;
    }

    .proSendMsgBox-right {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .controlBtn{
        font-size: 24px;
    }
    .controlBtn2{
       font-size: 24px;
    }

    .proInfo-text .pro-table{
        overflow-x: scroll;
    }
    .mbCate{
        display: block;
    }
    .product-list .item .text{
        padding: 5px 0;
    }
    .product-list .col-xs-6{
        padding: 0 5px;
    }
    .application .col-xs-6{
        padding: 0 5px;
    }
    .footerNav{
        display: flex;
    }
    .pageCompanyImg {
        margin-bottom: 20px;
    }
    .aboutUsText_d .tel a{
        font-size: 16px;
    }
    .aboutUsText_d .moreBtn{
        font-size: 14px;
    }
    .news .list .item .title{
        font-weight: 500;
    }
    .pageNewsBoxList .item .title{
        font-size: 14px;
    }
    .pageProductList-list .item .text .name{
        font-size: 14px;
    }
   
    .product-list .item .text h3{
        font-size: 10px;
    }
    .pageCompanyText .richBox{
        padding: 0 0 30px 0;
    }
    .pageContent{
        padding: 42px 0;
    }
    .pageCompanyList{
        margin-bottom: 0;
    }
    .footer-top .tags{
        padding-left:0;
    }
    .application{
        padding-bottom: 42px;
    }
    .choose{
        padding-bottom: 42px;
    }
    .aboutUs{
        padding-bottom: 42px;
    }
    .product-title h2{
        line-height: 34px;
    }
    .application .container{
        padding: 0 0;
    }
    .product .container{
        padding: 0 0;
        padding-top:42px;
    }
    .playBtn{
        display: none;
    }
    .sv_a{
        padding-top:0;
    }
    .sv_a3 {
        display: flex;
        justify-content: space-evenly;
    }

    .sv_a2 {
        width: 100%;
    }

    .sv_a3 dl {
        margin: 0;
        display: flex;
        flex-direction: column;
    }

    .sv_a3 dd {
        padding-top: 10px;
    }

    .sv_a3 dt {
        font-size: 40px;
    }

    .proSendMsgBox-right-a {
        align-items: flex-start;
    }

    .proSendMsgBox-right-a span {
        width: 120px;
    }

    .proRelated-title {
        font-size: 30px;
    }

    .proInfo-img {
        margin-bottom: 30px;
    }

    .contactBox {
        padding: 50px 25px;
    }

    .contactInfo .item .icon img {
        width: 30px;
    }

    .pageCrumbBox {
        flex-direction: column;
    }

    .pageCompanyMap {
        background: none;
        padding: 0 10px;
        height: auto;
    }

    .pageCompanyMap dl {
        position: relative;
        top: 0;
        width: 100%;
        margin: 0 auto;
    }

    .product-title h2 {
        font-size: 26px;
    }

    .brandText {
        font-size: 20px;
    }

    .application .list .item .text {
        position: relative;
        padding: 10px;
    }

    .application .list .item .text h3 {
        color: #000;
        text-align: center;
        font-size: 16px;
    }

    .application .list .item .text p {
        display: none;
        /*height: 48px;
        color: #000;
        opacity: 1;
        font-size: 14px;*/
    }

    .application .list .item .text span {
        display: none;
    }

    .application .list .item:hover .text span {
        display: none;
    }

    .application .list .item:hover .text p {
        margin-top: 0px;
        height: 48px;
        text-align: center;
    }

    .application .list .item:hover .mask {
        display: none;
        height: 0;
    }

    .news .list .item .bottom {
        margin-bottom: 20px;
        margin-top:10px;
    }

    .videoBox video {
        height: auto;
    }

    .pageCompanyList ul {
        flex-direction: column;
    }

    .pageCompanyList li {
        width: 100%;
        margin-bottom: 20px;
    }
    .pageApplicationList .item .text{
        padding: 10px;
    }
}

@media (max-width: 600px) {
    .pageServiceList li .info {
        padding: 10px 0;
    }

    .pageServiceList li .info-a {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .pageServiceList li .info-b {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .proRelated-title {
        font-size: 20px;
    }

    .chooseBox .item {
        padding: 20px 10px;
    }

    .chooseBox .item .text {
    }

    .news .list .item .title {
        font-size: 16px;
        line-height: 1.5;
    }

    .footer-top .tags {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-top .help {
        width: 100%;
    }

    .aboutUsHeader {
        display: none;
    }

    .aboutUs {
        padding-top: 20px;
    }

    .aboutUsText_d {
        justify-content: space-between;
    }

    .aboutUsText {
        padding: 30px 20px;
    }

    .pageApplicationList .item .text .title {
        font-size: 16px;
    }

    .pageNewsBoxList .item .pic {
        width: 48%;
    }

    .pageNewsBoxList .item .text {
        width: 52%;
    }

    .pageNewsBoxList .item .more {
        display: none;
    }

    .pageNewsBoxList .item .decription {
        display: none;
    }
}

@media (max-width: 480px) {
    .product-title h2 {
        font-size: 18px;
    }
}