﻿@charset "utf-8";

/*水平居中兼容*/

.sp-tranform-x {
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}


/*垂直居中兼容*/

.cz-tranform-y {
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.cz-tranform-y2 {
    transform: translateY(50%);
    -ms-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -webkit-transform: translateY(50%);
    -o-transform: translateY(50%);
}


/*居中兼容*/

.sp-cz-tranform-xy {
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}


/*100%宽度*/

.width-100-percent {
    width: 100%;
}


/*行高*/

.w-200-h-50 {
    display: block;
    width: 200px height: 50px;
    line-height: 50px;
    text-indent: 12px;
    text-align: left;
}


/*显示*/

.d-play {
    display: block;
}


/*隐藏*/

.n-play {
    display: none;
}


/*默认按钮样式*/

.btn {
    border-radius: 3px;
    background-color: #FFF;
}


/*外边距*/

.m-top-20 {
    margin-top: 20px;
}

.m-top-15 {
    margin-top: 15px;
}

.m-top-10 {
    margin-top: 10px;
}


/*加粗*/

.f-weight-bold {
    font-weight: bold;
}


/*缩进*/

.t-indent-2em {
    text-indent: 2em;
}


/*鼠标悬上-红色*/

.hover-red:hover {
    color: red;
}


/*浮动*/

.l-float {
    float: left;
}

.r-float {
    float: right;
}


/*清除浮动样式*/

.clearfix:after {
    content: "";
    height: 0;
    display: block;
    visibility: hidden;
    clear: both;
}

.clearfix {
    zoom: 1;
}


/* 为了兼容IE */


/*I WANT TO列表*/

#want {
    position: absolute;
    top: 50%;
}

#want>a {
    text-align: center;
    background-color: #FFFF
}

#want>a:hover {
    background: #d82317;
    color: #fff;
    transition: all .3s;
}

.wantbox {
    display: none;
    position: absolute;
    top: 55px;
    width: 480px;
    background-color: #FFF;
}

.wantbox-list>li,
.products-box-tab>span,
.projects-box>ul>li {
    position: relative;
    width: 200px;
    text-transform: capitalize;
    transition: all 0.3s;
}

.wantbox-list>li:hover,
.wantbox-list>li.on,
.products-box-tab>span:hover,
.products-box-tab>span.on,
.projects-box>ul>li:hover,
.projects-box>ul>li.on {
    background: #d23244;
    color: #fff;
}

.wantbox-list>li:hover>a,
.products-box-tab>span:hover>a {
    color: #fff;
}

.wantbox-list>li.on:before,
.products-box-tab>span.on:before,
.projects-box>ul>li.on:before {
    right: -10px;
    opacity: 1;
}

.wantbox-list>li:before,
.products-box-tab>span:before,
.projects-box>ul>li:before {
    content: "";
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-left: 10px solid #d23244;
    border-bottom: 8px solid transparent;
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s;
}

.wantbox-imgs {
    width: 256px;
}

.wantbox-img {
    display: none;
    width: 100%;
    height: 274px;
    text-align: center;
    background: #fff;
}

.wantbox-img>a>img {
    margin-top: 20px;
}


/*导航列表*/

.nav-list {
    position: absolute;
    top: 50%;
    display: table;
}

.nav-list>li {
    /*float: left;*/
    display: table-cell;
    position: relative;
}

.nav-list>li>a {
    position: relative;
    color: #FFF;
}

.nav-list>li>a:hover {
    color: #d82317
}


/*鼠标悬上时，下方的红色border条*/

.nav-list>li>a:before {
    content: "";
    width: 0;
    height: 4px;
    position: absolute;
    bottom: 0;
    left: 50%;
    background: #d82317;
    transition: all 0.3s;
    transform: translateX(-40%);
    z-index: 199;
}

.nav-list>li.on>a:before,
.nav-list>li:hover>a:before {
    width: 100%;
    left: 0;
    transform: translateX(0);
}


/*首页产品下拉列表*/

.products-box {
    position: absolute;
    top: 60px;
    left: 0;
    width: 590px;
    background: rgba(255, 255, 255, 0.8);
    z-index: 199;
}

.products-box-tab>span+span {
    border-top: 1px solid #fff;
}

.products-box-tab-list {
    width: 370px;
}

.products-box-tab-list-list {
    width: 100%;
}

.products-imgs {
    width: 250px;
}

.products-img>a>img {
    width: 220px;
    height: 235px;
}

.products-box-tab-list-list>ul>li {
    height: 36px;
    line-height: 36px;
}

.products-box-tab-list-list>ul>li.on>a,
.products-box-tab-list-list>ul>li.on>a:hover {
    color: red;
}


/*首页案例*/

.projects-box {
    position: absolute;
    top: 60px;
    left: 0;
    width: 485px;
    background-color: #FFF;
}

.projects-box>.pic_box {
    margin: 10px 10px 0 0;
}


/*首页联系我们*/

.contact-box {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    color: #FFF;
    background-color: #d23244;
}


/*首页导航按钮*/

.menu-btn {
    position: absolute;
    top: 50%;
    right: 85px;
    z-index: 200;
}

.menu-btn>i {
    transition: all 0.4s ease;
    display: block;
    width: 24px;
    height: 3px;
    background-color: #FFF;
    margin: 5px 0;
    cursor: pointer;
}

.menu-btn-active>i:nth-child(1) {
    transform: translateY(10px) rotate(-45deg);
    -o-transform: translateY(10px) rotate(-45deg);
    -ms-transform: translateY(10px) rotate(-45deg);
    -moz-transform: translateY(10px) rotate(-45deg);
    -webkit-transform: translateY(10px) rotate(-45deg);
}

.menu-btn-active>i:nth-child(2) {
    opacity: 0;
    visibility: hidden
}

.menu-btn-active>i:nth-child(3) {
    transform: translateY(-6px) rotate(46deg);
    -o-transform: translateY(-6px) rotate(46deg);
    -ms-transform: translateY(-6px) rotate(46deg);
    -moz-transform: translateY(-6px) rotate(46deg);
    -webkit-transform: translateY(-6px) rotate(46deg);
}


/*首页搜索*/

.formsearch {
    position: absolute;
    top: 40%;
    right: 50px;
    cursor: pointer;
}

.formsearch>a {
    border: 0;
    background-color: rgba(0, 0, 0, 0);
    font-size: 16px;
    font-weight: bold;
    color: #FFF;
    cursor: pointer;
}

.formsearch-box {
    display: none;
    position: fixed;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: #fff;
    text-align: center;
}

.formsearch-box>input {
    width: 30%;
    height: 60%;
    padding-left: 15px;
    margin-top: 13px;
    border-radius: 5px;
    outline: none;
    background: rgba(202, 196, 197, 0.16);
    border: #ccc 1px solid;
    color: #333;
}

.formsearch-box>button {
    width: 60px;
    height: 60%;
    border: none;
    cursor: pointer;
}

.formsearch-box>button:hover {
    color: #fff;
    background-color: red;
}


/*语言*/

.lang {
    position: absolute;
    top: 50%;
    right: 0;
    color: #FFF;
    cursor: pointer;
}

.lang>div {
    display: none;
    position: absolute;
    top: 20px;
    left: -50px;
    width: 100px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: rgba(210, 206, 206, 0.46);
}


/*banner图*/

main {
    width: 100%;
}

.p-slick,
.m-slick {
    width: 100%;
}


/*banner图左右按钮*/

.pre {
    position: absolute;
    top: 50%;
    left: 5%;
    border: 0;
    outline: none;
    background-color: rgba(0, 0, 0, 0.0);
    cursor: pointer;
    z-index: 1;
}

.next {
    position: absolute;
    top: 50%;
    right: 5%;
    border: 0;
    outline: none;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0);
}

.pre:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.icon-youjiantou {
    font-size: 60px !important;
    color: rgba(255, 255, 255, 0.7);
}

.icon-xiangzuojiantou {
    font-size: 60px !important;
    color: rgba(255, 255, 255, 0.7);
}

.icon-youjiantou:hover,
.icon-xiangzuojiantou:hover {
    color: rgba(255, 255, 255, 1);
    transition: all .3s;
}


/*首页滑动导航*/

.slide-nav {
    position: relative;
    margin: 0 auto;
}

.h100,
.slide-nav-5 {
    position: absolute;
    top: -102px;
    width: 20%;
    height: 100px;
    color: #FFF;
    cursor: pointer;
}

.h100.on {
    background-color: rgb(232, 55, 75);
}

.slide-nav .omm>h3 {
    float: left;
    margin: 35px 0 0 10px;
    font-size: 24px;
    font-weight: normal;
}

.slide-nav .omo>h3 {
    margin: 0 10%;
    font-size: 24px;
    font-weight: normal;
}

.slide-nav .omo>img {
    width: 80%;
    height: 130px;
    margin: 10px 0 5px 10%;
}

.slide-nav .omo>p {
    height: 20px;
    line-height: 20px;
    margin-left: 10%;
}

.slide-nav-1 {
    left: 0;
    background-color: #000000;
}

.slide-nav-2 {
    left: 20%;
    background-color: #1C1C1C;
}

.slide-nav-3 {
    left: 40%;
    background-color: #292929;
}

.slide-nav-4 {
    left: 60%;
    background-color: #363636;
}

.slide-nav-5 {
    left: 80%;
    background-color: #e8374b;
}

.icon-arrow-right-top,
.icon-arrow-right-top-copy {
    float: right;
    margin: 35px 10px 0 0;
    color: #FFF;
    font-weight: normal !important;
    font-size: 30px !important;
}

.on .omm {
    display: none;
}

.on .omo {
    display: block;
}

.off .omm {
    display: block;
}

.off .omo {
    display: none;
}


/*产品轮播*/

.pro-car-wrap,
.products-Carousel {
    margin: 0 auto;
}

.products-Carousel {
    width: 100%;
}

.products-Carousel>h2 {
    width: 700px;
    line-height: 100px;
    margin: 0 auto;
    font-size: 30px;
    /* color: rgb(216, 35, 23); */
    text-align: center;
	color: #008fd7;
}

.products-Carousel>ul {
    /*display:table;*/
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.products-Carousel>ul>li {
    display: block;
    background-color: rgb(210, 210, 210);
    color: rgb(84, 84, 84);
    text-align: center;
    font-size: 18px;
    padding: 0 30px;
}

.paddinssd {
    /* padding: 0 20px; */
    width: 95%!important;
    margin: 0 auto;
}

.products-Carousel>ul>li>a {
    width: 70%;
    margin: 0 auto;
    text-align: center;
    /* background-color: rgb(210, 210, 210); */
    color: rgb(84, 84, 84);
    background: none;
}

.products-Carousel>ul>li>:hover,
.products-Carousel>ul>li.on {
    color: #FFF;
    /* background-color: rgb(216, 36, 24); */
	background-color: #008fd7;
}


/* 
.products-Carousel>ul>li>a:hover,
.products-Carousel>ul>li.on>a {
    color: #FFF;
    background-color: rgb(216, 36, 24);
} */

.products-Carousel-box {
    position: relative;
    width: 100%;
    margin-top: 30px;
}

.products-Carousel-box-slick {
    position: absolute;
    top: 0;
    left: 0;
    width: 96%;
    height: auto;
    margin-left: 2%;
}

.products-Carousel-box-slick.on {
    height: 0;
    overflow: hidden;
}

.products-Carousel-box-slick-list>a {
    width: 96%;
    margin: 0 auto;
    text-align: center
}

.products-Carousel-box-slick-list>a>img {
    width: 100%;
    height: auto;
    border: 1px solid rgb(221, 221, 221);
    border-radius: 4px;
    "

}

.products-Carousel-box-slick-list>a>img:hover {
   /*  border-color: red; */
	 border-color: #008fd7;
}

.products-Carousel-box-slick-list>a>p {
    line-height: 50px;
    font-size: 18px;
}

.products-Carousel-box-slick-list>a>p:hover {
   /*  color: red; */
   color: #008fd7;
}


/*产品轮播图左右按钮绝对定位*/

.products-next {
    position: absolute;
    top: 36%;
    right: -35px;
    outline: none;
    border: 0;
    background-color: rgba(255, 255, 255, 0);
}

.products-pre {
    display: block !important;
    position: absolute;
    top: 36%;
    left: -35px;
    outline: none;
    border: 0;
    background-color: rgba(255, 255, 255, 0);
    z-index: 2;
}

.products-next>.icon-youjiantou,
.products-pre>.icon-xiangzuojiantou {
    font-size: 30px !important;
    color: red;
    cursor: pointer;
}


/*首页案例*/

.index-project {
    padding-bottom: 36px;
    background-color: rgb(204, 204, 204);
}

.index-project-container {
    margin: 0 auto;
}

.index-project-container>h2 {
    width: 100%;
    height: 130px;
    line-height: 130px;
    text-align: center;
    /* color: rgb(216, 35, 23); */
    font-size: 30px;
	color: #008fd7;
}

.index-project-container-box-left {
    width: 58%;
}

.index-project-container-box-right {
    width: 41%;
}

.index-project-container-box-left .imgs,
.index-project-container-box-right .imgs {
    position: relative;
    overflow: hidden;
}

.index-project-container-box-left .imgs .desc,
.index-project-container-box-right .imgs .desc {
    position: absolute;
    left: 0;
    bottom: -100px;
    width: 98%;
    height: 70px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 2%;
   /*  background-color: rgba(216, 35, 23, 0.68); */
    color: #FFF;
	 background-color: rgba(0, 143, 215, 0.68);
}

.index-project-container-box-left .imgs .desc h3,
.index-project-container-box-right .imgs .desc h3 {
    font-size: 24px;
    font-weight: normal;
    line-height: 30px;
}

.index-project-container-box-left .imgs .desc p,
.index-project-container-box-right .imgs .desc p {
    line-height: 30px;
}

.index-project-container-box-left>a+a {
    margin-top: 12px;
}


/*首页新闻*/

.index-news {
    margin: 60px auto 0;
}

.index-news-left,
.index-news-right {
    width: 49%;
}


/*.index-news-right{border-bottom: 1px solid rgb(204, 204, 204);}*/

.index-news-left>h3,
.index-news-right>h3 {
    line-height: 44px;
    text-align: left;
    font-size: 40px;
    font-family: "微软雅黑";
    font-weight: normal;
    /* color: rgb(216, 35, 23); */
	color: #008fd7;
}

.index-news-left>a,
.index-news-right>a {
    text-align: right;
    line-height: 20px;
    margin-top: -20px;
}

.index-news-left-box {
    width: 100%;
    margin-bottom: 24px;
    border-bottom: 1px solid rgb(204, 204, 204);
}

.index-news-left-box>a {
    width: 99%;
}

.index-news-left-box>a:hover,
.index-news-right-box:hover {
    /* box-shadow: 0px 10px 5px rgba(149, 3, 3, 0.39); */
    transition: all .3s;
   /*  background: #d33742; */
    color: #FFF;
    display: inherit;
    height: auto;
	background: #008fd7;
	 box-shadow: 0px 10px 5px rgba(0, 143, 215, 0.39);
	 
}

.index-news-left-box img {
    width: 135px;
    height: 100%;
}

.index-news-left-box .desc {
    width: 65%;
    font-size: 14px;
    line-height: 20px;
    margin-top: 12px;
    vertical-align: baseline;
}

.index-news-right-box {
    width: 48%;
}

.index-news-right-box+.index-news-right-box {
    margin-left: 4%;
}

.index-news-right-box>img {
    width: 100%;
    height: 15vh;
    object-fit: cover;
}

.index-news-right-box h3 {
    height: 54px;
    line-height: 18px;
    margin-top: 20px;
    font-size: 16px;
    padding: 0 8px 0;
    font-weight: normal;
}

.index-news-right-box .desc {
    padding: 15px 8px 15px;
    line-height: 20px;
    font-size: 14px;
}


/*首页邮箱*/

.index-email {
    margin: 0 auto;
    height: 100px;
}

.index-email-form {
    position: relative;
}

.index-email-form>span {
    margin-right: 22px;
    font-weight: bold;
}

.index-email-form-input {
    width: 300px;
    height: 37px !important;
    padding-left: 10px;
    border: 1px solid rgb(204, 204, 204);
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.075) 0px 1px 1px 0px inset;
}

.index-email-form>button {
    width: 90px;
    height: 30px;
    margin: 0 12px;
    border-radius: 5px;
    background-color: rgb(217, 84, 80);
    color: #FFF;
    outline: none;
    border: none;
    cursor: pointer;
}

.index-email-form>button:hover {
    background-color: red;
}


/*首页邮箱表单验证样式*/

.index-email-form>span.active {
    color: rgb(61, 118, 62)
}

.index-email-form-input.active {
    border-color: rgb(61, 118, 62);
}

.icon-kuangzhonggou,
.icon-cha {
    display: none;
    position: absolute;
    top: 10px;
    right: 134px;
    color: rgb(61, 118, 62);
    font-weight: bolder;
}

.icon-cha {
    color: rgb(169, 69, 67)
}

.index-email-form>.tips {
    display: none;
    position: absolute;
    top: 40px;
    left: 145px;
    font-size: 12px;
    color: rgb(169, 68, 66);
}

.icon-kuangzhonggou.active,
.icon-cha.active,
.index-email-form>.tips.active {
    display: block;
}


/*首页服务评价信息*/

.index-info {
    width: 100%;
    background: url(../images/serve_bg.jpg) no-repeat center;
}

.index-info>ul {
    margin: 0 auto;
    height: 100%;
}

.index-info>ul>li {
    float: left;
    width: 33%;
    height: 100%;
}

.index-info>ul>li+li {
    border-left: 1px solid rgb(97, 101, 105);
}

.index-info-box {
    height: 100%;
    padding: 0 8px;
    color: #FFF !important;
    text-align: center;
}

.index-info-box:hover {
    background-color: rgb(215, 35, 23);
}

.index-info-box img {
    margin-top: 50px;
}

.index-info h3 {
    font-size: 24px !important;
    font-weight: 500;
    line-height: 26px;
    margin-top: 30px;
}

.index-info .text {
    line-height: 20px;
    margin-top: 20px;
    text-align: left;
}

.index-info-box p {
    margin-top: 22px;
}


/*页脚 footer*/

.footer {
    width: 100%;
    background-color: rgb(39, 39, 39);
}

.footer-container {
    margin: 0 auto;
}

dl {
    float: left
}

dt {
    color: #fff
}

dt>h3 {
    height: 80px;
    line-height: 80px;
    font-size: 20px;
    font-weight: 500;
}

dd {
    margin: 0;
    color: rgb(187, 184, 184);
    line-height: 26px;
}

dd:hover {
    /* color: rgb(215, 49, 38); */
	color:#008fd7;
}


/*页脚logo及社交分享*/

.share {
    float: right;
    text-align: center;
}

.share>img {
    width: 150px;
    height: 40px;
    margin: 35px 0 15px 0;
}

.social-share {
    width: 160px;
    margin: 0 auto;
}

.social-share>a {
    display: inline-block;
    width: 50px;
    height: 50px;
}

.fb {
    background: url(../images/share_bg.png) -11px -5px
}

.in {
    background: url(../images/share_bg.png) -58px -5px
}

.ld {
    background: url(../images/share_bg.png) -108px -5px
}

.ins {
    background: url(../images/share_bg.png) -11px -52px
}

.ytb {
    background: url(../images/share_bg.png) -58px -52px
}

.google {
    background: url(../images/share_bg.png) 59px -52px
}


/*页脚公司信息*/

.company-info {
    clear: both;
    padding: 30px 0;
    background-color: rgb(39, 39, 39);
    border-top: 1px solid rgb(52, 52, 52);
    text-align: center;
    color: #fff;
    font-size: 14px;
}


/*回到顶部*/

.sroll-top {
    position: fixed;
    right: 15px;
    bottom: 100px;
    width: 35px;
    height: 35px;
   /*  background-color: rgb(216, 35, 23); */
    border-radius: 5px;
    cursor: pointer;
	background-color: #008fd7;
}

.scroll-top-deg {
    width: 15px;
    height: 15px;
    border-width: 3px;
    border-style: solid;
    border-color: #fff #fff transparent transparent;
    transform: translate(7px, 13px) rotate(-45deg);
    -o-transform: translate(7px, 13px) rotate(-45deg);
    -ms-transform: translate(7px, 13px) rotate(-45deg);
    -moz-transform: translate(7px, 13px) rotate(-45deg);
    -webkit-transform: translate(7px, 13px) rotate(-45deg);
}


/*
 * 
 * 说明
 * 	面包屑样式
 */

.breadcrumb {
    width: 100%;
    background-color: rgb(84, 84, 84);
    ;
    color: #fff;
}

.breadcrumb>ul {
    height: 100%;
    margin: 0 auto;
    padding-left: 18px;
}

.breadcrumb>ul>a {
    display: inline-block !important;
}

.breadcrumb>ul>a:hover {
    display: inline-block !important;
    color: rgb(210, 50, 68);
}


/*
 * 
 * 说明：一级产品页面样式
 *  （一级产品列表和二级产品列表的banner样式一致）
 * 
 */

.list-prodcuts-banner {
    width: 100%;
}

.list-prodcuts-container {
    margin: 0 auto;
    padding: 15px 0 36px;
    border-bottom: 1px solid rgb(204, 204, 204);
}

.list-prodcuts-container>a {
    width: 58%;
    margin-top: 3.5%;
}

.list-prodcuts-container>a>img {
    width: 100%;
    height: auto;
}

.list-prodcuts-container-text {
    width: 40%;
}

.list-prodcuts-container-text>h3 {
    width: 100%;
    line-height: 100px;
    font-size: 24px !important;
    text-align: center;
    position: relative;
}


/*h3标题的下划线*/

.list-prodcuts-container-text>h3:before {
    content: "";
    width: 112px;
    height: 2px;
    position: absolute;
    bottom: 0;
    /*水平居中*/
    left: 50%;
    transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    background-color: rgb(237, 96, 112);
}

.list-prodcuts-container-text>p {
    line-height: 27px;
    margin-top: 8%;
    font-size: 14px;
}

.list-prodcuts-container-text>a {
    width: 160px;
    height: 34px;
    line-height: 34px;
    margin: 20px auto;
    text-align: center;
    border: 1px solid rgb(204, 204, 204);
    border-radius: 4px;
}

.list-prodcuts-container-text>a:hover {
    border-color: rgb(237, 96, 112);
    background-color: rgb(237, 96, 112);
    color: #fff;
}


/*
 *说明：二级产品页面样式
 *  （其banner样式合并到一级产品页面）
 */


/*二级产品导航栏*/

.list-prodcuts-nav {
    margin: 0 auto;
    text-align: center;
}

.list-prodcuts-nav>li {
    float: left;
    width: 16.48736%;
    height: 100%;
    color: #fff;
    background-color: rgb(84, 84, 84);
}

.list-prodcuts-nav>li+li {
    margin-left: 2px;
}

.list-prodcuts-nav>li.on,
.list-products-nav>li:hover {
    background-color: rgb(215, 34, 23);
}

.list-prodcuts-nav>li:hover {
    background-color: rgb(215, 34, 23);
}

.list-prodcuts-container-second {
    margin: 0 auto;
    border-bottom: 1px solid rgb(204, 204, 204);
}

.list-prodcuts-container-second>a {
    width: 54%;
}

.list-prodcuts-container-second>a>img {
    width: 100%;
    height: auto;
    margin-top: 5%;
}

.list-products-container-second-text {
    width: 43%;
}

.list-products-container-second-text-h3 {
    line-height: 80px;
    color: rgb(51, 51, 51);
    font-size: 24px;
}

.list-products-container-second-text-tx {
    line-height: 20px;
}

.list-products-container-second-btn {
    width: 160px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    border: 1px solid rgb(204, 204, 204);
    border-radius: 4px;
    margin: 30px 0;
}

.list-products-container-second-btn:hover {
    border-color: rgb(237, 96, 112);
    background-color: rgb(237, 96, 112);
    color: #fff;
}


/*
 * 说明：三级产品页
 * 		产品详情页样式
 * 
 */


/*产品详情页 轮播图*/

.products-slick {
    margin: 0 auto;
}


/*轮播图next和pre按钮*/

.products-slick-next,
.products-slick-pre {
    width: 72px;
    height: 72px;
    border-radius: 36px;
    background-color: rgba(0, 0, 0, 0.3);
}


/*产品特征参数 导航栏*/

.fea-spc-nav {
    width: 100%;
    background-color: rgb(84, 84, 84);
}

.fea-spc-nav>ul {
    margin: 0 auto;
    height: 100%;
}

.fea-spc-nav>ul>li {
    float: left;
    width: 19.8829%;
    height: 100%;
    border-left: 1px solid #fff;
    text-align: center;
    color: #fff;
    cursor: pointer;
}

.fea-spc-nav>ul>li:hover,
.fea-spc-nav>ul>li.on {
    background-color: rgb(255, 1, 1);
}


/*产品特征参数内容栏*/

.fea-spc-container {
    width: 100%;
    background-color: rgb(247, 247, 247);
}

.fea-spc-container>p {
    min-height: 350px;
    display: none;
    margin: 0 auto;
}


/*上传产品时默认了固定图片高度，有可能造成图片被拉伸变形*/

.fea-spc-container>p>img {
    height: auto !important;
}


/*
 * 说明：
 * 	一级案例页 
 */

.list-case {
    margin: 2px auto;
}

.list-case-container {
    float: left;
    width: 33.3334%;
}

.list-case-box {
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.list-case-box>img {
    width: 100%;
    height: 100%;
}

.list-case-box>.desc {
    position: absolute;
    left: 0;
    bottom: -100px;
    width: 97%;
    height: 100px;
    padding-left: 3%;
    /* background-color: rgba(216, 35, 23, 0.68); */
    color: #fff;
	background-color: rgba(0, 143, 215, 0.68);
}

.list-case-box>.desc>h4 {
    font-size: 20px;
    line-height: 28px;
}

.list-case-box>.desc>p {
    margin-top: 10px;
}


/*
 * 说明
 * 	新闻列表
 */

.list-news-nav {
    margin: 0 auto;
    text-align: center;
}

.list-news-nav>li {
    float: left;
    width: 33%;
    height: 100%;
    color: #fff;
    /* background-color: rgb(84, 84, 84); */
}

.list-news-nav>li+li {
    margin-left: 2px;
}

.list-news-nav>li.on,
.list-news-nav>li:hover {
    /* background-color: rgb(215, 34, 23); */
	background-color: rgba(0, 143, 215);
}

.list-news-main {
    width: 100%;
    background-color: rgb(247, 247, 247)
}

.list-news-box {
    margin: 0 auto;
    color: rgb(51, 51, 51)
}

.list-news-container {
    width: 100%;
    border-bottom: 1px dashed rgb(204, 204, 204);
}

.list-news-container>.time {
    float: left;
    background-color: rgb(242, 242, 242);
    text-align: center;
    margin: 25px 0;
    padding-bottom: 25px;
}

.list-news-container>.time>span {
    display: inline-block;
    font-size: 32px;
}

.list-news-container>.desc {
    float: right;
    margin: 25px 0;
}

.list-news-container>.desc>img.pic {
    float: left;
}

.list-news-container>.desc>.text {
    float: right;
}

.list-news-container>.desc>.text>h4 {
    font-size: 18px;
    line-height: 30px;
    margin: 0 0 12px;
}

.list-news-container>.desc>.text>p {
    line-height: 20px;
}

.list-news-container>.desc:hover {
    /* box-shadow: 0px 10px 5px rgba(149, 3, 3, 0.39); */
    transition: all .3s;
    /* background: #d33742; */
    color: #FFF;
	 background: #008fd7;
	 box-shadow: 0px 10px 5px rgba(0, 143, 215, 0.39);
}


/*新闻页码*/

.news-page {
    width: 100%;
    height: 100px;
    position: relative;
}

.news-page-code {
    position: absolute;
    top: 50%;
    left: 50%;
}

.news-page-code>li {
    float: left;
    margin: 5px;
    color: rgb(140, 143, 143);
    background-color: #fff;
}

.news-page-code>li.on,
.news-page-code>li:hover {
    color: #fff;
    background-color: rgb(216, 34, 23);
    border-color: rgb(216, 34, 23);
}

.news-page-code>li>a {
    padding: 6px 12px;
    border: 1px solid rgb(221, 221, 221);
}


/*
 * 新闻详情页
 */


/*新闻详情页banner*/

.news-banner,
.news-banner>img {
    width: 100%;
    height: 168px;
}


/*新闻详情页 新闻稿*/

.news-box {
    width: 100%;
}

.news-box-content {
    margin: 0 auto;
}

.news-box-content>.imgs {
    width: 50%;
    margin: 22px auto;
    text-align: center;
}

.news-box-content>.text {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    line-height: 26px;
    text-align: left;
    font-size: 16px;
}

.news-box-content>.text a {
    display: inline;
    color: blue
}

.news-box-content>.text a:hover {
    color: red
}


/*上一条/下一条新闻*/

.pre-next-page {
    margin: 50px auto;
    line-height: 20px;
}

.prevpage,
.nextpage {
    width: 47%;
    margin: 0 1%;
}

.prevpage>a,
.nextpage>a {
    display: inline-block;
    color: rgb(153, 153, 153);
}

.prevpage>a:hover,
.nextpage>a:hover {
    color: rgb(210, 50, 68);
}

.news-box>h4 {
    margin: 30px auto 10px;
    line-height: 30px;
    text-align: center;
    font-size: 24px;
    color: rgb(51, 51, 51);
}

.news-box>.time {
    margin: 0 auto 20px;
    text-align: center;
    color: rgb(153, 153, 153);
}


/*
 * 案例详情页
 */

.case-banner {
    width: 100%;
    height: 170px;
}

.case-banner>img {
    width: 100%;
    height: auto;
}

.case-box {
    width: 100%;
}

.case-box>h3,
.list-case>h3 {
    margin: 30px auto 10px;
    text-align: center;
    font-size: 24px;
    height: 120px;
    line-height: 120px;
    /* color: rgb(216, 35, 23); */
	color: #008fd7;
}

.case-box>h3 {
    line-height: 30px;
    padding: 0 15px;
}


/*
 * 服务页
 */

.service-banner {
    width: 100%;
    height: auto;
}

.our-service-philosophy {
    width: 100%;
    background-color: rgb(247, 247, 247);
}

.our-service-philosophy-container {
    margin: 0 auto;
    line-height: 28px;
}

.text-bg-red {
    background: #d82217;
    padding: 0 4px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.our-service-philosophy-container>h3 {
    width: 100%;
    line-height: 74px;
    margin-bottom: 22px;
    font-size: 24px;
    text-align: center;
    position: relative;
}

.our-service-philosophy-container>h3:before,
.service-contents-container>h3:before,
.faq>h3:before,
.message-feedback-container>h3:before,
.company-profile-container>h3:before,
.infiled-hao-container-1-right>h3:before,
.why-infiled>h3:before,
.worldwide-presence-container>h3:before,
.milestone-container>h3:before,
.testimonials-container>h3:before,
.certification>h3:before,
.testimonials-box>h3:before,
.contact-container-content>h3:before,
.find-out-right-2:before,
.partner-container-content>h3:before {
    content: "";
    width: 112px;
    height: 2px;
    position: absolute;
    bottom: 0;
    /*水平居中*/
    left: 50%;
    transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    background-color: rgb(237, 96, 112);
}

.our-service-philosophy-container-1,
.our-service-philosophy-container-4 {
    width: 41%;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
}

.our-service-philosophy-container-2,
.our-service-philosophy-container-3 {
    width: 59%;
    margin-top: 10px;
    margin-bottom: 10px;
}

.our-service-philosophy-container-1>img,
.our-service-philosophy-container-4>img {
    width: 90%;
    height: auto;
}

.our-service-philosophy-container-2>p,
.our-service-philosophy-container-3>p {
    width: 93%;
    margin: 0 auto;
    text-align: left;
}

.service-contents {
    width: 100%;
    margin-top: 30px;
}

.service-contents-container {
    margin: 0 auto;
    background: url(../images/s2_bg.jpg) no-repeat center center/100% 100%;
    position: relative;
}
.w100 {
    width: 80%;
    max-width: 80%;
}
.tenteont{
    text-align: center;
}

.service-contents-container>h3 {
    line-height: 74px;
    margin-bottom: 22px;
    font-size: 24px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
}

.service-contents-container-content {
    position: absolute;
    width: 360px;
    height: auto;
}

.service-contents-container-content>h3 {
    line-height: 26px;
    font-size: 24px;
    margin-bottom: 15px;
}

.service-contents-container-content>p {
    line-height: 20px;
    font-size: 14px;
}

.service-contents-container-1 {
    top: 0;
    left: 10%;
    text-align: right;
}

.service-contents-container-2 {
    top: 15%;
    right: 3%;
    text-align: right;
}

.service-contents-container-3 {
    top: 31%;
    left: 3%;
    text-align: left;
}

.service-contents-container-4 {
    top: 36%;
    right: 3%;
    text-align: right;
}

.service-contents-container-5 {
    top: 54%;
    left: 3%;
    text-align: left;
}

.service-contents-container-6 {
    top: 58%;
    right: 3%;
    text-align: right;
}

.service-contents-container-7 {
    top: 77%;
    left: 3%;
    text-align: left;
}

.service-contents-container-8 {
    top: 85%;
    right: 11%;
    text-align: left;
}

.faq {
    width: 100%;
    padding: 30px 0;
    background-color: rgb(247, 247, 247);
}

.faq>h3,
.message-feedback-container>h3,
.company-profile-container>h3,
.infiled-hao-container-1-right>h3,
.why-infiled>h3,
.worldwide-presence-container>h3,
.milestone-container>h3,
.testimonials-container>h3,
.certification>h3,
.testimonials-box>h3,
.contact-container-content>h3,
.partner-container-content>h3 {
    line-height: 74px;
    margin-bottom: 22px;
    text-align: center;
    font-size: 24px;
    position: relative;
}

.faq-container {
    margin: 0 auto;
}

.faq-container>h3 {
    padding: 40px 50px;
    border-bottom: 1px solid rgb(220, 220, 220);
    font-size: 24px;
    background-color: #fff;
    cursor: pointer;
}

.faq-container>h3.open {
    color: rgb(51, 51, 51);
    background: #fff url(../images/off.png) no-repeat 98% center/30px 30px;
}

.faq-container>h3.close {
    color: red;
    background: #fff url(../images/on.png) no-repeat 98% center/30px 30px;
}

.faq-container>.sideMenu {
    display: none;
    margin-bottom: 20px;
    padding: 20px 50px;
    background-color: #fff;
}

.faq-container>.sideMenu>h3 {
    line-height: 35px;
    margin-top: 25px;
    font-size: 20px;
}

.faq-container>.sideMenu>h3:before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 8px;
    margin-bottom: 3px;
    border-radius: 6px;
    background-color: gray;
}

.faq-container>.sideMenu>.text {
    line-height: 30px;
    text-indent: 2em;
    color: darkgray;
}

.message-feedback {
    width: 100%;
    /*height: 640px;*/
    background: url(../images/message_bg.jpg) no-repeat center center/100% 100%;
}

.message-feedback-container {
    margin: 0 auto;
}

.message-feedback-container>h3 {
    color: #fff
}

.service-form {
    width: 100%;
}

.service-form-box {
    width: 80%;
    margin: 15px auto;
}

.service-form-box>label {
    display: inline-block;
    width: 18%;
    text-align: right;
    font-weight: bold;
    color: #fff;
}

.service-form-box>input {
    width: 80%;
    height: 40px;
    padding-left: 10px;
    border-radius: 5px;
    outline: none;
}

.service-form-box>textarea {
    vertical-align: top;
    min-width: 80%;
    max-width: 80%;
    min-height: 200px;
    max-height: 1000px;
    padding-top: 10px;
    padding-left: 10px;
    border-radius: 5px;
    outline: none;
}

.service-form-box>button {
    width: 200px;
    height: 35px;
    line-height: 30px;
    margin: 0 auto;
    border-radius: 5px;
    text-align: center;
    background-color: rgb(229, 229, 229);
    border: none;
    cursor: pointer;
}

.service-form-box>button:hover {
    color: #fff;
    background-color: red;
    border: none;
}


/*
 * WHO IS INFiLED
 */

.list-1-2 {
    width: 50%;
    float: left;
}

.list-1-6 {
    width: 16.666666%;
    float: left
}

.about-banner {
    width: 100%;
    background-color: rgb(49, 49, 49);
    color: rgb(49, 49, 49);
}

.about-banner-box {
    margin: 0 auto;
}

.about-banner-box>.list-1-2,
.about-banner-box>.list-1-6 {
    overflow: hidden;
}

.about-banner-box img {
    width: 100%;
    height: auto;
    transition: transform 1s ease 0s;
    transform: scale(1);
    overflow: hidden;
    cursor: pointer;
}

.about-banner-box img:hover {
    transition: transform 1s ease 0s;
    transform: scale(1.1);
}

.company-profile {
    width: 100%;
}

.company-profile-container {
    margin: 0 auto 100px;
}

.company-profile-container-left {
    float: left;
    width: 33%
}

.company-profile-container-left>img {
    width: 100%;
    height: auto;
}

.company-profile-container-right {
    float: right;
    width: 65%;
    line-height: 30px;
}

.infiled-hao {
    width: 100%;
    line-height: 30px;
    padding: 60px 0 30px;
    background-color: rgb(245, 245, 245);
}

.infiled-hao-container-1,
.infiled-hao-container-2 {
    margin: 20px auto;
}

.infiled-hao-container-1-left {
    float: left;
    width: 33%
}

.infiled-hao-container-1-left>img {
    width: 100%;
    height: auto;
}

.infiled-hao-container-1-right {
    float: right;
    width: 65%;
}

.why-infiled {
    margin: 0 auto;
}

.why-infiled>img {
    width: 100%;
    height: auto;
}

.worldwide-presence {
    width: 100%;
    margin-top: 100px;
    padding-bottom: 50px;
    background-color: rgb(243, 246, 255);
}

.worldwide-presence-container {
    margin: 0 auto;
}

.worldwide-presence-container>img {
    width: 100%;
    margin-top: 30px;
    height: auto;
}

.worldwide-presence a,
.testimonials-container-right>a,
.certification>a {
    width: 110px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    margin: 0 auto;
    border-radius: 5px;
    background-color: #fff;
    border: 1px solid rgb(204, 204, 204);
}

.worldwide-presence a:hover,
.testimonials-container-right>a:hover,
.certification>a:hover {
    color: #fff;
    border-color: transparent;
    background-color: red;
}

.milestone {
    width: 100%;
}

.milestone-container {
    margin: 0 auto;
    padding-top: 50px
}

.milestone-slick {
    margin: 100px auto;
    background: url(../images/ab5_bg.png) no-repeat center center/100% 100%;
}

.milestone-slick-box {
    color: #fff;
    width: 100%;
    height: 330px;
    margin-top: 145px;
}

.milestone-slick-box>h4 {
    margin-top: 20px;
    margin-left: 20px;
    font-size: 40px;
}

.milestone-slick-box>p {
    margin-top: 30px;
    margin-left: 20px;
    font-size: 16px;
    line-height: 28px;
}

.milestone-next,
.milestone-pre {
    width: 50px;
    height: 50px;
    border-radius: 26px;
}

.milestone-next:hover,
.milestone-pre:hover {
    background-color: rgb(216, 34, 23);
}

.milestone-next {
    right: -7%;
    background-color: rgb(216, 34, 23);
}

.milestone-pre {
    left: -7%;
    background-color: rgb(216, 34, 23);
}

.testimonials {
    width: 100%;
    padding: 50px 0;
    background-color: rgb(247, 247, 247);
}

.testimonials-container {
    margin: 0 auto;
}

.testimonials-container-left {
    width: 45%;
    text-align: right;
}

.testimonials-container-left>img {
    width: 90%;
    height: auto;
}

.testimonials-container-right {
    width: 52%;
    margin-left: 2%;
    line-height: 20px;
    text-align: left;
}

.certification {
    width: 100%;
    height: auto;
    position: relative;
    background-color: rgb(66, 66, 66);
}

.certification>img {
    width: 100%;
    height: auto
}

.certification>h3 {
    position: absolute;
    top: 15%;
    left: 50%;
    color: #fff;
}

.certification>a {
    position: absolute;
    left: 50%;
    bottom: 8%;
}


/*
 * testimonials-banner
 */

.testimonials-banner {
    width: 100%;
    height: auto;
}

.testimonials-box {
    margin: 0 auto;
}

.testimonials-box-left {
    width: 15%;
    height: auto;
    text-align: center;
    margin-bottom: 15px;
}

.testimonials-box-right {
    width: 80%;
    line-height: 26px;
    margin-bottom: 15px;
    padding: 20px 10px;
    color: rgb(51, 51, 51);
    ;
    background-color: rgb(242, 242, 242);
}

.honor-banner {
    width: 100%;
}

.honor-nav {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 5;
}

.honor-nav-list {
    width: 100%;
    height: 100%;
}

.honor-nav-list>li {
    float: left;
    width: 24.5%;
    height: 100%;
    text-align: center;
    color: #FFF;
    background-color: rgb(84, 84, 84);
}

.honor-nav-list>li+li {
    margin-left: 0.15%;
}

.honor-nav-list>li>a {
    width: 100%;
    height: 100%;
}

.honor-nav-list>li.on,
.honor-nav-list>li:hover {
    background-color: rgb(216, 34, 23);
}

.honor-container {
    width: 100%;
    padding-top: 60px;
    background-color: rgb(247, 247, 247);
}

.honor-container-list {
    margin: 0 auto;
}

.honor-container-list>li {
    float: left;
    width: 33.3333333333333333333%;
}

.honor-container-list>li>a {
    width: 90%;
    margin: 25px auto;
    text-align: center;
    padding: 25px 0;
    border: 1px solid rgb(204, 204, 204);
}

.honor-container-list>li>a>img {
    width: 80%;
    height: auto;
}


/*
 *
 *  联系我们页面
 */

.contact-banner {
    width: 100%;
    height: auto;
}

.contact-nav {
    text-align: center;
    margin: 0 auto;
}

.contact-nav-list {
    width: 100%;
    height: 100%;
}

.contact-nav-list>li {
    float: left;
    width: 24.5%;
    height: 100%;
    font-size: 18px;
    color: #fff;
    background-color: rgb(183, 183, 183);
    cursor: pointer;
}

.contact-nav-list>li:hover,
.contact-nav-list>li.on {
    background-color: rgb(214, 34, 23);
}

.contact-nav-list>li+li {
    margin-left: 0.15%;
}

.icon-dizhi,
.icon-dianhua,
.icon-fax,
.icon-Email,
.icon-web3 {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 22px !important;
    vertical-align: middle;
    color: red;
}

.contact-container {
    width: 100%;
    background-color: rgb(239, 239, 239);
}

.contact-container-content {
    margin: 0 auto;
}

.contact-container-content>h3 {
    margin-top: 22px
}

.contact-container-content>h3:before {
    left: 0;
    transform: translateX(50%);
    -o-transform: translateX(50%);
    -ms-transform: translateX(50%);
    -moz-transform: translateX(50%);
    -webkit-transform: translateX(50%);
}

.contact-container-content-list {
    float: left;
    width: 40%;
    min-height: 220px;
    max-height: 360px;
    margin-top: 15px;
    margin-bottom: 15px;
    margin-left: 6%;
    padding: 10px;
    line-height: 30px;
    padding: 2%;
    background-color: #fff;
}

.contact-container-content-list>p>.icon-web3 {
    color: red !important;
}

.contact-container-content-list>h4 {
    line-height: 30px;
    font-size: 20px;
    color: red;
}

.contact-container-content-list>p {
    padding-left: 30px;
    position: relative;
}


/*
 * 产品页-customized
 */

.customized-banner {
    width: 100%;
}

.find-out {
    margin: 0 auto;
}

.find-out-left {
    line-height: 30px;
    padding: 100px 0;
}

.find-out-right {
    text-align: center;
    background-color: rgb(247, 247, 247);
}

.find-out-right-1 {
    margin-top: 35%;
    font-size: 60px;
    font-weight: bold;
}

.find-out-right-2 {
    font-size: 22px;
    line-height: 45px;
    position: relative;
}

.find-out-right-3 {
    font-size: 18px;
    line-height: 30px;
}

.green-lantern-sign {
    margin: 0 auto;
}

.green-lantern-sign-right>h3,
.australian-open-left>h3,
.miss-hong-kong-right>h3 {
    font-size: 24px;
    margin-top: 50px;
    padding-left: 22px;
    line-height: 60px;
}

.green-lantern-sign-right>p,
.australian-open-left>p,
.miss-hong-kong-right>p {
    padding-left: 22px;
    line-height: 30px;
}

.green-lantern-sign-right>a,
.australian-open-left>a,
.miss-hong-kong-right>a {
    width: 160px;
    height: 35px;
    line-height: 35px;
    margin-top: 22px;
    margin-bottom: 50px;
    margin-left: 22px;
    text-align: center;
    border-radius: 5px;
    border: 1px solid rgb(204, 204, 204);
}

.green-lantern-sign-right>a:hover,
.australian-open-left>a:hover,
.miss-hong-kong-right>a:hover {
    color: #fff;
    background-color: rgb(210, 50, 68);
}

.australian-open {
    margin: 0 auto;
}

.miss-hong-kong {
    margin: 0 auto;
}


/*
 * download 页
 */

.download-container {
    margin: 0 auto;
}

.download-list {
    width: 100%
}

.download-list>li {
    height: 90px;
    line-height: 90px;
    border-bottom: 1px solid rgb(204, 204, 204);
}

.download-list>li>h4 {
    float: left;
    font-size: 18px;
    color: rgb(51, 51, 51);
}

.download-list>li>a {
    float: right;
    height: 80%;
    color: rgb(69, 68, 68);
}

.download-list>li>a:hover {
    color: red;
}

.icon-download {
    margin-left: 8px
}

.popup {
    width: 370px;
    height: auto;
    background-color: #fff;
    position: absolute;
    z-index: 100;
    border: 1px solid #ebeaea;
    left: 400px;
    top: 96px;
    display: none;
}

.popup .top_nav {
    width: 368px;
    height: 46px;
    background-image: url(../images/popup_top_bj.jpg);
    border-bottom: 1px solid #ebeaea;
    position: relative;
    cursor: move;
}

.popup .top_nav i {
    width: 35px;
    height: 35px;
    position: absolute;
    top: 6px;
    left: 8px;
    display: block;
}

.popup .top_nav span {
    font: 18px/18px 'microsoft yahei';
    color: #707070;
    display: block;
    position: absolute;
    top: 13px;
    left: 20px;
}

.popup .top_nav a.guanbi {
    background: url(../images/popup_guanbi.png) repeat 0px 0px;
    width: 35px;
    height: 35px;
    display: block;
    position: absolute;
    top: 8px;
    right: 10px;
    cursor: pointer;
}

.popup .top_nav a.guanbi span {
    display: none;
}

.popup .top_nav a.guanbi:hover {
    background: url(../images/popup_guanbi.png) repeat 0px -35px;
}

.popup .min {
    width: 330px;
    height: auto;
    padding: 10px;
}

.tc_login {
    width: 330px;
    height: 200px;
    background-color: #fff;
}

.lavb span {
    line-height: 40px;
    display: block;
    float: left;
    height: 40px;
    margin: 10px 0px 0px 5px;
}

.lavb span em {
    color: #ff0000;
    font-style: normal;
    padding-right: 5px;
}

.tc_login .right i {
    font-size: 20px;
    color: #090;
    float: right;
    margin: 15px 0 0px 0;
}

.tc_login .right a {
    font: 13px/18px 'microsoft yahei';
    color: #666;
    float: right;
    margin: 16px 0 0px 6px;
}

.tc_login .right a:hover {
    color: #06F;
    text-decoration: underline;
}

.tc_login .right input {
    border: 1px solid #ccc;
    border-radius: 2px;
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    height: 40px;
    padding: 0 0 0 5px;
    margin: 10px 0px 0px 10px;
    transition: background 0.3s ease-in-out;
    width: 240px;
    float: right;
}

.tc_login .right input:focus {
    outline: none;
    border-color: #e8374b;
    box-shadow: 0 0 0px #e8374b;
}

.tc_login .right .button {
    -webkit-appearance: none;
    background: #d82317;
    border: none;
    border-radius: 2px;
    color: #fff;
    cursor: pointer;
    height: 40px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2em;
    letter-spacing: 0.05em;
    text-align: center;
    text-transform: uppercase;
    transition: background 0.3s ease-in-out;
    width: 97%;
    padding: 0 50px 0 50px;
    margin-bottom: 10px;
}

.tc_login .right .button:hover {
    background: #e8374b;
}

.tc_login .right dd {
    width: 100%;
    height: 30px;
}

.tc_login .right dd a {
    font: 12px/18px 'microsoft yahei';
    color: #06F;
}

.tc_login .right dd a:hover {
    font: 13px/18px 'microsoft yahei';
    color: #06F;
    text-decoration: underline;
}

.tc_login .right hr {
    height: 1px;
    border: none;
    border-top: 1px dashed #E4E4E4;
    clear: both;
    margin: 240px 0 5px 0px;
}

.download-link {
    float: left;
    width: 175px;
    text-align: center;
    line-height: 40px;
    border-left: 1px solid #fff;
}

.download-link a {
    color: #fff;
    display: block;
}

.download-link a:hover {
    color: #fff;
    background: red;
    text-decoration: none;
}


/*
 * partner 页面
 */

.partner-banner {
    width: 100%;
    position: relative;
}

.partner-banner>p {
    position: absolute;
    top: 50%;
    left: 35%;
    /*line-height: 60px;
	font-size: 48px;*/
    color: #fff;
    border-bottom: 1px solid #fff;
}

.partner-container {
    width: 100%;
    background-color: rgb(247, 247, 247);
}

.partner-container-content {
    margin: 0 auto
}

.partner-container-content>a {
    float: left;
    text-align: center;
}


/*
 * join us 页面
 */

.offeremail {
    width: 185px;
    height: 45px;
    line-height: 45px;
    margin: 0 auto;
    background: #d82217;
    color: #fff !important;
    text-align: center !important;
    text-indent: 0;
}


/*图片预览-去掉控制显示板图标*/

.pswp__button {
    background-image: none;
}

.lazy {
    background: url(../images/1.gif) no-repeat center center/50px 50px;
}


/*最小宽度1025px的样式  1025px高度采用80px    开始 */

@media only screen and (min-width: 1025px) {
    /*头部*/
    .p-navigation {
        display: block;
    }
    .m-navigation {
        display: none;
    }
    header {
        height: 80px;
    }
    h1 {
        position: absolute;
        top: 50%;
        left: 0;
    }
    h1>a {
        width: 200px;
        height: 54px;
        background-size: 180px auto;
    }
    nav {
        width: 925px;
        height: 80px;
    }
    #want {
        right: 130px;
    }
    #want>a {
        width: 90px;
        height: 30px;
        line-height: 30px;
    }
    .wantbox {
        left: 0;
    }
    /*
	 * 首页搜索
	 */
    .formsearch-box {
        top: 80px;
    }
    /*首页banner图*/
    .p-slick {
        display: block
    }
    .m-slick {
        display: none
    }
    /*导航列表*/
    .nav-list {
        left: 1920px;
    }
    .nav-list>li>a {
        display: block;
        padding: 0 8px;
        height: 40px;
        line-height: 40px;
    }
    /*首页滑动导航*/
    /*产品轮播*/
    .slide-nav,
    .pro-car-wrap,
    .products-Carousel>ul,
    .index-project-container,
    .index-news,
    .index-email,
    .index-info>ul,
    .footer-container,
    .breadcrumb>ul,
    .list-prodcuts-container,
    .list-prodcuts-nav,
    .list-prodcuts-container-second,
    .products-slick,
    .fea-spc-nav>ul,
    .fea-spc-container>p,
    .fea-spc-container>p>img,
    .list-case,
    .list-news-box,
    .news-box-content,
    .pre-next-page,
    .news-box>h4,
    .news-box>.time,
    .case-box>h3,
    .our-service-philosophy-container,
    .service-contents-container,
    .faq-container,
    .message-feedback-container,
    .about-banner-box,
    .company-profile-container,
    .infiled-hao-container-1,
    .infiled-hao-container-2,
    .why-infiled,
    .worldwide-presence-container,
    .milestone-container,
    .testimonials-container,
    .testimonials-box,
    .honor-container-list,
    .contact-container-content,
    .find-out,
    .green-lantern-sign,
    .australian-open,
    .miss-hong-kong,
    .download-container,
    .partner-container-content {
        width: 925px !important;
    }
    .products-Carousel>ul>li>a {
        height: 42px;
        line-height: 42px;
    }
    /*首页案例*/
    .index-project-container-box-left img {
        height: 240px;
    }
    .index-project-container-box-right img {
        height: 492px;
    }
    /*首页产品列轮播图*/
    /*首页产品轮播图*/
    .products-Carousel-PC {
        display: table;
    }
    .products-Carousel-Mobile {
        display: none;
    }
    /*首页新闻*/
    .index-news-left-box {
        height: 118px;
    }
    .index-news-left-box>a {
        height: 96px;
    }
    .index-news-right {
        height: 498px;
    }
    /*首页服务评价信息*/
    .index-info {
        height: 400px;
    }
    /*页脚*/
    .footer {
        height: 335px;
    }
    dl+dl {
        margin-left: 45px;
    }
    /*页脚logo及社交分享*/
    .share {
        width: 260px;
        height: 300px;
    }
    /*
	 * 面包屑
	 */
    .breadcrumb {
        height: 50px;
        /*垂直居中效果*/
        line-height: 50px;
        /*头部导航固定，脱离文档流，margin-top下拉*/
        margin-top: 80px;
    }
    /*
	 * 一级产品页
	 */
    /*.list-prodcuts-container{height: 483px;}*/
    /*
	 * 二级产品页
	 */
    .list-prodcuts-nav {
        height: 60px;
        line-height: 60px;
        margin-top: -60px;
    }
    /*产品下拉菜单中的 customized*/
    .find-out-right {
        height: 500px !important;
    }
    /*
	 * 三级产品详情页
	 */
    /*轮播图*/
    .products-slick {
        height: 510px;
    }
    .products-slick div {
        width: 500px;
        height: 500px;
        margin: 0 auto;
    }
    .products-slick img {
        width: 500px;
        height: 500px;
    }
    /*产品特征参数导航栏*/
    .fea-spc-nav,
    .fea-spc-nav>ul>li {
        height: 40px;
        line-height: 40px;
    }
    /*
	 * 一级案例页
	 */
    .list-case-container {
        height: 242px;
    }
    /*
	 * 	新闻列表页
	 */
    .list-news-nav {
       /*  width: 515px; */
        height: 60px;
        line-height: 60px;
        margin-top: -62px;
		 width: 640px;
    }
    .list-news-container>.time {
        float: left;
        width: 9.268292%;
    }
    .list-news-container>.time>span {
        margin-top: 15px;
        font-size: 32px;
        line-height: 45px;
    }
    .list-news-container>.desc {
        width: 89.756%
    }
    .list-news-container>.desc>img.pic {
        width: 23.152%;
        height: auto;
    }
    .list-news-container>.desc>.text {
        width: 73.913%;
    }
    /*
	 * 服务页
	 */
    .service-contents-container {
        height: 900px;
    }
    .message-feedback {
        height: 640px;
    }
    .service-contents-container-1 {
        left: 7%;
    }
    .service-contents-container-8 {
        right: 8%;
    }
    /*
	 * WHO IS INFiLED
	 */
    .company-profile-container-left>img {
        height: 650px;
    }
    .milestone-slick {
        width: 880px;
        height: 480px;
    }
    .honor-nav {
        width: 800px;
        height: 60px;
        line-height: 60px;
        margin-top: -62px;
    }
    /*
	 * CONTACT
	 */
    .contact-nav {
        width: 800px;
        height: 60px;
        line-height: 60px;
    }
    .contact-1,
    .contact-2 {
        height: 226px;
    }
    .contact-3,
    .contact-4 {
        height: 350px;
    }
    .contact-11,
    .contact-12 {
        height: 320px;
    }
    /*
	 * partner页
	 */
    .partner-banner>p {
        left: 40%;
        line-height: 30px;
        font-size: 20px;
    }
    .partner-container-content>a {
        width: 33.33333333%;
        height: 100px;
    }
}


/*最小宽度1025px的样式    结束*/


/*最小宽度1280px的样式  1280px高度采用80px    开始 */

@media only screen and (min-width: 1280px) {
    /*头部*/
    header {
        height: 85px;
    }
    h1 {
        position: absolute;
        top: 50%;
        left: 0;
    }
    h1>a {
        width: 220px;
        height: 60px;
        background-size: 200px auto;
    }
    nav {
        width: 1200px;
        height: 85px;
    }
    /*
	 * 首页搜索
	 */
    .formsearch-box {
        top: 85px;
    }
    #want {
        right: 130px;
    }
    #want>a {
        width: 100px;
        height: 35px;
        line-height: 35px;
    }
    .wantbox {
        left: 0;
    }
    /*导航列表*/
    .nav-list {
        left: 1920px;
    }
    .nav-list>li>a {
        display: block;
        padding: 0 25px;
        height: 40px;
        line-height: 40px;
    }
    /*首页滑动导航*/
    /*产品轮播*/
    .slide-nav,
    .pro-car-wrap,
    .products-Carousel>ul,
    .index-project-container,
    .index-news,
    .index-email,
    .index-info>ul,
    .footer-container,
    .breadcrumb>ul,
    .list-prodcuts-container,
    .list-prodcuts-nav,
    .list-prodcuts-container-second,
    .products-slick,
    .fea-spc-nav>ul,
    .fea-spc-container>p,
    .fea-spc-container>p>img,
    .list-case,
    .list-news-box,
    .news-box-content,
    .pre-next-page,
    .news-box>h4,
    .news-box>.time,
    .case-box>h3,
    .our-service-philosophy-container,
    .service-contents-container,
    .faq-container,
    .message-feedback-container,
    .about-banner-box,
    .company-profile-container,
    .infiled-hao-container-1,
    .infiled-hao-container-2,
    .why-infiled,
    .worldwide-presence-container,
    .milestone-container,
    .testimonials-container,
    .testimonials-box,
    .honor-container-list,
    .contact-container-content,
    .find-out,
    .green-lantern-sign,
    .australian-open,
    .miss-hong-kong,
    .download-container,
    .partner-container-content {
        width: 1200px !important;
    }
    .products-Carousel>ul>li>a {
        height: 42px;
        line-height: 42px;
    }
    /*首页案例*/
    .index-project-container-box-left img {
        height: 245px;
    }
    .index-project-container-box-right img {
        height: 502px;
    }
    /*首页新闻*/
    .index-news-left-box {
        height: 140px;
    }
    .index-news-left-box>a {
        height: 96px;
    }
    .index-news-right {
        height: 510px;
    }
    /*首页服务评价信息*/
    .index-info {
        height: 420px;
    }
    /*页脚*/
    .footer {
        height: 340px;
    }
    dl+dl {
        margin-left: 100px;
    }
    /*页脚logo及社交分享*/
    .share {
        width: 260px;
        height: 300px;
    }
    /*
	 * 面包屑
	 */
    .breadcrumb {
        height: 50px;
        /*垂直居中效果*/
        line-height: 50px;
        /*头部导航固定，脱离文档流，margin-top下拉*/
        margin-top: 80px;
    }
    /*
	 * 一级产品页
	 */
    /*.list-prodcuts-container{height: 483px;}*/
    /*
	 * 二级产品页
	 */
    .list-prodcuts-nav {
        height: 70px;
        line-height: 70px;
        margin-top: -70px;
    }
    /*产品下拉菜单中的 customized*/
    .find-out-right {
        height: 500px !important;
    }
    /*
	 * 三级产品详情页
	 */
    /*轮播图*/
    .products-slick {
        height: 510px;
    }
    .products-slick div {
        width: 500px;
        height: 500px;
        margin: 0 auto;
    }
    .products-slick img {
        width: 500px;
        height: 500px;
    }
    /*产品特征参数导航栏*/
    .fea-spc-nav,
    .fea-spc-nav>ul>li {
        height: 40px;
        line-height: 40px;
    }
    /*
	 * 一级案例页
	 */
    .list-case-container {
        height: 260px;
    }
    /*
	 * 	新闻列表页
	 */
    .list-news-nav {
        /* width: 515px; */
        height: 70px;
        line-height: 70px;
        margin-top: -72px;
		 width: 640px;
    }
    .list-news-container {
        /*height: 230px;*/
    }
    .list-news-container>.time {
        float: left;
        width: 9.268292%;
    }
    .list-news-container>.time>span {
        margin-top: 15px;
        font-size: 32px;
        line-height: 45px;
    }
    .list-news-container>.desc {
        width: 89.756%;
    }
    .list-news-container>.desc>img.pic {
        width: 23.152%;
        height: auto;
    }
    .list-news-container>.desc>.text {
        width: 73.913%;
    }
    /*
	 * 服务页
	 */
    .service-contents-container {
        height: 900px;
    }
    .message-feedback {
        height: 640px;
    }
    .service-contents-container-1 {
        left: 15%;
    }
    .service-contents-container-8 {
        right: 17%;
    }
    .our-service-philosophy-container-2 {
        min-height: 330px
    }
    /*
	 * WHO IS INFiLED
	 */
    .company-profile-container-left>img {
        height: 650px;
    }
    .milestone-slick {
        width: 880px;
        height: 480px;
    }
    .honor-nav {
        width: 800px;
        height: 70px;
        line-height: 70px;
        margin-top: -72px;
    }
    /*
	 * CONTACT
	 */
    .contact-nav {
        width: 800px;
        height: 70px;
        line-height: 70px;
    }
    .contact-1,
    .contact-2 {
        height: 226px;
    }
    .contact-3,
    .contact-4 {
        height: 350px;
    }
    .contact-11,
    .contact-12 {
        height: 320px;
    }
    /*
	 * partner页
	 */
    .partner-banner>p {
        left: 40%;
        line-height: 30px;
        font-size: 20px;
    }
    .partner-container-content>a {
        width: 33.33333333%;
        height: 100px;
    }
}


/*
 * 手机端
 */


/*手机端导航栏*/

.m-nav-list {
    width: 100%;
    height: 90%;
    border-bottom: solid 1px #316a91;
    background-color: #fff;
    position: fixed;
    top: 70px;
    left: 0;
    overflow-y: auto;
    display: none;
}

.m-nav-list>.one {
    width: 90%;
    margin: 0 auto;
}

.m-nav-list ul li {
    border-bottom: 1px solid rgb(204, 204, 204);
}

.m-nav-list ul li a {
    padding-left: 15px;
    height: 50px;
    line-height: 50px;
}

.m-nav-list ul li .m-nav-off {
    background: url(../images/moff.png) no-repeat 95% center;
    color: rgb(51, 51, 51);
}

.m-nav-list ul li .m-nav-on {
    background: url(../images/mon.png) no-repeat 95% center;
    color: #FFF;
    background-color: rgb(225, 72, 72);
}

.two,
.three {
    display: none;
}

.m-nav-list ul li ul li {
    border-bottom: 1px solid rgb(204, 204, 204);
}

.three {
    display: none;
}

.m-nav-list ul li ul li a {
    padding-left: 25px;
}

.m-nav-list ul li ul li ul li {
    border-bottom: 1px solid rgb(204, 204, 204);
}

.m-nav-list ul li ul li ul li a {
    padding-left: 35px;
}


/*手机端首页banner图*/

.slick-dots {
    bottom: 25px;
}

.slick-dots>li>button:before,
.slick-dots>li>button {
    width: 10px;
    height: 10px;
    border: 1px solid #fff;
    border-radius: 10px;
    opacity: 1;
}

.slick-dots li button:before {
    content: '';
    opacity: 0;
    background-color: red;
}


/*最大宽度1024px的样式  1280px高度采用80px    开始 */

@media only screen and (max-width: 1024px) {
    .p-navigation {
        display: none;
    }
    .products-Carousel>ul {
        flex-direction: column;
    }
    .m-navigation {
        display: block;
        width: 90%;
        height: 100%;
        margin: 0 auto;
    }
    header {
        height: 70px;
    }
    h1 {
        position: absolute;
        top: 50%;
        left: 0;
    }
    h1>a {
        width: 220px;
        height: 60px;
        background-size: 160px auto;
    }
    nav {
        width: 80%;
        height: 100%;
    }
    /*首页搜索框*/
    .formsearch-box {
        top: 70px;
    }
    .formsearch-box>input {
        width: 70%;
    }
    .formsearch-box>button {
        vertical-align: bottom;
    }
    .formsearch-box>button>.icon-search {
        font-size: 18px !important;
        color: rgba(51, 51, 51, 0.8);
    }
    .lang {
        width: 30px;
        height: 30px;
        right: 50px;
    }
    .formsearch {
        top: 32%;
        right: 90px;
    }
    .lang>div {
        top: 30px;
        left: -10px;
    }
    .lang .icon-web3 {
        color: #FFF;
        font-size: 30px !important;
    }
    .icon-search {
        font-size: 25px !important;
    }
    .menu-btn {
        right: 0;
    }
    /*首页banner图*/
    .p-slick {
        display: none;
    }
    .m-slick {
        display: block;
    }
    /*首页滑动导航*/
    .slide-nav {
        display: none;
    }
    /*首页产品轮播图*/
    .products-Carousel-PC {
        display: none;
    }
    .products-Carousel-Mobile {
        display: table;
    }
    /*宽度控制*/
    .pro-car-wrap,
    .index-project-container,
    .index-news,
    .index-email,
    .index-info>ul,
    .footer-container,
    .breadcrumb>ul,
    .list-prodcuts-container,
    .list-prodcuts-nav,
    .list-prodcuts-container-second,
    .products-slick,
    .fea-spc-nav>ul,
    .list-case,
    .list-news-box,
    .news-box-content,
    .pre-next-page,
    .news-box>h4,
    .news-box>.time,
    .case-box>h3,
    .our-service-philosophy-container,
    .service-contents-container,
    .faq-container,
    .message-feedback-container,
    .about-banner-box,
    .company-profile-container,
    .infiled-hao-container-1,
    .infiled-hao-container-2,
    .why-infiled,
    .worldwide-presence-container,
    .milestone-container,
    .testimonials-container,
    .testimonials-box,
    .honor-container-list,
    .contact-container-content,
    .find-out,
    .green-lantern-sign,
    .australian-open,
    .miss-hong-kong,
    .download-container,
    .partner-container-content {
        width: 90% !important;
    }
    /*首页产品轮播图*/
    .products-Carousel>h2,
    .index-project-container>h2 {
        width: 100%;
        height: 80px;
        line-height: 80px;
        font-size: 18px;
        text-align: center
    }
    .products-Carousel>h2 {
        height: auto;
        line-height: 30px;
        margin-bottom: 20px;
    }
    .products-Carousel>ul>li {
        line-height: 24px;
        margin: 7px 0;
        padding: 5px 0;
    }
    .products-Carousel>ul>li>a {
        width: 90%;
        /* padding: 10px 0; */
    }
    /*首页案例*/
    .index-project-container-box-left {
        width: 100%;
    }
    .index-project-container-box-right {
        width: 100%;
    }
    .index-project-container-box-left .imgs .desc,
    .index-project-container-box-right .imgs .desc {
        position: static;
        padding-top: 15px;
        padding-bottom: 10px;
        width: 98%;
        margin-bottom: 20px;
        padding-left: 2%;
        background-color: #fff;
        color: rgb(51, 51, 51);
    }
    .index-project-container-box-left .imgs .desc h3,
    .index-project-container-box-right .imgs .desc h3 {
        font-size: 16px;
        font-weight: normal;
        line-height: 26px;
    }
    .index-project-container-box-left .imgs .desc p,
    .index-project-container-box-right .imgs .desc p {
        line-height: 26px;
    }
    /*首页新闻*/
    .index-news-left,
    .index-news-right {
        width: 100%;
    }
    /*.index-news-right{border-bottom: 1px solid rgb(204, 204, 204);}*/
    .index-news-left>h3,
    .index-news-right>h3 {
        line-height: 30px;
        font-size: 16px;
    }
    .index-news-left-box {
        width: 100%;
        margin-bottom: 24px;
    }
    .index-news-right {
        margin-bottom: 15px;
        border-bottom: 1px solid rgb(204, 204, 204)
    }
    .index-news-left-box>a {
        width: 99%;
        margin-bottom: 12px;
    }
    .index-news-left-box>a>.imgs {
        width: 35%;
    }
    .index-news-left-box img {
        width: 95%;
        height: auto;
    }
    .index-news-left-box>a>.desc {
        float: left !important;
        width: 60%;
        margin-top: 0;
        /*使子元素垂直居中*/
        display: table-cell;
        vertical-align: middle;
    }
    /*首页邮箱订阅*/
    .index-email {
        height: 120px;
    }
    .index-email-form-input {
        width: 90%;
        height: 37px !important;
        margin: 10px 0 20px;
        padding-left: 10px;
    }
    .icon-kuangzhonggou,
    .icon-cha {
        top: 38px;
        left: 86%;
    }
    .index-email-form>.tips {
        top: 65px;
        left: 10px;
    }
    /*首页服务评价信息*/
    .index-info {
        height: 425px;
        background-size: 100% 100%;
    }
    /*
	 * 面包屑
	 */
    .breadcrumb {
        height: 50px;
        /*垂直居中效果*/
        line-height: 50px;
        /*头部导航固定，脱离文档流，margin-top下拉*/
        margin-top: 70px;
    }
    /*产品详情页 轮播图*/
    /*轮播图*/
    .products-slick {
        height: 510px;
    }
    .products-slick div {
        width: 500px;
        height: 500px;
        margin: 0 auto;
    }
    .products-slick img {
        width: 500px;
        height: 500px;
    }
    /*产品特征参数导航栏*/
    .fea-spc-nav,
    .fea-spc-nav>ul>li {
        height: 40px;
        line-height: 40px;
    }
    .fea-spc-nav>ul>li {
        width: 32%
    }
    .fea-spc-nav-acc {
        display: none;
    }
    .fea-spc-nav-app {
        display: none;
    }
    .fea-spc-container>p {
        width: 90%;
        text-align: center;
    }
    .fea-spc-container>p>img {
        width: 100% !important;
        height: auto !important;
    }
    /*
	 * 	新闻列表页
	 */
    .list-news-nav {
        width: 90%;
        height: 50px;
        line-height: 50px;
        margin-top: -52px;
    }
    .list-news-nav>li {
        width: 32.555%
    }
    /*新闻列表*/
    .list-news-container {
        /*height: 200px;*/
    }
    .list-news-container>.time {
        width: 9.268292%;
    }
    .list-news-container>.time>span {
        margin-top: 15px;
        font-size: 32px;
        line-height: 45px
    }
    .list-news-container>.desc {
        width: 89.756%
    }
    .list-news-container>.desc>img.pic {
        width: 23.152%;
        height: auto;
    }
    .list-news-container>.desc>.text {
        width: 73.913%;
    }
    /*二级产品导航栏*/
    .list-prodcuts-nav {
        margin: 20px auto;
        text-align: center;
    }
    .list-prodcuts-nav>li {
        float: left;
        width: 33%;
        height: 50px;
        line-height: 50px;
        margin: 1px 1px 0 0;
        color: #fff;
        background-color: rgb(84, 84, 84)
    }
    .list-prodcuts-nav>li+li {
        margin-left: 0;
    }
    /*一级案例列表*/
    .list-case-container {
        width: 48%;
        margin: 0 6px 20px;
    }
    .list-case-box>img {
        width: 100%;
        height: 256px;
    }
    .list-case-box>.desc {
        position: static;
        width: 97%;
        height: 120px;
        padding-left: 3%;
        background-color: rgb(247, 247, 247);
        color: rgb(51, 51, 51);
    }
    .list-case-box>.desc>h4 {
        font-size: 16px;
        line-height: 35px;
    }
    .list-case-box>.desc>p {
        margin-top: 10px;
    }
    /*服务service页*/
    .our-service-philosophy-container-1,
    .our-service-philosophy-container-2,
    .our-service-philosophy-container-3,
    .our-service-philosophy-container-4 {
        width: 100%;
    }
    .service-contents-container {
        background-image: none;
    }
    .service-contents-container>h3 {
        position: static;
        width: 100%;
        margin-left: 50%;
        margin-top: 5%;
    }
    .service-contents-container-content {
        position: static;
        width: auto;
        height: auto;
        padding-left: 12%;
        padding-top: 25px;
        padding-bottom: 25px;
        background: url(../images/s2-bg-css-sprite.png) no-repeat;
        text-align: left;
        border-bottom: 1px solid rgb(221, 221, 221);
    }
    .service-contents-container-content>h3 {
        line-height: 26px;
        font-size: 20px;
        margin-bottom: 15px;
    }
    .service-contents-container-content>p {
        line-height: 20px;
        font-size: 14px;
    }
    .service-contents-container-1 {
        background-position: 0 20px;
    }
    .service-contents-container-2 {
        background-position: 0 -105px;
    }
    .service-contents-container-3 {
        background-position: 0 -235px;
    }
    .service-contents-container-4 {
        background-position: 0 -380px;
    }
    .service-contents-container-5 {
        background-position: 0 -508px;
    }
    .service-contents-container-6 {
        background-position: 0 -620px;
    }
    .service-contents-container-7 {
        background-position: 0 -760px;
    }
    .service-contents-container-8 {
        background-position: 0 -945px;
    }
    /*留言板*/
    .message-feedback {
        background-image: none;
    }
    .message-feedback-container>h3 {
        color: rgb(51, 51, 51)
    }
    .service-form-box {
        width: 100%;
        margin: 15px auto;
    }
    .service-form-box>label {
        display: block;
        width: 100%;
        line-height: 30px;
        text-align: left;
        font-weight: normal;
        color: rgb(51, 51, 51)
    }
    .service-form-box>input {
        width: 98%;
        padding-left: 2%;
        background-color: rgb(242, 242, 242);
    }
    .service-form-box>textarea {
        max-width: 98%;
        min-width: 98%;
        padding-left: 2%;
        background-color: rgb(242, 242, 242);
    }
    /*WHO IS INFiLED*/
    .company-profile-container-left {
        float: left;
        width: 100%
    }
    .company-profile-container-left>img {
        width: 100%;
        height: auto;
    }
    .company-profile-container-right {
        float: left;
        width: 100%;
    }
    /*WHO IS INFiLED HAO*/
    .infiled-hao-container-1-left {
        width: 100%
    }
    .infiled-hao-container-1-left>img {
        width: 100%;
        height: auto;
    }
    .infiled-hao-container-1-right {
        width: 100%;
    }
    /*WHO IS INFiLED milestone*/
    .milestone-slick {
        margin: 60px auto !important;
    }
    /*Learn Other testimonials*/
    .testimonials-container-left {
        width: 100%;
    }
    .testimonials-container-left>img {
        width: 100%;
    }
    .testimonials-container-right {
        width: 100%;
        margin-left: 0;
    }
    /*certification*/
    .certification>h3 {
        top: 7%;
        line-height: 40px;
    }
    .certification>a {
        bottom: 3%
    }
    /*
	 * CONTACT
	 */
    .contact-nav {
        width: 100%;
        max-width: 500px;
        line-height: 50px;
        font-size: 16px;
    }
    .contact-nav-list>li {
        width: 49%;
        height: 100%;
        font-size: 18px;
    }
    .contact-nav-list>li+li {
        margin-left: 0;
    }
    .contact-nav-list>li {
        margin: 1px;
    }
    .contact-container-content>h3 {
        text-indent: 0 !important;
    }
    /*CONTACT list*/
    .contact-container-content-list {
        width: 93%;
        min-height: auto;
        max-height: auto;
        margin-left: 0;
        padding: 3.5%;
    }
    /*PRODUCTS Customized Solution*/
    .find-out-left,
    .find-out-right,
    .green-lantern-sign-left,
    .green-lantern-sign-right,
    .australian-open-left,
    .australian-open-right,
    .miss-hong-kong-left,
    .miss-hong-kong-right {
        width: 100%;
    }
    .find-out-left {
        padding: 20px 0;
    }
    .find-out-right-1 {
        margin-top: 20%
    }
    .find-out-right-3 {
        margin-bottom: 20%
    }
    /*一级产品页*/
    .list-prodcuts-container>a {
        width: 100%
    }
    .list-prodcuts-container-text {
        width: 100%
    }
    .list-prodcuts-container-second>a {
        width: 100%;
        text-align: center;
    }
    .list-products-container-second-text {
        width: 100%
    }
    .list-products-container-second-text-tx {
        overflow-x: auto
    }
    .list-products-container-second-btn {
        margin: 0 auto 20px
    }
    .list-prodcuts-container-second>a>img {
        width: 60%
    }
    /*Partner页*/
    .partner-banner>p {
        top: 45%;
        left: 30%;
        line-height: 25px;
        font-size: 18px
    }
    .partner-container-content>a {
        width: 50%;
        height: auto;
        margin: 15px 0
    }
    /*testimonials*/
    .testimonials-box-right {
        width: 73%;
        padding: 20px 5%;
        margin-left: 2%
    }
    /*Honor*/
    .honor-nav {
        width: 80%;
        height: 60px;
        line-height: 60px;
        margin-top: -62px;
    }
    .honor-container-list>li {
        width: 50%;
    }
    /*页脚*/
    .footer {
        height: auto;
    }
    dl {
        margin-left: 5%;
        width: 44%;
    }
    dt>h3 {
        height: auto;
        line-height: 30px;
        margin-bottom: 10px;
    }
    /*页脚logo及社交分享*/
    .share {
        float: left;
        width: 260px;
        height: 300px;
        text-align: left;
    }
    .social-share {
        margin: 0;
    }
    /*/*新闻详情页*/
    .news-box-content>.imgs {
        width: 90%
    }
    .news-box-content>.text {
        width: 90%
    }
}


/*最大宽度768px的样式 开始 */

@media only screen and (max-width: 767px) {
    /*首页评价信息*/
    .index-info {
        height: auto;
        margin-top: 22px;
        background-image: none;
    }
    .index-info>ul>li {
        float: none;
        width: 100%;
        clear: both;
        margin: 0 auto;
    }
    .index-info>ul>li:nth-child(1) {
        background: url(../images/serve_bg-1.jpg) no-repeat scroll center center/100% 100%;
    }
    .index-info>ul>li:nth-child(2) {
        background: url(../images/serve_bg-2.jpg) no-repeat scroll center center/100% 100%;
    }
    .index-info>ul>li:nth-child(3) {
        background: url(../images/serve_bg-3.jpg) no-repeat scroll center center/100% 100%;
    }
    .index-info>ul>li {
        border-width: 0;
        height: 420px;
        border-bottom: 1px solid rgb(97, 101, 105);
    }
    /*页脚*/
    .footer {
        height: auto;
    }
    dl {
        margin-left: 5%;
        width: 100%;
    }
    dt>h3 {
        height: auto;
        line-height: 30px;
        margin-bottom: 10px;
    }
    /*页脚logo及社交分享*/
    .share {
        float: left;
        width: 260px;
        height: 300px;
        text-align: left;
    }
    .social-share {
        margin: 0;
    }
    /*第三级产品详情页 轮播图*/
    .products-slick {
        height: auto;
    }
    .products-slick div {
        width: 100%;
        height: auto;
    }
    .products-slick img {
        width: 100%;
        height: auto;
    }
    /*
	 * 	新闻列表页
	 */
    .list-news-nav {
        width: 90%;
        height: 35px;
        line-height: 35px;
        margin-top: -37px
    }
    .list-news-nav>li {
        width: 32.555%
    }
    /*新闻列表*/
    .list-news-container {
        height: auto;
    }
    .list-news-container>.time {
        width: 20%;
		font-size: 12px;
    }
    .list-news-container>.time>span {
        margin-top: 0;
        font-size: 20px;
        line-height: 35px
    }
    .list-news-container>.desc {
        width: 79%;
        height: auto;
        margin-top: 25px;
        margin-bottom: 25px;
        background-color: #fff;
    }
    .list-news-container>.desc>img.pic {
        width: 100%;
        height: auto;
    }
    .list-news-container>.desc>.text {
        width: 100%;
    }
    .list-news-container>.desc>.text>h4 {
        margin: 15px 0;
        padding-left: 15px;
        font-size: 18px;
        line-height: 26px;
    }
    .list-news-container>.desc>.text>p {
        display: none;
    }
    .news-box>h4 {
        font-size: 18px
    }
    /*新闻页码*/
    .news-page-code {
        width: 100%;
		left: 78%;
    }
	.news-page{
		overflow: hidden;
	}
    /*一级案例列表页*/
    .list-case-container {
        width: 100%;
        margin-bottom: 20px;
    }
    .list-case-box>img {
        height: auto
    }
    /*案例详情页*/
    .case-box>h3 {
        margin: 10px auto 25px;
        height: auto;
        line-height: 24px;
        font-size: 18px
    }
    /*service服务页
	.service-contents-container-content{
		padding-left: 20%;
		background-position-x: -5px;
	}
	
	/*WHO IS INFiLED certification*/
    .certification>h3 {
        top: 3%;
    }
    .certification>a {
        bottom: 1%
    }
    /*一级产品页*/
    .list-prodcuts-container-second>a>img {
        width: 100%;
    }
    /*Partner页*/
    .partner-banner>p {
        top: 40%;
        left: 25%;
        line-height: 25px;
        font-size: 18px
    }
    .partner-container-content>a {
        width: 100%;
        height: auto;
        margin: 15px 0
    }
    /*Honor*/
    .honor-nav {
        width: 80%;
        height: auto;
        line-height: 40px;
        margin-top: 0;
        margin-bottom: 12px;
    }
    .honor-nav-list>li {
        width: 49%;
        height: 40px;
        margin: 1px
    }
    .honor-nav-list>li+li {
        margin-left: 0;
    }
    .honor-container-list>li {
        width: 100%
    }
}

.row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.row h3 {
    line-height: 44px;
    text-align: left;
    font-size: 40px;
    font-weight: normal;
    /* color: rgb(216, 35, 23); */
	color: #008fd7;
}

.fsz18 {
    font-size: 17px
}