.wraper {
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1520px;
    margin: 0 auto;
    padding: 0;
}

.container1 {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0;
}

.transition {
    transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    -webkit-transition: .3s;
}

.transition1 {
    transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    -webkit-transition: .5s;
}

.red {
    color: #c40018;
}

.black {
    color: black;
}

.bg_wraper {
    background-color: #f8f8f8;
}


/* 首页 */


/* 头部导航 */

header {
    position: relative;
    left: 0;
    width: 100%;
    padding: 18px 0;
    z-index: 1000;
}


/* s-nav */

header .container {
    text-align: left !important;
    width: 100% !important;
    max-width: 1520px;
}

.logo_box {
    width: 10%;
    height: auto;
    margin-top: 11px;
    vertical-align: bottom;
}

.logo_box a {
    display: block;
}

.logo_box a img {
    max-width: 100%;
}

.top_right {
    width: 68%;
    display: inline-block;
    padding-left: 30px;
    margin-top: 15px;
    vertical-align: bottom;
}

.nav {
    width: 100%;
    /* height: 44px; */
    margin: 0 auto;
}

.nav_ul {
    width: 100%;
    margin-bottom: 0;
}

.nav_item {
    position: relative;
}

.nav_item>a {
    position: relative;
    display: block;
    /* padding: 0 14px; */
    line-height: 44px;
    vertical-align: baseline;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    text-align: center;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.nav_item>a>i {
    display: block;
    position: absolute;
    left: -2%;
    z-index: -1;
    width: 100%;
    height: 100%;
    /* transform: skewX(-10deg);
    transform-origin: 50% 50%; */
}

.menu_open {
    display: none;
}

.search_icon>i {
    line-height: 44px;
}

@media screen and (min-width:1001px) {
    .nav_item.active>a {
        color: #fff;
    }
    .nav_item.active>a,
    .nav_item:hover>a {
        color: #fff;
        background-color: #ffa500;
    }
    .nav_item.active>a>i,
    .nav_item:hover>a>i {
        /* background-color: #c40018; */
    }
    .nav_item_open {
        width: auto;
    }
    .nav_ul {
        display: table;
    }
    .nav_item {
        display: table-cell;
    }
    .nav_item:nth-child(3) {
        position: unset;
    }
}

.nav_item .nav-sub{
  width: 100%;
  text-align: center;
  font-size: 16px;
  position: absolute;
  background: #fff;
  top: 60px;
}
.nav_item .nav-sub .n-nav-sub a{
  font-size: 18px;
  line-height: 50px;
  display: block;
  width: 100%;
  height: 50px;
}
.nav_item .nav-sub .n-nav-sub a:hover{
  background: #ffa500;
  color: #fff;
}
.nav_item_open {
    /* min-width: 110px; */
    position: absolute;
    left: 0;
    top: calc(100% + 18px);
    z-index: 10;
    width: 100%;
    height: 0;
    overflow: hidden;
    box-shadow: 0 4px 15px 0 rgba(0, 12, 49, 0.5);
    background: #fff;
    /* border-radius: 4px; */
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .4s;
    transition: all .4s;
    overflow: hidden;
}

.nav_item:hover .nav_item_open {
    left: 0;
    visibility: visible;
    opacity: 1;
    box-shadow: 0px 0px 10px #cecece;
}

@media screen and (min-width:1001px) {
    .nav_item:nth-child(2):hover .nav_item_open {
        height: 245px;
    }
    .nav_item:nth-child(4):hover .nav_item_open {
        height: 72px;
    }
    .nav_item:nth-child(5):hover .nav_item_open{
        height: 432px;
    }
    .nav_item2:hover a {
        background-color: #ffa500;
        color: #fff !important;
    }
    .nav_item2 {
        border-bottom: 1px solid #ebe9e9;
    }
}

.subopen {
    display: none;
}

.nav_item2 {
    width: auto;
}


/* .nav_item2:last-child {
    border-bottom: none;
    
} */

.nav_item2 a {
    display: block;
    text-align: center;
    font-size: 14px;
    line-height: 2.5;
    white-space: nowrap;
    transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    -webkit-transition: .3s;
}

.hcover {
    display: none;
}

@media screen and (max-width:1279px) {
    .nav_item>a {
        font-size: 15px;
    }
}

@media screen and (max-width:1023px) {
    .nav_item>a {
        font-size: 16px;
    }
}

@media screen and (max-width:1000px) {
    header {
        padding: .1rem;
    }
    .logo_box {
        width: 50%;
    }
    .logo_box img {
        width: 100%;
    }
    .top_right {
        width: 50%;
        margin-left: 0;
    }
    .search_icon {
        display: none;
    }
    .menu_open {
        display: block;
        float: right;
        width: 24px;
        /* height: 20px; */
        margin-top: 5px;
        margin-right: 3%;
    }
    .menu_open i {
        height: 2px;
        width: 100%;
        background: #000;
        display: block;
        margin-bottom: 7px;
    }
    .nav {
        width: 50%;
        height: 100%;
        position: fixed;
        top: 0;
        left: -50%;
        z-index: 100;
        overflow: hidden;
        background: #333;
        color: rgba(255, 255, 255, .6);
    }
    .hcover {
        display: block;
        width: 50%;
        height: 100%;
        background: rgba(0, 0, 0, .6);
        position: fixed;
        right: -50%;
        top: 0;
        z-index: 101;
    }
    .nav_ul {
        margin: 0;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        overflow-x: hidden;
        overflow-y: auto;
        padding-top: 20px;
        text-align: left;
    }
    .nav_item {
        float: none;
        margin: 0;
        width: 100%;
    }
    .nav_item:after {
        content: '';
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, .15);
        margin-left: 20px;
    }
    .nav_item>a {
        display: block;
        margin: 0;
        /* font-size: 14px; */
        line-height: 1.8;
        color: inherit;
        padding: 10px 10px 10px 20px;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        margin-right: 40px;
    }
    .nav_item i {
        position: absolute;
        z-index: 2;
        top: 0;
        right: 0;
        width: 40px;
        height: 100%;
    }
    .nav_item i:before {
        content: '';
        display: block;
        height: 100%;
        border-left: 1px solid rgba(0, 0, 0, .15);
        position: absolute;
        top: 0;
        left: 0;
    }
    .nav_item i:after {
        content: '';
        display: block;
        width: 7px;
        height: 7px;
        margin-bottom: -5px;
        border: 2px solid rgba(255, 255, 255, .3);
        border-top: 0;
        border-left: 0;
        position: absolute;
        bottom: 50%;
        right: 18px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .nav_item_open {
        width: 50%;
        height: 100%;
        margin: 0;
        box-shadow: none;
        background: #333;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        position: fixed;
        left: -50%;
        top: 0;
    }
    .subopen {
        display: block;
        /* width: 110px; */
        /* float: left; */
    }
    .subopen a {
        display: block;
        overflow: hidden;
        margin: 0;
        padding: 30px 10px 10px 20px;
        white-space: nowrap;
        text-overflow: ellipsis;
        /* font-size: 14px; */
        color: rgba(255, 255, 255, .3);
        background: rgba(0, 0, 0, .1);
        text-indent: 20px;
        position: relative;
    }
    .subopen a:before {
        content: '';
        display: block;
        width: 7px;
        height: 7px;
        position: absolute;
        bottom: 50%;
        left: 22px;
        margin-bottom: -15px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        border: 2px solid rgba(255, 255, 255, .3);
        border-right: 0;
        border-bottom: 0;
    }
    .nav_item2 {
        position: relative;
    }
    .nav_item2 a {
        display: block;
        overflow: hidden;
        margin: 0;
        /* font-size: 14px; */
        line-height: 1.8;
        padding: 10px 10px 10px 20px;
        white-space: nowrap;
        text-overflow: ellipsis;
        color: inherit;
    }
    .nav_item2:after {
        content: '';
        width: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        display: block;
        border-bottom-width: 1px;
        border-bottom-style: solid;
        border-bottom: 1px solid rgba(0, 0, 0, .15);
        margin-left: 20px;
    }
}

@media screen and (max-width:768px) {
    .nav_item>a,
    .nav_item2 a,
    .subopen a {
        font-size: 18px;
    }
    .menu_open {
        width: 30px;
        margin-top: 10px;
    }
    .menu_open i {
        margin-bottom: 10px;
    }
}

@media screen and (max-width:450px) {
    .menu_open {
        width: 24px;
        margin-top: 7px;
    }
    .menu_open i {
        margin-bottom: 6px;
    }
    .nav_item>a,
    .nav_item2 a,
    .subopen a {
        font-size: 14px;
    }
}


/* 产品中心下拉 */

.nav_item_100vw {
    position: absolute;
    z-index: 9;
    top: 100%;
    left: 0;
    width: 100% !important;
    height: 0;
    transition: 0.6s;
    background: rgba(255, 255, 255, .8);
    border-top: 1px solid #c1c1c1;
    box-shadow: none;
}

#topline {
    width: 1420px;
    margin: 0 auto;
    position: unset;
    height: 530px;
    box-shadow: none;
    border: none !important;
    animation-delay: .1s;
    /*display: none;*/
}

#topline li {
    display: block;
    float: left;
    width: 16.66% !important;
    height: 530px;
    margin-right: 0px;
    position: relative;
    font-size: 14px;
    padding: 12px 10px 0;
    text-align: center;
    border-right: 1px solid #eee;
}
#topline li:nth-child(odd){
    background: #fff;
}
#topline li:nth-child(even){
    background: #f8f8f8;
}
#topline h3 {
    background: #0061bc;
    color: #fff;
    font-size: 17px;
    line-height: 2;
    text-align: center;
    margin: 10px 0px 10px 0px;
}

#topline li h5 {
    text-align: center;
    line-height: 2.2;
}

#topline li a:link,
#topline li a:visited {
    color: #fff;
}

#topline li a {
    display: block;
    width: 100% !important;
    padding-top: 14px;
}

#topline li img {
    width: 129px;
	height: 129px;
	object-fit:cover;
    border-radius: 8px;
    
}
/*#topline li:nth-child(5) img{
    width: 90.6%;
}*/
#topline li h5 a {
    color: #404040 !important;
    height: 29px;
    font-size: 14px;
    font-weight: normal;
    text-align: center;
}

#topline li h6 {
    font-size: 12px;
    text-align: center;
    color: #0061bc;
}


.nav_item:hover .nav_item_100vw {
    height: 530px;
}


/* e-nav */


/* 搜索框 开始 */

.search_box {
    position: absolute;
    box-sizing: content-box;
    top: 100%;
    /* left: calc(50% - 300px); */
    width: 100%;
    background: rgba(255, 255, 255, .5);
    /* padding: 10px 0;  */
    transition: all .3s;
    height: 0;
    overflow: hidden;
    /* margin:0 auto; */
}

.searchss {
    width: 40%;
    padding: 20px 0 0;
    margin: 0 auto;
    border-bottom: 1px solid #666;
}

.drow {
    background-color: #fff;
    padding-left: 10px;
}

.drow-c>input {
    width: calc(100% - 100px);
    height: 40px;
    outline: none;
    border: none;
    line-height: 40px;
    font-size: 14px;
    text-indent: 10px;
}

.drow-c button {
    outline: none;
    border: none;
    background: #fff;
    font-size: 14px;
}

.close {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 48px;
    right: 20px;
    color: #000;
    font-size: 24px;
    cursor: pointer;
}


/* 搜索框 结束 */

.hottel {
    float: right;
    font-size: .3rem;
    font-weight: bold;
    color: #ffa500;line-height: 30px;
    margin: 10px 0 0 25px;
    vertical-align: text-bottom;
}

.hottel img {
    margin-top: -15px;
}

.hottel span {
    vertical-align: bottom;
    color: #ffa500;
}

.hottel:hover span,
.hottel:visited span {
    color: #ffa500;
}

.banner img {
    width: 100%;
    min-height: 100px;
    object-fit: cover;
    object-position: center;
}

.banner-swiper .swiper-pagination-bullet {
    width: .4rem;
    height: 6px;
    border-radius: 3px;
    background-color: #fff;
    opacity: 1;
}

.banner-swiper .swiper-pagination-bullet-active {
    background-color: #ffa500;
}

.main_title {
    padding: .4rem 0;
    color: #3b3b3b;
}

.main_title h1 {
    font-size: .44rem;
    letter-spacing: 4px;
}

.main_title>p {
    font-size: .16rem;
    margin-top: .3rem;
    text-align: center;
}

.index_about {
    color: #636363;
    text-indent: 2em;
    letter-spacing: 2px;
    margin-bottom: .55rem;
    text-align: justify;
}

.resou {
    padding: .2rem 0 .12rem;
    border-bottom: 1px solid #dcdbdb;
}

.resou a {
    margin-left: .27rem;
}

.goodness {
    margin: .55rem 0 .5rem;
}

.goodness li {
    width: 25%;
}

.goodness li:last-child {
    margin-right: 0;
}

.goodness li>div {
    background-color: #fff;
    text-align: center;
    border-left: 1px solid #a9a9a9;
}

.goodness li:last-child>div {
    border-right: 1px solid #a9a9a9;
}

.goodness li>div>img {
    /* width: .91rem; */
    margin: 0 0 .25rem;
}

.goodness li>div>p {
    line-height: 1.5;
    margin-bottom: 0;
    font-size: .15rem;
    color: #666;
    /* height: 3em; */
}

.goodness li>div>h3 {
    line-height: 1;
    margin: 0 0 .28rem;
    font-size: .24rem;
    color: #333;
    letter-spacing: 2px;
}

.goodness li>div>h3 span {
    padding-bottom: .06rem;
    border-bottom: 3px solid #0061bc;
}

.index_solution {
    background: url("../../../img/index_fangan_bg.jpg"/*tpa=http://www.lefilter.org/img/index_fangan_bg.jpg*/) no-repeat 0 0;
    background-size: cover;
}

.index_solution .tab {
    padding: .2rem 0;
    border-top: 1px solid #dcdbdb;
    border-bottom: 1px solid #dcdbdb;
    text-align: center;
    margin-bottom: .75rem;
}

.index_solution .tab li {
    display: inline-block;
    padding: 0 .42rem;
    font-size: .16rem;
    position: relative;
}

.index_solution .tab .tabBar:after {
    position: absolute;
    content: "|";
    right: 0;
}

.index_solution .tab .tabBar.active {
    color: #0061bc;
}

.solution_lists {
    width: 100%;
    max-width: 1520px;
    height: 5.41rem;
    margin-bottom: .45rem;
}

.index_solution .tab_list {
    position: absolute;
    max-width: 1520px;
    background: rgba(255, 255, 255, .8);
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, .2);
    margin-bottom: .45rem;
}

.index_solution .tab_list {}

.index_solution .tab_list .left {
    padding: 0 .85rem .45rem 1.05rem;
}

.index_solution .tab_list .left h1 {
    /* height: ; */
    line-height: 3.8;
    position: relative;
    z-index: 10;
    margin-bottom: .35rem;
}

.index_solution .tab_list .left h1:after {
    position: absolute;
    left: 0;
    top: 0;
    content: attr(data-bg);
    font-size: 1.1rem;
    color: #eceaea;
    line-height: 1;
    z-index: -1;
}

.index_solution .tab_list .left .txt p {
    margin-bottom: .25rem;
    letter-spacing: 1px;
}

.index_solution .tab_list .right {
    padding: 0;
    overflow: hidden;
}

.index_solution .tab_list .right img {
    font-size: 0;
    width: 100%;
    transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    -webkit-transition: .5s;
}

.index_solution .tab_list .right:hover img {
    transform: scale(1.1);
}

.link {
    padding: .1rem .3rem;
    background-color: #0061bc;
    color: #fff;
    border-radius: 8px;
}

.link:visited,
.link:hover {
    color: #fff;
}

.tab_list {
    display: none;
}

.tab_list:first-child {
    display: block;
}


/* 产品展示 轮播 */

.index_pro {
    padding-bottom: .38rem;
    
    background: url("../images/index_bg2.png") no-repeat 0 bottom;
    background-size: contain;
}

.index_pro_wraper {
    width: 80%;
    margin: 0 auto;
    /* padding-bottom: 2.6rem; */
}

.index_pro_wraper .swiper-slide {
    /* height: 3rem; */
    overflow: hidden;
}

.index_pro_wraper .swiper-slide .imgBox {
    float: left;
    width: 50%;
    text-align: center;
}

.index_pro_wraper .swiper-slide img {
    height: 100%;
}

.index_pro_wraper .swiper-slide a:hover p {
    color: #4b4a4a;
}

.lc_tet,
.qywh_list_txt {
    float: left;
    width: 50%;
    height: 100%;
    padding: 0 1rem 0 .5rem;
}

.qywh_list_txt h2 {
    margin: .6rem 0;
}

.lc_tet h2 {
    margin: .45rem 0;
}

.lc_tet h2 span {
    border-bottom: 1px solid #999;
}

.lc_tet h2 em {
    font-style: normal;
}

.index_pro_wraper_father .swiper-button-prev,
.index_pro_wraper_father .swiper-button-next {
    width: .95rem;
    height: .95rem;
    /* top: unset; */
    /* bottom: 1.15rem; */
    outline: none;
}

.index_pro_wraper_father .swiper-button-prev {
    left: 0rem;
    background: url("../../../img/arrow_left.png"/*tpa=http://www.lefilter.org/img/arrow_left.png*/) no-repeat 0 0;
    background-size: contain;
}

.index_pro_wraper_father .swiper-button-next {
    right: 0rem;
    background: url("../../../img/arrow_right.png"/*tpa=http://www.lefilter.org/img/arrow_right.png*/) no-repeat 0 0;
    background-size: contain;
}

.pro_name_box {
    width: 80%;
    margin: .55rem auto 0;
    text-align: center;
}

.pro_name {
    display: inline-block;
    padding: .08rem .22rem;
    background-color: #0061bc;
    color: #fff;
    font-size: .18rem;
    margin: 0 .19rem;
    border-radius: 4px;
    transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    -webkit-transition: .5s;
}

.pro_name.active {
    transform: scale(1.2);
}

.video_wraper>.txt {
    top: 30%;
    width: 100%;
    padding: .2rem 0;
    font-size: .2rem;
    color: #fff;
    background-color: rgba(0, 0, 0, .6);
}

.video_wraper h1 {
    font-size: .46rem;
    letter-spacing: .05rem;
    margin-bottom: .3rem;
    /* font-weight: bold; */
}

.video_wraper p {
    padding: 0 3rem;
    text-align: center;
}

.index_hzpp img {
    width: 100%;
    max-width: 1520px;
}


/* 新闻模块 */

.index_news {
    margin-bottom: 1.35rem;
}

.index_new_box {
    padding: 0;
}

.index_new_box:nth-child(2) {
    padding: 0;
}

.index_new_box:nth-child(3) {
    padding-left: .15rem;
}

.index_new_box .title,
.hudong_wraper .title {
    font-size: .26rem;
    line-height: .28rem;
    margin-bottom: .3rem;
}

.more {
    color: #666;
    padding: 0 .1rem;
    font-size: .16rem;
    line-height: .28rem;
    border-radius: .06rem;
    border: 1px solid #999;
}

.more:hover {
    color: #666;
    border-color: #0061bc;
    box-shadow: 1px 2px 3px 3px rgb(201, 200, 200);
}

.w1200{
  width: 1520px;
    margin: 0 auto;
}

.magicart_product {
  padding: 30px 0;
  position: relative;
  text-align: center;
}
.magicart_tit {
  position: relative;
  z-index: 2;
  text-align: center;
  display: block;
  box-sizing: border-box;
  width: 100%;
  font-size: 30px;
  color: #333;
  font-weight: bold;
  margin-bottom: 30px;
  padding-bottom: 20px;
}
.magicart_tit:before {
  content: '';
  position: absolute;
  width: 25px;
  height: 4px;
  background: #e41b00;
  bottom: 0;
  left: 50%;
  margin-left: -40px;
}
.magicart_tit:after {
  content: '';
  position: absolute;
  width: 55px;
  height: 4px;
  background: #002060;
  bottom: 0;
  left: 50%;
  margin-left: -10px;
}

.magicart_tit b {
  color: #333333;
  display: block;
  font-size: 30px;
}
.magicart_product_con{display: flex;flex-wrap:wrap;justify-content: flex-start;}
.magicart_product_con dl{width: 23%;margin-right: 2%;position: relative;height: 240px;overflow: hidden;margin-bottom: 20px;}
.magicart_product_con dl:nth-child(4n+0){margin-right: 0;}
.magicart_product_con dl dt img{width: 100%;height: 100%;}
.magicart_product_con dl dd{position: absolute;width: 100%;height: 100%;background:rgba(0, 85, 197, 0.9);top: 0;left: 0;opacity: 0;transition: all .3s;}
.magicart_product_con dl dd{color: #fff;}
.magicart_product_con dl dd .catname{position: absolute;top: 50%;left: 50%;width: 100%;transform: translate(-50%,-50%);}
.magicart_product_con dl dd .catname p{padding:0 30px;box-sizing: border-box;margin-bottom: 30px;line-height: 2;font-size: 16px;}
.magicart_product_con dl dd .catname h3{font-size: 24px;margin-bottom: 20px;}
.magicart_product_con dl dd .catname .m{border: 1px solid #fff;padding: 5px 20px;display: inline-block;}
.magicart_product_con dl:hover dd{opacity: 1;}



/* 新闻版块 */

.new_first {
    padding: 0;
}


/* 动画边框 开始 */

.spbq {
    position: relative;
    overflow: hidden;
}

.biankuang {
    width: 3px;
    height: 3px;
    position: absolute;
    z-index: 99;
    border-radius: 10px;
    /*background: black;*/
}

.biankuang_1 {
    height: 0px;
    top: 0px;
    left: 0px;
    border-left: 3px solid #0061bc;
}

.biankuang_2 {
    width: 0px;
    bottom: -0px;
    left: 0px;
    border-top: 3px solid #0061bc;
}

.biankuang_3 {
    height: 0px;
    bottom: 0px;
    right: 0px;
    border-right: 3px solid #0061bc;
}

.biankuang_4 {
    width: 0px;
    top: -0px;
    right: 0px;
    border-bottom: 3px solid #0061bc;
}


/* 动画边框 结束 */

.index_news .new_first {
    background-color: #e6e6e6;
}

.index_new_box .img_box1 {
    float: left;
    width: 50%;
}

.index_new_box .img_box1>img {
    width: 100%;
    max-height: 2.4rem;
}

.index_new_list:hover .new_title,
.new_first:hover .new_title {
    color: #0061bc;
}

.new_con {
    float: left;
    width: 50%;
    padding: .15rem .15rem .2rem;
    height: 2.4rem;
}

.new_con .new_time {
    margin-bottom: .1rem;
}

.new_con .new_title {
    line-height: 1.7;
    margin-bottom: .1rem;
}


/* .new_title {
    color: #000;
} */

.new_des {
    line-height: 1.6;
    max-height: 237.5px;
}

.index_new_list {
    padding: .2rem;
    line-height: 1.6;
    margin-top: .2rem;
    background-color: #e6e6e6;
}

.index_new_list .fr {
    width: calc(100% - .7rem);
    line-height: 1.8;
}

.index_new_list .new_title {
    font-size: .18rem;
    margin: -.05rem 0 .08rem;
}

.index_new_list .new_time {
    margin-bottom: .15rem;
}

.index_news .right {
    padding: 0;
}

@media screen and (min-width:1001px) {
    .index_news .right {
        padding-left: .88rem;
    }
}

.index_new_lists {
    font-size: .18rem;
    height: .705rem;
    line-height: .7rem;
    background-color: #e6e6e6;
    padding: 0 .3rem;
    margin-bottom: .08rem;
}

.index_new_lists p a {
    width: 85%;
}

.index_new_lists:hover p {
    padding-left: .2rem;
}

.youlian_wraper {
    border-top: 1px solid #c1c1c1;
}

footer {
    background: url("../../../img/footer_bg.jpg"/*tpa=http://www.lefilter.org/img/footer_bg.jpg*/) no-repeat 0 0;
    background-size: cover;
    color: #fff;
    padding: .4rem 0 0;
}

footer ul {
    margin-bottom: .8rem;
}

footer a,
footer a:link,
footer a:visited {
    color: #fff;
}

footer dt,
footer dt a {
    font-size: .18rem;
    margin-bottom: .3rem;
}

footer dd {
    margin-bottom: .1rem;
    font-size: .16rem;
}

footer dd a {
    font-size: .16rem;
}

footer dd img {
    max-width: 100%;
}


/* 关于我们页面 */

.crumbs {
    height: .5rem;
    background-color: #eeeeee;
    line-height: .5rem;
}
.crumbs_white{
    background: #fff;
}
.crumbs a {
    color: #000;
    line-height: .35rem;
    font-size: .14rem;
}

.crumbs a.fr {
    display: inline-block;
    padding: 0 15px;
    transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    -webkit-transition: .3s;
}

.crumbs a.active,
.crumbs a.fr:hover {
    background-color: #0061bc;
    color: #fff;
}

.gsjj_wraper {
    padding: 1.04rem 0 .9rem;
    background-repeat: no-repeat;
    background-position: right 0;
}

.gsjj_wraper .txt {
    padding: .55rem .4rem 0 74px;
    background: url("../../../img/xian.jpg"/*tpa=http://www.lefilter.org/img/xian.jpg*/) no-repeat right center;
    /* background-size: contain; */
}

.gsjj_wraper p {
    letter-spacing: 1px;
    border-bottom: none!important;
}

.gsjj_wraper .pic {
    /* padding-left: 74px; */
    padding-right: 0;
}

.main_title1 h1 {
    color: #002c7d;
}

.main_title2 h1 {
    color: #f4b533;
}

.main_bg_title h1 {
    background: url("../../../img/title_bg.png"/*tpa=http://www.lefilter.org/img/title_bg.png*/) no-repeat 0 0;
    margin-bottom: .3rem;
    /* background-size: contain; */
}

.youshi_wraper {
    padding: .45rem 0 0;
    background: url("../../../img/youshi_bg.jpg"/*tpa=http://www.lefilter.org/img/youshi_bg.jpg*/) no-repeat 0 0;
    background-size: cover;
}

.youshi_wraper .main_title {
    margin: 0 0 .84rem;
}

.youshi_wraper .main_title h1 {
    margin: 0;
}

.youshi_list {
    margin-bottom: .55rem;
    padding: 0;
    transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    -webkit-transition: .3s;
}

.youshi_list span {
    float: left;
    display: block;
    width: .8rem;
    height: .8rem;
    margin-right: .15rem;
    color: #fff;
    font-size: .5rem;
    font-weight: bold;
    line-height: .8rem;
    text-align: center;
    background-color: #f4b533;
}

.youshi_list p {
    float: left;
    width: calc(100% - 1.5rem);
    color: #fff;
    padding-top: .1rem;
    margin-bottom: 0;
    line-height: 1.6;
    text-align: justify;
}

@media screen and (min-width:769px) {
    .image img {
        float: left;
        width: calc(50% - .17rem);
    }
    .image img:first-child {
        margin-right: .34rem;
    }
}

.youshi_list:hover {
    transform: scale(1.08);
}

.about_hzpp {
    margin-bottom: 1.8rem;
}


#w_grid-1622165513606 {
  width: 100%;
  max-width: 1530px;
  min-width: 0px;
  height: auto;
  max-height: none;
  min-height: 192px;
  margin-top: 2%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1%;
  padding-top: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
}

.w_grid-001 > .w_grid {
  width: 100%;
  position: relative;
}
#w_grid-1622165513606 >div {
  animation-fill-mode: both;
}
.w_grid-001 > div > .p_gridbox {
  width: 100%;
  overflow: hidden;
  position: static;
}
.w_grid-001 > div > .p_gridbox > .p_gridCell {
    width: 25.5%;
    margin-left: 1%;
    margin-top: 0.6rem;
    margin-bottom: 0.6rem;
}

.w_grid-001 > div > .p_gridbox > .p_gridCell:first-child {
  margin-left: 0;
  clear: left;
}
@media only screen and (min-width: 769px){
#w_grid-1622165513606> div > .p_gridbox > .p_gridCell {
    margin-bottom: 0.6rem;
    margin-top: 0.6rem;
    margin-left: 3%;
}
}
#w_grid-1622165513606> div > .p_gridbox > .p_gridCell:nth-child(2n+1) {
    margin-left: 0px;
    clear: left;
    margin-right: 0px;
    width: 70.60629999999999%;
}
.w_grid-001 > div > .p_gridbox > .p_gridCell:not(:empty):before {
  content: '';
  height: 0.1px;
  display: block;
}
#w_grid-1622165607596 {
  width: 100%;
  max-width: 1180px;
  min-width: 0px;
  height: auto;
  max-height: none;
  min-height: 0px;
  margin-top: 0px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
  padding-top: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
}
.w_grid-001 > .w_grid {
  width: 100%;
  position: relative;
}
#w_grid-1622165607596 >div {
  animation-fill-mode: both;
}
.w_grid-001 > div > .p_gridbox {
  width: 100%;
  overflow: hidden;
  position: static;
}
.w_grid-001 > div > .p_gridbox > .p_gridCell {
  float: left;
  position: static;
}
#w_grid-1622165607596> div > .p_gridbox > .p_gridCell {
  margin-bottom: 0rem;
  margin-top: 0rem;
  margin-left: 1%;
}
#w_grid-1622165607596> div > .p_gridbox > .p_gridCell:nth-child(2n+1) {
  margin-left: 0;
  clear: left;
  margin-right: 0;
  width: 49.5%;
}

.reset_style {
  word-wrap: break-word!important;
  word-break: normal!important;
}

.reset_style {
  line-height: normal;
  word-wrap: break-word;
  word-break: break-all;
  font-size: 14px;
}
#w_common_text-1622165528723 {
  width: auto;
  max-width: none;
  min-width: 0px;
  height: auto;
  max-height: none;
  min-height: 0px;
  margin-top: 0px;
  margin-left: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  padding-top: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
}
.reset_style p {
  margin: 0;
  font-size: 14px;
}
.w_grid-001 > div > .p_gridbox > .p_gridCell {
  float: left;
  position: static;
}
#w_grid-1622165607596> div > .p_gridbox > .p_gridCell {
  margin-bottom: 0rem;
  margin-top: 0rem;
  margin-left: 1%;
}
#w_grid-1622165607596> div > .p_gridbox > .p_gridCell:nth-child(2n+0) {
  width: 49.5%;
  margin-left: 1%;
  margin-right: 0;
  clear: none;
}
#w_grid-1622165607596> div > .p_gridbox > .p_gridCell:nth-child(2n) {
    margin-right: 0;
}
#w_common_text-1622165613720 {
  width: auto;
  max-width: none;
  min-width: 0px;
  height: auto;
  max-height: none;
  min-height: 0px;
  margin-top: 0px;
  margin-left: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  padding-top: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
}
#w_fline-1622165671712 {
  display: block;
  width: 100%;
  max-width: none;
  min-width: 0px;
  height: auto;
  max-height: none;
  min-height: 20px;
  margin-top: 0px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
  padding-top: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
}
.w_fline-001 .w_fline {
  width: 100%;
  min-height: inherit;
  font-size: 0;
}
#w_fline-1622165671712 >div {
  animation-fill-mode: both;
}
.w_fline-001 .w_fline:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  min-height: inherit;
  width: 0;
}
.w_fline-001 .p_FLine {
  width: 100%;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #f0f0f0;
  opacity: 1;
  filter: alpha(opacity:100);
  display: inline-block;
  vertical-align: middle;
}
#w_fline-1622165671712 .p_FLine {
    border-top-color: rgba(0, 0, 0, 0.1);
    border-top-width: 1px;
}
#w_fline-1622165671712 .w_fline .p_FLine {
  border-top-style: solid;
}
#c_portalResNews_list-16221658231800014 {
  width: 100%;
  max-width: none;
  min-width: 320px;
  height: auto;
  max-height: none;
  min-height: 0px;
  margin-top: 0px;
  margin-left: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  padding-top: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  clear: both;
}
#c_portalResNews_list-16221658231800014 >div {
  animation-fill-mode: both;
}
.c_portalResNews_list-01001002 .newListBox {
  padding: 20px 0 0;
  overflow: hidden;
  background: rgba(0,0,0,.01);
}
.c_portalResNews_list-01001002 .container {
  padding: 0 20px;
  width: auto !important;
}
.c_portalResNews_list-01001002 .p_news {
  margin: 0;
  width: 100%;
  height: auto;
  padding: 0;
  overflow: hidden;
  background: none;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.c_portalResNews_list-01001002 .newList1 {
  margin: 0px;
  margin-bottom: 10px;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
  float: left;
}
.c_portalResNews_list-01001002 .newPicBox {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 0px;
}
.c_portalResNews_list-01001002 .col-sm-4 {
    width: auto;
}
.c_portalResNews_list-01001002 .newPicBox img {
  width: 300px;
  height: auto;
}
.c_portalResNews_list-01001002 .content {
  padding: 10px 0 10px 36px;
  overflow: hidden;
  height: auto;
  width: 71%;
}
.c_portalResNews_list-01001002 .newTitle1 {
  margin-bottom: 10px;
  display: block;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 20px;
  color: #333;
  font-weight: bold;
}
.c_portalResNews_list-01001002 .newMs {
  font-size: 16px;
  line-height: 26px;
  display: -webkit-box;
  overflow: hidden;
  color: #999;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  margin-top: 15px;
}

.c_portalResNews_list-01001002 .newList {
  margin-bottom: 10px;
  position: relative;
  margin: 0;
  overflow: hidden;
  border-bottom: 1px dashed #eee;
  padding: 12px 100px 10px 30px;
}
.c_portalResNews_list-01001002 .newTitle {
  display: block;
  width: 100%;
  font-size: 16px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.c_portalResNews_list-01001002 .newYear {
  position: absolute;
  top: 20px;
  right: 0px;
  font-size: 16px;
  color: #aaa;
}
#w_grid-1622167290078> div > .p_gridbox > .p_gridCell {
  margin-bottom: 0.6rem;
  margin-top: 0.6rem;
  margin-left: 3%;
}
#w_grid-1622167290078> div > .p_gridbox > .p_gridCell:nth-child(2n+0) {
  width: 26.3937%;
  margin-left: 3%;
  margin-right: 0px;
  clear: none;
}
#w_grid-1622167290078> div > .p_gridbox > .p_gridCell:nth-child(2n) {
    margin-right: 0px;
}
#w_common_text-1622167290090 {
  width: auto;
  max-width: none;
  min-width: 0px;
  height: auto;
  max-height: none;
  min-height: 0px;
  margin-top: 0px;
  margin-left: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  padding-top: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
}
#w_fline-1622167290095 {
  display: block;
  width: 100%;
  max-width: none;
  min-width: 0px;
  height: auto;
  max-height: none;
  min-height: 20px;
  margin-top: 0px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
  padding-top: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
}
#w_fline-1622167290095 >div {
  animation-fill-mode: both;
}
#w_grid-1622167938351 {
  width: 100%;
  max-width: none;
  min-width: 0px;
  height: auto;
  max-height: none;
  min-height: 0px;
  margin-top: 5px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
  padding-top: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
}
.w_grid-000 > .w_grid {
  width: 100%;
  position: relative;
}
#w_grid-1622167938351 >div {
    animation-fill-mode: both;
    border-bottom: 1px dashed #e4e4e4;
}
.w_grid-000 > div > .p_gridbox {
  width: 100%;
  overflow: hidden;
  position: static;
}
.w_grid-000 > div > div > .p_gridCell {
  float: left;
  position: static;
}
#w_grid-1622167938351> div > .p_gridbox > .p_gridCell {
  margin-bottom: 0rem;
  margin-top: 0rem;
  margin-left: 0px;
}
#w_grid-1622167938351> div > .p_gridbox > .p_gridCell:nth-child(2n+1) {
  margin-left: 0px;
  clear: left;
  margin-right: 0px;
  width: 15.21%;
}
.w_fimg-000 {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 200px;
}
#w_fimg-1622167938371 {
  width: 100%;
  max-width: 50px;
  min-width: 0px;
  height: auto;
  max-height: none;
  min-height: 0px;
  margin-top: 14px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
  padding-top: 5px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 5px;
}
.w_img {
    margin: 0;
    padding: 0;
    width: inherit;
    height: inherit;
}
.w_fimg-000 .animated {
  width: 100%;
  height: 100%;
  position: relative;
  min-height: inherit;
}
#w_fimg-1622167938371 >div {
    animation-fill-mode: both;
}
.w_fimg-000 .p_box {
  width: 100%;
  height: 100%;
  text-align: center;
  position: static;
}
.w_fimg-000 .p_link001 {
    width: 100%;
    height: 100%;
}
.w_fimg-000 .p_dimage {
  height: inherit;
  overflow: hidden;
  font-size: 0;
}
#w_grid-1622167938351> div > .p_gridbox > .p_gridCell:nth-child(2n+0) {
  width: 72.78999999999999%;
  margin-left: 0px;
  margin-right: 0px;
  clear: none;
}
#w_grid-1622167938351> div > .p_gridbox > .p_gridCell:nth-child(2n) {
  margin-right: 0px;
}
#w_common_text-1622167938375 {
  width: auto;
  max-width: none;
  min-width: 0px;
  height: auto;
  max-height: none;
  min-height: 66px;
  margin-top: 0px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
  padding-top: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
}
#w_grid-1622168284796 {
  width: 100%;
  max-width: none;
  min-width: 0px;
  height: auto;
  max-height: none;
  min-height: 0px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  padding-top: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
}
#w_grid-1622168284796 >div {
  animation-fill-mode: both;
  border-bottom: 1px dashed #e4e4e4;
}
#w_grid-1622168284796> div > .p_gridbox > .p_gridCell {
  margin-bottom: 0rem;
  margin-top: 0rem;
  margin-left: 0px;
}
#w_grid-1622168284796> div > .p_gridbox > .p_gridCell:nth-child(2n+1) {
    margin-left: 0px;
    clear: left;
    margin-right: 0px;
    width: 15.21%;
}
#w_fimg-1622168168340 {
  width: 100%;
  max-width: 50px;
  min-width: 0px;
  height: auto;
  max-height: none;
  min-height: 0px;
  margin-top: 14px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
  padding-top: 5px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 5px;
}
#w_fimg-1622168168340 >div {
  animation-fill-mode: both;
}
#w_grid-1622168284796 > div > .p_gridbox > .p_gridCell:nth-child(n+1) {
  margin-left: 0px;
  clear: left;
}
#w_grid-1622168284796> div > .p_gridbox > .p_gridCell:nth-child(2n+0) {
  width: 72.78999999999999%;
  margin-left: 0px;
  margin-right: 0px;
  clear: none;
}
#w_grid-1622168284796> div > .p_gridbox > .p_gridCell:nth-child(2n) {
    margin-right: 0px;
}
#w_common_text-1622168284807 {
  width: auto;
  max-width: none;
  min-width: 0px;
  height: auto;
  max-height: none;
  min-height: 66px;
  margin-top: 0px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
  padding-top: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
}
#w_grid-1622168324565 {
  width: 100%;
  max-width: none;
  min-width: 0px;
  height: auto;
  max-height: none;
  min-height: 0px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
  padding-top: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
}
#w_grid-1622168324565 >div {
    animation-fill-mode: both;
    border-bottom: 1px dashed #e4e4e4;
}
#w_grid-1622168324565> div > .p_gridbox > .p_gridCell {
  margin-bottom: 0rem;
  margin-top: 0rem;
  margin-left: 0px;
}
#w_grid-1622168324565> div > .p_gridbox > .p_gridCell:nth-child(2n+1) {
    margin-left: 0px;
    clear: left;
    margin-right: 0px;
    width: 15.21%;
}
#w_fimg-1622168168333 {
  width: 100%;
  max-width: 50px;
  min-width: 0px;
  height: auto;
  max-height: none;
  min-height: 0px;
  margin-top: 14px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
  padding-top: 5px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 5px;
}
#w_fimg-1622168168333 >div {
  animation-fill-mode: both;
}
#w_grid-1622168324565> div > .p_gridbox > .p_gridCell:nth-child(2n+0) {
  width: 72.78999999999999%;
  margin-left: 0px;
  margin-right: 0px;
  clear: none;
}
#w_grid-1622168324565> div > .p_gridbox > .p_gridCell:nth-child(2n) {
  margin-right: 0px;
}
#w_common_text-1622168324571 {
  width: auto;
  max-width: none;
  min-width: 0px;
  height: auto;
  max-height: none;
  min-height: 66px;
  margin-top: 0px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
  padding-top: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
}

/* 联系我们页面 */

.contact_wraper {
    background: url("../images/contact_bg1.jpg") no-repeat right bottom;
}

.main_bg_title2 h1 {
    background: url("../images/title_bg2.png") no-repeat center center;
}

.contact_wraper .text p {
    margin-bottom: .2rem;
}

.contact_wraper .text p:first-child {
    color: #000;
}

.contact_wraper .text p span:first-child {
    padding: 5px;
    background: #f4b533;
}

.contact_wraper .text p a:before,
.contact_wraper .text p span:last-child:before {
    content: "|";
    margin: 0 .26rem 0 .18rem;
}

.fwrx_crad li {
    padding: 0 .4rem;
}

.fwrx_crad li .box {
    padding: .2rem .7rem 1rem;
    height: auto;
    background: url("../../../img/contact_bg2.jpg"/*tpa=http://www.lefilter.org/img/contact_bg2.jpg*/) no-repeat 0 0;
    background-size: contain;
}

.fwrx_crad .box>div {
    padding: 0 .1rem;
}


/* .fwrx_crad li {
    margin-bottom: .2rem;
} */

.fwrx_crad li p {
    font-size: .16rem;
    line-height: 1;
    margin-bottom: .2rem;
}

.fwrx_crad li h2 {
    font-size: .26rem;
    font-weight: bold;
    padding: 0;
    margin: .2rem 0 .2rem;
    /* text-align: center; */
}

#allmap {
    width: 100%;
    height: 6rem;
    margin-bottom: 1.3rem;
}
.pb-lg-5, .py-lg-5 {
  padding-bottom: 48px!important;
}
.pt-lg-5, .py-lg-5 {
  padding-top: 48px!important;
}
.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.col-lg-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}
.pf_30 {
    font-size: 30px;
    line-height: 45px;
}
.pf_16 {
    font-size: 16px;
    line-height: 30px;
}
.pf_24 {
    font-size: 24px;
    line-height: 40px;
}

.companya{height: auto;overflow: hidden;background:url(../images/companya.jpg) center no-repeat;}
.companya img{max-width: 100%;}
.comtita{height: auto;overflow: hidden;}
.comtita strong{display: block;font-size: 66px;font-family: fz;color: #f6f6f6;text-transform: uppercase;}
.comtita b{display: block;margin-top: -60px;}
.comtita p{letter-spacing: 3px;color: #777;}
.coma_a{color: #222;}
.coma_b{line-height: 35px;color: #777;}
.companyb{height: auto;overflow: hidden;background:url(../images/companyb.jpg) center bottom no-repeat #e8e9eb;}
.comtitb{text-align: center;}
.comtitb strong{display: block;font-size: 60px;color: rgba(0,0,0,.06);text-transform: uppercase;}
.comtitb span{display: block;font-weight: bold;margin-top: -40px;}
.comtitb p{width:60%;line-height: 30px;margin:0 auto;color: #777;}
.comtitb img{display: block;max-width: 100%;margin:2rem auto;}
.comb_a{height: auto;overflow: hidden;}
.comb_a li .comb_b{display: block; height: auto;overflow: hidden;border: 1px solid #fff;background:url(../images/comb_a.png) center no-repeat #f4f4f4;transition:.4s;}
.comb_a li:hover .comb_b{background:url(../images/comb_b.png) center no-repeat;color: #fff;box-shadow: rgba(0,0,0,0.1) 0px 0px  7px 4px;transform: translate3d(0,-5px,0);}
.comb_a li:hover .comb_b p{color: #fff;}
.comb_a li:hover em{-webkit-transform: rotate(360deg);transform: rotate(360deg);}
.comb_a li .comb_b em{display: block;float: left;width: 100px;height: 100px;background: #fff;border-radius: 60px;text-align: center;padding-top: .25rem;transition:.4s;}
.comb_a li .comb_b i{font-size: 62px;color: #e90e1a;}
.comb_a li .comb_b strong{display: block;}
.comb_a li .comb_b p{line-height: 30px;color: #777;transition:.4s;}


/* 新闻中心页面 */

.news_wraper {
    background: url("../../../img/news_bg.jpg"/*tpa=http://www.lefilter.org/img/news_bg.jpg*/) repeat 0 0;
}

.new_type {
    margin: .8rem 0;
}

.new_type>a {
    padding: .15rem .6rem;
    margin: 0 .2rem;
    border: 1px solid #002c7d;
    font-size: .3rem;
    color: #002c7d;
}

.new_type>a:hover,
.new_type>a.active {
    background-color: #002c7d;
    color: #fff;
}

.news_wraper .new_list {
    background-color: #e6e6e6;
    margin-bottom: .4rem;
}
@media (min-width: 769px){
  .news_wraper .new_list:last-child{
      margin-bottom: 0;
  }  
}
.img_b {
    width: 4rem;
    height: 3rem;
    text-align: center;
    overflow: hidden;
    /* box-shadow: 4px 4px 4px 1px rgb(185 185 185); */
}

.img_b img {
    width: 100%;
}

.new_list>.fr {
    float: right;
    width: calc(100% - 4.5rem);
    height: 3rem;
}

.new_con .left {
    width: calc(100% - 2.6rem);
    padding-right: .9rem;
    border-right: 2px solid #002c7d;
}

.news_wraper .new_list .new_title {
    width: 100%;
    padding: 0;
    margin: .4rem 0 .4rem;
    box-shadow: none;
}

.news_wraper .index_new_time {
    margin: .4rem auto .6rem;
}

.index_new_time {
    width: .8rem;
    height: .8rem;
    color: #000;
    line-height: 1;
    padding-top: .05rem;
}

.news_wraper .tet>.fr {
    width: 2.6rem;
}

.tet .new_time {
    margin-bottom: .2rem;
}

.link_new_detail {
    color: #002c7d;
}

.news_wraper .new_list:hover {
    box-shadow: 0 0 6px 4px rgba(0, 0, 0, .2);
}

.news_wraper .new_list:hover .new_title {
    color: #002c7d;
}

.bottom_line {
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #002c7d;
}

.new_list:hover .bottom_line {
    width: 100%;
}

.new_list:hover img {
    transform: scale(1.1);
}


/* 分页 */


/*pages*/

.pagination-wrapper {
    text-align: center;
}

.pagination {
    height: 34px;
    text-align: center;
}

.pagination li {
    display: inline-block;
    height: 34px;
    margin-right: 5px;
    line-height: 34px;
    font-size: .16rem;
    padding: 0 12px;
    /* border: 1px solid #dddddd; */
    color: #555555;
    vertical-align: top;
    background-color: #cdcdcd;
}

.pagination li a {
    float: left;
    display: block;
    padding: 0;
    line-height: 34px;
    color: #555555;
    border: none;
    text-decoration: none;
    background-color: #cdcdcd;
    ;
}

.pagination li:hover {
    background: #002c7d;
    color: #fff;
}

.pagination li:hover a,
.pagination li a:hover {
    background: #002c7d;
    color: #fff;
}

.pagination li.thisclass {
    height: 32px;
    line-height: 32px;
    padding: 0 12px;
    font-size: .16rem;
    border: 1px solid #002c7d;
    background: #002c7d;
    color: #fff;
    vertical-align: top;
}

.pagination li.thisclass a,
.pagination li.thisclass a:hover {
    background: transparent;
    border-color: #002c7d;
    color: #fff;
    cursor: default;
}

.pagination>li>a,
.pagination>li>span {
    background-color: #cdcdcd;
    border: none;
}

.fourCol {
    float: left;
    width: calc(25% - .1875rem);
    margin-right: .25rem;
}


/* 新闻详情 */

.new_wraper .container {
    padding: 0 .3rem;
}

.new-ny {
    width: 100%;
    margin: 0 auto;
    height: auto;
    padding: .4rem 0 .8rem;
    border-bottom: 1px solid #c2c0c0;
    margin-bottom: .8rem;
    font-size: .16rem !important;
    line-height: 2;
}

.new-ny h3 {
    font-size: .28rem !important;
    color: #333;
    line-height: 1.6;
    text-align: center;
}

.new-ny>p {
    margin-bottom: .2rem;
    text-align: center;
    font-size: .14rem;
}
.new-ny img{max-width: 100%; height: auto;display: block; margin: auto;}

.new-ny div {
    font-size: .16rem !important;
}

.new-ny>p>span {
    display: inline-block;
    color: #4b4a4a;
    margin: .1rem;
    font-size: .14rem;
}

.new-ny div span {
    font-size: .16rem !important;
}

.new-ny .img_text {
    font-size: .15rem;
    text-align: center;
    margin-bottom: .2rem;
}

.new-ny div p {
    /* text-indent: 2em; */
    line-height: 1.8;
    color: #4b4a4a;
    font-size: .17rem;
    text-align: left;
    /* text-align: justify; */
}

.new-ny h2 {}

.new-ny p img {
    text-indent: inherit;
    max-width: 100%;
    display: block;
    margin: .2rem auto;
}

.new_footer {
    margin-bottom: .8rem;
}

.new_footer p {
    font-size: .16rem;
    color: #4b4a4a;
    margin-bottom: .15rem;
}


/* 方案页面 */

.solution_wraper {
    padding-top: 1rem;
}

.solution_wraper .new_list {
    background-color: #e6e6e6;
    margin-bottom: .4rem;
}

.solution_wraper .img_b {
    width: 5rem;
}

.solution_wraper .new_con {
    width: calc(100% - 5rem);
    padding: 0 .4rem 0 .25rem;
}

.solution_wraper .new_con .new_title {
    margin: .25rem 0 .5rem;
    color: #000;
    font-weight: bold;
    letter-spacing: 1px;
}

.solution_wraper .link_new_detail {
    display: block;
    bottom: .2rem;
    left: .38rem;
    width: 1.23rem;
    height: .3rem;
    background: url("../../../img/more.jpg"/*tpa=http://www.lefilter.org/img/more.jpg*/) no-repeat 0 0;
    background-size: contain;
}

.solution_wraper .new_list:hover {
    box-shadow: 0 0 6px 4px rgba(0, 0, 0, .2);
}

.solution_wraper .new_list:hover .new_title {
    color: #002c7d;
}

.solution_wraper .new_list:hover img {
    transform: scale(1.1);
}

.kehu {
    margin-bottom: .85rem;
}

.kehu_swiper {
    width: 90%;
}

.kehu_swiper .swiper-slide {
    width: 2rem;
    height: 1.37rem;
}

.kehu_swiper .swiper-slide img {
    width: 100%;
}


.fp-section {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.section2 {
    background: url(../images/bj2.jpg) center no-repeat;
    background-size: cover;
}
.fp-section.fp-table, .fp-slide.fp-table {
  display: table;
  table-layout: fixed;
  width: 100%;
}
.fp-tableCell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
}

.fp-tableCell {
  vertical-align: top;
}
.m60 {
    margin-top: 200px;
}
.section2 .w1300 {
  width: 96%;
  margin: 0 auto;
}
#fp-nav, .bt_h3, .full-one-inside, .section2 .sycplb a span, .fixFooter, .sy_footer {
  display: block;
}
.section2 .sycplb {
  display: flex;
  margin-top: 60px;
  width: 100%;
}
.section2 .sycplb a {
  flex: 1;
  display: block;
  transition: all .3s;
}
.section2 .sycplb a:nth-of-type(1), .section2 .sycplb a:nth-of-type(3), .section2 .sycplb a:nth-of-type(6), .section2 .sycplb a:nth-of-type(8) {
    margin-top: 60px;
}
.section2 .sycplb a img {
  display: block;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 0 auto 20px auto;
}
.section2 .sycplb a span {
    display: block;
    color: #fff;
    writing-mode: vertical-lr;
    writing-mode: tb-lr;
    margin: 0 auto;
    font-size: 18px;
    height: 160px;
}
#fp-nav, .bt_h3, .full-one-inside, .section2 .sycplb a span, .fixFooter, .sy_footer {
  display: block;
}
.tool_nav, .bt_h4, .full-one-inside1, .section2 .sycplb a b, .social_nav5, .h58 {
  display: none;
}

/* 产品中心 */

.pro_wraper {
    padding: .65rem 0;
}

.tyjh-prutre-left {
    width: 3rem;
    height: auto;
    float: left;
    /* border: #eee 1px solid; */
    background: #026ac1;
    text-align: center;
    /* padding-bottom: 30px; */
}

.tyjh-prutre-left h3 {
    font-size: .26rem;
    color: #fff;
    line-height: .6rem;
    display: inline-block;
    margin: 0;
    font-weight: bold;
}


/* .tyjh-prutre-left p {
    font-size: 20px;
    color: #fff;
    display: inline-block;
} */


/* .tyjh-prutre-left b {
    font-size: 22px;
    color: #fff;
    line-height: 3;
    font-weight: normal;
    display: block;
} */

.tyjh-prutre-left strong {
    font-size: 28px;
    color: #fff;
    line-height: 1;
    display: block;
    margin: 0 0px 20px;
}

.tyjh-prutre-left a {
    font-size: 14px;
    color: #fff;
    display: inline-block;
    padding: 5px 35px;
}

.tyjh-prutre-left a {
    /* margin-bottom: 10px; */
}

.tyjh-cp-left {
    width: 240px;
    height: auto;
    float: left;
    background: #026ac1;
    /* background: #149eef; */
    padding: 20px;
}

.tyjh-cp-left h3 {
    font-size: 30px;
    color: #fff;
    padding: 0px 10px 20px;
}

.tyjh-cpleft-nav {
    width: 100%;
    height: auto;
    float: left;
    background: #fff;
    /* padding: 20px 0px; */
}

.tyjh-cpleft-nav li {
    width: 94%;
    height: auto;
    float: left;
    padding: 0 3%;
    /* border-bottom:#ddd 1px solid; */
}

.tyjh-cpleft-nav li:last-child {
    border-bottom: none;
}

.tyjh-cpleft-nav li span {
    font-size: 16px;
    color: #026ac1;
    line-height: 30px;
    font-weight: bold;
    display: block;
}

.tyjh-cpleft-nav1 {
    width: 100%;
    height: auto;
    /* float: left; */
    background: #fff;
    /* padding: 10px 0px; */
    text-align: left !important;
}

.tyjh-cpleft-nav1 .layui-nav-tree {
    width: 100%;
    background-color: rgb(121, 124, 126);
}

.layui-nav {
    width: 100%;
    background-color: #fff;
    color: #666;
}

.layui-nav-tree .layui-nav-item>a {
    height: .6rem;
    line-height: .6rem;
}

.layui-nav .layui-nav-item a {
    color: #666;
}

.layui-nav-itemed>a {
    color: #666 !important;
}

.layui-nav-tree .layui-nav-child dd.layui-this a {
    background-color: #fff;
    color: #026ac1;
}

.layui-nav .layui-nav-item a:hover,
layui-nav .layui-nav-item a:hover,
.layui-nav-itemed>a:hover {
    color: #026ac1;
}

.layui-nav-tree .layui-nav-item>a:hover {
    background-color: #fff;
}

.layui-nav-itemed>a {
    color: #026ac1 !important;
}

.layui-nav-itemed>.layui-nav-child {
    margin-bottom: 0;
    background-color: #e6e6e6 !important;
}

.layui-nav-itemed>.layui-nav-child dd {
    height: .4rem;
    line-height: .4rem;
}

.layui-nav-itemed>a .layui-nav-more {
    border-color: transparent transparent #666;
}

.layui-nav .layui-nav-more {
    border-top-color: #666;
}

.layui-nav-tree .layui-nav-child a:hover {
    color: #026ac1;
}

.tyjh-cpleft-nav1 li {
    width: 100%;
    height: auto;
    float: left;
    /* padding: 5px 3%; */
    /* border-bottom:#ddd 1px solid; */
}

.layui-nav-tree .layui-nav-bar {
    background-color: #026ac1;
}

.tyjh-cpleft-nav1 li:last-child {
    border-bottom: none;
}

.tyjh-cpleft-nav1 li span {
    font-size: 16px;
    color: #026ac1;
    line-height: 30px;
    font-weight: bold;
    display: block;
}

.tyjh-cpleft-nav1 li span i {
    font-style: inherit;
    float: right;
    display: inline-block;
}

.tyjh-cpleft-nav1 a {
    font-size: 16px;
    color: #666;
    /* line-height: 34px; */
    display: block;
    /* text-align: center; */
    padding: 0 0 0 .3rem !important;
    border-bottom: 1px dashed rgb(197, 197, 197);
}

.layui-nav-item>a {
    padding-left: .2rem !important;
    font-size: 18px;
}

.tyjh-cpleft-nav1 a:hover {
    color: #026ac1;
}

.tyjh-cpleft-nav2 {
    border: 1px solid rgb(214, 212, 212);
}

.tyjh-cpleft-nav2 a {
    color: #666;
    font-size: 16;
    margin-bottom: 0;
    line-height: 2;
    border-bottom: 1px solid rgb(214, 212, 212);
    ;
}

.tyjh-cpleft-nav3 a {
    color: #666;
    line-height: 35px;
    border-top: 1px solid rgb(240, 240, 240);
    margin-bottom: 0;
}

.layui-nav-child i {
    color: #026ac1;
    font-size: .16rem;
    margin-right: .05rem;
}

.pro_box {
    float: right;
    width: calc(100% - 3.65rem);
}

.type_title {
    color: #026ac1;
    padding-bottom: .2rem;
    background: url("../../../img/tit_bg2.jpg"/*tpa=http://www.lefilter.org/img/tit_bg2.jpg*/) no-repeat 0 bottom;
    margin: 0 0 .6rem;
}

.pro_list {
    margin-bottom: .4rem;
    box-shadow: 0 0 4px 3px rgba(0, 0, 0, .2);
}

.img_box {
    width: 4rem;
    height: 3rem;
    padding: .1rem 0;
    overflow: hidden;
}

.pro_list .img_box img {
    height: 100%;
    width: auto;
}

.con {
    width: calc(100% - 4rem);
    padding: 0 .4rem;
}

.con h1 {
    margin: .3rem 0 .4rem;
    color: #000f6c;
}

.con>p {
    text-indent: 2em;
}

.pro_list:hover .img {
    transform: scale(1.08);
}


/* 产品中心 */

.proc_wraper {
    margin-bottom: 0;
}

.proc_list {
    background-color: #0061bc;
    margin-bottom: 3px;
    height: 47.5vw;
}

.proc_list .left {
    width: 32.55%;
}

.proc_list .left h1 {
    font-size: .4rem;
    color: #000;
    letter-spacing: 2px;
}

.proc_list .left>a {
    top: .3rem;
    width: 100%;
}

.proc_list .right {
    width: 67.45%;
    height: 100%;
    padding: 4.5% 12% 0 4.8%;
    background: url("../../../img/proc_bg1.jpg"/*tpa=http://www.lefilter.org/img/proc_bg1.jpg*/) no-repeat 0 0;
    background-size: cover;
    color: #fff;
}

.proc_list .right a {
    display: block;
    color: #fff;
    height: 100%;
}

.description {
    margin-bottom: 4vw;
    text-align: justify;
}

.proc_cp_list {
    height: 8.85vw;
    line-height: 8.85vw;
    padding-right: 0;
    margin-bottom: 1vw;
    overflow: hidden;
    transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    -webkit-transition: .3s;
}

.proc_cp_list .img_box {
    width: 44%;
    height: 100%;
    padding: 0;
}

.proc_cp_list .img_box img {
    /* height: 100%; */
    width: auto;
    max-height: 100%;
    vertical-align: top;
}

.proc_cp_list span {
    font-size: .24rem;
    margin-top: 30%;
    line-height: 7vw;
    /* vertical-align: middle; */
}

.proc_cp_list:hover {
    transform: scale(1.1);
}

.proc_list:nth-child(2) .right {
    height: 100%;
    padding: 5.5% 4% 0 12%;
    background: url("../../../img/proc_bg2.jpg"/*tpa=http://www.lefilter.org/img/proc_bg2.jpg*/) no-repeat 0 0;
}

.proc_list:nth-child(2) .proc_cp_list {
    padding: 0;
    height: 7vw;
}

.proc_list:nth-child(2) .proc_cp_list:last-child .img_box {
    width: 48%;
}

.proc_list:nth-child(3) .right {
    background: url("../../../img/proc_bg3.jpg"/*tpa=http://www.lefilter.org/img/proc_bg3.jpg*/) no-repeat 0 0;
}

.proc_list:nth-child(3) .proc_cp_list {
    line-height: 1.45rem;
    margin-bottom: 0;
}


/* 分页 */


/*pages*/

.pagination-wrapper {
    text-align: center;
}

.pagination {
    height: 34px;
    text-align: center;
}

.pagination li {
    display: inline-block;
    height: 30px;
    margin-right: 5px;
    line-height: 30px;
    font-size: 14px;
    padding: 0 10px;
    /* border: 1px solid #dddddd; */
    color: #555555;
    vertical-align: top;
    background-color: #cdcdcd;
}

.pagination a,
.pagination span {
    float: left;
    display: block;
    padding: 0 10px;
    font-size: 14px;
    line-height: 30px;
    color: #555555;
    border: 1px solid #555555;
    text-decoration: none;
    background-color: transparent;
    margin: 0 4px;
}

.pagination li:hover {
    background: #0061bc;
    color: #fff;
}

.pagination li:hover a,
.pagination li a:hover {
    background: #0061bc;
    color: #fff;
}

.pagination .thisclass {
    height: 32px;
    line-height: 32px;
    padding: 0 10px;
    font-size: 14px;
    border: 1px solid #0061bc;
    background: #0061bc;
    color: #fff;
    vertical-align: top;
}

.pagination .thisclass a,
.pagination .thisclass a:hover {
    background: transparent;
    border-color: #0061bc;
    color: #fff;
    cursor: default;
}


/* 7.30新增 */

.float_right {
    position: fixed;
    left: 0px;
    bottom: 1rem;
    background: #026ac1;
    width: 149px;
    height: auto;
    font-family: "Microsoft Yahei", Arial, Helvetica;
    padding-top: 0px;
}

.float_right .float_tit {
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    font-weight: 600;
    color: #FFF;
    text-align: center;
    border-bottom: 2px #FF0 solid;
    margin-bottom: 0;
}

.float_right .float_r_ul {
    display: block;
    background: #026ac1;
    margin: 0;
}

.float_right .float_r_ul li {
    display: block;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    color: #FFF;
}

.float_right .float_r_ul li a {
    display: block;
    height: 40px;
    color: #FFF;
    transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    -webkit-transition: .3s;
}

.float_right .float_r_ul li a:hover {
    background: #218ce4;
    border-bottom: 1px solid #FFF;
}

.float_right .r_em {
    background: #FFF;
    width: 120px;
    height: 120px;
    padding: 0px 14px 0px 15px;
}


/* 右侧浮窗 */

.float_zoosnet a {
    text-decoration: none
}

.float_zoosnet img {
    max-width: 100%;
    width: auto
}

.float_Qr,
.float_mess,
.float_retrun,
.float_tell {
    display: block;
    width: 60px;
    height: 60px;
    background-color: #e33b3b;
    border-radius: 5px;
    margin-bottom: 2px;
    transition: all .2s ease-in-out;
    -wekbit-transition: all .2s ease-in-out;
    position: fixed;
    right: 0px;
    z-index: 100;
    cursor: pointer;
    border-radius: 5px 0 0 5px;
    text-decoration: none;
}

.float_mess {
    bottom: 346px;
}

.float_Qr {
    bottom: 222px;
}

.float_retrun {
    bottom: 160px;
}

.float_tell {
    bottom: 284px;
}

.float_mess img,
.float_tell img {
    float: left;
}

.float_mess p,
.float_tell p {
    color: #fff;
    line-height: 60px;
}

.float_fair_img img,
.float_tell_img img,
.float_Qr_img img {
    max-width: none;
}

.float_tell_img {
    position: fixed;
    right: 60px;
    overflow: hidden;
    bottom: 284px;
    width: 0;
    /*height: 60px;*/
    transition: all .2s ease-in-out;
    -wekbit-transition: all .2s ease-in-out;
}

.float_tell_img img {
    width: 100%;
    height: 100%;
}

.float_tell_img span,
.float_tell_img a {
    display: block;
    width: 150px;
    color: #fff;
    position: absolute;
    text-align: center;
    font-size: .17rem;
}

.float_tell_img span {
    top: 2px;
}

.float_tell_img a {
    /*top: 30px;*/
    line-height: 60px;
}
.float_tell_img .float_tell_erweima{
    width: 150px;
    margin-top: 2px;
}
.float_Qr_img {
    position: fixed;
    bottom: 160px;
    right: 60px;
    overflow: hidden;
    width: 0;
    transition: all .2s ease-in-out;
    -wekbit-transition: all .2s ease-in-out;
    background: url("../images/float_bg2.png") no-repeat right 0;
    background-size: contain;
    margin-bottom: 0;
    overflow: hidden;
}

.float_Qr_img li {
    width: 182px;
    padding-left: .3rem;
}

.float_Qr_img a {
    font-size: .17rem;
    line-height: 1.8;
    color: #fff;
}

.float_Qr_img li:hover a {
    color: #e33b3b;
}

.float_mess .float_img_move,
.float_tell .float_img_move,
.float_Qr .float_img_move,
.float_retrun .float_img_move {
    position: relative;
    z-index: 100;
    width: 120px;
    overflow: hidden;
    margin-bottom: 0;
}

.float_mess .float_img_move {
    width: 60px;
    padding-top: .1rem;
    color: #fff;
    font-size: .16rem;
    line-height: 1.4;
    text-align: center;
}

.float_img_move img {
    width: 50%;
}

.float_mess .float_img_move img:first-child,
.float_tell .float_img_move img:first-child,
.float_Qr .float_img_move img:first-child,
.float_retrun .float_img_move img:first-child {
    transition: all .2s linear;
}

.float_mess:hover .float_img_move img:first-child,
.float_tell:hover .float_img_move img:first-child,
.float_Qr:hover .float_img_move img:first-child,
.float_retrun:hover .float_img_move img:first-child {
    margin-left: -60px;
}

.float_Qr:hover .float_Qr_img {
    width: 202px;
    padding: .1rem;
}

.float_tell:hover .float_tell_img {
    width: 160px;
}

ins#nb_icon_wrap *,
ins.nb-icon-inner-wrap,
ins.nb-icon-inner-wrap * {
    display: none !important;
}

@media (max-width: 759px) {
    .float_mess {
        bottom: 189px;
    }
    .float_tell {
        display: none
    }
    .float_Qr {
        display: none
    }
    .float_retrun {
        bottom: 143px;
    }
    .float_mess,
    .float_tell,
    .float_Qr,
    .float_retrun {
        width: 45px;
        height: 45px;
        right: 0;
    }
    .float_retrun .float_img_move {
        width: 90px;
    }
    .float_mess .float_img_move {
        width: 45px;
        padding-top: .15rem;
    }
    .float_img_move img {
        width: 45px;
    }
    .float_mess:hover .float_img_move img:first-child,
    .float_tell:hover .float_img_move img:first-child,
    .float_Qr:hover .float_img_move img:first-child,
    .float_retrun:hover .float_img_move img:first-child {
        margin-left: -45px;
    }
}


/* 产品详情 */

.proDetail_wraper1 {
    background-size: cover;
}

.proDetail_wraper .pro_img_box {
    padding: 0 .45rem 0 0;
}

.pro-swiper .swiper-slide {
    padding: .2rem 0 .3rem;
    background-color: #fff;
    border-radius: 12px;
    text-align: center;
}

.pro-swiper .swiper-slide img {
    max-width: 100%;
    height: auto;
    max-height: 450px;
}

.pro-swiper .swiper-pagination {
    bottom: 5px;
}

.pro-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background-color: #ffa500;
    opacity: 1;
    transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    -webkit-transition: .5s;
}

.pro-swiper .swiper-pagination-bullet-active {
    width: .35rem;
}

.proDetail_wraper .proc_text {
    padding-left: 0;
    padding-right: 0;
    letter-spacing: 1px;
}

.proDetail_wraper .proc_text h3 {
    font-size: .46rem;
    font-weight: bold;
    letter-spacing: 3px;
    margin: 0 0 .5rem;
    text-shadow: 0 0px 15px rgba(0, 0, 0, 1);
    color: #fff;
}

.proDetail_wraper .proc_text .canshu {
    padding: .1rem;
    /* background-color: #f5f5f5; */
    background: url("../../../img/bg_canshu.jpg"/*tpa=http://www.lefilter.org/img/bg_canshu.jpg*/) no-repeat center center;
    background-size: 100% 100%;
    margin-bottom: .1rem;
    border-radius: 6px;
}

.proDetail_wraper .proc_text .canshu ul {
    padding: .15rem;
    border-radius: 6px;
    /* background-color: #fff; */
    /* box-shadow: 0 4px 20px rgb(0 0 0 / 20%) inset; */
    margin-bottom: 0;
}

.proDetail_wraper .proc_text .canshu li {
    font-size: .16rem;
    line-height: 2.7;
    padding: .1rem .3rem .1rem 0;
}

.proDetail_wraper .proc_text .canshu li .in {
    color: #000;
    font-weight: bold;
    padding-right: .1rem;
    background: url("../../../img/bg_canshu1.png"/*tpa=http://www.lefilter.org/img/bg_canshu1.png*/) no-repeat right bottom;
    background-size: auto 100%;
}

.canshu li .glyphicon {
    color: #ff9c00;
}

.cs_name {
    float: right;
    font-weight: normal;
    color: #fff;
}

.proc_text .canshu p {
    margin-bottom: 0;
}

.zaixianzixun {
    margin-top: .4rem;
    justify-content: space-around;
    align-items: center;
}

.fw_list {
    font-size: .14rem;
    color: #fff;
    /* list-style: ; */
    list-style-type: disc;
    line-height: 2.5;
}

.pro_content_wraper .left {
    width: 70%;
    padding: 0 .2rem 0 .4rem;
}

.floor_list {
    padding-top: .45rem;
}

.floor_list video {
    max-width: 100%;
    max-height: 600px;
    margin-bottom: .45rem;
}

.pro_content_wraper .left h2 {
    font-size: .24rem;
    color: #002373;
    line-height: 1;
    letter-spacing: 2px;
    padding: 0 0 0 .4rem;
    background: url("../../../img/titlle_icon.png"/*tpa=http://www.lefilter.org/img/titlle_icon.png*/) no-repeat 0 center;
    background-size: auto 100%;
    margin: 0 0 .3rem -.4rem;
    font-weight: bold;
}

.pro_content_wraper .left p {
    letter-spacing: 1px;
}

.pro_content_wraper .left img {
    max-width: 100%;
}

.xuanxing {
    margin-bottom: .6rem;
}

.xuanxing li {
    float: left;
    width: 25%;
    font-size: .15rem;
    color: #026ac1;
    border-bottom: 1px solid #9a9a9a;
    margin-bottom: .1rem;
    cursor: pointer;
}

.xuanxing li.active {
    color: red;
}

.pro_content_wraper table {
    max-width: 100%;
    overflow-x: scroll;
    /* display: unset; */
    /* font-family: "微软雅黑"; */
}

.tabList {
    display: none;
}

.tabList:first-child {
    display: block;
}

.pro_content_wraper td {
    padding: .06rem .1rem;
    border: 1px solid #888;
    font-size: .15rem;
}

.pro_content_wraper table tr:nth-child(2n) {
    background-color: #fff;
}

.pro_content_wraper table tr:nth-child(2n - 1) {
    background-color: #daf0fb;
}

.pro_content_wraper table thead tr {
    background-color: #2f75b5 !important;
    color: #fff;
    font-size: .16rem;
}


/* .youshi {
    padding-left: .4rem;
} */

.tt {
    line-height: 1;
    color: #0e529f;
    margin: .15rem 0;
}

.youshi li {
    padding-left: .45rem;
}

.youshi li:nth-child(1) {
    background: url("../../../img/one.jpg"/*tpa=http://www.lefilter.org/img/one.jpg*/) no-repeat 0 0;
}

.youshi li:nth-child(2) {
    background: url("../../../img/two.jpg"/*tpa=http://www.lefilter.org/img/two.jpg*/) no-repeat 0 0;
}

.youshi li:nth-child(3) {
    background: url("../../../img/three.jpg"/*tpa=http://www.lefilter.org/img/three.jpg*/) no-repeat 0 0;
}

.youshi li:nth-child(4) {
    background: url("../../../img/four.jpg"/*tpa=http://www.lefilter.org/img/four.jpg*/) no-repeat 0 0;
}

.youshi li:nth-child(5) {
    background: url("../../../img/five.jpg"/*tpa=http://www.lefilter.org/img/five.jpg*/) no-repeat 0 0;
}
.youshi li:nth-child(6) {
    background: url("../../../img/six.jpg"/*tpa=http://www.lefilter.org/img/six.jpg*/) no-repeat 0 0;
}
.youshi li:nth-child(7) {
    background: url("../../../img/seven.jpg"/*tpa=http://www.lefilter.org/img/seven.jpg*/) no-repeat 0 0;
}
.youshi li:nth-child(8) {
    background: url("../../../img/eight.jpg"/*tpa=http://www.lefilter.org/img/eight.jpg*/) no-repeat 0 0;
}
.youshi li:nth-child(9) {
    background: url("../../../img/nine.jpg"/*tpa=http://www.lefilter.org/img/nine.jpg*/) no-repeat 0 0;
}
.youshi li:nth-child(10) {
    background: url("../../../img/ten.jpg"/*tpa=http://www.lefilter.org/img/ten.jpg*/) no-repeat 0 0;
}
.pro_tuijian {
    background-color: #fff;
}

.pro_tuijian .col-four-list {
    width: calc(33.33% - .14rem);
    margin-right: .21rem;
}

.pro_tuijian .col-four-list:last-child {
    margin-right: 0;
}

.pro_tuijian .col-four-list .tc {
    padding: 0 .1rem;
}


/* .col-four-list:hover{
    margin-top: -.1rem;
} */

.col-four-list:hover .fs24 {
    color: #1998d3;
}

.shipei h4 {
    font-size: .18rem;
    margin: .3rem 0;
    letter-spacing: 3px;
}

.pro_content_wraper .proRight {
    position: sticky;
    top: .45rem;
    padding-top: .45rem;
    background-color: #fff;
    z-index: 1000;
}

@media screen and (min-width:1200px) {
    .pro_content_wraper .proRight {
        width: 352px;
    }
}

@media screen and (max-width:1200px) {
    .pro_content_wraper .proRight {
        width: 23.64%;
    }
}

.pro_content_wraper .table2 td {
    text-align: center;
    padding: .06rem .4rem;
    border: 2px solid #fff;
}

.pro_content_wraper .table2 tr,
.pro_content_wraper .table2 tr:first-child {
    background-color: #ddebf7;
    color: #000;
}

.table.left_bg tr>th:first-child,
.table.left_bg tr>td:first-child {
    background: #026ac1;
    color: #fff;
    border-color: #fff;
}

.proRight .tj_title {
    padding: 0 .1rem;
}

.proRight .tj_title span {
    display: block;
    color: #fff;
    background: url("../../../img/bg_tuijian.png"/*tpa=http://www.lefilter.org/img/bg_tuijian.png*/) 0 0;
    background-size: 100% 100%;
}

.proRight>div {
    padding: .7rem .4rem .2rem;
    margin-top: -.4rem;
    background: url("../../../img/bg2_tuijian.png"/*tpa=http://www.lefilter.org/img/bg2_tuijian.png*/) 0 0;
    background-size: 100% 100%;
}

.pro_right {
    background-color: #fff;
    border: 1px solid #000 !important;
    margin-bottom: .2rem;
}

.pro_right .imgb {
    overflow: hidden;
}

.pro_right p {
    width: calc(100% - .02rem);
    left: .01rem;
    bottom: .01rem;
    /* padding: 0 0 0 .1rem; */
    color: #295095;
    line-height: 1.8;
    background-color: #bbe2f8;
    margin-bottom: 0;
    text-align: center;
}

.pro_right:hover img {
    transform: scale(1.1);
}

.back_list:hover {
    color: #1998d3;
}

.proRight .imgb img {
    width: 100%;
}

.FloorNavBar {
    width: 100%;
    z-index: 1000000;
    /* padding-top: .4rem; */
    /* position: fixed;
    top: 10%;
    left: 50%;
    display: none; */
}

.FloorNavBar ul {
    display: table;
    border-radius: .4rem;
    margin-top: -.4rem;
    overflow: hidden;
}


/* @media screen and (min-width:1370px) {
    .FloorNavBar {
        margin-left: -750px;
    }
}

@media screen and (max-width:1369px) {
    .FloorNavBar {
        display: none;
    }
} */

.FloorNavBar li {
    /* width: .5rem;
    height: .5rem; */
    /* display: inline-block; */
    display: table-cell;
    font-size: .18rem;
    line-height: .8rem;
    text-align: center;
    background-color: #efefef;
    margin-bottom: 5px;
    color: #026ac1;
}

.FloorNavBar li.active,
.FloorNavBar li:hover {
    background-color: #026ac1;
    color: #fff;
}

.mySwiper2 {
    height: auto;
    width: 100%;
    overflow: hidden;
}

.mySwiper {
    height: 1.1rem;
    box-sizing: border-box;
    padding: .1rem 0;
    overflow: hidden;
}

.mySwiper .swiper-slide {
    /* width: 20%; */
    height: 100%;
    /* opacity: .4; */
}

.mySwiper .swiper-slide-active {
    opacity: 1;
}

.mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.mySwiper .swiper-slide img,
.mySwiper2 .swiper-slide img {
    display: block;
    width: 100%;
    object-position: center;
    /* height: 100%; */
    /* object-fit: cover; */
}

.khal_list {
    border: 2px solid #000;
    background-color: #c6ebff;
    margin-bottom: .2rem;
}

.khal_list:last-child {
    margin-bottom: 0;
}

.zaixianzixun img {
    margin-top: -.1rem;
}

.desc h4 {
    margin-bottom: .1rem;
    line-height: 1.5;
    color: #000;
}

.canshu table,
.canshu table td {
    border: 1px dashed #666;
}

.canshu table td {
    font-size: .14rem;
    text-align: center;
    vertical-align: middle !important;
}


/* .canshu table tr:first-child{
background: #0092ce;
color: #fff;
} */

.khal>img {
    width: 100%;
}

.khal_list:nth-child(2n) .imgbox {
    float: right;
}

.khal_list:nth-child(2n) .imgbox img {
    float: right;
}

.khal_list:nth-child(2n) .desc {
    float: left;
}

.khal_list:nth-child(2n - 1) .imgbox {
    float: left;
}

.khal_list:nth-child(2n - 1) .desc {
    float: right;
}

.khal_list .imgbox {
    width: 65.48%;
    overflow: hidden;
}

.desc {
    width: 34.52%;
    padding: .4rem .4rem 0;
    color: #565656;
}

.xiahuaxian {
    height: 5px;
    width: 45px;
    background-color: #ff9c00;
    border-radius: 2.5px;
    margin-bottom: .2rem;
}

.desc a {
    display: block;
    color: #003dae;
    text-align: right;
}

.desc .iconfont {
    vertical-align: middle;
}

.article_near {
    padding-top: .5rem;
}

.shangbiao {
    transform: scale(.6);
    text-align: top;
}

.txt {
    margin-bottom: .4rem;
}

.txt p {
    border-bottom: 1px dashed #999;
}

.txt p span {
    padding-left: 0;
}


/* 产品中心 改版 */

.pro-index-top {
    padding: .56rem 0 0;
}

.proc_wraper .content {
    width: 100%;
    max-width: 1196px;
    margin: 0 auto .5rem;
    position: relative;
}

.pro-index-top .title {
    font-size: .3rem;
    line-height: 1;
    text-align: center;
}

.pro-index-top .text {
    width: 820px;
    margin: .22rem auto 0;
    font-size: .14rem;
    line-height: .1.5;
    color: #888;
    text-align: center;
}

.i-pro-class {
    background: #f5f5f5;
    padding: .08rem;
    overflow: hidden;
    width: 100%;
    max-width: 1196px;
    border-radius: 4px;
    margin-top: .2rem;
}

.i-class-box {
    background: url("../images/pro01.jpg"/*tpa=http://www.lefilter.org/templets/default/images/pro01.jpg*/) no-repeat;
    width: calc(50% - 4px);
    float: left;
    margin-left: .08rem;
    padding-bottom: .16rem;
    border-radius: 4px;
    background-color: #fff;
    min-height: 3..4rem;
    position: relative;
}

.i-class-box:first-child {
    margin-left: 0;
}

.i-pro-class .gl4 {
    background: url("../images/pro01.jpg"/*tpa=http://www.lefilter.org/templets/default/images/pro01.jpg*/) no-repeat;
}

.i-class-box img {
    width: 100%;
}

.i-class-box>.clearfix {
    padding: .2rem 0;
    display: flex;
    align-items: center;
}

.i-class-box .left {
    float: left;
    width: 35%;
}

.i-class-box>div>.desk {
    float: left;
    width: 65%;
    padding-left: .1rem;
}

.i-class-tle {
    font-size: .24rem;
    line-height: .24rem;
    color: #555;
    text-align: center;
    padding-top: .28rem;
    padding-bottom: .08rem;
}

.i-class-inx {
    font-size: .14rem;
    color: #aaa;
    text-align: center;
}

.desk {
    height: 2rem;
    border-radius: 4px;
    transition: all .16s ease;
}

.desk-tle {
    color: #fff;
    font-size: .24rem;
    text-align: center;
    line-height: .24rem;
    padding-top: .28rem;
    padding-bottom: .15rem;
}

.desk li {
    float: left;
    width: 50%;
    font-size: .14rem;
    line-height: .3rem;
}

.pro-index-mid {
    padding: .56rem .1rem 0;
}

.head {
    height: .38rem;
}

.head .title {
    float: left;
    font-size: .3rem;
}

.pro-index-mid ul {
    margin-top: .28rem;
}

.pro-index-mid li {
    width: 385px;
    float: left;
    margin-right: 20px;
    margin-bottom: .5rem;
    padding: 10px;
    border: 1px solid #ccc;
}

.pro-index-mid li:nth-child(3n) {
    margin-right: 0;
}

.pro-index-mid .img-box {
    display: block;
    width: 100%;
    /* height: 280px; */
    position: relative;
}

.pro-index-mid .img-box img {
    display: block;
    max-width: 100%;
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.pro-index-mid .info .title {
    display: block;
    font-size: 21px;
    color: #222;
    line-height: 1;
    margin-top: 20px;
    transition: all .4s;
}

.pro-index-mid .stands {
    width: 100%;
    overflow: hidden;
}

.pro-index-mid .info .attr {
    display: inline-block;
    font-size: .13rem;
    line-height: 1.2;
    color: #999;
    margin-top: .18rem;
}

/*.pro-index-mid .info .attr:nth-child(2) {*/
/*    margin-left: 10px;*/
/*}*/

.pro-index-mid .btns {
    margin-top: .15rem;
}

.pro-index-mid .btns a {
    display: block;
    float: left;
    padding: 0 31px;
    height: 35px;
    background-color: #fafafa;
    border: 1px solid #dddddd;
    border-radius: 4px;
    line-height: 32px;
    font-size: 16px;
    color: #555;
    text-align: center;
    transition: all .4s;
    margin-left: 4px;
}

.pro-index-mid .btns a:first-child {
    margin-left: 0;
    background: #fff;
    color: #ffa500;
    border: 1px solid #ffa500;
}

.cs {
    margin-right: 2px;
    padding: 1px 2px;
    font-size: .12rem;
    border-radius: 2px;
    border: 1px solid #ffa500;
    color: #ffa500;
}

.pro-index-mid .btns a:hover {
    background-color: #ffa500;
    color: #fff;
    border: 1px solid #ffa500;
}

.backlist {
    display: block;
    width: 90%;
    font-size: .18rem;
    height: .4rem;
    color: #fff;
    background: #ffa500;
    letter-spacing: .05rem;
    line-height: .4rem;
    margin: 0 auto .2rem;
    text-align: center;
    border-radius: .25rem;
    /* border: 1px solid #ffa500; */
}

.backlist:hover {
    color: #fff;
}
/*产品列表页改版*/
.wsc-layoutCon{
    padding: .6rem 0;
    position: relative;
}
.layout-side {
    position: sticky;
    top: 10px;
    width: 21.5%;
    float: left;
    font-size: 14px;
    line-height: 1.5;
    font-family: "Microsoft Yahei", "Arial", sans-serif;
    color: #333333;
    /* background: #fff; */
    border-radius: 2px;
    z-index: 100;
}
.layout-side .catebtn {
    display: none;
    position: relative;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    font-size: 14px;
    background-color: #006cff;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
}

.layout-side .catebtn:after {
    content: "";
    position: absolute;
    right: 11px;
    top: 11px;
    width: 18px;
    height: 18px;
}

.layout-side .close {
    display: none;
    position: absolute;
    top: 90px;
    right: 20px;
    width: 30px;
    height: 30px;
    font-size: 24px;
    line-height: 30px;
    color: #fff;
    opacity: 1;
    cursor: pointer;
    z-index: 10000000;
}


.proNav-head {
    padding: 0 20px;
    text-align: left;
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    line-height: 60px;
     background: url("../images/title.jpg") no-repeat center center; 
    background-size: cover;
}

.proNav-head i {
    font-size: 24px;
    margin-right: 5px;
}

.panel-group {
    background: #fff;
    /* padding: 10px; */
    margin-bottom: 10px;
}

.panel-group .panel+.panel {
    margin-top: 4px;
}

.sideNav {
    background: #fff;
    padding: 10px 10px 20px;
}

.sn-list-item,
.sn-list-item .panel-body {
    border: none !important;
}

.panel-default>.panel-heading {
    padding: 0;
    border: none !important;
    background-color: transparent;
}

.sn-item-tit span {
    font-size: 20px;
}

.sn-item-tit {
    overflow: hidden;
    font-size: 16px;
    color: #617080;
    background: #f5f5f5;
    position: relative;
}


/* .sn-item-tit .ico {
    position: absolute;
    padding: 0 20px;
    top: 0;
    right: 0;
} */

.list-wraper .panel .panel-title a,
.list-wraper .panel .panel-title a .fa {
    transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    -webkit-transition: .5s;
    text-decoration: none;
}

.sn-item-tit>a:before {
    position: absolute;
    left: 0;
    top: 23%;
    content: "";
    width: 4px;
    height: .25rem;
    background-color: #f5f5f5;
    transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    -webkit-transition: .5s;
}

.sn-item-tit.in>a:before,
.sn-item-tit>a:hover:before,
.sn-item-tit a[aria-expanded="true"]:before {
    background-color: #006cff;
}

.sn-item-tit>a:hover,
.sn-item-tit.in>a,
.sn-item-tit a[aria-expanded="true"] {
    background-color: transparent;
    color: #006cff;
}

.sn-list-item .collapse:hover,
.sn-list-item .collapse.active {
    color: #006cff;
}

.sn-item-tit a {
    float: left;
    width: 100%;
    height: 42px;
    padding: 0 20px;
    line-height: 42px;
    font-size: 18px;
    color: #617080;
    transition: 0.3s;
}

.sn-list-item .panel-body {
    background-color: #fff;
}


/* .sideNav ul {
    display: none;
} */

.collapse {
    border: none !important;
}

.pro_nav_list {
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    color: #617080;
    position: relative;
}

.pro_nav_list a {
    color: #617080;
}

.sideNav li .pro-nav2 {
    color: #617080;
    display: block;
    padding-left: 30px;
}

.layout-content {
    float: right;
    width: 75.5%;
}

.prodList .Atitem.wsc-relate {
    margin-top: 0;
    padding-top: 0px;
}

.prodList .Atitem .rlist-style3 {
    padding: 0;
    overflow: hidden;
    margin-top: 0px;
}

.Atitem .rlist-style3 .rListCon {
    margin: -20px -10px 0;
    zoom: 1;
}

.prodList .Atitem .wsc-pro .rlist-imgitem {
    width: 33.33%;
    float: left;
    box-sizing: border-box;
    padding: 0 .1rem;
    margin-top: .2rem;
}
.prodList .Atitem .wsc-pro .rlist-imgitem>div{
    background: #f8f8f8;
}
.Atitem .wsc-pro .rlist-img {
     height: 0; 
     padding-bottom: 100%;
    overflow: hidden;
    margin: 0;
    float: none;
    border: 0;
    box-sizing: border-box;
    border-radius: 2px 2px 0px 0px;
    position: relative;
    /* border-bottom: 1px solid #f5f5f5; */
}

.Atitem .wsc-pro .rlist-img img {
    position: absolute;
    top: 0;
    left: 0;
    /*max-width: 100%;*/
    max-height: 100%;
    margin: auto;
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.rlist-style3 .rlist-img img {
    /*width: 100%;*/
    height: auto;
    transition: 0.36s;
}

.rlist-imgitem:hover .rlist-img img {
    transform: scale(1.08);
}

.Atitem .wsc-pro .rlist-info {
    overflow: hidden;
    
    border-top: 0;
    border-radius: 0px 0px 2px 2px;
}

.Atitem .wsc-pro .rlist-tit {
    font-size: 20px;
    line-height: 48px;
    color: #e67817;font-weight: bold;
    overflow: hidden; text-align: center;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 48px;
}
.Atitem .wsc-pro .rlist-tit a{color: #e67817;}

.wsc-pro .rlist-attr {
    height: 51px;
    overflow: hidden;
}

.wsc-pro .rlist-attr p {
    margin-top: 3px;
    margin-bottom: 0;
    font-size: 14px;
    color: #97A1AC;
    line-height: 24px;
}

.wsc-pro .rlist-attr p em {
    font-size: 14px;
    color: #617080;
    line-height: 24px;
}

.wsc-pro .list-btn {
    margin-top: 15px;
    font-size: 0;
    text-align: center;
}

.wsc-pro .list-btn .btn {
    display: inline-block;
    width: 105px;
    height: 35px;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    /* line-height: 35px; */
    font-size: 14px;
    border-radius: 17px;
}

.btn-orangebd {
    background: rgb(252, 246, 246);
    border: 1px solid red;
    color: red;
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box;
    transition: 0.36s;
    text-align: center;
}

.wsc-pro .list-btn .btn-bluebdn {
    margin-left: 16px;
}

.btn-bluebdn {
    border: 1px solid #006cff;
    background: rgba(245, 248, 250, 1);
    color: #006cff;
}

.prodList .Atitem .wsc-pro .rlist-imgitem>div:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 4px 4px rgba(0, 0, 0, .1);
}

.pro_contact {
    background-color: #fff;
    padding: 30px 20px;
}

.pro_contact_list {
    justify-content: flex-start;
    align-items: center;
    margin-bottom: .3rem;
}

.pro_contact_list .icon {
    float: left;
    width: .5rem !important;
    height: .5rem !important;
    text-align: center;
    line-height: .5rem;
    border-radius: .25rem;
    border: 1px solid #006cff;
    background-color: #d4e4fa;
    color: #006cff;
}

.pro_contact_list .teet {
    float: left;
    width: calc(100% - .5rem);
    padding: 0 0 0 .15rem;
}

.pro_contact_zxzx {
    display: block;
    width: 90%;
    height: .42rem;
    font-size: .18rem;
    line-height: .42rem;
    letter-spacing: 5px;
    text-align: center;
    border-radius: .21rem;
    background: rgb(252, 246, 246);
    border: 1px solid red;
    color: red;
    margin: .4rem auto 0;
}

@media screen and (max-width:768px) {
    .layout-side,
    .layout-content {
        width: 100%;
    }
    .pro_nav_list {
        display: inline;
        margin-right: 5px;
    }
    .prodList .Atitem .wsc-pro .rlist-imgitem {
        width: calc(50%);
    }
    .Atitem .wsc-pro .rlist-info {
        padding: 5px;
    }
    .wsc-pro .list-btn .btn {
        width: calc(48% - 5px);
        padding: 0;
        height: .52rem;
        line-height: .52rem;
        border-radius: .26rem;
    }
    .pro_contact_zxzx {
        width: 50%;
        height: 0.52rem;
        line-height: .52rem;
        border-radius: .26rem;
        font-size: 14px;
    }
}
.shanshuo{
    animation: shanshuo 1s linear 1s infinite alternate;
}
@keyframes shanshuo {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.8);
    }
}

/* 案例页面改版2023.7 */

.solution_wraper {
    padding-top: 0;
    margin: .4rem 0;
}

.solution_wraper .container {
    padding-top: .6rem;
    background: #eeeeee;
}
.solution_wraper .solution {
    align-items: flex-start;
}
@media screen and (min-width:769px) {
    .solution_wraper .container {
        padding: 25px 30px;
    }
    .solution_list {
        width: 24%;
    }
}

.solution_list {
    background-color: #fff;
    margin-bottom: .2rem;
}

.slt_img_box {
    width: 100%;
    height: 0;
    padding-bottom: 53%;
    overflow: hidden;
    position: relative;
}

.slt_img_box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.slt_txt {
    padding: .1rem .2rem;
}

.slt_txt p {
    margin-bottom: 0;
}

.slt_txt .bold {
    color: #002c7d;
}


/* 案例列表页 */

.inmain-left {
    position:sticky;
    top: 10px;
    width: 18.42%;
    float: left;
}

.inmain-left .left-title {
    width: 100%;
    height: 50px;
    background: #002c7d;
    line-height: 50px;
    position: relative;
}

.inmain-left .left-title h3 {
    margin-top: 0%;
    line-height: 50px;
    padding-right: 52px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding-left: 25px;
    color: #fff;
}

.inmain-left .left-title span {
    position: absolute;
    top: 0;
    width: 50px;
    height: 50px;
    right: 0;
    display: block;
    font-size: 28px;
    color: #fff;
    line-height: 50px;
    border-left: 2px solid #fff;
    text-align: center;
    
}

.inmain-left .left-list {
    margin-bottom: 50px;
    overflow: hidden;
}

.inmain-left .left-list ul li {
    line-height: 42px;
    border-bottom: 1px solid #d4d4d4;
}

.inmain-left .left-list ul li a {
    background: url("../images/dot0.png"/*tpa=http://www.lefilter.org/templets/default/images/dot0.png*/) no-repeat 3px center;
    padding-left: 25px;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 14px;
    color: #333;
}

.inmain-left .left-list ul li a:hover {
    color: #002c7d;
    font-weight: bold;
}

.inmain-left .left-list ul {
    display: none;
    margin-bottom: 15px;
    overflow: hidden;
    padding: 9px 12px;
    background-color: #fff;
}

.inmain-left .left-list ul li {
    line-height: 30px;
    border-bottom: 0;
}

.inmain-left .left-list ul li a {
    padding-left: 13px;
    color: #666;
    font-size: 14px;
}

.inmain-left .left-list ul li a:hover {
    color: #002c7d;
}

.inmain-left .left-list ul li ul {
    background: 0;
    padding: 0 15px;
    margin-bottom: 0;
}

.inmain-left .left-list ul li ul li {
    line-height: 26px;
}

.inmain-left .left-list ul li ul li a {
    background: 0;
    color: #002c7d;
}

.inmain-left .left-list ul {
    display: block;
}

.inmain-left .left-list ul li a {
    color: #666;
    font-size: 14px;
    font-weight: normal;
}

.inmain-left .left-list ul .active a {
    color: #002c7d;
}

.inmain-left .left-list ul .active ul li a {
    color: #002c7d;
}

.inmain-left .left-list ul .active ul .active a {
    font-weight: bold;
}

.inmain-left .left-contact {
    margin-bottom: 15px;
    overflow: hidden;
}

.inmain-left .left-contact ul li {
    line-height: 42px;
    border-bottom: 1px solid #d4d4d4;
    font-family: Arial;
    position: relative;
    color: #333;
    font-size: 14px;
}
.inmain-left .left-contact ul li .iconfont{
    margin-right: 15px;
}
.inmain-left .left-contact ul li img {
    position: absolute;
    top: 13px;
    left: 0;
    width: 15px;
    height: 15px;
}

.inmain-left .left-contact ul .con-add {
    font-family: "microsoft yahei";
    line-height: 24px;
    padding: 9px 0 9px 0;
}

.inmain-left .recruitment {
    width: 130px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #002c7d;
}

.inmain-left .recruitment a {
    display: block;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
}

.inmain-left .recruitment:hover {
    background: #3f3e44;
}

.inmain-right {
    width: 77.5%;
    float: right;
    overflow: hidden;
}

.inmain-right .right-title {
    font-size: 26px;
    color: #002c7d;
    padding-bottom: 10px;
}

.solution_list {
    background-color: #fff;
}
.inmain-right .solution-title{
    font-size: 16px;
    margin-bottom: 25px;
}

.solution-list ul li {
    overflow: hidden;
    margin-bottom: 30px;
}

.solution-list ul li a {
    display: block;
    background-color: #fff;
    /* background: #ededed; */
    overflow: hidden;
}

.solution-list ul li .pic {
    width: 286px;
    height: 162px;
    float: left;
    margin-right: 30px;
}

.solution-list ul li .pic img {
    width: 100%;
    transition: .5s;
}

.solution-list ul li .pl-info {
    margin: 25px 30px 0 0;
    overflow: hidden;
}

.solution-list ul li .pl-info span {
    color: #225ba0;
    font-size: 18px;
    line-height: 30px;
    font-weight: bold;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-bottom: 20px;
}

.solution-list ul li .pl-info p {
    color: #555;
    font-size: 14px;
    line-height: 24px;
    height: 48px;
    overflow: hidden;
}

.solution-list ul li:hover .pic img {
    transform: scale(1.05);
}

.solution-list ul li:hover .pl-info span {
    color: #3c9bca;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .solution_wraper .container{
        padding-top: 0;
    }
    .content {
        padding: 10px;
    }
    .inmain {
        margin-top: 60px;
    }
    .inmain-left {
        display: none;
    }
    .inmain-right .solution-title{
        font-size: 14px;
    }
    .inmain-right {
        width: 100%;
        float: none;
    }
    .inmain-right .right-title {
        /*padding-bottom: 20px;*/
        /*margin-bottom: 20px;*/
        font-size: 24px;
    }
}
@media (max-width: 500px) {
    .so-list li {
        width: 50%;
    }

    .solution-list ul li {
        margin-bottom: 15px;
    }

    .solution-list ul li .pic {
        width: 120px;
        height: 68px;
        margin-right: 10px;
    }

    .solution-list ul li .pl-info {
        margin: 5px 10px 0 0;
    }

    .solution-list ul li .pl-info span {
        font-size: 16px;
        margin-bottom: 0;
    }

    .solution-list ul li .pl-info p {
        height: 24px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}
.epc_wraper{
    padding-top: .1rem;
}
.epc_list {
    padding: 0 .15rem;
    margin-top: .3rem;
}

.epc_list a {
    display: block;
    background-color: #eeeeee;
}

.epc_list .slt_txt .bold {
    font-size: .2rem;
    color: #000;
    margin-bottom: .05rem;
}

.slt_txt .bold span {
    color: #002c7d;
}

.slt_txt i {
    font-size: 14px;
    font-style: normal;
    background: #002c7d;
    color: #fff;
    padding: .08rem .16rem;
    margin-right: 20px;
}

.epc_list:hover img {
    transform: scale(1.04);
}

.epc_list:hover i {
    transform: translateX(20px);
}


/* EPC案例详情 */

.bg-white {
    background-color: #fff;
}


/*新闻详情*/

.epc_dtl_wraper {
    padding: .3rem 0;
    background: #f4f6f8;
}

.ninfoa {
    height: auto;
    overflow: hidden;
    text-align: center;
}

.ninfoa strong {
    display: block;
    padding-top: .3rem;
    font-size: .22rem;
    color: #4c4c4c;
    line-height: 40px;
}

.meta {
    padding: .1rem 0;
    font-size: 14px;
    line-height: 35px;
    color: #777;
    border-bottom: 1px solid #dbdbdb;
}

.newsaa {
    padding: .4rem 0 .2rem;
    height: auto;
    overflow: hidden;
}
.newscon{
    padding-bottom: .4rem;
        border-bottom: 1px solid #dbdbdb;
    margin-bottom: .4rem;
}
.newsaa img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}
.newscon h2 {
    font-size: .2rem;
    line-height: 1;
    padding-left: 0.38rem;
    background: url("../../../img/titlle_icon.png"/*tpa=http://www.lefilter.org/img/titlle_icon.png*/) no-repeat 0 0;
    background-size: contain;
    margin: 0.45rem 0 0.15rem;
    letter-spacing: 1px;
}

.newsaa p {
    line-height: 30px;
}
.newscon_right{
    position: sticky;
    top: 10px;
}
.sidea {
    padding: 2% 0;
    height: auto;
    overflow: hidden;
}
.sidea h3{
    font-size: .2rem;
    margin: .3rem 0 .15rem;
}
#prev_next,
#prev_next a {
    font-size: 14px;
    line-height: 2.5;
}

.back a {
    float: right;
    display: block;
    width: 140px;
    line-height: 45px;
    font-size: 16px;
    color: #fff;
    border: 1px solid #135fb5;
    border-radius: 5px;
    text-align: center;
    transition: .4s;
    background: #135fb5;
}

.sidea li {
    height: auto;
    padding: .2rem;
    overflow: hidden;
    background: #f7f8fb;
    transition: .4s;
    position: relative;
    border-bottom: 2px solid #e3e3e3;
    margin-bottom: .3rem;
}

.sidea li:hover {
    transform: translate3d(0, -5px, 0);
    box-shadow: 0px 0px 8px 5px rgba(0, 0, 0, .1)
}

.sidea li:hover::before {
    width: 100%;
}

.sidea li::before {
    position: absolute;
    content: "";
    width: 0;
    left: 0;
    bottom: 0;
    height: 2px;
    background: #135fb5;
    transition: .4s;
}

.sidea li a {
    display: block;
    height: auto;
    overflow: hidden;
}

.sidea li strong {
    display: block;
    font-size: 16px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.sidea li span {
    display: block;
    font-size: 14px;
    color: #999;
    line-height: 30px;
}

.sidea li p {
    font-size: 14px;
    line-height: 30px;
    color: #777;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.cases-pic {
    margin-top: 40px;
    overflow: hidden;
}

.cases-pic img {
    width: 100%;
}
.caselist li a{display: block;transition:.4s;background:url(../images/casea.png) right bottom no-repeat #f5f5f5;}
.caselist li a:hover{background:url(../images/casea.png) right bottom no-repeat #fff;box-shadow: rgba(0,0,0,0.3) 0 5px 10px;transform: translate3d(0,-5px,0);transition: all linear 0.3s;}
.caselist li a:hover em{background:#003893;color: #fff}
.caselist li img{display: block;width: 100%;height: 375px;}
.case_a p{line-height: 40px;}
.case_a{width: 80%;}
.case_a strong{display: block;white-space: nowrap; text-overflow:ellipsis; overflow: hidden;padding-top:10px;}
.case_a em{display: block;width: 140px;line-height: 35px;border: 1px solid #d8d8d8;border-radius: 60px;background: #fff;color: #003893;transition:.4s;text-align: center;font-style: normal;}

.prodect-Info .info-main .info-preview {
    background: #f2f2f2;
    padding: 0 0 0 3%;
    border: 1px solid #f2f2f2;
    overflow: hidden;
    position: relative;
	height: 480px;
}
.prodect-Info .info-main .info-preview dl {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 30px;
    height: 100%;
    background: #e6e6e6;
}
.prodect-Info .info-main .info-preview dl dt {
    font-weight: normal;
    width: 30px;
    line-height: 20px;
    padding-top: 50%;
    text-align: center;
    color: #333;
}
.prodect-Info .info-main .info-main-rig .title {
    margin: 2% 0 0;
    color: #333333;
    font-size: 24px;
    font-weight: bold;
    border-bottom: 1px solid #f2f2f2;
    position: relative;
    height: 45px;
}
.prodect-Info .info-main .info-main-rig table tr td:nth-of-type(1) {
    width: 15%;
    vertical-align: top;
}
#cpbtqh{ width: 100%; transition:0.3s; background: #f2f2f2;}
.cpbt1{ background: #f2f2f2; height: 50px; line-height: 50px; border-bottom: 1px solid #efefef; width: 100%; transition:0.3s; margin: 0 auto !important;}
.cpbt1 li{ float: left; color: #333333; font-weight: bold; font-size: 16px; width: 11%; text-align: center; position: relative; transition:0.3s;}
.cpbt1 li:hover{ background: #00369B; color: #fff;}
.cpbt1 li:hover a{ color: #fff;}
.cpbt1 li.current a{ color: #fff;}
.cpbt1 li.current{ background: #00369B;}
@media screen and (max-width:765px){
    .cpbt1{ height:auto;}
    .cpbt1 li{ width: 25%; font-size: 13px;}
}
.tit_in {
    text-align: center;
}
.tit_in p {
    position: relative;
    color: #333333;
    font-size: 28px;
    font-weight: bold;
    display: inline-block;
}
#yyhy li span {
    display: block;
    text-align: center;
    font-size: 18px;
    background: #00369B;
    height: 55px;
    line-height: 55px;
    color: #fff;
    transition: 0.3s;
}
#yyhy li:hover span {
    background: #333;
}
#zxly,#zxly_nr{ margin-top: 3%;}
.mes-form2 { margin: 0 auto; overflow: hidden; width: 100%; padding: 0;}
.mes-form2 .form-tr { padding: 0; overflow: hidden; margin-bottom: 2%;height: 80px;}
.mes-form2 .form-tr p{ float: left;}
.mes-form2 .form-tr input { float: left; display: block; width: 80%; background: #f3f3f3; padding: 0 2%; height: 45px; line-height: 45px; border-radius: 5px; border: none;}
.mes-form2 .form-tr textarea { float: left; display: block; width: 80%; background: #f3f3f3; padding: 0 2%; height: 120px; line-height: 45px; border-radius: 5px; border: none;}
.mes-form2 .form-tr .code { overflow: hidden;}
.mes-form2 .form-tr .code input { width: 25%; float: left;}
.mes-form2 .form-tr .code .verify { cursor: pointer; float: left; margin-left: 10px; width: 80px; height: 35px; line-height: 35px; text-align: center; font-size: 0;}
.mes-form2 .form-tr .code .verify img { display: inline-block; vertical-align: middle; max-width: 100%; max-height: 100%;}
.mes-form2 .form-tr .submit3 { display: block; width: 50%; height: 45px; text-align: center; line-height: 45px; background: #00369B; color: #fff; font-size: 16px; border-radius: 5px; transition:0.3s; margin: 0 auto;}
.mes-form2 .form-tr .submit3:hover { background: #333;}
.mes-form2 .form-tr .error { height: 1rem; line-height: 1rem;}
.kjly,.kjly1{ border: 1px solid #e6e6e6; border-radius: 5px; padding: 3%;}
.kjly .tit{ color: #333333; font-size: 16px;}
.kjly .content{ color: #666; line-height: 35px; font-size: 13px;}
.kjly .content i{ float: left; color: #00369B; padding-right: 10px;}
.kjly1{ margin-top: 3%; text-align: center;}
.kjly1 p{ color: #333333; font-size: 16px;}
.kjly1 span{ margin: 2% auto 0; display: block; height: 40px; line-height: 40px; width: 50%; color: #fff; border-radius: 10px; background: #00369B;}
#yyhy li p img {
    width: 100%;
}

@media screen and (max-width:768px){
    #zxly_nr .col-xs-12{ padding: 0; margin-bottom: 2%;}
    .kjly1 p{ font-size: 14px;}
}
#youshi{ margin-top: 2%;}
#youshi .swiper-container { width: 100%; height: auto; margin-left: auto; margin-right: auto;}
#youshi .swiper-slide { background-size: cover; background-position: center; position: relative;}
#youshi .gallery-top { height: auto; width: 100%; margin-top: 10px; padding: 0; background: #fff; position: relative;}
#youshi .gallery-top .swiper-slide{ padding: 0;}
#youshi .gallery-top .swiper-slide .pic{ width: 100%; text-align: center; }
#youshi .gallery-top .swiper-slide .pic img{ width: 100%;}
#youshi .gallery-top .swiper-slide .font{ width: 100%; position: absolute; left: 0; bottom: 0;}
#youshi .gallery-top .swiper-slide .font .container{ background: #fff; padding: 1% 2%;}
#youshi .gallery-top .swiper-slide .num{ float: left; height: 60px; line-height: 60px; color: #d51418; font-size: 60px; font-weight: bold;}
#youshi .gallery-top .swiper-slide .tit{ border-left: 1px solid #e6e6e6; float: left; margin-left: 10px; padding-left: 10px; text-align: left; line-height: 28px;}
#youshi .gallery-top .swiper-slide .tit p{ color: #333333; font-size: 24px; font-weight: bold;}
#youshi .gallery-top .swiper-slide .tit span{ color: #333333; font-size: 16px;}
#youshi .gallery-top .swiper-slide .content{ float: left; width: 75%; padding: 0 0 0 3%;}
#youshi .gallery-top .swiper-button-next,#youshi .gallery-top .swiper-button-prev { text-align: center; background: none; width: auto; height: auto; margin: 0; }
#youshi .gallery-top .swiper-button-next i,#youshi .gallery-top .swiper-button-prev i{ font-size: 80px; font-weight: bold; color: #d51418;}


#youshi .gallery-thumbs { height: auto; padding: 0 15%; box-sizing: border-box;}
#youshi .gallery-thumbs .swiper-wrapper{ padding-bottom: 5px;}
#youshi .gallery-thumbs .swiper-slide { height: auto; border: 1px solid #e6e6e6; cursor: pointer; padding: 2.5% 0 2% 2%;}
#youshi .gallery-thumbs .swiper-slide i{ float: left; font-size: 40px;}
#youshi .gallery-thumbs .swiper-slide .left{ padding-left: 20px; line-height: 20px;}
#youshi .gallery-thumbs .swiper-slide .left p{ color: #333333; font-size: 20px; font-weight: bold;}
#youshi .gallery-thumbs .swiper-slide .left span{ color: #cccccc; font-size: 12px; text-transform: uppercase;}
#youshi .gallery-thumbs .swiper-slide-thumb-active { background: #d51418; color: #fff;}
#youshi .gallery-thumbs .swiper-slide-thumb-active .left p,#youshi .gallery-thumbs .swiper-slide-thumb-active .left span{ color: #fff;}
@media screen and (max-width:1440px){
}
@media screen and (max-width:1200px){
    #youshi .gallery-thumbs{ padding: 0;s}
    #youshi .gallery-top .swiper-slide{ padding: 0;}
    #youshi .gallery-top .swiper-slide .content{ width: 67%;}
}
@media screen and (max-width:768px){
    #youshi .gallery-top{ background-size: auto 100%; padding: 2% 0;}
    #youshi .gallery-top .swiper-slide .pic{ width: 100%;}
    #youshi .gallery-top .swiper-slide .font{ position: relative;}
    #youshi .gallery-top .swiper-slide .font .container{ padding: 1%;}
    #youshi .gallery-top .swiper-slide .content{ display: none;}
    #youshi .gallery-top .swiper-slide .num{ font-size: 24px;}
    #youshi .gallery-top .swiper-slide .tit p{ font-size: 18px;}
    #youshi .gallery-top .swiper-slide .tit span{ font-size: 14px;}
    #youshi .gallery-thumbs .swiper-slide i{ font-size: 28px;}
    #youshi .gallery-thumbs .swiper-slide .left{ padding-left: 10px;}
    #youshi .gallery-thumbs .swiper-slide .left p{ font-size: 18px;}
    #youshi .gallery-thumbs .swiper-slide .left span{ font-size: 12px;}
}
.cptel{ color: #333333; margin-top: 5%; font-size: 14px;}
.cptel i{ font-size: 35px; float: left; padding-right: 3%; padding-top: 7%;}
.cptel .left{ line-height: 25px;}
.cptel .left span{ font-size: 28px; color: #d71418; font-weight: bold;}
@media (min-width: 768px) and (max-width: 1200px){
    .cptel i{ font-size: 25px;}
    .cptel .left span{ font-size: 18px;}
}
@media screen and (max-width:765px){
    .o_product_info .cptel{ font-size: 1.3rem;}
}
.prodect-Info .info-main .info-main-rig .order-btn {
    display: block;
    height: 50px;
    line-height: 50px;
    border-radius: 3px;
    text-align: center;
    background: #00369B;
    color: #fff !important;
    font-size: 16px;
    transition: 0.3s;
	margin-top: 5%;
}
table {
    background-color: transparent;
}
.prodect-Info .info-main .info-main-rig table {
    margin: 3% 0 2%;
    width: 100%;
    font-size: 15px;
    line-height: 35px;
}
.prodect-Info {
    overflow: hidden;
    padding: 3% 0;
}
.prodect-Info .info-main .info-main-rig .title:before {
    position: absolute;
    left: 0;
    bottom: -2px;
    content: '';
    width: 5%;
    height: 3px;
    background: #00369B;
}
.main {
    padding: 3% 0;
    line-height: 30px;
}
#yyhy {
    margin-top: 3% !important;
}
.iconfont {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.icondianhua8:before {
    content: "\e7a1";
}
/*公司简介*/
.index{background: url(../images/about_bg.jpg) no-repeat top/cover;overflow: hidden;}
.index .box3 {position: relative;height:80vh;width:80%;margin:0 auto;}
.index .box3 .iabout{ border-left:1px rgba(255,255,255,.35) solid;border-right:1px rgba(255,255,255,.35) solid;height: 100% ; }
.index .box3 ._fl{width: 48%;height: 100%;float:left;}
.index .box3 .aboutlist{  text-align: center; visibility: inherit;display: flex; justify-content: space-between;height: 100%;}
.index .box3 .aboutlist li{ width: 33.33333%;display: inline-block;  border-right: 1px solid rgba(255,255,255,.35) ; color: #222; position: relative;  padding-top:160px; font-size: 16px}
.index .box3 .aboutlist li em{ display: block; font-size:44px; font-family:Montserrat; font-style: normal; font-weight: bold;}
.index .box3 .aboutlist li b{ font-size: 24px; font-weight: bold;  display: block; }

.index .box3 .aboutlist li .n{ height:180px;position: absolute;  bottom: 0;   left: 0px; background:rgba(92,78,62,.88);transition:all 0.3s; padding-top: 50px; font-size:18px; color: #fff; width: 100%   }
.index .box3 .aboutlist li:nth-child(3) .n{background:rgba(109,92,73,.88);}

.index .box3 .aboutlist li .n:hover{ height: 220px; transition:all 0.3s }
.index .box3 .aboutlist li .n i{ display: block; width:45px; height:45px; margin: 0 auto 5px;}
.index .box3 .aboutlist li .n i img{ max-width:45px; display: block;  margin:0px auto 0  }
.index .box3 .aboutlist li .n.b1{ background:rgba(0,115,234,.96); }
.index .box3 .aboutlist li .n.b2{ background:rgba(0,98,199,.96); }
.index .box3 .aboutlist li .n.b3{ background:rgba(0,80,163,.96); }


.index .box3 ._fr {width: 52%; position: relative; height: 100%;float:left; }
.index .box3 ._fr ._company{  padding:50px 35px;  background: rgba(255,255,255,.88); position: absolute; right: 0; bottom: 0;z-index:2; width: 100%;}
.index .box3 ._fr ._company h1{ font-size: 35px; position: relative;  padding: 20px 50px 40px 40px;}
.index .box3 ._fr ._company p{ font-size: 22px;  line-height: 1.5; font-weight: normal;}
.index .box3 ._fr ._company h1::before{ position: absolute; left: -40px; top:0px; content:""; font-size: 70px; text-align: left; }
.index .box3 ._fr ._company h1::after{ position: absolute; right: 0; bottom: 0; content:""; font-size: 70px }
.lclist{ font-size: 20px; font-weight: bold; }
.lclist span{ display: inline-block; padding:0 10px 20px 25px; position: relative;  }
.lclist span::before{ position: absolute; left: 0px; top:8px; content:"";  width: 20px; height: 20px;background: url(../images/icon_l.png) no-repeat; background-size: cover; }

.index .box3 ._fr ._company .txt{ padding-bottom: 120px;  font-size: 16px ; line-height: 2  }
.index .box3 ._fr ._company .more{ position: absolute; right:40px;  bottom:8%; background: #0050a3; height: 38px; line-height: 38px; display: block; width: 150px; transition:all 0.3s; color: #fff; text-align: center; }
.index .box3 ._fr ._company .more:hover{ transition:all 0.3s;  width:180px  }







@media (max-width:998px) {
.index .box3 {height:70vh;}
.index .box3 ._fr {width:100%; float: none; }
.index .box3 ._fr ._company{  padding:20px 4%;}
.index .box3 ._fr ._company h1{ font-size: 20px;padding: 0px 30px 5px 0px; }
.index .box3 ._fr ._company p{ font-size:14px;padding:0px 0px 5px 0;  }
.index .box3 ._fr ._company h1::before{ display: none}
.index .box3 ._fr ._company h1::after{display: none}
.index .box3 ._fr ._company .txt{ padding-bottom:50px;font-size: 14px ;  line-height:1.75}
.index .box3 ._fr ._company .more{ right:50%;  bottom:4%; height: 30px; line-height: 30px; width:100px;  margin-right: -50px; }
.index .box3 ._fr ._company .more:hover{  width:100px  }


.lclist{ font-size:15px; }
.lclist span{ padding:0 5px 5px 15px; position: relative;  }
.lclist span::before{  left: 0px; top:5px; width:15px; height:15px; }

}
.youshi{background: url('../images/youshibg.jpg') no-repeat center center; width: 100%;height: 854px;}
.youshic {-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;padding-top: 92px;}
.youshicc{width: 700px;margin-top: 50px;height: 140px;}
.youshic-l{width: 100px;height: 100px;float: left;}
.youshic-l span{display: block;width: 62px;height: 62px;line-height: 62px;text-align: center;font-size: 40px;font-weight: bold;background: #0055bf;color: #fff;}

.youshic-r{width: 570px;float: left;}
.youshic-r-1{font-size: 24px;color: #666666;font-weight: lighter;text-transform:uppercase;}
.youshic-r-2{font-size: 27px;color: #333333;font-weight: bold;line-height: 35px;margin-bottom: 5px;}
.youshic-r-3{font-size: 16px;color: #666666;}
.youshic-r-3 span{color: #0055bf;}

.por-fl{ text-align:center;width:92%; max-width: 1680px; margin: 0 auto}
.por-fl .porthumbs{ width: 100% }
.por-fl .porthumbs .swiper-wrapper{ text-align: center;justify-content:center }

.por-fl .porthumbs .swiper-slide{cursor:pointer; display: inline-block;  color: #111;  font-size: 20px;font-weight:600; border: 1px #ccc solid; border-right: 0; line-height: 45px;position: relative;}
.por-fl .porthumbs .swiper-slide:last-child{ border-right: 1px #ccc solid;}
.por-fl .porthumbs .swiper-slide:after{ position: absolute; width: 100%; content: "";background:#0062c7 url(../images/cp_hbg.jpg) no-repeat bottom center/cover;  bottom: 0px; height: 0; left: 0;z-index: -1; transition: all .3s;   }
.por-fl .porthumbs .swiper-slide:hover{ color: #fff }
.por-fl .porthumbs .swiper-slide-thumb-active,.por-fl .porthumbs .swiper-slide:hover:after{color: #fff; height: 45px;background:#0062c7 url(../images/cp_hbg.jpg) no-repeat bottom center;}

.por-fl .porthumbs .swiper-slide:hover,.por-fl .porthumbs .swiper-slide.active{ color: #fff }
.por-fl .porthumbs .swiper-slide-thumb-active,.por-fl .porthumbs .swiper-slide:hover:after,.por-fl .porthumbs .swiper-slide.active:after{color: #fff; height: 45px;background:#0062c7 url(../images/cp_hbg.jpg) no-repeat bottom center;}
.goodscard .imgbox::before{
	content: "";
	width: 100px;
	height: 50px;
	background-image: url("../images/gdicon.png");
	background-repeat: no-repeat;
	display: block;
	position: absolute;
	top: 15px;
	z-index: 1;
}
.goodscard .mybox{
	background-color: #fff;
	margin-left: 14px;
	margin-top: 17px;
	position: relative;
	border: 1px solid #ededed ;
}
.goodscard .imgbox a{
	display: block;
	width: 100%;
}
.goodscard .imgbox{
	padding: 20px;
	height: 290px;
    display: flex;
	align-items: center;
	overflow: hidden;
	border-bottom: 2px #ededed solid;
}
.goodscard .imgbox img{
	max-width: 100%;
	transition: .5s;
}
.goodscard .imgbox:hover img{
	transform:scale(1.1,1.1);
	-o-transform:scale(1.1,1.1); 
}
.goodscard .imginfo{
	padding: 20px;
	color: #707070;
	font-size: 16px;
}
.thish{
	height: 55px;
    overflow: hidden;
}
.prolist ul li a.active {
  color: #fff;
  background-color: #061f58;
}
.goodscard .gname{
	font-size: 20px;
	color: #1b1b1b;
	padding-bottom: 15px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.goodscard .gbtn{
	display: flex;
	line-height: 1.8;
	justify-content: space-between;
}
.goodscard .gbtn a{
	margin-top: 12px;
	font-size: 14px;
	color: #555555;
	border:1px solid #e6e4e4;
	border-radius: 5px;
	line-height: 2.5;
	display: inline-block;
	padding:0 10px;
	transition: 0.5ms;
}
.goodscard .gbtn a:first-child{
	background-color: #0062c7;
	color: #fff !important;
	padding:0 10px;
}
.goodscard .gbtn a:hover{
	background-color: #333;
	color: #fff !important;
	
}
.ads{height: 210px;width: 100%; background:url('../images/ads.jpg') no-repeat center center;}
.fw_font h3{ color: #333333; font-size: 24px;}
.fw_font h3 span{ color: #999999; font-size: 16px; text-transform: uppercase; padding-left: 10px;}
.fw_font p{ color: #c00505; font-size: 30px; font-family: Impact; margin-top: 3% !important;}
.fw_font p i{ float: left; font-size: 30px; margin-right: 10px;}
.fw_lb{ padding-top: 1% !important;}
.fw_lb li{ float: left; text-align: center; padding: 0 3%;}
.fw_lb span{ display: block; float: left; color: #c0c0c0;}
.fw_lb span i{ font-size: 20px;}
.fw_lb li i{ color: #c0c0c0; font-size: 45px; margin-bottom: 10px; transition: 0.3s;}
.fw_lb li p{ color: #333333; font-size: 14px;}
.fw_lb li:hover i,.fw_lb li:hover p{ color: #c00505;}
@media screen and (max-width:1440px){
    .fw_lb li{ padding: 0 2%;}
    .fw_font h3{ font-size: 20px;}
    .fw_font h3 span{ font-size: 12px;}
}
.xbanner {
  
  width: 100%;
  height: 200px;
}
.xbanner .slip_tit {
  width: 772px;
  float: left;
}
.xbanner .slip_tit .tit1 {
  padding-top: 55px;
  font: bold 32px "microsoft yahei";
  color: #fff;
}
.xbanner .slip_tit .tit2 {
  margin-top: 14px;
  font-size: 24px;
  color: #fff;
}
.xbanner .slip_btn {
  width: 300px;
  text-align: center;
  float: right;
}
.xbanner .slip_btn span {
  display: block;
  font-size: 15px;
  color: #fff;
  line-height: 18px;
  padding-top: 40px;
  padding-bottom: 5px;
}
.xbanner .slip_btn p {
  font-weight: bold;
  font-size: 34px;
  color: #fff;
  line-height: 36px;
}
.xbanner .slip_btn a {
  display: block;
  width: 300px;
  height: 46px;
  background: #3ba86f;
  margin-top: 16px;
  font-size: 18px;
  color: #fff;
  line-height: 46px;
  position: relative;
  border-radius: 6px;
}
.submenu{position:fixed;z-index: 8;top:87px;left:0; width:100%;height:0;overflow: hidden;opacity:1; text-align: center;transition: all 0.3s ease 0s; }
.navbgb{background:url(../images/navbgb.png) center bottom no-repeat;}
.submenu .left{float: left;width:60%;padding: 6% 0;text-align: left;}
.submenu .left span{display: block;line-height: 60px;font-size: 40px; color: #fff;font-weight: bold;}
.submenu .left p{line-height: 30px;color: rgba(255,255,255,.8);letter-spacing: 2px;font-family: fz;font-size: 22px;text-transform: uppercase;}
.submenu .left strong{display: block;font-weight: normal;font-size: 22px;color: rgba(255,255,255,.8);}
.submenu .left strong em{font-size:22px;color: #fff;}
.submenu .right{float: right;width: 40%;padding:4%;}
.submenu .right {text-align: left;}
.submenu .right  span{display: block;line-height: 30px;color: #999;text-transform: uppercase;border-bottom: 1px solid #e0e0e0;}
.submenu .right  span b{font-size: 22px;color: #444;}
.submenu .right  span em{color: #ce000c;font-size: 30px;}
.submenu .right  dd a{display: block;line-height: 30px;font-size: 15px;transition:.4s;white-space: nowrap; text-overflow:ellipsis; overflow: hidden;}
.submenu .right  dd a:hover{color: #ce000c;}
.submenu .right  dd a em{color: #ce000c;font-size:22px;}
.col-3{flex: 0 0 33%;
    max-width: 33%;}


    .magicart_foot {
      background: #444444;
      width: 100%;
      color: #fff;
      height: 400px;
      overflow: hidden;
  }
  
  .magicart_foot .left {
      border-right: 1px solid #696969;
      width: 28%;
      box-sizing: border-box;
      height: 400px;
      padding: 50px 0;
      text-align: left
  }
  
  .magicart_foot .left dl {
      padding-left: 10px;
      box-sizing: border-box;
  }
  
  .magicart_foot .left dt {
      font-size: 18px;
      font-weight: bold;
      color: #b0b0b0;
      line-height: 240%;
      padding-top: 10px
  }
  
  .magicart_foot .left dd {
      color: #b0b0b0;
      line-height: 50px;
      padding-left: 35px
  }
  
  .magicart_foot .left .tel {
      background: url(../images/f_icon01.png) no-repeat 0 15px;
  }
  
  .magicart_foot .left .phone {
      background: url(../images/f_icon04.png) no-repeat 0 15px;
  }
  
  .magicart_foot .left .add {
      background: url(../images/f_icon03.png) no-repeat 0 15px;
  }
  
  .magicart_foot .left .email {
      background: url(../images/f_icon02.png) no-repeat 0 15px;
  }
  
  .magicart_foot .mid {
      width: 50%;
      box-sizing: border-box;
      height: 400px;
      padding: 40px;
      display: flex;
      justify-content: space-between;
  }
  
  .magicart_foot .mid dl {
      text-align: left;
      width: 33.33333%
  }
  .magicart_foot .mid dl:nth-of-type(1){
    width: 26%;
  }
  
  .magicart_foot .mid dt {
      font-size: 20px;
      color: #b0b0b0;
      line-height: 240%;
      font-weight: bold;
  }
  
  .magicart_foot .mid dt a {
      font-size: 16px;
      color: #b0b0b0;
      line-height: 240%;
      font-weight: bold;
  }
  
  .magicart_foot .mid dd a {
      color: #b0b0b0;
      line-height: 200%;
      font-size: 16px;
  }
  
  .magicart_foot .right {
      width: 320px;
      background: #c00000;
      height: 400px;
      box-sizing: border-box;
      text-align: center;
  }
  
  .magicart_foot .right .tit {
      background: url(../images/pho_w.png) no-repeat 0 0;
      height: 62px;
      padding-left: 70px;
      line-height: 62px;
      font-size: 24px;
      font-weight: bold;
      display: inline-block;
      margin-top: 30px
  }
  
  .magicart_foot .right .guestbook {
      padding: 0 30px;
  }
  
  .magicart_foot .right .guestbook label {
      display: block;
      text-align: left;
      position: relative;
      margin-bottom:0px;
  }
  
  .magicart_foot .right .guestbook label input {
      width: 95%;
      padding: 0 10px;
      color: #999;
      border: 0;
      margin: 5px 0;
      line-height: 34px;
      box-sizing: border-box;
  }
  
  .magicart_foot .right .guestbook label textarea {
      width: 95%;
      padding: 0 10px;
      color: #999;
      border: 0;
      margin: 5px 0;
      line-height: 34px;
      box-sizing: border-box;
      height: 63px
  }
  
  .magicart_foot .right .guestbook label .submit {
      background: #222222;
      padding: 0 105px;
      box-sizing: border-box;
      display: inline-block;
      width: auto;
      float: left;
      margin: 0;
      font-size: 18px;
      color: #fff
  }
  
  .magicart_foot .right .guestbook label img {
      display: inline-block;
      float: left;
      width: 80px;
      height: 34px
  }
  
  .magicart_foot .right .guestbook label::after {
      content: '*';
      color: #fff;
      position: absolute;
      right: 0px;
      top: 20px;
      font-size: 12px
  }
  
  .magicart_foot .right .guestbook label:nth-child(4)::after {
      content: '*';
      top: 50px;
  }
  
  .magicart_foot .right .guestbook label .input-text {
      display: inline-block;
      float: left;
      width: 27%;
      margin: 0 10px 0 0
  }
  
  .magicart_foot .right .guestbook label:last-child::after {
      content: '';
      display: none;
  }
  
  .magicart_bq {
      width: 100%;
      color: #b0b0b0;
      line-height: 300%;
      text-align: left;
      font-size: 14px;
      background: #fff
  }
  
  .magicart_bq a {
      color: #b0b0b0;
      display: inline-block;
      padding-right: 20px
  }
  

  .c-btn {
    font-size: 16px;
    line-height: 24px;
    color: rgb(255, 255, 255);
    margin-right: 20px;
    display: inline-block;
    background: rgb(234, 85, 4);
    border-radius: 4px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(234, 85, 4);
    border-image: initial;
    padding: 6px 30px;
    transition: all 0.3s ease 0s;
    position: relative;
}
.b-btn {
  font-size: 16px;
  line-height: 24px;
  color: rgb(234, 85, 4);
  display: inline-block;
  background: rgb(255, 255, 255);
  border-radius: 4px;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(234, 85, 4);
  border-image: initial;
  padding: 6px 30px;
  transition: all 0.3s ease 0s;
}
  .pro-search {height:100px; margin: 28px auto; background:#f6f6f6; padding: 30px 28px;}
.pro-search input {background-color:#fff;outline: none;border:1px #e6e6e6 solid;height: 28px;width: 68px;padding:10px;margin-right: 10px;}
.pro-search label {position: relative;font-size: 14px;color: #555;font-weight: normal;padding-right: 10px;}
.pro-search button {display: block;width: 120px;height:40px;border-radius: 4px;font-size: 14px;margin-left: 16px;line-height:40px;text-align: center;background-color: #ea5504;color: #fff; transition: all .3s;}
.pro-search button:hover {background: #ff6a00;}
.pro-search .radio-box {float: left; margin-right: 40px;}
.pro-search .unit-box {width: 40px;}
.pro-search .v-radio{float: left;height: 42px;margin-right: 19px;line-height: 42px;font-size: 14px;color: #555;cursor: pointer;}
.pro-search .v-radio:before{content: "";width: 14px;height: 14px;border-radius: 50%; box-shadow: 0 0 0 1px #ccc;line-height: 42px; margin-right: 4px; display: inline-block;vertical-align: middle;}
.pro-search .checked:before{content: "";background: #ea5504; width:14px;height:14px; border-radius: 50%; border:3px #f6f6f6 solid;line-height: 42px; margin-right: 4px; display: inline-block;vertical-align: middle;box-shadow: 0 0 0 1px #ea5504;}
.pro-search .form-item {float: left;margin-top: 0;line-height: 40px;}
.pro-search .guide-part .b-btn{margin-right: 20px;}
.pro-search .guide-part .c-btn{margin-right: 0;}
.pro-search .guide-part a{padding:7px 30px;}
.pro-search .guide-part {float: right;}
.pro-search select { background: #fff; border: 1px #ddd solid; width:300px; height:46px; padding:10px; font-size:15px; border-radius: 4px; }
.pro-search .guide-part .c-btn img{width: 150px; height: 150px;position: absolute;left: 130px;top: -30px; display: none;}
.pro-search .guide-part .c-btn:hover img{display: block;}

.contactUS{width:1520px;margin:0 auto;max-width:1520px}
.contactUS-title{font-size:32px;color:#222222;text-align:center;margin-top:70px}
.contactUS-title span{display:block;font-size:18px;color:#999;margin-top:2px;margin-bottom:12px}
.contactUS-title span i{display:inline-block;width:5px;height:5px;background:#999999;border-radius:5px;margin:8px 8px 2px 4px}
.contactUS-title p{width:975px;height:60px;color:#666666;font-size:16px;line-height:32px;margin:0 auto}
.contactUS-consulting{display:flex;justify-content:space-between;margin-top:24px;margin-bottom:60px}
.contactUS-consulting .contactUs-box{width:375px;height:200px;border:1px solid #eaeaea;border-radius:4px;text-align:center;display:flex;flex-wrap:wrap;justify-content:center;align-items:center}
.contactUs-box img{width:40px;height:40px}
.contactUs-box p{font-size:16px;color:#555555;margin-top:12px}
.contactUs-box span{font-size:16px;color:#555555;font-weight:bold}
.contactUs-box span a{color: #555555}
.contactUs-box span a:hover{color: #555555}
.contactUs-box:first-child span{font-size:20px;color:#ea5504;font-weight:bold}
.contactUs-box:last-child{width:380px;height:200px}
.contactUS-map .map{height:320px;margin:28px auto 56px;border-radius:4px}
.contactUS-form{height:580px;background-color:#F6F6F6;background:url(../images/yykcbg.jpg) no-repeat center;background-size:cover}
.contactUS-form h3{font-size:32px;color:#000000;text-align:center;padding-top:60px;padding-bottom:40px}
.contactUS-form-all{display:flex;justify-content:space-between}
.contactUS-form-left{width:1110px;height:360px;background-color:#fff;display:flex;justify-content:center;align-items:center}
.contactUS-form-right{width:400px;height:360px;background-color:#fff;text-align:center;padding:20px}
.contactUS-form-left .form-item{display:flex;flex-wrap:wrap;align-items:center;margin-bottom:15px}
.contactUS-form-left .form-item .form-tit{width:90px;font-size:16px;color:#555555}
.contactUS-form-left .form-item input{width:700px;height:46px;border:1px solid #eeeeee;padding:0 10px;border-radius:4px;color:#999999;background-color:#F5F5F5;font-size:16px}
.contactUS-form-left .form-textarea{width:90px;font-size:16px;color:#555555}
.contactUS-form-left .form-item textarea{width:700px;height:100px;border:1px solid #eeeeee;padding:10px 10px;border-radius:4px;color:#999999;background-color:#F5F5F5;font-size:16px}
.contactUS-form-left button{width:180px;height:40px;border:1px solid #ea5504;border-radius:4px;font-size:16px;color:#fff;margin-left:95px;background-color:#ea5504}
.contactUS-form-left button:hover{width:180px;height:40px;border:1px solid #ff6600;border-radius:4px;font-size:16px;color:#fff;margin-left:95px;background-color:#ff6600}
.contactUS-form-right h4{font-size:18px;font-weight:bold;margin-top:15px}
.contactUS-form-right span{display:block;font-size:16px;color:#999999;margin:12px 0}
.contactUS-form-right a{display:block;width:180px;height:40px;border:1px solid #ea5504;border-radius:4px;font-size:16px;color:#ea5504;line-height:40px;text-align:center;margin:0 auto;margin-bottom:28px}
.contactUS-form-right a:hover{display:block;width:180px;height:40px;border:1px solid #ea5504;border-radius:4px;font-size:16px;color:#fff;line-height:40px;text-align:center;margin:0 auto;margin-bottom:28px;background-color: #ea5504}
.contactUS-form-right .hengxian{width:100%;height:1px;background-color:#eee}
.contactUS-form-right a:last-child{font-size:16px;width:140px;height:40px;line-height:40px;color:#fff;background-color:#ea5504}
.contactUS-form-right a:last-child:hover{font-size:16px;width:140px;height:40px;line-height:40px;color:#fff;background-color:#ff6600}
.contactUS-form-all ul{display:flex;width:1200px;justify-content:space-between;margin-top:40px}
.contactUS-form-all ul li{width:380px;height:286px;position:relative}
.contactUS-form-all ul li img{width:100%;height:100%;object-fit:cover}
.contactUS-form-all ul li:first-child img{border-top-left-radius:40px;border-bottom-right-radius:40px}
.contactUS-form-all ul li:nth-child(2n) img{border-bottom-right-radius:40px;border-bottom-left-radius:40px}
.contactUS-form-all ul li:last-child img{border-top-right-radius:40px;border-bottom-left-radius:40px}
.contactUS-li-text{width:100%;position:absolute;bottom:0;color:#fff;text-align:center;height:90px}
.contactUS-li-text h4{font-size:20px;font-weight:bold;color:#fff;text-shadow:#000 1px 1px 2px}
.contactUS-li-text p{font-size:16px;margin-top:6px;text-shadow:#000 1px 1px 2px}
.contactUS .test-wrap{width:1196px;margin:0 auto}
.contactUS-directory h5{margin-top:56px;font-size:32px;color:#222;text-align:center}
.contactUS-directory .contactUS-detail{margin:42px 0 56px;overflow:hidden}
.contactUS-detail-list:first-child{margin-left:0}
.contactUS-detail-list{width:380px;border-radius:4px;background:#f8f8f8;padding:14px;float:left;margin-left:28px}
.contactUS-directory .title{display:block;font-size:18px;color:#222222;text-align:center;padding-top:10px}
.contactUS-detail-list .dress-k{display:block;font-size:14px;color:#999;line-height:14px;padding-top:6px;padding-bottom:16px}
.contactUS-message{width:350px;height:665px;border-radius:4px;background:#ffffff}


 .hmappli { height: 530px; background: url(../images/bg_hmca.jpg) center repeat-y; background-attachment: fixed; }
    .hmappli .w600 {width: 600px;margin-top: 80px;} 
    .hmappli .w550 {width: 660px; padding-top: 70px;}
    .hmappli .hmtitlelf h3,.hmappli .hmtitlelf p {color: #f0f0f0;}
    .hmappli .hmtitlelf h4{font-size: 23px; margin-bottom: 8px;}
    .hmappli .hmtitlelf h3{font-size: 25px; margin-bottom: 8px;}
    .hmappli .w600 ul,.hmappli .w550 ul {clear: both;}
    .hmappli .w600 ul li {width: 170px; line-height: 40px; margin: 20px 20px 20px 0; float: left; text-align: center;font-size: 1.4em;}
    .hmappli .w600 ul li a {color: #f0f0f0;display: block;background-color: #d23339;transition:all .3s;-webkit-transition:all .3s;}
    .hmappli .w600 ul li a:hover {background-color: #fff;color: #333333;}
    .hmappli .w550 ul li {color: #f0f0f0; font-size: 16px; float: left; width: 330px; margin: 5px 0;}
    .hmappli .w550 ul li i {color: #c70008; font-size:1.8em; padding-top: 5px;}
    .hmappli .hmphone {clear: both;color: #f0f0f0; padding: 30px 0 20px;}
    .hmappli .hmphone div {float: left; width: 50px;}
    .hmappli .hmphone div i {font-size: 3.4em;}
    .hmappli .hmphone dl dt {font-size: 1.5em; line-height: 45px;}
    .hmappli .hmphone dl dd {font-size: 1.8em;font-weight: bold;}
    .hmappli .hmlianxi a {display: block; width: 188px; float: left; line-height: 38px; background-color: #fff; text-align: center; margin-right:20px; font-size:18px;transition:all .3s;-webkit-transition:all .3s;}
    .hmappli .hmlianxi dt a {background-color: #c70008; color: #fff;border: 1px solid #c70008;}
    .hmappli .hmlianxi dd a {color: #fff; background-color: rgba(0,0,0,0.5); border: 1px solid #312f35;}
    .hmappli .hmlianxi a:hover {border-color: #fff;}
