@charset "utf-8";
/* CSS Document */


/***** 单页滚动 *****/
#home,
#home .section-block,
#home .section-container {
    height: 100%;
}
#home {
    position: relative;
    background: #000;
    overflow: hidden;
    display: block;
}
#home .section-container {
    position: relative;
    top: 0;
}
#home .section-block {
    transition: all .6s;
    overflow: hidden;
}
#home .section-block.scroll-prev {
    transform: scale(0.8);
    opacity: .6;
}
.ie #home .section-container {
    top: 0 !important;
    transform: none !important;
}
.ie #home, .ie #home .section-container {
    height: auto;
}
.ie .banner {
    min-height: 500px;
}


/***** 鼠标滚动提示图标 *****/
/******
.mouseIco {
    position: absolute;
    left: 50%;
    bottom: 20px;
    z-index:6;
    width: 25px;
    height: 34px;
    margin-left: -13px;
    border: 2px solid #fff;
    border-radius: 6px;
}
.mouseIco i {
    width: 3px;
    height: 7px;
    border-radius: 1px;
    display: block;
    background-color: #fff;
    position: absolute;
    left: 50%;
    margin-left: -1px;
    top: 5px;
    -webkit-animation: mouse-dot 1.5s cubic-bezier(0.23, 1, 0.32, 1) infinite;
    animation: mouse-dot 1.5s cubic-bezier(0.23, 1, 0.32, 1) infinite;
}
******/
.mouseIco {
    position: absolute;
    left: 50%;
    bottom:70px;
    width: 30px;
    margin-left: -15px;
    text-align: center;
    color: #fff;
    font-size: 26px;
    line-height: 1;
    -webkit-animation: mouse-dot 1.5s cubic-bezier(0.23, 1, 0.32, 1) infinite;
    animation: mouse-dot 1.5s cubic-bezier(0.23, 1, 0.32, 1) infinite;
}
.mouseIco:after,
.mouseIco:before {
    display: block;
    font-family: 'iconfont';
    content: '\e608';
    transform: rotate(90deg);
    text-shadow: 0 0 1px #000;
}
.mouseIco:before {
    position: relative;
    top: 16px;
}


/***** 查看更多按钮 *****/
.moreBtn {
    position: relative;
    display: block;
    width: 108px;
    padding-bottom: 4px;
    font-size: 12px;
    font-family: 'Arial';
    text-align: center;
    text-transform: uppercase;
    overflow: hidden;
}
.moreBtn:after,
.moreBtn:before {
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: -3px;
    font-size: 108px;
    font-family: 'iconfont';
    content: '\e670';
    transform: translate3d(0, -50%, 0);
    pointer-events: none;
}
.moreBtn,
.moreBtn:before {
    color: #103F85;
}
.moreBtn:after {
    width: 0;
    z-index: 1;
    color: #2F9973;
    transition: width .3s;
    overflow: hidden;
}
.moreBtn:hover {
    color: #2F9973 !important;
}
.moreBtn:hover:after {
    width: 100%;
}


/***** block-head *****/
.block-head {
    width: 240px;
    border-bottom: 1px solid #2F9973;
    text-align: right;
}
.block-head .name {
    font-size: 30px;
    color: #103F85;
    font-weight: 700;
}
.block-head .eng {
    font-size: 18px;
    font-family: 'Arial';
    color: #2F9973;
}


/***** banner *****/
.banner {
    position: relative;
}
.banner .pic-list {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.banner .pic-list li {
    overflow: hidden;
}
.banner .pic-list li .img {
    display: block;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.banner .pic-list li .binbox {
    position: absolute;
    left: 100px;
    bottom: 50px;
    color: #fff;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    padding-left: 25px;
}
.banner .pic-list li .binbox .t {
    position: relative;
    top: -5px;
    color: #fff;
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 10px;
    overflow: hidden;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(4, 0, 0, 0.5);
}
.banner .pic-list li .binbox .en {
    line-height: 1;
    font-size: 24px;
    text-shadow: 1px 1px 3px rgba(4, 0, 0, 0.5);
}
.banner .pic-list li .binbox .con {
    height: 160px;
    overflow: hidden;
}
.banner .pic-list li .moreBtn,
.banner .pic-list li .moreBtn:before {
    color: #fff;
}
.banner .pic-list li.active .binbox {
    visibility: visible;
    -webkit-transition-timing-function: cubic-bezier(0.6, 4, 0.3, 0.8);
    transition-timing-function: cubic-bezier(0.6, 4, 0.3, 0.8);
    -webkit-animation: fadeInRightBig 1.2s 1;
    animation: fadeInRightBig 1.2s 1;
}
.banner .pic-list li.active .img {
    animation: scaleUpDown 5s forwards cubic-bezier(0.250, 0.460, 0.450, 0.940);
}
/***** banner左右按钮在左边 *****/
/*.banner .switch-box {
    position: absolute;
    top: 60%;
    left: 100px;
    margin-top: -25px;
}
.banner .arrow-btn {
    float: left;
    width: 50px;
    height: 50px;
    margin-right: 15px;
    background: rgba(0, 0, 0, .5);
    font-size: 28px;
    color: #aaa;
    cursor: pointer;
    text-align: center;
    line-height: 50px;
    transition: all .36s ease;
    -webkit-transition: all .36s ease;
}
.banner .arrow-btn:hover {
    background: #2F9973;
    color: #fff;
}
.banner .prev-btn:before {
    position: relative;
    left: 0;
    transition: left .36s ease;
}
.banner .prev-btn:hover:before {
    left: -5px;
}
.banner .next-btn:before {
    position: relative;
    right: 0;
    transition: right .36s ease;
}
.banner .next-btn:hover:before {
    right: -5px;
}*/
/***** banner左右按钮在两边 *****/
.banner .switch-box .prev-btn{
    position: absolute;
    top: 50%;
    left: 0px;
    margin-top: 10px;
}
.banner .switch-box .next-btn{
    position: absolute;
    top: 50%;
    right: 0px;
    margin-top: 10px;
}
.banner .arrow-btn {
    float: left;
    width: 50px;
    height: 60px;
    background: rgba(0, 0, 0, .5);
    font-size: 28px;
    color: #aaa;
    cursor: pointer;
    text-align: center;
    line-height: 60px;
    transition: all .36s ease;
    -webkit-transition: all .36s ease;
}
.banner .arrow-btn:hover {
    background: #2F9973;
    color: #fff;
}
.banner .prev-btn:before {
    position: relative;
    left: 0;
    transition: left .36s ease;
}
.banner .prev-btn:hover:before {
    left: -5px;
}
.banner .next-btn:before {
    position: relative;
    right: 0;
    transition: right .36s ease;
}
.banner .next-btn:hover:before {
    right: -5px;
}
.banner .btn-box {
    position: absolute;
    /*top: 50%;
    right: 25px;
    transform: translate3d(0, -50%, 0);*/	
	bottom: 30px;
    right: 50%;
    display: flex;
}
.banner .btn-box span {
    position: relative;
    display: block;
    width: 10px;
    height: 10px;
	margin:0 10px;
    /*margin-top: 50px;*/
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
	right: -50%;
}
.banner .btn-box span:first-child {
    margin-top: 0;
}
.banner .btn-box span:before {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 1px solid #fff;
    transform: scale(0);
    transition: transform .36s;
    content: '';
}
.banner .btn-box span:after {
    /*position: absolute;
    bottom: 5px;
    left: 5px;
    height: 60px;
    border-left: 1px solid #fff;
    content: '';*/
}
.banner .btn-box span:first-child:after {
    display: none;
}
.banner .btn-box .active:before {
    transform: scale(1);
}
.banner .border {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 3;
    width: 0;
    height: 5px;
    background: rgba(129, 179, 53, .5);
}


/***** 关于我们 *****/
.about-block {
    background: url(../img/about-bg.jpg) center bottom no-repeat #fff;
    background-size: contain;
}
.about-block .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding-top: 80px;
    color: #103F85;
}
.about-block .container > * {
    position: relative;
    float: left;
    width: 50%;
    opacity: 0;
}
.about-block .container .left-box {
    padding-right: 60px;
}
.about-block .container .name {
    line-height: 1;
    font-size: 18px;
}
.about-block .container .info {
    font-size: 30px;
    font-weight: 700;
}
.about-block .container .cont {
    padding: 20px 0 42px;
    font-size: 14px;
    line-height: 25px;
    color: #666;
}
.about-block .container .list li {
    float: left;
    margin-right: 30px;
}
.about-block .container .list .number {
    font-size: 60px;
    line-height: 1.2;
    font-family: 'Baiduan Number';
    text-align: center;
}
.about-block .container .list .txt {
    font-size: 12px;
    color: #666;
}
.about-block .container .moreBtn {
    position: absolute;
    right: 60px;
    bottom: 5px;
}
.about-block .container .right-box {
    padding: 70px 0 50px 60px;
}
.about-block .container .right-box img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
}
.about-block .container .right-box:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    border: 10px solid #d8dbdd;
    content: '';
}
.about-block.active .container .left-box {
    animation: fadeInDown cubic-bezier(.8,-.5,.2,1.4) 1.2s forwards .6s;
}
.about-block.active .container .right-box {
    animation: zoomIn cubic-bezier(.8,-.5,.2,1.4) 1.2s forwards .6s;
}


/***** 产品 *****/
.product-block {
    position: relative;
    background: #103F85;
}
.product-block .tab-head {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 3;
    width: 100%;
    border-top: 1px solid rgba(216, 219, 221, .3);
}
.product-block .tab-head li {
    position: relative;
    float: left;
    width: 25%;
    max-height: 320px;
    min-height: 200px;
    border-right: 1px solid rgba(216, 219, 221, .3);
    text-align: center;
    line-height: 20px;
    color: #ebebeb;
    cursor: pointer;
    overflow: hidden;
}
.product-block .tab-head li:last-child {
    border: none;
}
.product-block .tab-head li:before {
    display: block;
    padding-bottom: 50%;
    content: '';
}
.product-block .tab-head li:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 63, 133, .9);
    transform-origin: 100% 50% 0;
    transform: scaleX(0);
    transition: transform .3s;
    content: '';
}
.product-block .tab-head .box {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.product-block .tab-head .pic-icon {
    display: block;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.product-block .tab-head li:hover .pic-icon {
    transition-timing-function: cubic-bezier(0.6, 4, 0.3, 0.8);
    animation: gelatine 0.5s 1;
}
.product-block .tab-head .name {
    max-width: 100%;
    font-size: 16px;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-block .tab-head .sub-name {
    font-size: 14px;
    font-family: 'Arial';
    text-transform: uppercase;
}
.product-block .tab-head .icon {
    position: relative;
    display: block;
    width: 15px;
    height: 15px;
    margin: 7px auto 12px;
    transition: all .3s;
}
.product-block .tab-head .icon:before,
.product-block .tab-head .icon:after {
    position: absolute;
    background: #ebebeb;
    content: '';
}
.product-block .tab-head .icon:before {
    left: 0;
    top: 6px;
    width: 15px;
    height: 3px;
    margin-top: ;
}
.product-block .tab-head .icon:after {
    left: 6px;
    top: 0px;
    height: 15px;
    width: 3px;
}
.product-block .tab-head .moreBtn, 
.product-block .tab-head .moreBtn:before {
    color: #ebebeb;
}
.product-block .tab-head .moreBtn {
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}
.product-block .tab-head li:hover .icon {
    transform: rotate(90deg);
}
.product-block .tab-head li.active:after {
    transform-origin: 0 50% 0;
    transform: scaleX(1);
}
.product-block .tab-head li.active .icon {
    opacity: 0;
}
.product-block .tab-head li.active .pic-icon {
    animation: none;
}
.product-block .tab-head li.active .moreBtn {
    opacity: 1;
    visibility: visible;
}
.product-block .pic-list {
    display: block;
    height: 100%;
}
.product-block .pic-list li {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    overflow: hidden;
    transition: width .5s linear 0s;
}
.product-block .pic-list li.old-active {
    z-index: 1;
    transition: width 0s ease .5s;
}
.product-block .pic-list .box {
    height: 100%;
    padding-top: 15%;
    padding-left: 6.7%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #f2f2f2;
    color: #fff;
}
.product-block .pic-list .box > * {
    opacity: 0;
    transform: translate3d(100px, 0, 0);
    transition: all .68s ease .48s;
}
.product-block .pic-list .box .info1 {
    font-size: 24px;
}
.product-block .pic-list .box .info2 {
    padding: 5px 0 22px;
    font-size: 30px;
    font-weight: 700;
}
.product-block .pic-list .box .info3 {
    font-size: 14px;
    color: #ebebeb;
}
.product-block .pic-list li.active {
    z-index: 2;
    width: 100%;
}
.product-block .pic-list li.active .box > * {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}


/***** 应用范围 *****/
.apply-block {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    background: url(/static/img/apply-bg.jpg) center center no-repeat;
    background-size: cover;
}
.apply-block .block-head {
    position: absolute;
    left: 0;
    top: 90px;
    z-index: 2;
}
.apply-block .moreBtn {
    position: absolute;
    top: 140px;
    right: 80px;
    z-index: 2;
}
.apply-block .container {
    width: 75%;
}
.apply-block .list a {
    position: relative;
    float: left;
    width: 25%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #f2f2f2;
    overflow: hidden;
    transform-origin: 50% 100% 0;
    transform: scaleY(.5);
    opacity: 0;
}
.apply-block.active .list a {
    transform: scaleY(1);
    transition: all .6s;
    opacity: 1;
}
.apply-block .list a:before {
    display: block;
    padding-bottom: 100%;
    content: '';
}
.apply-block .list a .box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(16, 63, 133, .9);
    line-height: 20px;
    color: #ebebeb;
}
.apply-block .list a .box:before {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    border: 1px solid #a0b9c8;
    pointer-events: none;
    content: '';
}
.apply-block .list a .txt {
    position: relative;
    padding: 19px 0 16px;
    text-align: center;
}
.apply-block .list a .txt:before,
.apply-block .list a .txt:after {
    position: absolute;
    left: 50%;
    width: 16px;
    margin-left: -8px;
    border-top: 1px solid #fff;
    content: '';
}
.apply-block .list a .txt:before {
    top: 0;
}
.apply-block .list a .txt:after {
    bottom: 0;
}
.apply-block .list a .name {
    font-size: 16px;
    font-weight: 700;
}
.apply-block .list a .sub-name {
    font-size: 14px;
    font-family: 'Arial';
    text-transform: uppercase;
}

/***** 工程业绩 *****/
.case-block {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    background: url(/static/img/apply-bg.jpg) center center no-repeat;
    background-size: cover;
}
.case-block .block-head {
    position: absolute;
    left: 0;
    top: 90px;
    z-index: 2;
}
.case-block .moreBtn {
    position: absolute;
    top: 140px;
    right: 80px;
    z-index: 2;
}
.case-block .container {
    width: 75%;
}

/***** 新闻资讯 *****/
.news-block {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    background: url(/static/img/news-bg.jpg) center center no-repeat;
    background-size: cover;
}
.news-block .block-head {
    position: absolute;
    left: 0;
    top: 90px;
    z-index: 2;
}
.news-block .moreBtn {
    position: absolute;
    top: 140px;
    right: 80px;
    z-index: 2;
}
.news-block .container {
    width: 75%;
    opacity: 0;
}
.news-block .news-slider {
    margin: 0 -17px;
}
.news-block .list {
    padding: 0 17px 183px;
}
.news-block .list:before {
    display: block;
    padding-bottom: 66.6667%;
    content: '';
}
.news-block .list li {
    float: left;
    width: 33.33%;
    padding: 0 17px;
}
.news-block .list li a {
    display: block;
}
.news-block .list .whole-pic {
    background: #f2f2f2;
}
.news-block .list .whole-pic:after {
    display: block;
    padding-bottom: 66.6667%;
    content: '';
}
.news-block .list .whole-pic .img {
    background-size: cover;
    -webkit-transition: all .6s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: all .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.news-block .list .whole-pic i:after,
.news-block .list .whole-pic i:before {
    position: absolute;
    content: '';
    transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.news-block .list .whole-pic i:before {
    left: 10px;
    right: 10px;
    border-top: 1px solid #fff;
    transform: scaleX(0);
}
.news-block .list .whole-pic i:after {
    top: 10px;
    bottom: 10px;
    border-left: 1px solid #fff;
    transform: scaleY(0);
}
.news-block .list .whole-pic .b1:after,
.news-block .list .whole-pic .b1:before {
    top: 10px;
    left: 10px;
    transform-origin: 0 0 0;
}
.news-block .list .whole-pic .b2:after,
.news-block .list .whole-pic .b2:before {
    right: 10px;
    bottom: 10px;
    transform-origin: 100% 100% 0;
}
.news-block .list .title {
    padding-top: 15px;
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    color: #333;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-block .list .mobile-time {
    margin-top: 10px;
    font-size: 14px;
    color: #aeaeae;
    font-family: 'Arial';
}
.news-block .list .mobile-time:before {
    margin-right: 5px;
    font-family: 'iconfont';
    content: '\e610';
}
.news-block .list .info {
    height: 72px;
    margin: 15px 0 30px;
    font-size: 14px;
    line-height: 24px;
    color: #888;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.news-block .list .bottom-box {
    display: flex;
    font-size: 14px;
    font-family: 'Arial';
    color: #999;
    transition: color .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.news-block .list .bottom-box .time-box {
    padding-right: 10px;
}
.news-block .list .bottom-box .time-box:before {
    margin-right: 5px;
    font-family: 'iconfont';
    content: '\e610';
}
.news-block .list .bottom-box .border {
    position: relative;
    flex: 1;
}
.news-block .list .bottom-box .border:before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    border-top: 1px solid #999;
    content: '';
    transition: width .6s cubic-bezier(0.215, 0.61, 0.355, 1), border .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.news-block .list a:hover .img {
    transform: scale(1.08);
}
.news-block .list a:hover .title {
    color: #2F9973;
}
.news-block .list a:hover .whole-pic i:before {
    transform: scaleX(1);
}
.news-block .list a:hover .whole-pic i:after {
    transform: scaleY(1);
}
.news-block .list a:hover .bottom-box {
    color: #2F9973;
}
.news-block .list a:hover .bottom-box .border:before {
    width: 100%;
    border-color: #2F9973;
}
.news-block .btn-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0 5px;
    text-align: center;
}
.news-block .btn-box span {
    position: relative;
    display: inline-block;
    width: 13px;
    height: 13px;
    margin: 0 9px;
    border-radius: 50%;
    background: #d8dbdd;
    cursor: pointer;
}
.news-block .btn-box span:after {
    position: absolute;
    left: 6px;
    top: 6px;
    width: 25px;
    transform-origin: 100% 0 0;
    border-top: 1px solid #2F9973;
    transform: scaleX(0);
    transition: transform 1s;
    content: '';
}
.news-block .btn-box span:last-child:after {
    display: none;
}
.news-block .btn-box span:before {
    position: absolute;
    top: -3px;
    left: -3px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: #2F9973;
    transform: scale(0);
    content: '';
    transition: all .3s;
}
.news-block .btn-box span.active:after {
    transform-origin: 0 0 0;
    transform: scaleX(1);
    transition: transform 6s linear 1s;
}
.news-block .btn-box span.active:before {
    transform: scale(1);
}
.news-block.active .container {
    animation: fadeIn ease .6s forwards 1.1s;
}


@media screen and (max-width: 900px) {
    .about-block.active .container .left-box {
        width: 100%;
        padding: 0 60px;
    }
}
@media screen and (min-width: 541px) {
	/***** 单页滚动 *****/
	html,body{
		height: 100%;
		overflow: hidden;
	}
    #home .section-block {
        height: 100% !important;
    }
    .mouseIco {
        top: auto !important;
    }
    .product-block .tab-head {
        transform: translate3d(0, 0, 0) !important;
    }
}
@media screen and (max-width: 540px) {
    #home,
    #home .section-block,
    #home .section-container {
        height: auto;
    }
    #home .section-container {
        top: 0 !important;
        transform: none !important;
    }


    .block-head {
        position: static !important;
        width: 100%;
        padding: 28px 0 25px;
        border: none;
        text-align: center;
    }
    .block-head .name {
        font-size: 20px;
        line-height: 1.2;
    }
    .block-head .eng {
        font-size: 12px;
    }


    .banner .pic-list li .binbox {
        left: 5%;
        bottom: 25%;
        padding-left: 15px;
    }
    .banner .pic-list li .binbox .t {
        top: 0px;
        margin-bottom: 7px;
        font-size: 24px;
        line-height: 1.3;
    }
    .banner .pic-list li .binbox .en {
        font-size: 16px;
    }
    .banner .pic-list li .binbox .con {
        height: auto;
        padding-bottom: 30px;
    }
    .banner .btn-box {
        /*right: 5%;
        margin-left: -10px;
		display: none;*/
    }
	.banner .pic-list li.active .img {
		animation: none;
	}

    .about-block {
        background-image: url(../img/about-mobile-bg.jpg);
        background-size: 100% auto;
    }
    .about-block .container {
        display: block;
        padding-top: 0;
    }
    .about-block .container > * {
        float: none;
        width: auto;
        opacity: 1;
    }
    .about-block .container .mobile-pic {
        margin: 0px -5.5% 20px;
    }
    .about-block .container .left-box {
        padding: 30px 0 40px !important;
    }
    .about-block .container .name {
        font-size: 16px;
    }
    .about-block .container .info {
        font-size: 20px;
    }
    .about-block .container .cont {
        padding: 14px 0 25px;
    }
    .about-block .container .list li {
        margin-right: 20px;
    }
    .about-block .container .list .number {
        font-size: 46px;
    }
    .about-block .container .moreBtn {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 30px;
    }

    .product-block .pic-list {
        position: relative;
        height: auto;
    }
    .product-block .pic-list:before {
        display: block;
        padding-bottom: 66.66%;
        content: '';
    }
    .product-block .pic-list .box {
        padding-top: 8%;
        padding-left: 5%;
    }
    .product-block .pic-list .box .info1 {
        font-size: 16px;
    }
    .product-block .pic-list .box .info2 {
        padding: 0 0 14px;
        font-size: 20px;
    }
    .product-block .tab-head {
        position: relative;
        border: none;
    }
    .product-block .tab-head:after {
        display: table;
        padding-bottom: 33.33%;
        content: '';
    }
    .product-block .tab-head li {
        position: absolute;
        top: 0;
        width: 50%;
        max-height: none;
        min-height: 0;
        background: #4c7c99;
    }
    .product-block .tab-head li:nth-child(1) {
        left: 0;
    }
    .product-block .tab-head li:nth-child(2) {
        left: 50%;
    }
    .product-block .tab-head li:nth-child(3) {
        left: 100%;
    }
    .product-block .tab-head li:nth-child(4) {
        left: 150%;
    }
    .product-block .tab-head li:nth-child(5) {
        left: 200%;
    }
    .product-block .tab-head li:nth-child(6) {
        left: 250%;
    }
    .product-block .tab-head li:nth-child(7) {
        left: 300%;
    }
    .product-block .tab-head li:nth-child(8) {
        left: 350%;
    }
    .product-block .tab-head li:before {
        padding-bottom: 66.66%;
    }
    .product-block .tab-head .pic-icon {
        width: 30px;
        height: 30px;
        margin-bottom: 7px;
    }
    .product-block .tab-head .name {
        font-size: 13px;
    }
    .product-block .tab-head .sub-name {
        font-size: 12px;
    }
    .product-block .tab-head .icon {
        width: 12px;
        height: 12px;
        margin: 0 auto;
        display: none;
    }
    .product-block .tab-head .icon:after {
        left: 5px;
        height: 12px;
        width: 2px;
    }
    .product-block .tab-head .icon:before {
        top: 5px;
        height: 2px;
        width: 12px;
    }
    .product-block .tab-head .moreBtn {
        margin-top: 6px;
        padding-bottom: 2px;
        opacity: 1;
        visibility: visible;
    }


    .apply-block {
        display: block;
        padding: 0 0 40px;
        background-image: url(../img/apply-mobile-bg.jpg);
    }
    .apply-block .container {
        width: 100%;
    }
    .apply-block .list a {
        width: 50%;
        opacity: 1;
        transform: scaleY(1);
    }
    .apply-block .moreBtn {
        position: relative;
        top: 0;
        right: 0;
        margin: 25px auto 0;
    }


    .case-block {
        display: block;
        padding: 0 0 40px;
        background-image: url(../img/apply-mobile-bg.jpg);
    }
    .case-block .container {
        width: 100%;
    }
    .case-block .moreBtn {
        position: relative;
        top: 0;
        right: 0;
        margin: 25px auto 0;
    }
    .case-block .container .mobile-pic {
        margin: 0 -5.5%;
    }

    .news-block {
        display: block;
        padding: 0 0 40px;
        background: #fff;
    }
    .news-block .container {
        width: 100%;
        opacity: 1;
    }
    .news-block .news-slider {
        margin: 0;
    }
    .news-block .list {
        width: 100% !important;
        padding: 0;
        transform: none !important;
    }
    .news-block .list:before {
        display: none;
    }
    .news-block .list li {
        position: relative !important;
        left: 0 !important;
        float: none;
        width: 100%;
        border-bottom: 1px solid #e6e6e6;
    }
    .news-block .list li .title {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        line-height: 1.5;
        white-space: normal;
        word-break: normal;
    }
    .news-block .list li.js-copy-node {
        display: none;
    }
    .news-block .list li.first-node {
        padding: 0 0 10px !important;
    }
    .news-block .list li.first-node .title {
        padding-top: 5px;
    }
    .news-block .list li.first-node .mobile-time {
        margin-top: 2px;
    }
    .news-block .list li:not(.first-node) {
        padding: 12px 0 !important;
    }
    .news-block .list li:not(.first-node) .title {
        padding-top: 0;
    }
    .news-block .list li:not(.first-node) .whole-pic {
        float: left;
        width: 130px;
    }
    .news-block .list li:not(.first-node) .cont {
        margin-left: 140px;
    }
    .news-block .moreBtn {
        position: relative;
        top: 0;
        right: 0;
        margin: 25px auto 0;
    }
}


@keyframes mouse-dot {
    from { opacity: 0; }
    33% { opacity: 1; }
    to { transform: translateY(15px); -webkit-transform: translateY(15px); opacity: 0; }
}
@-webkit-keyframes mouse-dot {
    from { opacity: 0; }
    33% { opacity: 1; }
    to { transform: translateY(15px); -webkit-transform: translateY(15px); opacity: 0; }
}

@keyframes gelatine {
    0%, 100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    25% {
        -webkit-transform: scale(0.9, 1.1);
        transform: scale(0.9, 1.1);
    }
    50% {
        -webkit-transform: scale(1.1, 0.9);
        transform: scale(1.1, 0.9);
    }
    75% {
        -webkit-transform: scale(0.95, 1.05);
        transform: scale(0.95, 1.05);
    }
}
@-webkit-keyframes gelatine {
    0%, 100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    25% {
        -webkit-transform: scale(0.9, 1.1);
        transform: scale(0.9, 1.1);
    }
    50% {
        -webkit-transform: scale(1.1, 0.9);
        transform: scale(1.1, 0.9);
    }
    75% {
        -webkit-transform: scale(0.95, 1.05);
        transform: scale(0.95, 1.05);
    }
}