@charset "utf-8";
/* CSS Document */

#main {
    padding: 0;
}
.banner {
    position: relative;
    height: 270px;
    text-align: right;
    color: #fff;
    overflow: hidden;
}
.banner .text-box {
    position: absolute;
    left: 0;
    top: 60%;
    z-index: 1;
    width: 100%;
    line-height: 1.5;
    transform: translate3d(0, -50%, 0);
    -webkit-transform: translate3d(0, -50%, 0);
}
.banner .text-box * {
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(4, 0, 0, 0.5);
    color: #fff;
    text-transform: uppercase;
    opacity: .3;
}
.banner .title {
    font-family: 'Arial';
    font-size: 36px;
    animation: bannerFadeInLeft .6s forwards ease-out;
    line-height: 44px;
}
.banner .info {
    font-size: 24px;
    animation: bannerFadeInLeft .6s forwards ease-out .5s;
    opacity: 0;
    -webkit-transform: translate3d(-60px, 0, 0);
}
.show-sub-banner .banner {
    display: block !important;
    visibility: visible;
}

@-webkit-keyframes bannerFadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-60px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0px, 0);
    }
}
@keyframes bannerFadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-60px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0px, 0);
    }
}

@-webkit-keyframes bannerFadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(60px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0px, 0);
    }
}
@keyframes bannerFadeInRight {
    from {
        opacity: 0;
        transform: translate3d(60px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0px, 0);
    }
}

.slider-box {
    text-align: center;
}
.slider-box span {
    position: relative;
    display: inline-block;
    width: 14px;
    height: 14px;
    margin: 0 5px;
    border-radius: 7px;
    background: rgba(245, 245, 245, .6);
    cursor: pointer;
    transition: all .3s;
}
.slider-box span.active {
    width: 34px;
    background: #48aed5 !important;
}
.slider-container .arrow-btn {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    margin-top: -40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    transition: background .3s;
    overflow: hidden;
}
.slider-container .arrow-btn:before,
.slider-container .arrow-btn:after {
    display: block;
}
.slider-container .arrow-btn:before {
    color: #999;
    transition: margin .3s;
}
.slider-container .arrow-btn:after {
    color: #fff;
}
.slider-container .prev-btn {
    left: -60px;
}
.slider-container .prev-btn:after {
    content: '\e609';
}
.slider-container .next-btn {
    right: -60px;
}
.slider-container .next-btn:after {
    content: '\e608';
}
.slider-container .arrow-btn:hover {
    background: #48aed5;
}
.slider-container .arrow-btn:hover:before {
    margin-top: -40px;
}

.sub-head-box {
    border-bottom: 1px solid #e1e1e1;
    font-size: 13px;
    line-height: 24px;
}
.sub-head-box .container {
    height: 100%;
}
.sub-nav .mobile-show {
    position: relative;
    display: block;
    height: 100%;
    padding: 0 10px;
    background: #48aed5;
    font-size: 16px;
    line-height: 45px;
    color: #fff;
    cursor: pointer;
}
.sub-nav .mobile-show:before {
    position: absolute;
    top: 7px;
    right: 10px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-family: 'iconfont';
    content: '\e608';
    transform: rotate(90deg);
    transition: transform .36s ease-out 0s;
}
.sub-nav.mobile-active .mobile-show:before {
    transform: rotate(270deg);
}
.sub-nav .list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
}
.sub-nav a {
    display: block;
    transition: all .3s;
}
.sub-nav dl {
    position: relative;
    z-index: 2;
    display: inline-block;
    height: 100%;
}
.sub-nav dt a {
    position: relative;
    padding: 0 15px;
    line-height: 56px;
    color: #555;
    font-weight: 700;
}
.sub-nav dt a:before {
    position: absolute;
    left: 15px;
    bottom: -1px;
    right: 15px;
    border-top: 2px solid #48aed5;
    transform: scaleX(0);
    transform-origin: 100% 50% 0;
    transition: transform .4s;
    content: '';
}
.sub-nav dl:hover dt a,
.sub-nav dl.active dt a {
    color: #000;
}
.sub-nav dl:hover dt a:before,
.sub-nav dl.active dt a:before {
    transform: scaleX(1);
    transform-origin: 0 50% 0;
}
.sub-nav dd {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 5;
    width: 220px;
    margin-top: 1px;
    background: #fefefe;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    opacity: 0;
    text-align: left;
    visibility: hidden;
    transition: opacity .3s, visibility 0s ease .2s;
}
.sub-nav dl:hover dd {
    visibility: visible;
    opacity: 1;
    transition: opacity .3s, visibility 0s ease 0s;
}
.sub-nav dd a {
    height: 48px;
    padding: 0 25px;
    line-height: 48px;
    color: #666;
    overflow: hidden;
}
.sub-nav dd a:hover,
.sub-nav dd a.active {
    background: #ffece1;
}

.position-box {
    position: absolute;
    top: 13px;
    left: 10px;
    font-size: 12px;
    line-height: 30px;
}
.position-box label,
.position-box a {
    color: #888;
}
.position-box a {
    position: relative;
    margin-right: 5px;
}
.position-box span {
	font-family: '宋体';
	margin-right: 5px;
	color: #999;
}
.position-box a:hover {
    color: #48aed5;
}
.position-box a.last {
    margin-right: 0;
    color: #48aed5;
}

.column-description {
    padding-top: 30px;
    padding-bottom: 30px;
    background: #f8f8f8;
    line-height: 30px;
}
.column-description p {
    text-indent: 2em;
    font-size: 14px;
    color: #666;
}

.page-btn {
    padding: 40px 0 60px;
    text-align: center;
}
.page-btn * {
    position: relative;
    display: inline-block;
    width: 36px;
    margin: 0 2px;
    line-height: 36px;
    transition: all .3s ease 0s;
}
.page-btn .num {
    font-family: 'Arial';
    font-size: 12px;
    color: #a9a9a9;
}
.page-btn .num:hover,
.page-btn span.num {
    background: #6b6b6b;
    color: #fff;
}
.page-btn .iconfont {
    color: #8e8e8e;
}
.page-btn .iconfont:before {
    font-size: 18px;
    transition: all 0s;
}
.page-btn a.iconfont:hover {
    color: #1b1b1b;
}
.page-btn span.iconfont {
    visibility: hidden;
}

.article-page-btn {
    padding: 20px 0;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
}
.article-page-btn.no-bb {
    border-bottom: none;
}
.article-page-btn a {
    display: inline-block;
    padding: 0 20px;
    border: 1px solid #ececec;
    border-radius: 21px;
    font-size: 14px;
    line-height: 40px;
    color: #848484;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all .36s;
}
.article-page-btn a.prev-btn {
    float: left;
    max-width: 42%;
}
.article-page-btn a.next-btn {
    float: right;
    max-width: 42%;
}
.article-page-btn .column {
    display: block;
    width: 100px;
    margin: auto;
    text-align: center;
}
.article-page-btn a.nodata {
    border-color: #e4eaec !important;
    color: #ccd5db !important;
    cursor: default;
}
.article-page-btn a:hover {
    border-color: #48aed5;
    color: #48aed5;
}

.aside-data > .label-box {
    position: relative;
    z-index: 1;
    padding: 20px 0;
}
.aside-data > .label-box a {
    display: inline-block;
    margin-right: 8px;
    padding: 0 16px;
    background: #f3f3f3;
    line-height: 30px;
    color: #aaa;
    transition: all .3s;
}
.aside-data > .label-box a:hover {
    background: #48aed5;
    color: #fff;
}

.article-data > .header {
    padding: 0 0 20px;
    border-bottom: 1px solid #e1e1e1;
    text-align: center;
}
.article-data > .header .title {
    padding-bottom: 15px;
    font-size: 24px;
    color: #333;
    font-weight: 400;
    line-height: 1.3;
}
.article-data > .header .info {
    font-size: 12px;
    color: #848484;
    font-family: 'Tahoma';
    line-height: 1;
}
.article-data > .header .iconfont {
    font-size: 12px;
}
.article-data > .header .iconfont:before {
    position: relative;
    top: 2px;
    padding-right: 2px;
    font-size: 18px;
}
.article-data > .thumb {
    padding-top: 30px;
}
.article-data > .thumb img {
    display: block;
    max-width: 100%;
    margin: auto;
}
.article-data > .content {
    line-height: 30px;
    color: #666;
}
.article-data > .content img {
    margin-bottom: 10px;
}
.article-data > .content table{
  width: 100%;
  border-collapse: collapse;
  line-height: 40px;
  vertical-align: middle;
  text-align: center;
}


/***** 方案列表 *****/
.plan-list-body .list .pic-box {
    position: relative;
    border: 1px solid #eee;
}
.plan-list-body .list .pic-box:before {
    display: block;
    padding-bottom: 66.66%;
    content: '';
}
.plan-list-body .list .pic-box .whole-pic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #fff;
}
.plan-list-body .list .cont {
    position: relative;
    padding: 24px 70px 24px 0;
    border-bottom: 1px solid #eee;
    line-height: 1;
    transition: border .36s;
}
.plan-list-body .list .title {
    position: relative;
    left: 0;
    padding-bottom: 12px;
    font-size: 16px;
    color: #333;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: left .36s;
}
.plan-list-body .list .info {
    position: relative;
    left: 0;
    font-size: 14px;
    color: #888;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: left .36s;
}
.plan-list-body .list .icon {
    position: absolute;
    right: 0;
    top: 50%;
    width: 40px;
    height: 20px;
    margin-top: -10px;
    border-left: 1px solid rgba(205, 205, 205, 0);
    overflow: hidden;
    transition: border .36s;
}
.plan-list-body .list .icon i {
    position: relative;
    left: -40px;
    display: block;
    width: 80px;
    font-style: normal;
    transition: left .36s;
}
.plan-list-body .list .icon i:after,
.plan-list-body .list .icon i:before {
    float: left;
    width: 40px;
    line-height: 20px;
    font-family: 'iconfont';
    content: '\e619';
    color: #d3d3d3;
    font-size: 17px;
}
.plan-list-body .list a:hover .cont {
    border-color: #888;
}
.plan-list-body .list a:hover .icon {
    border-color: #cdcdcd;
}
.plan-list-body .list a:hover .icon i {
    left: 22px;
}
.plan-list-body .list a:hover img {
    transform: scale(1.08, 1.08);
}
.plan-list-body .list a:hover .title,
.plan-list-body .list a:hover .info {
    left: 20px;
}


/****** 产品列表 ******/
.product-list-body {
    background: #f8f8f8;
}
.product-list-body .type-container {
    padding: 20px 0;
    background: #fff;
}
.product-list-body .type-container dl {
    position: relative;
    height: 64px;
    margin-top: 20px;
    padding-left: 75px;
    padding-right: 115px;
    overflow: hidden;
    transition: height .36s;
}
.product-list-body .type-container dl:not(:last-child) {
    border-bottom: 1px solid #eee;
}
.product-list-body .type-container dt {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 14px;
    color: #aaa;
    line-height: 44px;
}
.product-list-body .type-container dt:after {
    content: '：';
}
.product-list-body .type-container dd {
    float: left;
    width: 125px;
    height: 44px;
    margin: 0 40px 20px 0;
}
.product-list-body .type-container dd a {
    display: block;
    height: 100%;
    border: 1px solid #eee;
    text-align: center;
    line-height: 42px;
    color: #333;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all .3s;
}
.product-list-body .type-container dd a:hover,
.product-list-body .type-container dd a.active {
    color: #48aed5;
    border-color: #48aed5;
}
.product-list-body .type-container .more-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 88px;
    height: 44px;
    border: 1px solid #eee;
    color: #666;
    line-height: 42px;
    text-align: center;
}
.product-list-body .type-container .more-btn:after {
    display: inline-block;
    margin-left: 5px;
    font-family: 'iconfont';
    content: '\ebf9';
    transition: transform .36s;
}
.product-list-body .type-container .more-btn.max:after {
    transform: rotate(180deg);
}
.aside-data.product-list-body .list {
    margin-top: -40px;
}
.product-list-body .list {
    margin-right: -20px;
}
.product-list-body .list li {
    float: left;
    width: 25%;
    padding: 40px 20px 0 0;
}
.product-list-body .list a {
    position: relative;
    display: block;
    background: #fff;
}
.product-list-body .list a:after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: #48aed5;
    transform: scaleX(0);
    content: '';
    transform-origin: 100% 50%;
    transition: transform .3s;
}
.product-list-body .list .whole-pic {
    padding-bottom: 100%;
    border-bottom: 1px solid #f5f5f5;
}
.product-list-body .list .label-list {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}
.product-list-body .list .icon-list {
    position: absolute;
    top: 12px;
    right: 20px;
    z-index: 2;
}
.product-list-body .list .icon-list .icon {
    float: right;
    width: 24px;
    height: 24px;
    margin-left: 10px;
    background: url(../img/icon.png) 0 -50px no-repeat;
}
.product-list-body .list .icon-list .icon.icon3 {
    background-position-x: -25px;
}
.product-list-body .list .icon-list .icon.icon4 {
    background-position-x: -50px;
}
.product-list-body .list .label-list label {
    float: left;
    /*width: 60px;*/
	padding: 0 10px;
    height: 24px;
    margin-left: 20px;
    background: #48aed5;
    color: #fff;
    text-align: center;
    line-height: 24px;
}
.product-list-body .list .cont {
    padding: 18px 20px 30px;
}
.product-list-body .list .title {
    font-size: 16px;
    color: #333;
    font-weight: 400;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color .3s;
}
.product-list-body .list .info {
    height: 72px;
    margin: 10px 0 15px;
    line-height: 24px;
    color: #666;
    display: -webkit-box;
    /*-webkit-box-orient: vertical;*/
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.product-list-body .list .more-btn {
    width: 100px;
    height: 36px;
    line-height: 36px;
}
.product-list-body .list .more-btn:after {
    background: #f8f8f8;
}
.product-list-body .list a:hover {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}
.product-list-body .list a:hover .img {
    transform: scale(1.05);
}
.product-list-body .list a:hover .title {
    color: #48aed5;
}
.product-list-body .list a:hover .more-btn {
    color: #fff;
}
.product-list-body .list a:hover .more-btn:before {
    transform: scaleX(1);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.product-list-body .list a:hover:after {
    transform: scaleX(1);
    transform-origin: 0 50%;
}
.product-list-body .list .more-btn {
    position: relative;
    z-index: 3;
    display: block;
    font-family: 'Arial';
    text-align: center;
    color: #666;
    font-size: 13px;
    transition: color .5s;
    text-transform: uppercase;
}
.product-list-body .list .more-btn:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #48aed5;
    content: '';
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition-property: transform;
    transition-duration: 0.5s;
    transition-timing-function: ease-out;
}
.product-list-body .list .more-btn:hover {
    color: #fff;
}
.product-list-body .list .more-btn:hover:before {
    transform: scaleX(1);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.product-list-body .list .more-btn:after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    content: '';
}
.product-list-body .list .more-btn.block-btn {
    width: 200px;
    height: 44px;
    margin: 50px auto 100px;
    line-height: 44px;
}
.product-list-body .list .more-btn.block-btn:after {
    border: 1px solid #d1d1d1;
}


/****** 产品详情 ******/
.product-body {
    background: #fff;
}
.product-body .product-head {
    padding-top: 100px;
}
.product-body .product-thumb {
    float: left;
    width: 400px;
}
.product-body .big-thumb {
    position: relative;
    border: 1px solid #eee;
    padding-bottom: 100%;
}
.product-body .big-thumb .product-swiper {
    position: absolute !important;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
}
.product-body .big-thumb .product-swiper .big-pic-list {
    height: 100%;
}
.product-body .big-thumb .iconfont {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    background: rgba(0, 0, 0, .2);
    line-height: 50px;
    text-align: center;
    font-size: 20px;
    color: #fff;
    transition: background .36s ease-out 0s;
}
.product-body .big-thumb .iconfont:hover {
    background: rgba(234, 85, 4, .8);
}
.product-body .big-thumb .product-arrow-left {
    left: 0;
}
.product-body .big-thumb .product-arrow-right {
    right: 0;
}
.product-body .big-thumb li {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.product-body .big-thumb li a {
    display: block;
    height: 100%;
}
.product-body .thumb-list {
    max-width: 100%;
    margin: auto;
    padding: 10px 0 0;
    text-align: center;
    overflow: hidden;
}
.product-body .thumb-list dd {
    position: relative;
    margin: auto;
    transition: left .4s ease-out 0s;
}
.product-body .thumb-list span {
    float: left;
    display: inline-block;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    border: 1px solid #e1e1e1;
    border-radius: 0;
    opacity: 1;
    background-color: #b5b5b5;
    background-position: center center;
    background-size: cover;
    cursor: pointer;
}
.product-body .thumb-list .active {
    background-color: #305aa8;
    border-color: #48aed5;
}

.product-body .product-cont {
    margin-left: 460px;
}
.product-body .product-cont .title-box {
    position: relative;
    margin-bottom: 25px;
    padding-right: 100px;
}
.product-body .product-cont .title-box .icon-list {
    position: absolute;
    top: 12px;
    right: 0;
    z-index: 2;
}
.product-body .product-cont .title-box .icon-list .icon {
    float: right;
    width: 24px;
    height: 24px;
    margin-left: 10px;
    background: url(../img/icon.png) 0 -50px no-repeat;
}
.product-body .product-cont .title-box .icon-list .icon.icon3 {
    background-position-x: -25px;
}
.product-body .product-cont .title-box .icon-list .icon.icon4 {
    background-position-x: -50px;
}
.product-body .product-cont .title {
    font-size: 24px;
    color: #333;
    line-height: 36px;
    font-weight: 400;
}
.product-body .product-cont .sub-title {
    color: #48aed5;
}
.product-body .product-cont .info {
    /*max-height: 130px;*/
    padding-top: 25px;
    margin-bottom: 25px;
    border-top: 1px solid #eee;
    font-size: 14px;
    line-height: 26px;
    color: #848484;
    font-family: '微软雅黑';
    display: -webkit-box;
    -webkit-box-orient: vertical;
    /*-webkit-line-clamp: 4;*/
    overflow: hidden;
}
.product-body .product-cont .link-btn-box {
    padding-top: 10px;
}
.product-body .product-cont .btn {
    position: relative;
    display: inline-block;
    width: 120px;
    height: 40px;
    margin-right: 20px;
    background: #bbb;
    border-radius: 20px;
    text-align: center;
    font-size: 14px;
    line-height: 40px;
    color: #fff;
    overflow: hidden;
}
.product-body .product-cont .btn:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    content: '';
    transition: all .36s ease 0s;
}
.product-body .product-cont .btn.style1:before {
    background: #3f3a39;
}
.product-body .product-cont .btn.style2:before {
    background: #48aed5;
}
.product-body .product-cont .btn span {
    position: relative;
    z-index: 2;
}
.product-body .product-cont .btn:hover:before {
    width: 100%;
}
.product-body .tab-head {
    margin-top: 40px;
    background: #a7a7a7;
}
.product-body .tab-head a {
    position: relative;
    z-index: 2;
    float: left;
    min-width: 100px;
    padding: 0 60px;
    font-size: 14px;
    line-height: 45px;
    color: #fff;
    text-align: center;
}
.product-body .tab-head a:after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #48aed5;
    content: '';
    transform: scaleX(0);
    transform-origin: 100% 50% 0;
    transition: transform .3s;
}
.product-body .tab-head a:hover:after,
.product-body .tab-head a.active:after {
    transform-origin: 0 50% 0;
    transform: scaleX(1);
}
.product-body .tab-content > article {
    display: none;
    padding: 20px 0 30px;
    font-size: 14px;
    line-height: 30px;
    color: #666;
}
.product-body .tab-content > article .content-head {
    display: none;
}
.product-body .tab-content > article:first-child {
    display: block;
}
.product-body .tab-content > .content img {
    margin-bottom: 0px;
    border: 0;
    vertical-align: middle;
}



/***** 案例列表 *****/
.case-list-body .list li {
    float: left;
    width: 33.33% !important;
    padding: 40px 35px 0 0;
}
.case-list-body .list .whole-pic {
    padding-bottom: 66.66%;
    background: #f8f8f8;
}
.case-list-body .list .cont {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding-bottom: 45px;
    opacity: 0;
    background: rgba(0, 0, 0, .5);
    transition: opacity .3s;
    color: #fff;
}
.case-list-body .list .cont:after {
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 20px;
    right: 20px;
    border: 1px solid rgba(255, 255, 255, .5);
    content: '';
    pointer-events: none;
}
.case-list-body .list .cont p {
    transform: translate3d(0, 100%, 0);
    transition: transform .5s;
}
.case-list-body .list .cont .sub-title {
    font-size: 16px;
}
.case-list-body .list .cont .info {
    width: 80%;
    line-height: 20px;
}
.case-list-body .list .icon {
    position: absolute;
    top: 33px;
    left: 1px;
    z-index: 2;
    width: 39px;
    height: 39px;
    opacity: 0;
    background: rgba(0, 0, 0, .5);
    transform: translate3d(0, -40px, 0);
    transition: all .5s;
}
.case-list-body .list .icon:before {
    position: absolute;
    top: 11px;
    left: 19px;
    height: 17px;
    border-left: 1px solid #fff;
    content: '';
}
.case-list-body .list .icon:after {
    position: absolute;
    top: 19px;
    left: 11px;
    width: 17px;
    border-top: 1px solid #fff;
    content: '';
}
.case-list-body .list .info {
    font-size: 14px;
    line-height: 24px;
}
.case-list-body .list a:hover .cont {
    opacity: 1;
}
.case-list-body .list a:hover .cont p {
    transform: translate3d(0, 0, 0);
}
.case-list-body .list a:hover .img {
    transform: scale(1.05);
}
.case-list-body .list a:hover .icon {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}


/***** 单页详情 *****/
.single-body {
    padding-top: 35px;
    padding-bottom: 55px;
}
.single-body .thumb {
    padding: 5px 0 25px;
}
.single-body .thumb img {
    display: block;
    max-width: 100%;
    margin: auto;
}
.single-body .content {
    font-size: 14px;
    line-height: 30px;
    color: #666;
}


/***** 视频列表 *****/
.data-list-body .list {
    margin-right: -40px;
}
.aside-data.data-list-body .list {
    margin-top: -40px;
}
.data-list-body .list li {
    float: left;
    width: 33.33%;
    padding: 40px 40px 0 0;
}
.data-list-body .list a {
    position: relative;
    display: block;
    background: #fff;
    transition: none;
}
.data-list-body .list a > .title {
    padding: 24px 20px 0;
    font-weight: 400;
    text-align: center;
    font-size: 16px;
    line-height: 1;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 400;
    transition: all .35s;
    color: #333;
}
.data-list-body .list a:hover > .title {
    color: #48aed5;
}
.video-list-body .list .pic-box {
    position: relative;
    overflow: hidden;
}
.video-list-body .list .pic-box:before {
    position: absolute;
    top: 20px;
    left: 20px;
    bottom: 20px;
    right: 20px;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, .5);
    opacity: 0;
    content: '';
    transition: opacity .3s;
}
.video-list-body .list .pic-box:after {
    display: block;
    padding-bottom: 67%;
    content: '';
}
.video-list-body .list .whole-pic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.video-list-body .list .whole-pic:after {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    content: '';
    transition: all .36s ease;
}
.video-list-body .list .img {
    background-size: cover;
}
.video-list-body .list .icon {
    position: absolute;
    top: 50%;
    left: 39%;
    right: 39%;
    z-index: 2;
    transform: translate3d(0, -50%, 0);
    border: 3px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
}
.video-list-body .list .icon:before {
    display: block;
    padding-bottom: 100%;
    content: '';
}
.video-list-body .list .icon:after {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    content: '';
    transition: all .35s;
}
.video-list-body .list .icon i {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-style: normal;
}
.video-list-body .list .icon i:after {
    position: relative;
    left: 2px;
    font-family: 'iconfont';
    line-height: 50px;
    text-align: center;
    font-size: 40px;
    color: #fefefe;
    content: '\e65a';
}
.video-list-body .list a:hover .whole-pic:after {
    opacity: .4;
}
.video-list-body .list a:hover .pic-box:before {
    opacity: 1;
}
.video-list-body .list a:hover .img {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
}
.video-list-body .list a:hover .icon {
    border-color: rgba(255,255,255,.8);
}
.video-list-body .list a:hover .icon:after {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    border-color: rgba(255,255,255,.8);
}


/****** 案例详情 ******/
.case-body .section-block {
    padding: 40px 0;
    line-height: 30px;
    color: #666;
}
.case-body .section-block:nth-child(2n+1) {
    background: #f8f8f8
}
.case-body .content-container > * {
    width: 50%;
    float: left;
}
.case-body .content-container .right-box img {
    display: block;
    width: 100%;
}
.case-body .content-container .left-box {
    padding-right: 40px;
}
.case-body .content-container .title {
    border-bottom: 1px solid #e1e1e1;
    font-size: 24px;
    color: #333;
    font-weight: 400;
    line-height: 64px;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.case-body .content-container .list {
    padding: 30px 0 35px;
}
.case-body .content-container .list dl {
    padding-right: 60px;
}
.case-body .content-container .list dt {
    color: #999;
}
.case-body .content-container .list dd {
    font-size: 20px;
    color: #333;
}

.article-body-tab {
    position: fixed;
    left: 0;
    width: 100%;
    height: 0;
    z-index: 9;
    text-align: right;
}
.article-body-tab .container {
    height: 0;
}
.article-body-tab a {
    display: inline-block;
    position: relative;
    padding: 0 15px;
    line-height: 56px;
    color: #555;
    font-weight: 700;
}
.article-body-tab a:before {
    position: absolute;
    left: 15px;
    bottom: -1px;
    right: 15px;
    border-top: 2px solid #48aed5;
    transform: scaleX(0);
    transform-origin: 100% 50% 0;
    transition: transform .4s;
    content: '';
}
.article-body-tab a:hover,
.article-body-tab a.active {
    color: #000;
}
.article-body-tab a:hover:before,
.article-body-tab a.active:before {
    transform: scaleX(1);
    transform-origin: 0 50% 0;
}


/****** 资质列表 ******/
.aptitude-list-body .pic-box {
    position: relative;
    padding-bottom: 100%;
    border: 1px solid #eee;
    overflow: hidden;
}
.aptitude-list-body .pic-box .icon {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translate3d(0, -50%, 0);
    transition: all .3s;
}
.aptitude-list-body .pic-box .icon:before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    background: rgba(0, 0, 0, .67);
    border-radius: 5px;
    color: #fff;
    line-height: 40px;
    text-align: center;
    font-family: 'iconfont';
    font-size: 24px;
    content: '\e602';
}
.aptitude-list-body .pic-box:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    content: '';
    transition: opacity .3s;
}
.aptitude-list-body .whole-pic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #fff;
}
.aptitude-list-body .whole-pic:before {
    position: absolute;
    top: 20px;
    left: 20px;
    bottom: 20px;
    right: 20px;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, .5);
    transform: scale(1.2);
    opacity: 0;
    content: '';
    transition: all .3s;
}
.aptitude-list-body .list .title {
    transition: all .3s;
}
.aptitude-list-body .list a:hover .pic-box:after {
    opacity: 1;
}
.aptitude-list-body .list a:hover .whole-pic:before {
    transform: scale(1);
    opacity: 1;
}
.aptitude-list-body .list a:hover .pic-box .icon {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}
.aptitude-list-body .list a:hover .title {
    transform: translate3d(0, -10px, 0);
}


/****** 网站地图 ******/
.sitemap-body .list {
    padding-top: 30px;
    padding-bottom: 50px;
}
.sitemap-body .list li {
    padding: 10px;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    line-height: 30px;
    text-align: center;
}
.sitemap-body .list li:last-child {
    border: none;
}
.sitemap-body .list li:after {
    display: block;
    clear: both;
    content: '';
}
.sitemap-body .list .topclass {
    float: left;
    width: 120px;
    height: 30px;
    background: #48aed5;
    color: #fff;
    -webkit-transition: background .3s ease-out;
    transition: background .3s ease-out;
}
.sitemap-body .list .topclass:hover {
    background: #58c78d;
}
.sitemap-body .list .box {
    margin-left: 130px;
}
.sitemap-body .list dl {
    float: left;
}
.sitemap-body .list dt {
    position: relative;
}
.sitemap-body .list dt:after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 0;
    height: 16px;
    margin-top: -8px;
    border-left: 1px solid #e5e5e5;
    content: '';
}
.sitemap-body .list dt a {
    color: #089549;
}
.sitemap-body .list dt a:hover {
    color: #48aed5;
}
.sitemap-body .list dt,
.sitemap-body .list dd {
    padding: 0 15px;
}
.sitemap-body .list li dl:last-child dt:after {
    display: none;
}
.sitemap-body .list li dd {
    font-size: 12px;
    line-height: 26px;
}


/******* 新闻列表 *******/
.news-list-body .list .box {
    padding: 40px 0;
    border-bottom: 1px solid #e1e1e1;
}
.news-list-body .list .pic {
    float: right;
    width: 225px;
}
.news-list-body .list .pic:before {
    display: block;
    padding-bottom: 66.666%;
    content: '';
}
.news-list-body .list .time-box {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    float: left;
    width: 150px;
    height: 150px;
    border: 5px solid #eee;
    font-family: "HELVETICANEUELTPRO-THEX", "微软雅黑";
    font-size: 36px;
    line-height: 1;
}
.news-list-body .list .time-box:after {
    position: absolute;
    top: 23px;
    left: 100%;
    width: 0;
    opacity: 0;
    margin-left: -25px;
    border-top: 5px solid #48aed5;
    content: '';
    transition: all 0.3s ease-out 0s;
}
.news-list-body .list .time-box .years {
    font-size: 18px;
    color: #adadad;
}
.news-list-body .list .time-box .time {
    color: #999;
}
.news-list-body .list .cont {
    position: relative;
    left: 0;
	width: calc(100% - 475px);
    flex: 1;
    padding: 17px 60px 0 40px;
}
.news-list-body .list .cont .title {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-list-body .list .cont .info {
    position: relative;
    max-height: 48px;
    margin: 15px 0px;
    font-size: 14px;
    color: #666;
    line-height: 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.news-list-body .list .cont .tag-box {
    position: relative;
    font-size: 14px;
    color: #444;
}
.news-list-body .list .cont .tag-box a {
    margin-left: 8px;
    color: #666;
}
.news-list-body .list .cont {
    transition: left .36s;
}
.news-list-body .list li .box,
.news-list-body .list .time-box {
    transition: border .36s;
}
.news-list-body .list .time-box .years,
.news-list-body .list .time-box .time,
.news-list-body .list .cont .title,
.news-list-body .list .cont .tag-box a {
    transition: color .36s;
}
.news-list-body .list .box:hover,
.news-list-body .list .box:hover .time-box {
    border-color: #48aed5;
}
.news-list-body .list .box:hover .time-box .years,
.news-list-body .list .box:hover .time-box .time,
.news-list-body .list .box:hover .cont .title,
.news-list-body .list .cont .tag-box a:hover  {
    color: #48aed5;
}
.news-list-body .list .box:hover .cont {
    left: 10px;
}
.news-list-body .list .box:hover .img {
    transform: scale(1.05);
}
.news-list-body .list .box:hover .time-box:after {
    width: 55px;
    opacity: 1;
}


/******* 新闻详情 *******/
.new {
    background: #f8f8f8;
}
.new-body {
    margin-top: 40px;
    margin-bottom: 60px;
    margin-left: -30px;
    margin-right: -30px;
    padding: 40px 30px;
    background: #fff;
}
.new-body > .article-data > article.content {
    padding: 25px 0;
}


/****** 下载列表 ******/
.download-list-body {
    padding-top: 25px;
}
.download-list-body .list li {
    position: relative;
    padding: 8px 130px 8px 2px;
    border-bottom: 1px solid #dfdfdf;
    line-height: 30px;
    font-size: 14px;
}
.download-list-body .list li a.title {
    position: relative;
    float: left;
    max-width: 100%;
    height: 30px;
    padding-left: 15px;
    color: #444;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.download-list-body .list li a.title:before {
    position: absolute;
    top: 13px;
    left: 0;
    width: 4px;
    height: 4px;
    background: #444;
    content: '';
}
.download-list-body .list li a.title:hover {
    color: #48aed5;
}
.download-list-body .list li a.title:hover:before {
    background: #48aed5;
}
.download-list-body .list li .time {
    position: absolute;
    top: 8px;
    right: 40px;
    color: #999;
}
.download-list-body .list li .btn {
    position: absolute;
    right: 0;
    top: 8px;
    color: #666;
}
.download-list-body .list li .btn:before {
    font-size: 22px;
    transition: all 0s;
    -webkit-transition: all 0s;
}
.download-list-body .list li .btn:hover {
    color: #48aed5;
}


/******* 下载详情 *******/
.download-body {
    padding-bottom: 60px;
}
.download-body .download-content .header {
    position: relative;
    margin-top: 35px;
    padding-bottom: 25px;
}
.download-body .download-content .header .title {
    margin-bottom: 5px;
    font-size: 24px;
    font-weight: 400;
    color: #333;
}
.download-body .download-content .header .info-container {
    font-size: 14px;
    line-height: 30px;
    color: #999;
}
.download-body .download-content .header .btn {
    position: absolute;
    right: 0;
    top: 0;
    color: #666;
    font-size: 26px;
    transition: color .3s;
}
.download-body .download-content .header .btn:hover {
    color: #48aed5;
}
.download-body .download-content .txt-container {
    padding: 25px 0 35px;
    border-top: 1px solid #e9e9f1;
    font-size: 14px;
    line-height: 24px;
    color: #666
}


/*招聘列表*/
.job-list-body .section-block {
    padding-top: 40px;
    padding-bottom: 60px;
}
.job-list-body .section-title {
    font-size: 24px;
    color: #444;
    text-align: center;
    font-weight: 400;
    line-height: 1;
}
.job-list-body .section-info {
    margin-bottom: 30px;
    padding-top: 14px;
    font-size: 13px;
    color: #48aed5;
    text-align: center;
    line-height: 1;
}
.job-list-body .article-block .content-box {
    display: table;
}
.job-list-body .article-block .left-box {
    display: table-cell;
    width: 230px;
    padding: 45px 0 40px;
    background: #48aed5;
    font-size: 18px;
    line-height: 32px;
    color: #fff;
    text-align: center;
    vertical-align: middle;
}
.job-list-body .article-block .left-box:after {
    position: relative;
    top: 15px;
    display: block;
    width: 24px;
    height: 24px;
    margin: auto;
    font-family: 'iconfont';
    content: '\e608';
    line-height: 24px;
    font-size: 18px;
    transform: rotate(90deg);
}
.job-list-body .article-block .left-box pre {
    position: relative;
    padding: 23px 0;
    font-family: 'Microsoft YaHei';
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    word-wrap: break-word;
}
.job-list-body .article-block .left-box pre:before,
.job-list-body .article-block .left-box pre:after {
    position: absolute;
    left: 50%;
    width: 30px;
    height: 0;
    margin-left: -15px;
    border-top: 1px solid #fff;
    content: '';
}
.job-list-body .article-block .left-box pre:before {
    top: 0;
}
.job-list-body .article-block .left-box pre:after {
    bottom: 0;
}
.job-list-body .article-block .right-box {
    display: table-cell;
    padding-left: 50px;
    font-size: 14px;
    line-height: 30px;
    color: #666;
}
.job-list-body .article-block .right-box p+p {
    margin-top: 30px;
}
.job-list-body .list-block {
    background: #f8f8f8;
}
.job-list-body .list-block .list {
    background: #fff;
}
.job-list-body .list-block dt {
    height: 50px;
    padding: 0 70px 0 30px;
    background: #9c9a9a;
    font-size: 16px;
    font-weight: 700;
    line-height: 50px;
    color: #fff;
}
.job-list-body .list-block dd {
    border-top: 3px solid #f8f8f8;
}
.job-list-body .list-block dd.active .head-box {
    background: #48aed5;
    color: #fff;
}
.job-list-body .list-block dd.active .head-box:before,
.job-list-body .list-block dd.active .head-box:after {
    background: #fff;
}
.job-list-body .list-block dd.active .head-box:after {
    transform: translateY(50px);
    -webkit-transform: translateY(50px);
    opacity: 0;
    visibility: hidden;
}
.job-list-body .list-block .head-box {
    position: relative;
    height: 50px;
    padding: 0 70px 0 30px;
    font-size: 15px;
    line-height: 50px;
    color: #666;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    cursor: pointer;
}
.job-list-body .list-block .head-box:before,
.job-list-body .list-block .head-box:after {
    position: absolute;
    background: #48aed5;
    content: '';
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
}
.job-list-body .list-block .head-box:before {
    top: 23px;
    right: 30px;
    width: 15px;
    height: 3px;
}
.job-list-body .list-block .head-box:after {
    top: 17px;
    right: 36px;
    width: 3px;
    height: 15px;
}
.job-list-body .list-block .head-box:hover {
    background: #48aed5;
    color: #fff;
}
.job-list-body .list-block .head-box:hover:before,
.job-list-body .list-block .head-box:hover:after {
    background: #fff;
}
.job-list-body .list-block .cont-box {
    height: 0;
    font-size: 14px;
    line-height: 30px;
    color: #666;
    overflow: hidden;
}
.job-list-body .list-block .cont-box .box {
    padding: 22px 30px 30px;
}
.job-list-body .list-block .name {
    float: left;
    width: 35%;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.job-list-body .list-block .number {
    float: left;
    width: 30%;
    text-align: center;
}
.job-list-body .list-block .time {
    float: left;
    width: 35%;
    text-align: center;
}
.job-list-body .pic-block .job-swiper {
    margin: 0 -18px;
}
.job-list-body .pic-block .pic-list li:nth-child(1) {
    position: relative !important;
    height: auto !important;
}
.job-list-body .pic-block .box {
    margin: 0 18px;
    background: #f8f8f8;
}
.job-list-body .pic-block .box:hover a {
    transform: scale(1.03);
    -webkit-transform: scale(1.03);
}
.job-list-body .pic-block .pic-box {
    position: relative;
    padding-bottom: 66.6%;
    overflow: hidden;
}
.job-list-body .pic-block .pic-box a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    transition: transform .5s ease-out;
    -webkit-transition: transform .5s ease-out;
}
.job-list-body .pic-block .title {
    position: relative;
    z-index: 1;
    padding: 0 20px;
    text-align: center;
    font-size: 16px;
    line-height: 60px;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color .35s;
}
.job-list-body .pic-block .title:before {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #48aed5;
    transition: transform .34s cubic-bezier(.4,0,.2,1);
    -webkit-transition: -webkit-transform .34s cubic-bezier(.4,0,.2,1);
    transform-origin: left 100%;
    -webkit-transform-origin: left 100%;
    transform: scaleY(0);
    -webkit-transform: scaleY(0);
    visibility:hidden\9;
    content: '';
}
.job-list-body .pic-block .box:hover .title {
    color: #fff;
}
.job-list-body .pic-block .box:hover .title:before {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
    transform-origin: left 0;
    -webkit-transform-origin: left 0;
    visibility: visible\9;
}
.job-list-body .pic-block .swiper-pagination {
    margin-top: 30px;
    line-height: 10px;
}


/*报价*/
.baojia-body .baojia-container {
    padding-bottom: 100px;
}
.baojia-body .service-header {
    padding: 50px 0;
    font-size: 24px;
    color: #333;
    line-height: 1;
    text-align: center;
}
.baojia-body .form-container {
    background: #f8f8f8;
}
.baojia-body .form-container .dn-baojia-box {
    position: relative;
    border-radius: 7px;
    width: 100%;
    background: #fff;
}
.baojia-body .form-container .dn-baojia-box:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 8px;
    margin-bottom: 0px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 0;
    background: linear-gradient(to right, #ffb527, #ff7c7c);
    content: '';
}
.baojia-body .form-container .dn-baojia-box .form-horizontal {
    width: 80%;
    font-size: 14px;
}
.baojia-body .form-container .dn-baojia-box .right {
    position: relative;
    width: 50%;
    padding: 50px 50px 30px;
}
.baojia-body .form-container .dn-baojia-box .right h3 {
    font-size: 20px;
    margin: 0;
    color: #333;
    line-height: 1.5;
    padding-bottom: 20px;
    font-weight: 400;
}
.baojia-body .form-container .dn-baojia-box .right h3 span {
    margin-left: 10px;
    color: #f29313;
    font-size: 13px;
}
.baojia-body .form-container .dn-baojia-box .design_system_01 {
    text-align: left;
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}
.baojia-body .form-container .dn-baojia-box .design_system_01 p {
    margin-bottom: 10px;
}
.baojia-body .form-container .dn-baojia-box .design_system_01 label {
    width: 33.33%;
    margin-bottom: 5px;
    white-space: nowrap;
    float: left;
    font-size: 14px;
    font-weight: normal;
    cursor: pointer;
}
.baojia-body .form-container .dn-baojia-box .left {
    padding: 50px 50px 30px 0;
}
.baojia-body .form-container .dn-baojia-box .left:after {
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    border-left: 1px solid #eee;
    content: '';
}
.baojia-body .form-container .dn-baojia-box .left h3 {
    font-weight: 400;
    font-size: 20px;
    margin: 0 0 10px 0;
    color: #333;
    line-height: 1.5;
    text-align: center;
}
.baojia-body .form-container .dn-baojia-box .form-group {
    margin: 0 0 15px 0;
    width: 100%;
    position: relative;
}
.baojia-body .form-container .dn-baojia-box .form-group:after {
    display: table;
    content: '';
    clear: both;
}
.baojia-body .form-container .dn-baojia-box .form-group .unit {
    position: absolute;
    right: 5px;
    top: 10px;
    width: 15px;
    color: #333;
    font-size: 14px;
}
.baojia-body .form-container .dn-baojia-box .form-group .bm-01 {
    color: #666;
}
.baojia-body .form-container .dn-baojia-box .form-group .dm-02 {
    position: relative;
    width: calc( (100% - 10px) / 2);
    height: 40px;
    float: left;
}
.baojia-body .form-container .dn-baojia-box .form-group .dm-03 {
    position: relative;
    width: 100%;
    height: 80px;
    float: left;
    margin: 10px 0 0 0;
}
.baojia-body .form-container .dn-baojia-box .form-group .dm-02:first-child {
    margin: 0 10px 0 0;
}
.baojia-body .form-container .dn-baojia-box .form-control {
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    width: 100%;
    float: left;
    border: 1px solid #e5e5e5;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    height: 40px;
    -webkit-transition: -webkit-box-shadow .25s linear,border .25s linear,color .25s linear,background-color .25s linear;
    -o-transition: box-shadow .25s linear,border .25s linear,color .25s linear,background-color .25s linear;
    transition: box-shadow .25s linear,border .25s linear,color .25s linear,background-color .25s linear;
}
.baojia-body .form-container .dn-baojia-box .form-neirong {
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    width: 100%;
    float: left;
    border: 1px solid #e5e5e5;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    height: 80px;
    -webkit-transition: -webkit-box-shadow .25s linear,border .25s linear,color .25s linear,background-color .25s linear;
    -o-transition: box-shadow .25s linear,border .25s linear,color .25s linear,background-color .25s linear;
    transition: box-shadow .25s linear,border .25s linear,color .25s linear,background-color .25s linear;
}
.baojia-body .form-container .dn-baojia-box .form-control:focus {
    border-color: #48aed5;
}
.baojia-body .form-container .dn-baojia-box select.form-control:focus {
    border-color: #e5e5e5;
}
.baojia-body .form-container .dn-baojia-box .input-group .form-control {
    width: 100%;
}
.baojia-body .form-container .dn-baojia-box .input-group-addon {
    padding: 0 12px;
    border-radius: 0;
    border: 1px solid #e5e5e5;
}
.baojia-body .form-container .dn-baojia-box .ico-line-btn {
    width: 140px;
    height: 140px;
    right: -71px;
    display: block;
    position: absolute;
    border: 1px solid #e2e2e2;
    border-radius: 50%;
    background: #fff;
    top: 150px;
    z-index: 2;
}
.baojia-body .form-container .dn-baojia-box .ico-line-btn:after {
    position: absolute;
    top: 50%;
    left: -5%;
    width: 110%;
    height: 36px;
    margin-top: -18px;
    background: #fff;
    content: '';
}
.baojia-body .form-container .dn-baojia-box .calc-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    border: none;
    display: block;
    width: 90px;
    height: 90px;
    background: #48aed5;
    border-radius: 50%;
    z-index: 4;
}
.baojia-body .form-container .dn-baojia-box .calc-btn em {
    display: block;
    font-size: 16px;
    color: #fff;
    width: 44px;
    height: 44px;
    margin: 23px auto 0;
    text-align: center;
    font-style: normal;
}
.baojia-body .form-container .dn-baojia-box .circle-animate {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 110px;
    height: 110px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #fdcc9a;
    z-index: 3;
    animation: scale-three2 1.5s ease infinite;
    animation-fill-mode: both;
}
.baojia-body .baojia-slider {
    text-align: center;
}
.baojia-body .baojia-slider li {
    padding: 0 45px;
}
.baojia-body .baojia-slider .list li:nth-child(1) {
    position: relative !important;
    height: auto !important;
}
.baojia-body .baojia-slider .title {
    margin: 45px 0 15px;
    font-size: 16px;
    color: #333;
    transition: color .3s;
}
.baojia-body .baojia-slider .info {
    height: 48px;
    font-size: 14px;
    color: #666;
    line-height: 24px;
    overflow: hidden;
}
.baojia-body .baojia-slider .icon {
    display: block;
    width: 95px;
    height: 95px;
    margin: 0 auto;
    overflow: hidden;
    font-size: 54px;
}
.baojia-body .baojia-slider .icon:after,
.baojia-body .baojia-slider .icon:before {
    display: block;
    height: 100%;
    border-radius: 50%;
    font-family: 'iconfont';
}
.baojia-body .baojia-slider .icon:before {
    border: 2px solid #48aed5;
    color: #48aed5;
    line-height: 90px;
    transition: margin .3s;
}
.baojia-body .baojia-slider .icon:after {
    background: #48aed5;
    color: #fff;
    line-height: 94px;
}
.baojia-body .baojia-slider .icon1:after,
.baojia-body .baojia-slider .icon1:before {
    content: '\e631';
}
.baojia-body .baojia-slider .icon2:after,
.baojia-body .baojia-slider .icon2:before {
    content: '\e63b';
}
.baojia-body .baojia-slider .icon3:after,
.baojia-body .baojia-slider .icon3:before {
    content: '\e6b9';
}
.baojia-body .baojia-slider li:hover .icon:before {
    margin-top: -95px;
}
.baojia-body .baojia-slider li:hover .title {
    color: #48aed5;
}
.baojia-body .shigong-container {
    background: #f8f8f8;
}
.baojia-body .shigong-container .shigong-swiper {
    margin: 0 -18px;
}
.baojia-body .shigong-container .pic-list li:nth-child(1) {
    position: relative !important;
    height: auto !important;
}
.baojia-body .shigong-container .box {
    margin: 0 18px;
    background: #f8f8f8;
}
.baojia-body .shigong-container .box:hover a {
    transform: scale(1.03);
    -webkit-transform: scale(1.03);
}
.baojia-body .shigong-container .pic-box {
    position: relative;
    padding-bottom: 66.6%;
    overflow: hidden;
}
.baojia-body .shigong-container .pic-box a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    transition: transform .5s ease-out;
    -webkit-transition: transform .5s ease-out;
}
.baojia-body .shigong-container .title {
    position: relative;
    z-index: 1;
    padding: 0 20px;
    text-align: center;
    font-size: 16px;
    line-height: 58px;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color .35s;
    background: #fff;
}
.baojia-body .shigong-container .title:before {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #48aed5;
    transition: transform .34s cubic-bezier(.4,0,.2,1);
    -webkit-transition: -webkit-transform .34s cubic-bezier(.4,0,.2,1);
    transform-origin: left 100%;
    -webkit-transform-origin: left 100%;
    transform: scaleY(0);
    -webkit-transform: scaleY(0);
    visibility:hidden\9;
    content: '';
}
.baojia-body .shigong-container .box:hover .title {
    color: #fff;
}
.baojia-body .shigong-container .box:hover .title:before {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
    transform-origin: left 0;
    -webkit-transform-origin: left 0;
    visibility: visible\9;
}
.baojia-body .shigong-container .swiper-pagination {
    margin-top: 30px;
    line-height: 10px;
}
.baojia-body .shigong-container .shigong-slider {
    margin: 0 -18px;
}
.baojia-body .shigong-container .swiper-pagination span {
    background: #e8e9eb;
}
.baojia-body .xuyao-container .list {
    margin-right: -20px;
}
.baojia-body .xuyao-container .list li {
    float: left;
    width: 25%;
    padding-right: 20px;
}
.baojia-body .xuyao-container .list .box {
    position: relative;
    padding-bottom: 59.6%;
    text-align: center;
}
.baojia-body .xuyao-container .list a {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #eee;
    overflow: hidden;
    transition: background .3s;
}
.baojia-body .xuyao-container .list a:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: url(../img/need-one-bg.png) center no-repeat;
    background-size: cover;
    content: '';
    pointer-events: none;
    transform: scale(1.2);
    transition: opacity .5s, transform 1s .1s;
    opacity: 0;
}
.baojia-body .xuyao-container .list .icon {
    font-size: 52px;
    color: #999;
    line-height: 1;
}
.baojia-body .xuyao-container .list .title {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
}
.baojia-body .xuyao-container .list .link {
    color: #666;
}
.baojia-body .xuyao-container .list a > * {
    transition: color .3s;
}
.baojia-body .xuyao-container .list a:hover > * {
    color: #fff;
}
.baojia-body .xuyao-container .list a:hover {
    background: #48aed5;
}
.baojia-body .xuyao-container .list a:hover:before {
    opacity: 1;
    transform: scale(1);
}



.aside-data.team-list-body .list {
    margin-top: -40px;
}
.team-list-body .list {
    margin-right: -40px;
}
.team-list-body .list li {
    float: left;
    width: 50%; 
    padding: 40px 40px 0 0;
}
.team-list-body .list a {
    position: relative;
    display: block;
    border: 1px solid #eff1f5;
}
.team-list-body .list a:hover {
    box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, 0.2);
}
.team-list-body .list .whole-pic {
    width: 250px;
}
.team-list-body .list .whole-pic:before {
    display: block;
    padding-bottom: 120%;
    background: #fff;
    content: '';
}
.team-list-body .list .cont-box {
    position: absolute;
    top: 0;
    left: 250px;
    right: 0;
    height: 100%;
    padding: 50px 50px 0;
    background: #eff1f5;
    transition: background .45s ease;
    overflow: hidden;
}
.team-list-body .list .cont-box .title {
    font-size: 16px;
    line-height: 30px;
    color: #333;
    transition: color .45s ease;
}
.team-list-body .list .cont-box .sub-title {
    font-size: 14px;
    line-height: 30px;
    color: #999;
    transition: color .45s ease;
}
.team-list-body .list .cont-box .info {
    position: relative;
    margin-top: 18px;
    padding-top: 7px;
    font-size: 14px;
    line-height: 24px;
    color: #666;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    transition: color .45s ease, padding .45s ease;
}
.team-list-body .list .cont-box .info:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    border-top: 1px solid #fff;
    transition: width .45s ease;
    content: '';
}
.team-list-body .list a:hover .whole-pic .img {
    transform: scale(1.08);
}
.team-list-body .list a:hover .cont-box {
    background: #48aed5;
}
.team-list-body .list a:hover .cont-box .info:before {
    width: 100%;
}
.team-list-body .list a:hover .cont-box * {
    color: #fff;
}
.team-list-body .list a:hover .cont-box .info {
    padding-top: 20px;
}
.team-body .team-pic {
    float: left;
    width: 400px;
}
.team-body .team-pic img {
    display: block;
    width: 100%;
}
.team-body .team-cont {
    margin-left: 450px;
    padding-top: 30px;
}
.team-body .team-cont > * {
    text-align: left;
}
.team-body .team-cont .header {
    padding: 0 0 30px;
    border-bottom: 1px solid #e1e1e1;
}
.team-body .team-cont .content {
    padding-top: 20px;
}



@media screen and (min-width: 900px) {
    .sub-nav .list {
        height: 56px !important;
		margin-right: -15px;
    }
    .sub-nav .list dd {
        height: auto !important;
    }
}
@media screen and (max-width: 899px) {
    .sub-head-box .container {
        padding: 0;
    }
    .sub-nav {
        position: relative;
        height: 45px;
    }
    .sub-nav .list {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 8;
        width: 100%;
        height: 0;
        padding-bottom: 0;
        background: #fff;
        text-align: left;
        overflow: hidden;
    }
    .sub-nav dl {
        display: block;
        height: auto;
    }
    .sub-nav a {
        height: 45px !important;
        border-bottom: 1px solid #eee;
        background: none !important;
        line-height: 44px !important;
        overflow: hidden;
    }
    .sub-nav dt a {
        padding: 0 40px;
    }
    .sub-nav dl:hover dt a,
    .sub-nav dl.active dt a,
    .sub-nav dd a.active,
    .sub-nav dd a:hover {
        color: #48aed5 !important;
    }
    .sub-nav dl dt a:before {
        display: none;
    }
    .sub-nav dd {
        position: relative;
        top: 0;
        width: 100%;
        height: 0;
        box-shadow: none;
        visibility: visible;
        opacity: 1;
        overflow: hidden;
    }
    .sub-nav dd a {
        padding: 0 60px;
    }
    .sub-nav dl.has-sub dt {
        position: relative;
    }
    .sub-nav dl.has-sub dt:before {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        width: 100%;
        height: 100%;
        content: '';
    }

    .article-data > .header {
        padding-top: 25px;
    }
    
    .article-page-btn a.next-btn > span,
    .article-page-btn a.prev-btn > span {
        display: none;
    }

    .plan-list-body .list li {
        width: 50%;
    }

    .product-body {
        padding-top: 20px;
    }
    .product-body .product-head {
        padding: 0;
    }
    .product-body .product-thumb {
        position: relative;
        float: none;
        width: 100%;
        border-left: none;
        border-right: none;
    }
    .product-body .aside-data li {
        width: 33.33%;
    }
    .product-body .big-thumb .iconfont {
        display: none;
    }
    .product-body .thumb-list {
        position: absolute;
        left: 0;
        bottom: 10px;
        z-index: 2;
        width: 100% !important;
    }
    .product-body .thumb-list dd {
        left: 0 !important;
        width: 100% !important;
    }
    .product-body .thumb-list span {
        float: none;
        width: 10px;
        height: 10px;
        margin: 0 3px;
        border-radius: 5px;
        background: rgba(222, 223, 226, .6) !important;
        border: none;
        transition: width .3s;
    }
    .product-body .thumb-list span.active {
        width: 22px;
        background: #48aed5 !important;
    }
    .product-body .product-cont {
        margin: 0;
    }
    .product-body .product-cont .info,
    .product-body .product-cont .title-box {
        padding-left: 10px;
        padding-right: 10px;
    }
    .product-body .product-cont .title {
        padding-top: 15px;
        padding-right: 80px;
        font-size: 20px;
        line-height: 30px;
    }
    .product-body .product-cont .title-box .icon-list {
        top: 20px;
    }
    .product-body .product-cont .info {
        max-height: auto;
        margin-bottom: 15px;
        padding-top: 15px;
        line-height: 22px;
    }
    .product-body .product-cont .link-btn-box {
        height: 50px;
        text-align: center;
    }
    .product-body .product-cont .btn {
        width: 140px;
        margin: auto;
    }
    .product-body .tab-head {
        display: none;
    }
    .product-body .tab-content > article {
        display: block !important;
        padding-top: 0;
        padding-bottom: 5px;
    }
    .product-body .tab-content > article .content-head {
        position: relative;
        display: block;
        margin: 0 -10px 10px;
        padding: 0 20px;
        border-bottom: 1px solid #e1e1e1;
        font-size: 18px;
        line-height: 40px;
        color: #333;
        font-weight: 400;
    }
    .product-body .tab-content > article .content-head:before {
        position: absolute;
        top: 50%;
        left: 10px;
        width: 2px;
        height: 20px;
        margin-top: -10px;
        background: #48aed5;
        content: '';
    }
    .product-body .tab-content > article:last-child {
        padding-bottom: 20px;
    }
    .product-body .aside-data dt {
        display: none;
    }

    .baojia-body .form-container .dn-baojia-box .right {
        width: 100%;
        border-right: 0px solid #eee;
        padding: 30px 30px 15px;
    }
    .baojia-body .form-container .dn-baojia-box .form-horizontal {
        width: 100%;
    }
    .baojia-body .form-container .dn-baojia-box .ico-line-btn {
        position: static;
        width: 100%;
        height: 42px;
        border: none;
        border-radius: 0;
    }
    .baojia-body .form-container .dn-baojia-box .circle-animate,
    .baojia-body .form-container .dn-baojia-box .ico-line-btn:after {
        display: none;
    }
    .baojia-body .form-container .dn-baojia-box .calc-btn {
        position: static;
        display: block;
        width: 100%;
        height: 100%;
        border-radius: 3px;
    }
    .baojia-body .form-container .dn-baojia-box .calc-btn em {
        width: 100%;
        height: 100%;
        line-height: 42px;
    }

    .team-list-body .list .whole-pic {
        width: 35%;
    }
    .team-list-body .list .cont-box {
        left: 35%;
    }
    .team-body .team-pic {
        width: 35%;
    }
    .team-body .team-cont {
        margin-left: calc(35% + 50px);
    }
}
@media screen and (min-width: 540px) {
    .aside-data.news-list-body .list {
        margin-right: -20px;
        margin-top: -20px;
    }
    .aside-data.news-list-body .list li {
        float: left;
        width: 50%;
        padding: 20px 20px 0 0;
    }
    .aside-data.news-list-body .list .box {
        padding: 20px;
        border: none;
        box-shadow: 0px 0px 20px 0px rgba(6, 0, 1, 0.06);
        transition: background .3s;
    }
    .aside-data.news-list-body .list .pic {
        float: left;
        width: 180px;
    }
    .aside-data.news-list-body .list .cont {
        float: right;
        left: 0 !important;
        padding: 8px 0 0;
        width: calc(100% - 200px);
    }
    .aside-data.news-list-body .list .cont .info {
        margin: 8px 0px 0;
    }
    .aside-data.news-list-body .list .mobile-time {
        font-size: 12px;
        line-height: 30px;
        color: #888;
    }
    .aside-data.news-list-body .list .box:hover {
        background: #48aed5;
    }
    .aside-data.news-list-body .list .cont .title,
    .aside-data.news-list-body .list .cont .mobile-time,
    .aside-data.news-list-body .list .cont .info {
        transition: color .36s;
    }
    .aside-data.news-list-body .list .box:hover .cont .title,
    .aside-data.news-list-body .list .box:hover .cont .mobile-time,
    .aside-data.news-list-body .list .box:hover .cont .info {
        color: #fff;
    }

    .team-body {
        padding-top: 40px;
        padding-bottom: 60px;
    }
    .team-body > .article-data {
        padding-bottom: 40px;
    }

    .case-body.sub-article-body {
        padding-bottom: 60px;
    }
    .aside-data.product-list-body {
        padding-bottom: 60px;
    }

    .product-list-body .type-container dt {
        pointer-events: none;
    }
}
@media screen and (max-width: 539px) {
    .slider-box span {
        width: 10px;
        height: 10px;
        border-radius: 5px;
    }
    .slider-box span.active {
        width: 28px;
    }

    .sub-article-body {
        padding-bottom: 40px !important;
    }

    .banner {
        height: auto;
        padding-bottom: 40%;
    }
    .page-btn {
        padding: 25px 0 40px;
    }

    .column-description {
        margin-top: 25px;
        padding-top: 5px;
        padding-bottom: 5px;
        line-height: 26px;
    }
    
    .article-data > .header {
        padding: 20px 0 10px;
    }
    .article-data > .header .title {
        padding-bottom: 8px;
    }
    .article-data > .thumb {
        padding-top: 15px;
        padding-bottom: 0;
    }

    .aside-data > .label-box {
        padding: 15px 0;
    }

    .article-page-btn {
        padding: 10px 0;
    }

    .plan-list-body .list .cont {
        padding: 13px 10px 0;
        border: none;
    }
    .plan-list-body .list .cont > * {
        left: 0 !important;
    }
    .plan-list-body .list .icon {
        display: none;
    }
    .plan-list-body .list .title {
        padding-bottom: 6px;
    }

    .single-body {
        padding-top: 15px;
        padding-bottom: 30px;
    }
    .single-body .thumb {
        padding-bottom: 15px;
    }
    
    .data-list-body .list {
        margin-right: -15px;
    }
    .aside-data.data-list-body .list {
        margin-top: -25px;
    }
    .data-list-body .list li {
        width: 50%;
        padding: 25px 15px 0 0;
    }
    .data-list-body .list a > .title {
        padding: 16px 10px 0;
    }
    .video-list-body .list .icon i:after {
        font-size: 30px;
    }
    .video-list-body .list a:hover .icon:after {
        top: -10px;
        right: -10px;
        bottom: -10px;
        left: -10px;
    }

    .sitemap-body .list {
        padding-top: 10px;
        padding-bottom: 25px;
    }

    .aside-data.news-list-body .list {
        margin-top: -25px;
    }
    .news-list-body .list {
        padding-top: 13px;
    }
    .news-list-body .list .box {
        display: block;
        padding: 12px 0;
    }
    .news-list-body .list .pic {
        width: 130px;
    }
    .news-list-body .list .cont {
        left: 0 !important;
        float: left;
        width: calc(100% - 140px);
        padding: 0;
    }
    .news-list-body .list .cont .title {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        line-height: 1.5;
        white-space: normal;
        word-break: normal;
    }
    .news-list-body .list .cont .mobile-time {
        margin-top: 5px;
        font-size: 12px;
        color: #aeaeae;
        font-family: 'Arial';
    }
    .news-list-body .list .cont .mobile-time:before {
        margin-right: 5px;
        font-family: 'iconfont';
        content: '\e610';
    }

    .new-body {
        margin-top: 0;
        margin-bottom: 0;
        padding-top: 0;
    }
    .new-body > .article-data > article.content {
        padding: 10px 0;
    }

    .download-list-body {
        padding-top: 10px;
    }
    .download-list-body .list li {
        padding-right: 115px;
    }
    .download-list-body .list li .time {
        right: 30px;
    }
    .download-list-body .page-btn {
        padding-bottom: 35px;
    }

    .download-body .download-content .header {
        margin-top: 20px;
        padding-bottom: 15px;
    }
    .download-body .download-content .header .info-container {
        line-height: 22px;
    }
    .download-body .download-content .txt-container {
        padding: 15px 0 20px;
    }

    .job-list-body {
        padding-bottom: 5px;
    }
    .job-list-body .section-block {
        padding-top: 25px;
        padding-bottom: 40px;
    }
    .job-list-body .section-title {
        font-size: 22px;
    }
    .job-list-body .section-info {
        margin-bottom: 15px;
        padding-top: 10px;
    }
    .job-list-body .article-block .content-box,
    .job-list-body .article-block .left-box,
    .job-list-body .article-block .right-box {
        display: block;
        width: 100%;
    }
    .job-list-body .article-block .right-box {
        margin-top: 10px;
        padding-left: 0;
    }
    .job-list-body .article-block .right-box p+p {
        margin-top: 10px;
    }
    .job-list-body .pic-block .title {
        line-height: 50px;
    }
    .job-list-body .pic-block .swiper-pagination {
        margin-top: 10px;
    }

    .baojia-body .service-header {
        padding: 26px;
    }
    .baojia-body .baojia-container {
        padding-bottom: 40px;
    }
    .baojia-body .baojia-slider .icon {
        width: 80px;
        height: 80px;
        font-size: 50px;
    }
    .baojia-body .baojia-slider .icon:before {
        line-height: 76px;
    }
    .baojia-body .baojia-slider .icon:after {
        line-height: 80px;
    }
    .baojia-body .baojia-slider .title {
        margin: 30px 0 10px;
    }
    .baojia-body .baojia-slider .info {
        height: 40px;
        line-height: 20px;
    }
    .baojia-body .baojia-slider .btn-box {
        padding-top: 20px;
    }
    .baojia-body .baojia-slider li:hover .icon:before{
        margin-top: -80px;
    }
    .baojia-body .shigong-container .title {
        line-height: 50px;
    }
    .baojia-body .shigong-container .swiper-pagination {
        margin-top: 20px;
    }
    .baojia-body .xuyao-container .list {
        margin-top: -15px;
        margin-right: -15px;
    }
    .baojia-body .xuyao-container .list li {
        width: 50%;
        padding: 15px 15px 0 0;
    }
    .baojia-body .xuyao-container .list .icon {
        font-size: 46px;
    }
    .baojia-body .xuyao-container .list .title {
        margin: 0;
    }

    .team-list-body .list {
        margin-right: 0;
    }
    .aside-data.team-list-body .list {
        margin-top: -20px;
    }
    .team-list-body .list li {
        float: none;
        width: 100%;
        padding: 20px 0 0;
    }
    .team-list-body .list .cont-box {
        padding: 22px 25px 0;
    }
    .team-list-body .list .cont-box .title,
    .team-list-body .list .cont-box .sub-title {
        line-height: 24px;
    }
    .team-list-body .list .cont-box .info {
        margin-top: 8px;
        padding-top: 2px;
        line-height: 22px;
    }
    .team-list-body .list a:hover .cont-box .info {
        padding-top: 10px;
    }
    .team-body {
        padding-top: 25px;
    }
    .team-body > .article-data {
        padding-bottom: 25px;
    }
    .team-body .team-pic {
        float: none;
        width: 100%;
    }
    .team-body .team-cont {
        margin-left: 0;
        padding-top: 10px;
    }
    .team-body .team-cont .header {
        padding: 0 0 20px;
    }
    .team-body .team-cont .content {
        padding-top: 10px;
    }

    .case-body .section-block {
        padding: 25px 0;
        line-height: 24px;
    }
    .case-body .content-container > * {
        float: none;
        width: 100%;
    }
    .case-body .content-container .left-box {
        padding-right: 0;
        padding-bottom: 10px;
    }
    .case-body .content-container .title {
        padding-bottom: 10px;
        line-height: 1;
        font-size: 20px;
    }
    .case-body .content-container .list {
        padding: 10px 0 13px;
    }
    .case-body .content-container .list dl {
        padding-right: 40px;
    }
    .case-body .content-container .list dd {
        font-size: 16px;
    }

    .aside-data.product-list-body .list {
        margin-top: -15px;
    }
    .product-list-body .list {
        margin-right: -15px;
    }
    .product-list-body .list li {
        width: 50%;
        padding: 15px 15px 0 0;
    }
    .product-list-body .list .cont {
        padding: 11px 15px 20px;
    }
    .product-list-body .list .info {
        height: 66px;
        margin: 6px 0 10px;
        line-height: 22px;
    }
    .product-list-body .list .icon-list {
        right: 10px;
    }
    .product-list-body .list .icon-list .icon {
        margin-left: 6px;
    }
    .product-list-body .type-container .container {
        display: flex;
        justify-content: space-between;
    }
    .product-list-body .type-container dl {
        position: static;
        width: 30%;
        margin: 0;
        padding: 0;
        height: auto !important;
        border: none !important;
    }
    .product-list-body .type-container dl.show dt:after {
        transform: rotate(180deg);
    }
    .product-list-body .type-container dt {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        padding: 0 5px;
        background: #48aed5;
        color: #fff;
        text-align: center;
        font-size: 18px;
        line-height: 40px;
        border-radius: 20px;
    }
    .product-list-body .type-container dt:after {
        margin-left: 3px;
        border-top: 5px solid #fff;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        content: '';
    }
    .product-list-body .type-container dt span {
        height: 40px;
        word-break: keep-all;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .product-list-body .type-container .more-btn {
        display: none;
    }
    .product-list-body .type-container .box {
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        height: 0;
        padding: 0 5%;
        background: #fff;
        z-index: 6;
        overflow: hidden;
        transition: height .3s;
        max-height: 352px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .product-list-body .type-container dd {
        float: none;
        width: auto;
        height: auto;
        margin: 0;
    }
    .product-list-body .type-container dd a {
        height: 44px;
        border: none;
        border-bottom: 1px solid #eee !important;
        text-align: left;
        background: none !important;
    }
}

@keyframes scale-three2 {
    0% {
        transform: scale(1);
        opacity: .8
    }

    100% {
        transform: scale(1.3);
        opacity: 0
    }
}

@-webkit-keyframes scale-three2 {
    0% {
        -webkit-transform: scale(1);
        opacity: .7
    }

    100% {
        -webkit-transform: scale(1.3);
        opacity: 0
    }
}


.ie .job-list-body .pic-block .job-swiper .pic-list {
    height: 280px;
}
.ie .baojia-body .shigong-container .shigong-slider .pic-list {
    height: 300px;
}
.ie .case-list-body .list .cont{
    display: none;
    visibility: hidden;
}
.ie .case-list-body .list a:hover .cont{
    display: block;
    visibility: visible;
    background: #000;
}
.ie .news-list-body .list .cont {
    float: left;
    width: 700px;
}