/*
    ----------------------
            普通方法
    ----------------------

    1 .opc()              // 透明度     - 传整数 50 代表 0.5
    2 .pos(r)             // 定位方式 - 必须传参，r 代表relative || a 代表absolute ||  f 代表 fixed
    3 .font()             // 字体大小 - 默认12px
    4 .align()            // 文本对齐 - 默认 center
    5 .lineH()            // 行高设置 - 默认 20px
   11 .arrow(r)           // 三角箭头 - 必须传参    l:向左箭头 | r:向右箭头 | t:向上箭头 | b:向下箭头
   12 .float()            // 快速浮动 - 默认为 left ||  left: 向左浮动   | right:向右浮动
   13 .fontC(d)           // 字大小写 - 比传参数 d 为 大写 s 为首字母大写
   14 .fontB()            // 字体粗细 - 默认加粗  fontB(100) 传100 就是 变细

   ----------------------
   CSS3 方法
   ----------------------

   01 .borderR()          // 圆角设置 - 默认为 5px
   02 .linearG(red,blue)  // 线性渐变 - 两个颜色值 是开始到结束  目前支持 *上下* 渐变
   03 .bgFull             // 背景充满 - 背景等比例拉伸 使用 ：bgFull;
   04 .css3Tansition()    // 过度属性 - 默认两个值 前者是过渡动画时间 后者是过渡动画效果 使用 : .css3tansition(.4s,ease)


   //滤镜

   05 .filterBlur()       // 滤镜模糊 - 使用 ：.filterBlur(2px); 默认 5px
   06 .filterGrayscale()  // 滤镜灰度 - 使用 ：.filterGrayscale(100%); 默认100% ★注意参数 是 0%~100$; 100%代表全灰
   07 .filterSepia()      // 滤镜褐色 - 使用 ： .filterSepia(1); 默认1 ★注意参数 (同上)
   08 .filterBrightness() // 滤镜亮度 - 使用 ： .filterBrightness(10); 默认5 ★注意参数 10代表100% 5代表50%
   09 .filterHue()        // 滤镜色相 - 使用 ： .filterHue(180deg); 默认180deg ★注意参数 0deg~360deg
   10 .filterInvert()     // 滤镜反色 - 使用 ： .filterInvert(1); 默认1 ★注意参数 0.1~1 1代表100%
   11 .filterSaturate()   // 滤镜饱和 - 使用 ： .filterSaturate(5); 默认5 ★注意参数 5 代表 50%
   12 .filterContrast()   // 滤镜对比 - 使用 ： .filterContrast(1.5); 默认1.5 ★注意参数 1.5代表 15%

   ----------------------
        普通嵌套
   ----------------------

   01 .vcenter            // 垂直水平居中
   02 .tHide              // 文本超出隐藏省略
   03 .blockFull          // 块状元素 宽高100%
   04 .block              // 块状元素 没有设置宽高
   05 .centerBlock        // 左右居中
   05 .clearfix           // 清除浮动

    -----------------------------------
*/
.form-pop{
    position:fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color:rgba(0,0,0,0.3);
    margin: auto auto;
}
.form-pop .form-main{
    position:absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 40vw;
    height: 35vw;
    background-color:#fff;
    margin: auto auto;
    border-radius: 2%;
}
.form-pop .form-main-msg{
    font-size: 30px;
    text-align: center;
    padding: 0 5%;
    margin-top: 20%;
}
.form-pop .title{
    position:relative;
    font-size: 30px;
    color: rgb(6,6,6);
    text-align: center;
    height: 18%;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5rem;
    font-weight: bold;
    box-shadow: 0px 10px 20px -8px rgba(0,0,0,0.3);
}
.form-pop .title img{
    position:absolute;
    top: 15%;
    right: 5%;
    width: 20px;
}
.form-pop .sub-title{
    padding: 0 5%;
    margin: 5% 0;
    font-size: 20px;
    text-align: center;
}
.form-pop input{
    width: 90%;
    margin: 2% 5% 0;
    line-height: 3vw;
    font-size: 16px;
    padding:0 2%;
    border-radius: 5px;
}
.push-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 10%;
    margin-top: 5%;
}
.push-btn div{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40%;
    text-align: center;
    font-size:20px;
    color: #fff;
    height: 100%;
    background-color: rgb(49,49,47);
    border-radius: 5px;
    cursor: pointer;
}
.bgFull {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -ms-behavior: url(css/cover.htc);
    behavior: url(css/cover.htc);
}

.vcenter {
    display: block;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.tHide {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.blockFull {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.block {
    display: block;
    position: relative;
}

.centerBlock {
    margin-left: auto;
    margin-right: auto;
}

.clearfix {
    clear: both;
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
}

.slick-track:before,
.slick-track:after {
    content: "";
    display: table;
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
}

[dir="rtl"] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-prev,
.slick-next {
    z-index: 20;
    position: absolute;
    display: block;
    height: 60px;
    width: 30px;
    line-height: 0;
    font-size: 0;
    cursor: pointer;
    background: transparent;
    color: transparent;
    top: 50%;
    margin-top: -30px;
    padding: 0;
    border: none;
    outline: none;
    border: 1px solid red;
}

.slick-prev {
    left: 30px;
}

[dir="rtl"] .slick-prev {
    left: auto;
    right: 30px;
}

.slick-next {
    right: 30px;
}

[dir="rtl"] .slick-next {
    left: 30px;
    right: auto;
}

.slick-dots {
    position: absolute;
    bottom: 20px;
    height: auto;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    width: 100%;
    line-height: 0;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    border: 0;
    display: block;
    height: 10px;
    width: 10px;
    padding: 0;
    margin: 0;
    outline: none;
    line-height: 0;
    font-size: 0;
    cursor: pointer;
    background: #cccccc;
    border-radius: 0px;
}

.slick-dots li.slick-active button {
    background: #333333;
}

.container {
    max-width: 82%;
    width: 100%;
    margin: 0 auto;
}

img {
    max-width: 100%;
}

@font-face {
    font-family: 'DINEngschriftStd';
    src: url('../fonts/DINEngschriftStd.eot');
    src: url('../fonts/DINEngschriftStd.eot?#iefix') format('embedded-opentype'), url('../fonts/DINEngschriftStd.woff') format('woff'), url('../fonts/DINEngschriftStd.ttf') format('truetype'), url('../fonts/DINEngschriftStd.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SourceHanSansCN-Normal';
    src: url('../fonts/SourceHanSansCN-Normal.eot');
    src: url('../fonts/SourceHanSansCN-Normal.eot?#iefix') format('embedded-opentype'), url('../fonts/SourceHanSansCN-Normal.woff') format('woff'), url('../fonts/SourceHanSansCN-Normal.ttf') format('truetype'), url('../fonts/SourceHanSansCN-Normal.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

.header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 2;
    height: 82px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.header .box {
    max-width: 92%;
    width: 100%;
    margin: 0 auto;
}

.header .logo {
    display: block;
    float: left;
    margin-top: 27px;
}

.header .icon {
    padding-left: 30px;
    float: right;
    margin-top: 32px;
}

.header .icon a {
    display: block;
    float: left;
    line-height: 0;
    margin-left: 20px;
}

/*.header .icon span {
  display: block;
  float: left;
  margin-left: 20px;
  position: relative;
  padding-bottom: 29px;
  cursor: pointer;
}
.header .icon span .text {
  display: none;
  z-index: 2;
  position: absolute;
  top: 49px;
  left: -59px;
  width: 88px;
  height: 38px;
  padding-top: 7px;
  background: url(../images/icon3.png) no-repeat center center;
}*/
/*.header .icon span .text a {
  text-align: center;
  margin-left: 0;
  display: block;
  width: 100%;
  line-height: 31px;
  color: #666666;
  font-size: 14px;
}
.header .icon span:hover .text {
  display: block;
}*/
.header .nav {
    float: right;
}

.header .nav ul li {
    float: left;
    font-size: 15px;
    line-height: 82px;
    position: relative;
    font-family: "微软雅黑", "Microsoft Yahei", "Helvetica Neue", Helvetica, Tahoma, sans-serif;

}

.header .nav ul li:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: all .5s;
}

.header .nav ul li a {
    display: block;
    float: left;
    color: #fff;
    line-height: 40px;
    width:100px;
    text-align: center;
    margin-top: 20px;
    border: 1px solid #007ffb;
    background-color: #012069;
    border-radius: 6px;
}

.header .nav ul li a i {
    display: inline-block;
    background: url(../images/xx.png) no-repeat center center/cover;
    width: 10px;
    height: 8px;
    margin-left: 5px;

}

.header .nav ul li a .home {
    position: relative;
    top: 5px;
}

.header .nav ul li .navbtn {
    position: absolute;
    left: 0px;
    top: 100%;
    width: 111px;
    background: #fff;
    padding: 15px 0;
    display: none;
}

.header .nav ul li .navbtn li {
    float: left;
    width: 100%;
    margin-right: 0;
    text-align: center;
    font-size: 14px;
    line-height: 36px;

}

.header .nav ul li .navbtn li a {
    color: #000;
    padding-left: 17px;
}

.header .nav ul li .navbtn li a:hover {
    text-decoration: underline;
}

.header .nav ul li:hover .navbtn {
    display: block;
}

.header .nav ul li.cur {
    border-bottom-color: #fff;
}

.header .nav ul li.cur:before {
    width: 100%;
}

.footer {
    background: #222222;
    padding: 60px 0;
}

.footer .left {
    float: left;
}

.footer .left .bq {
    color: #999999;
    font-size: 15px;
}

.footer .left .foot_nav {
    margin-top: 20px;
    border-bottom: 1px solid #393939;
}

.footer .left .foot_nav a {
    padding-bottom: 16px;
    display: block;
    float: left;
    color: #999;
    font-size: 16px;
    position: relative;
    margin-left: 55px;
    transition: all .5s;
}

.footer .left .foot_nav a:first-child {
    margin-left: 0;
}

.footer .left .foot_nav a:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: all .5s;
}

.footer .left .foot_nav a:hover {
    color: #fff;
}

.footer .left .foot_nav a:hover:before {
    width: 100%;
}

.footer .left .bottom {
    margin-top: 22px;
}

.footer .left .bottom a {
    display: block;
    float: left;
    font-size: 14px;
    color: #999;
    margin-right: 10px;
}

.footer .right {
    float: right;
}

.footer .right .dh {
    font-family: DINEngschriftStd;
    font-size: 26px;
    color: #999;
    margin-bottom: 10px;
}

.footer .right p {
    font-size: 15px;
    line-height: 24px;
    color: #999;
}

.banner {
    position: relative;
}

.banner .wz {
    position: absolute;
    left: 8.854%;
    top: 40%;
    width: 35%;
}

.banner .vpa {
    position: absolute;
    left: 48.90625%;
    top: 28%;
    width: 32.1875%;
}

.banner .num {
    position: absolute;
    right: 8.854%;
    top: 22%;
    width: 3.802083333%;
}

.banner .icon {
    position: absolute;
    left: 8.854%;
    top: 68%;
    width: 2.6%;
}

.banner .slick-prev,
.banner .slick-next {
    border: none;
    width: 40px;
    height: 78px;
    margin-top: -39px;
}

.banner .slick-prev {
    left: 4%;
    background: url(../images/prev.png) no-repeat center center;
}

.banner .slick-next {
    right: 4%;
    background: url(../images/next.png) no-repeat center center;
}

.links {
    background: #ededed;
    padding: 50px 0;
}

.links .left {
    float: left;
}

.links .left ul li {
    float: left;
    background: #e6e6e6;
    line-height: 44px;
    padding: 0 20px;
    color: #666666;
    font-size: 16px;
    margin-right: 3px;
}

.links .left ul li:hover,
.links .left ul li.cur {
    background: #333333;
    color: #fff;
}

.links .left p {
    color: #999999;
    font-size: 14px;
    margin-top: 18px;
}

.links .right {
    float: right;
}

.links .links_con {
    max-width: 1015px;
    width: 100%;
}

.links .links_con .text {
    display: none;
    margin-left: -20px;
}

.links .links_con .text:first-child {
    display: block;
}

.links .links_con .text a {
    margin-left: 20px;
    display: block;
    float: left;
    color: #999999;
    font-size: 14px;
    line-height: 28px;
}

.title {
    /*background: url(../images/home_bg.png) no-repeat left center;*/
    height: 103px;
}

.title span {
    float: left;
    color: #adadad;
    font-size: 32px;
    text-transform: uppercase;
    display: block;
    font-family: DINEngschriftStd;
    margin-left: 145px;
    margin-top: 44px;
    line-height: 32px;
}

.title h3 {
    color: #333333;
    float: left;
    font-size: 32px;
    margin-left: 20px;
    margin-top: 64px;
}

.home_news {
    background: #f6f6f6;
    padding: 20px 0 0px;
}

.home_news .fwdt_box {
    background: #fff;
    width: 100%;
    padding: 70px 90px;
}

.home_news .fwdt_box .top .title {
    float: left;
}

.home_news .fwdt_box .top .fwdt_R {
    position: relative;
    float: right;
    padding-top: 85px;
}

.home_news .fwdt_box .top .fwdt_R .prev,
.home_news .fwdt_box .top .fwdt_R .next {
    width: 14px;
    height: 15px;
    float: left;
    cursor: pointer;
}

.home_news .fwdt_box .top .fwdt_R .prev {
    margin-right: 80px;
    background: url(../images/xia.jpg) no-repeat center center;
}

.home_news .fwdt_box .top .fwdt_R .next {
    background: url(../images/shang.jpg) no-repeat center center;
}

.home_news .fwdt_box .top .fwdt_R .num {
    position: absolute;
    top: 75px;
    right: 32px;
    color: #999999;
    font-size: 20px;
    font-family: arial;
}

.home_news .fwdt_box .top .fwdt_R .num span {
    font-size: 26px;
}

.home_news .fwdt_box .fwdt_div {
    margin-top: 40px;
}

.home_news .fwdt_box .fwdt_div ul li {
    float: left;
    position: relative;
    width: 48%;
}

.home_news .fwdt_box .fwdt_div ul li:nth-child(2n) {
    float: right;
}

.home_news .fwdt_box .fwdt_div ul li .img {
    line-height: 0;
    overflow: hidden;
    display: none;
}

.home_news .fwdt_box .fwdt_div ul li .img img {
    width: 100%;
}

.home_news .fwdt_box .fwdt_div ul li .text {
    /*  position: absolute;
  left: 0;
  bottom: 0;*/
    padding: 20px;
    width: 100%;
    height: auto;
    background: url(../images/bg.png);
    text-align: center;
}

.home_news .fwdt_box .fwdt_div ul li .text .icon {
    height: 47px;
    line-height: 0;
}

.home_news .fwdt_box .fwdt_div ul li .text p {
    margin-top: 8px;
    color: #040404;
    font-size: 19px;
}

.home_news .fwdt_box .fwdt_div ul li .text .more {
    background: url(../images/home_news_icon2.png) no-repeat center center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #fff;
    margin: 45px auto 0;
    display: none;
}

/*
.home_news .fwdt_box .fwdt_div ul li:hover .text {
  height: 100%;
  padding-top: 140px;
}
.home_news .fwdt_box .fwdt_div ul li:hover .text .more {
  display: block;
}*/
.home_news .gdzx_box {
    background: #fff;
    margin-top: 10px;
    padding: 70px 90px 40px;
}

.home_news .gdzx_box .top .title {
    float: left;
}

.home_news .gdzx_box .top .gdzx_R {
    margin-top: 60px;
    float: right;
}

.home_news .gdzx_box .top .gdzx_R .list {
    float: left;
}

.home_news .gdzx_box .top .gdzx_R a {
    display: block;
    float: left;
    line-height: 44px;
    color: #666666;
    font-size: 16px;
    background: #ededed;
    margin-left: 3px;
    padding: 0 20px;
}

.home_news .gdzx_box .top .gdzx_R a:hover,
.home_news .gdzx_box .top .gdzx_R a.cur {
    color: #fff;
    background: #333333;
}

.home_news .gdzx_box ul {
    margin-top: 20px;
}

.home_news .gdzx_box ul li {
    float: left;
    border-top: 2px solid #e7e7e7;
    padding: 35px 0;
    width: 48%;
}

.home_news .gdzx_box ul li:nth-child(2n) {
    float: right;
}

.home_news .gdzx_box ul li:first-child,
.home_news .gdzx_box ul li:nth-child(2) {
    border: none;
}

.home_news .gdzx_box ul li .bt h3 {
    float: left;
    color: #000000;
    font-size: 22px;
    max-width: 80%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.home_news .gdzx_box ul li .bt span {
    float: right;
    color: #000000;
    font-size: 22px;
}

.home_news .gdzx_box ul li p {
    margin-top: 12px;
    color: #666666;
    font-size: 14px;
    line-height: 24px;
    height: 48px;
    overflow: hidden;
}

.home_about {
    background: url(../images/home_about_bg.jpg) no-repeat center center / cover;
    min-height: 830px;
    padding-top: 190px;
}

.home_about .img {
    float: left;
    margin-left: 305px;
    max-width: 259px;
    width: 100%;
    line-height: 0;
}

.home_about .text {
    float: left;
    margin-left: 83px;
    max-width: 628px;
    width: 100%;
    color: #ffffff;
}

.home_about .text i {
    display: block;
    width: 4px;
    height: 124px;
    background: #fff;
    opacity: 0.3;
    margin-bottom: 15px;
}

.home_about .text h3 {
    font-size: 32px;
    font-weight: normal;
}

.home_about .text .bt {
    margin-top: 10px;
    font-size: 20px;
}

.home_about .text p {
    margin-top: 15px;
    font-size: 16px;
    line-height: 24px;
}

.home_about .text a {
    margin-top: 65px;
    display: block;
    width: 140px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    font-size: 16px;
    font-family: DINEngschriftStd;
    background: #fff;
    text-transform: uppercase;
    color: #333333;
    letter-spacing: 4px;
}

.home_case {
    padding: 80px 0;
}

.home_case .top .title {
    width: 30%;
    float: left;
}
.home_case .top .title img{
    width: 100%;
}

.home_case .top .gdzx_R {
    margin-top: 60px;
    float: right;
}

.home_case .top .gdzx_R .list {
    float: left;
}

.home_case .top .gdzx_R a {
    display: block;
    float: left;
    line-height: 44px;
    color: #666666;
    font-size: 16px;
    background: #ededed;
    margin-left: 3px;
    padding: 0 20px;
    width: 110px;
    text-align: center;
}

.home_case .top .gdzx_R a i {
    display: inline-block;
    margin-right: 5px;
    position: relative;
}

.home_case .top .gdzx_R a .i1 {
    top: 3px;
    width: 13px;
    height: 17px;
    background: url(../images/home_case_icon1.png) no-repeat center center;
}

.home_case .top .gdzx_R a .i2 {
    top: 2px;
    width: 16px;
    height: 16px;
    background: url(../images/home_case_icon2.png) no-repeat center center;
}

.home_case .top .gdzx_R a .i3 {
    top: 4px;
    width: 12px;
    height: 20px;
    background: url(../images/home_case_icon3.png) no-repeat center center;
}

.home_case .top .gdzx_R a .i4 {
    top: 2px;
    width: 16px;
    height: 16px;
    background: url(../images/home_case_icon4.png) no-repeat center center;
}

.home_case .top .gdzx_R a .i5 {
    width: 12px;
    height: 12px;
    background: url(../images/home_case_icon5.png) no-repeat center center;
}

.home_case .top .gdzx_R a:hover,
.home_case .top .gdzx_R a.cur {
    color: #fff;
    background: #333333;
}

.home_case .top .gdzx_R a:hover .i1,
.home_case .top .gdzx_R a.cur .i1 {
    background: url(../images/home_case_icon01.png) no-repeat center center;
}

.home_case .top .gdzx_R a:hover .i2,
.home_case .top .gdzx_R a.cur .i2 {
    background: url(../images/home_case_icon02.png) no-repeat center center;
}

.home_case .top .gdzx_R a:hover .i3,
.home_case .top .gdzx_R a.cur .i3 {
    background: url(../images/home_case_icon03.png) no-repeat center center;
}

.home_case .top .gdzx_R a:hover .i4,
.home_case .top .gdzx_R a.cur .i4 {
    background: url(../images/home_case_icon04.png) no-repeat center center;
}

.home_case .top .gdzx_R a:hover .i5,
.home_case .top .gdzx_R a.cur .i5 {
    background: url(../images/home_case_icon05.png) no-repeat center center;
}

.home_case .top {
    margin-bottom: 50px;
}

.home_case .home_case_con .box {
    display: none;
    height: 50vw;
}

.home_case .home_case_con .box:first-child {
    display: block;
}

.home_case .box ul {
    float: left;
    width: calc(25% - 4px);
    margin-right: 5px;
}

.home_case .box ul:last-child {
    margin-right: 0;
    width: calc(50% - 4px);
}

.home_case .box ul:last-child li ul{
    width: calc(50% - 2.7px);
}


.home_case .box ul li {
    width: 100%;
    float: left;
    margin-top: 5px;
    position: relative;
}
.home_case .box ul li:first-child{
    margin-top: 0;
}
.home_case .box ul li .img {
    line-height: 0;
    overflow: hidden;
}

.home_case .box ul li .text {
    opacity: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    transition: all .5s;
}

.home_case .box ul li .text span {
    position: absolute;
    right: 34px;
    top: 39px;
    width: 50px;
    height: 50px;
}

.home_case .box ul li .text i {
    display: block;
    width: 17px;
    height: 3px;
    background: #cccccc;
    /*margin: 15px 0;*/
}

.home_case .box ul li .text h3 {
    font-size: 22px;
    font-weight: normal;
    color: #000000;
    padding-top: 5px;
    padding-bottom: 5px;
}

.home_case .box ul li .text p {
    margin-top: 10px;
    color: #333333;
    font-size: 15px;
    line-height: 26px;
    height: 52px;
    overflow: hidden;
}

.home_case .box > ul > li:hover > .text {
    opacity: 1;
}
.home_case .box > ul > li > ul > li:hover > .text {
    opacity: 1;
}

.home_tezheng {
    background: url(../images/home_tezheng_bg.png) no-repeat center center / cover;
    padding: 90px 0 100px;
}

.home_tezheng .top .title {
    float: left;
}

.home_tezheng .top .title h3 {
    color: #ffffff;
}

.home_tezheng .top .title p {
    float: left;
    color: #ffffff;
    font-size: 16px;
    margin: 81px 0 0 15px;
}

.home_tezheng .top .more {
    float: right;
    width: 142px;
    height: 46px;
    border: 2px solid #656665;
    text-align: center;
    color: #7a7a7b;
    font-size: 18px;
    font-family: DINEngschriftStd;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    line-height: 42px;
    margin-top: 56px;
}

.home_tezheng ol{
    width: 90%;
    margin:0 auto;
}

.home_tezheng ol + ol{
    margin-top: 40px;
}

.home_tezheng ol li {
    width: 30%;
    text-align: center;
    border: 2px solid #fff;
    padding: 10px 20px 20px;
}
.home_tezheng ol li + li{
    margin-left: 3%;
}

.home_tezheng ol li .img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    line-height: 0;
    text-align: center;
}
.home_tezheng ol li .img img{
    height: 50px;
}

.home_tezheng ol li h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: normal;
}

.home_tezheng ol li p {
    margin-top: 12px;
    color: #ffffff;
    font-size: 15px;
    line-height: 24px;
    height: 48px;
    overflow: hidden;
}

.home_lilian {
    background: url(../images/home_bg2.jpg) no-repeat top center / cover;
    padding: 100px 0 0px;
}

.home_lilian .text {
    float: left;
    max-width: 560px;
    width: 100%;
    text-indent: 2em;
}

.home_lilian .text .img {
    line-height: 0;
    margin-left: -10px;
}

.home_lilian .text .con h3 {
    color: #000000;
    font-size: 32px;
    text-indent: 0;
}
.home_lilian .text .con p{
    color: #9b9b9b;
}
.home_lilian .text .con p + p {
    padding-top: 20px;
}

.home_lilian .text .con .name {
    margin-top: 12px;
    color: #333333;
    font-size: 18px;
}

.home_lilian .text .con{
    padding-left: 35px;
}

.home_lilian .text .con .t {
    margin-top: 18px;
    color: #666666;
    font-size: 16px;
    line-height: 24px;
}

.home_lilian .img_box {
    float: right;
    max-width: 842px;
    width: 100%;
    min-height: 722px;
    position: relative;
}

.home_lilian .img_box .img {
    line-height: 0;
    overflow: hidden;
    width: 80%;
    display: block;
    margin: 0 auto;
}

.home_lilian .img_box .img2 {
    position: absolute;
    right: -8px;
    bottom: 0;
    line-height: 0;
    background: #f6f6f6;
    padding: 8px 8px 0;
    width: 52%;
}

.home_service {
    background: rgb(246,246,246);
    padding-bottom: 60px;
}
.home_service.concept {
    background: rgb(246,246,246) url(../images/home_bg3.jpg) no-repeat center bottom / 82%;
    padding-bottom: 180px;
}

.home_service .left {
    float: left;
}

.home_service .left .title {
    background: url(../images/title2.png) no-repeat left center;
    height: 179px;
}

.home_service .left .title span {
    margin-top: 120px;
    margin-left: 91px;
}

.home_service .left .con i {
    display: block;
    width: 24px;
    height: 3px;
    background: #d4d4d4;
    margin: 25px 0 20px;
}

.home_service .left .con h3 {
    color: #000000;
    font-size: 32px;
}

.home_service .left .con p {
    margin-top: 10px;
    color: #333333;
    font-size: 20px;
    letter-spacing: 15px;
    line-height: 30px;
}

.home_service .right {
    width: 100%;
}

.home_service .right ul li {
    float: left;
    width: 24.6%;
    transition: all .5s;
    margin-right: 0.5%;
}

.home_service .right ul li:last-child {
    margin-right: 0;
}

.home_service .right ul li .img {
    position: relative;
}

.home_service .right ul li .img span {
    display: block;
    line-height: 0;
    overflow: hidden;
}

.home_service .right ul li:hover .img span img {
    transform: scale(1.2);
    -o-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
}

.home_service .right ul li .img span img {
    transition: all 1.2s;
    -o-transition: all 1.2s;
    -moz-transition: all 1.2s;
    -ms-transition: all 1.2s;
    -webkit-transition: all 1.2s;
}
.home_service .right .right_title{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    font-size: 40px;
    width: 100%;
    color:#999;
}
.home_service .right .right_title .right_title_value{
    padding: 0 30px;
}
.home_service .right .right_title:after{
    content: '';
    width: 25%;
    height: 2px;
    background-color:#999;
}
.home_service .right .right_title:before{
    content: '';
    width: 25%;
    height: 2px;
    background-color:#999;
}
.home_service .right ul li .img .bt {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 20px;
    padding: 5px 0 5px 20px;
    background-image: linear-gradient(to right, rgba(0,0,0,0.6) , rgba(0,0,0,0.1));
}

.home_service .right ul li .img .bt h4 {
    font-size: 30px;
    font-family: DINEngschriftStd;
    color: #fff;
    opacity: 0.2;
    text-transform: uppercase;
}

.home_service .right ul li .img .bt h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: normal;
}

.home_service .right ul li .text {
    padding: 30px;
}

.home_service .right ul li .text .t {
    font-size: 16px;
    line-height: 24px;
    color: #666666;
    height: 90px;
}

.home_service .right ul li .text .con {
    opacity: 0;
    margin-top: 20px;
}

.home_service .right ul li .text .con p {
    width: 50%;
    float: left;
    color: #fff;
    font-size: 16px;
    line-height: 30px;
    background: url(../images/home_service_icon1.png) no-repeat left center;
    padding-left: 16px;
}

.home_service .right ul li:hover,
.home_service .right ul li.cur {
    background: #262626;
}

.home_service .right ul li:hover .text .t,
.home_service .right ul li.cur .text .t {
    color: #fff;
}

.home_service .right ul li:hover .text .con,
.home_service .right ul li.cur .text .con {
    opacity: 1;
}

.ny_title span {
    float: left;
    font-size: 50px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: DINEngschriftStd;
    color: #999999;
    line-height: 50px;
}

.ny_title h3 {
    float: left;
    color: #ffffff;
    font-size: 30px;
    margin: 54px 20px 0 15px;
}

.ny_title p {
    margin-top: 68px;
    float: left;
    color: #CCCCCC;
    font-size: 16px;
}

.pinpai_box4 {
    background: #f6f6f6;
}

.pinpai_box4 .top .ny_title {
    float: left;
}

.pinpai_box4 .top .ny_title span {
    color: #b3b3b3;
}

.pinpai_box4 .top .ny_title h3 {
    color: #323232;
}

.pinpai_box4 .top .ny_title p {
    color: #666666;
}

.pinpai_box4 .top .more {
    float: right;
    margin-top: 54px;
    display: block;
    width: 140px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    font-size: 16px;
    font-family: DINEngschriftStd;
    background: #cccccc;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 4px;
}

.pinpai_box4 .box ul {
    width: 24.25%;
    margin-right: 1%;
}

.pinpai_box4 .box ul li {
    margin-bottom: 4%;
}

.pinpai_box4 .box ul li .text {
    padding: 20px;
}

.pinpai_box4 .box ul li .text span {
    width: 35px;
    height: 35px;
    top: 20px;
    right: 25px;
}

.pinpai_box4 .box ul li .text h4 {
    font-size: 18px;
}

.pinpai_box4 .box ul li .text h3 {
    font-size: 16px;
}

.pinpai_box4 .box ul li .text p {
    font-size: 12px;
    line-height: 22px;
    height: 44px;
    margin-top: 5px;
}

.pinpai_box4 .box2 ul {
    width: 32%;
    margin-right: 2%;
}

.pinpai_box4 .box2 ul li {
    margin-bottom: 6%;
}

.pinpai_box5 {
    background: #f6f6f6;
    padding-bottom: 100px;
}

.pinpai_box5 .box {
    background: #fff;
    padding: 50px 90px;
}

.pinpai_box5 .box .top .ny_title {
    float: left;
}

.pinpai_box5 .box .top .ny_title span {
    color: #b4b4b4;
    display: block;
}

.pinpai_box5 .box .top .ny_title ul {
    float: left;
    margin-top: 5px;
}

.pinpai_box5 .box .top .ny_title ul li {
    display: inline-block;
    float: left;
    width: auto;
    line-height: 40px;
    cursor: pointer;
    color: #585858;
    font-size: 24px;
    margin-right: 40px;
    margin-top: 5px;
}

.pinpai_box5 .box .top .ny_title ul li.cur {
    color: #000000;
    font-size: 30px;
    font-weight: normal;
}

.pinpai_box5 .box .top .more {
    float: right;
    margin-top: 50px;
    display: block;
    width: 140px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    font-size: 16px;
    font-family: DINEngschriftStd;
    background: #cccccc;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 4px;
}

.pinpai_box5 .box ul {
    margin-top: 40px;
}

.pinpai_box5 .box ul li {
    float: left;
    width: 48%;
}

.pinpai_box5 .box ul li:nth-child(2n) {
    float: right;
}

.pinpai_box5 .box ul li .img {
    line-height: 0;
    overflow: hidden;
}

.pinpai_box5 .box ul li .text {
    padding-top: 20px;
}

.pinpai_box5 .box ul li .text .bt {
    line-height: 30px;
}

.pinpai_box5 .box ul li .text .bt h3 {
    font-weight: normal;
    float: left;
    max-width: 80%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 24px;
    color: #000;
}

.pinpai_box5 .box ul li .text .bt span {
    float: right;
    color: #000;
    font-size: 20px;
}

.pinpai_box5 .box ul li .text p {
    margin-top: 15px;
    font-size: 14px;
    line-height: 24px;
    color: #666;
}

.title2 {
    text-align: center;
}

.title2 h4 {
    color: #999999;
    font-size: 50px;
    text-transform: uppercase;
    font-family: DINEngschriftStd;
}

.title2 h3 {
    color: #333333;
    font-size: 30px;
}

.title2 p {
    margin-top: 5px;
    color: #999999;
    font-size: 16px;
}

.title2 i {
    display: block;
    width: 34px;
    height: 2px;
    background: #000000;
    margin-top: 48px;
    margin: 25px auto;
}

.baozhaun_box2 {
    background: #f2f2f2;
}

.baozhaun_box2 .box {
    background: #fff;
    padding: 70px 90px;
    position: relative;
    top: -52px;
}

.baozhaun_box2 .box ul {
    margin-top: 54px;
}

.baozhaun_box2 .box ul li {
    float: left;
    width: 25%;
    text-align: center;
}

.baozhaun_box2 .box ul li .icon {
    display: block;
    width: 103px;
    height: 103px;
    margin: 0 auto;
    border: 2px solid #f4f4f4;
    border-radius: 50px;
    position: relative;
    z-index: 2;
}

.haibao_box {
    background: #f6f6f6;
    padding-top: 65px;
}

.haibao_box ul {
    margin-top: 70px;
}

.haibao_box ul li {
    float: left;
    width: 50%;
}

.haibao_box ul li .img {
    float: left;
    width: 50%;
}

.haibao_box ul li .text {
    margin-top: 59px;
    width: 50%;
    background: #1f222f;
    float: left;
    min-height: 356px;
    padding: 90px 38px 0;
}

.haibao_box ul li .text h3 {
    color: #ffffff;
    font-size: 24px;
}

.haibao_box ul li .text .t {
    margin-top: 12px;
    color: #fff;
    font-size: 16px;
    line-height: 30px;
}

.menu {
    margin-top: 50px;
}

.menu a {
    display: inline-block;
    line-height: 45px;
    border-radius: 3px;
    color: #d8d8d8;
    font-size: 18px;
    border-bottom: 1px solid transparent;
}

.menu i {
    display: inline-block;
    width: 5px;
    height: 5px;
    background: #cfd0d0;
    border-radius: 50px;
    margin: 0 25px;
    position: relative;
    top: -3px;
}

.menu i:last-child {
    display: none;
}

.menu a:hover,
.menu a.cur {
    color: #fff;
    border-color: #ffffff;
}

.case_box {
    background: #f6f6f6;
    padding: 65px 0 20px;
}

.case_box .case_title {
    text-align: center;
}

.case_box .case_title h3 {
    color: #333333;
    font-size: 24px;
}

.case_box .case_title p {
    margin-top: 15px;
    color: #999999;
    font-size: 14px;
    line-height: 24px;
}

.case_box .case_list {
    margin-top: 40px;
}

.case_box .case_list ul li {
    float: left;
    width: 32%;
    margin-bottom: 50px;
    margin-right: 2%;
}

.case_box .case_list ul li a {
    display: inline-block;
}

.case_box .case_list ul li:nth-child(3n) {
    margin-right: 0;
}

.case_box .case_list ul li .img {
    line-height: 0;
    overflow: hidden;
}

.case_box .case_list ul li .img img {
    transition: all 1.2s;
    -o-transition: all 1.2s;
    -moz-transition: all 1.2s;
    -ms-transition: all 1.2s;
    -webkit-transition: all 1.2s;
}

.case_box .case_list ul li:hover .img img {
    transform: scale(1.2);
    -o-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
}

.case_box .case_list ul li .text {
    padding-top: 12px;
}

.case_box .case_list ul li .text h3 {
    font-size: 18px;
    color: #333333;
    font-weight: normal;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.case_box .case_list ul li .text h3 a {
    color: #333333;
}

.case_box .case_list ul li .text p {
    margin-top: 5px;
    color: #999999;
    font-size: 14px;
}

.case_box .case_list ul li .text p a {
    color: #999999;
}

/*.case_show {
  background: #f6f6f6;
  padding: 60px 0 70px;
}
.case_show .box {
  padding: 0 90px;
}
.case_show .box h1 {
  text-align: center;
  color: #333333;
  font-size: 36px;
  font-weight: normal;
}
.case_show .box .date {
  margin-top: 20px;
  padding-bottom: 30px;
  text-align: center;
  color: #999999;
  font-size: 16px;
  border-bottom: 1px solid #dddddd;
}
.case_show .box .date span {
  display: inline-block;
  margin: 0 20px;
}
.case_show .box .detail {
  padding-top: 30px;
  color: #666666;
  font-size: 14px;
  line-height: 26px;
}*/

.about_box4 {
    background: #333333;
    padding: 100px 0 70px;
}

.about_box4 .container {
    position: relative;
}

.about_box4 .container .img_bg {
    position: absolute;
    left: 0;
    bottom: 4%;
    line-height: 0;
}

.about_box4 .left {
    float: left;
    width: 24.5%;
    padding-right: 3%;
}

.about_box4 .left h3 {
    color: #ffffff;
    font-size: 32px;
    margin-top: 48px;
}

.about_box4 .left p {
    margin-top: 15px;
    color: #cccccc;
    font-size: 16px;
    line-height: 28px;
}

.about_box4 .right {
    float: right;
    width: 75.5%;
}

.about_box4 .right ol li {
    float: left;
    width: 32%;
    position: relative;
    margin-bottom: 2%;
    margin-right: 2%;
}

.about_box4 .right ol li:nth-child(3n) {
    margin-right: 0;
}

.about_box4 .right ol li .img {
    line-height: 0;
    overflow: hidden;
}

.about_box4 .right ol li .img img {
    width: 100%;
}

.about_box4 .right ol li .text {
    display: none;
    position: absolute;
    left: 5%;
    top: 5%;
    width: 90%;
    height: 90%;
    background: rgba(0, 0, 0, 0.9);
    padding: 12% 5% 0;
}

.about_box4 .right ol li .text h3 {
    border-bottom: 1px solid #484849;
    color: #ffffff;
    font-size: 32px;
    font-family: DINEngschriftStd;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.about_box4 .right ol li .text h3 span {
    font-size: 20px;
    display: inline-block;
    position: relative;
    top: -2px;
    margin-left: 15px;
}

.about_box4 .right ol li .text p {
    margin-top: 12px;
    color: #CCC;
    font-size: 14px;
    line-height: 24px;
}

.about_box4 .right ol li:hover .text {
    display: block;
}

.about_gsxw .fwdt_box .fwdt_div ul li {
    float: left;
    width: 48%;
}

.about_gsxw .fwdt_box .fwdt_div ul li:nth-child(2n) {
    float: right;
}

.about_gsxw .fwdt_box .fwdt_div ul li .img {
    line-height: 0;
    overflow: hidden;
}

.about_gsxw .fwdt_box .fwdt_div ul li .text_con {
    padding-top: 20px;
}

.about_gsxw .fwdt_box .fwdt_div ul li .text_con .bt {
    line-height: 30px;
}

.about_gsxw .fwdt_box .fwdt_div ul li .text_con .bt h3 {
    font-weight: normal;
    float: left;
    max-width: 80%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 24px;
    color: #000;
}

.about_gsxw .fwdt_box .fwdt_div ul li .text_con .bt span {
    float: right;
    color: #000;
    font-size: 20px;
}

.about_gsxw .fwdt_box .fwdt_div ul li .text_con p {
    margin-top: 15px;
    font-size: 14px;
    line-height: 24px;
    color: #666;
}

/**marketing**/
.marketing_box {
    padding: 80px 0;
}

.marketing_box ol {
    margin-top: 60px;
}

.marketing_box ol li {
    float: left;
    width: 33.33333333%;
    text-align: center;
    padding: 0 3%;
}

.marketing_box ol li .icon {
    line-height: 0;
}

.marketing_box ol li .text {
    margin-top: 20px;
}

.marketing_box ol li .text h3 {
    color: #333333;
    font-size: 22px;
}

.marketing_box ol li .text p {
    margin-top: 10px;
    color: #666666;
    font-size: 14px;
    line-height: 24px;
}

.marketing_box .img {
    margin-top: 60px;
    line-height: 0;
}


.home_case .top .gdzx_R a.more {
    font-family: DINEngschriftStd;
    text-transform: uppercase;
    letter-spacing: 4px;
    background: #cccccc;
    color: #fff;
}

/**planning**/
.planning_box {
    background: url(../images/planning_bg.jpg) no-repeat center center / cover;
    padding-top: 90px;
    min-height: 821px;
}

.planning_box .box {
    max-width: 905px;
    width: 100%;
    float: left;
}

.planning_box .box ol {
    margin-top: 50px;
}

.planning_box .box ol li {
    float: left;
    background: #fff;
    width: 49.9%;
    padding: 45px 5% 40px;
    margin-bottom: 0.2%;
}

.planning_box .box ol li .icon {
    float: left;
    line-height: 0;
    width: 63px;
    text-align: right;
}

.planning_box .box ol li .text {
    float: right;
    width: 78%;
    margin-top: -5px;
}

.planning_box .box ol li .text h3 {
    color: #000;
    font-size: 22px;
    font-weight: normal;
}

.planning_box .box ol li .text p {
    margin-top: 5px;
    color: #666666;
    font-size: 16px;
    line-height: 24px;
}

.planning_box .box ol li:nth-child(2n) {
    float: right;
}

.planning_box .box ol li:nth-child(2) {
    margin-top: 7%;
}

.planning_box .box ol li.last {
    background: none;
    font-family: DINEngschriftStd;
    text-transform: uppercase;
    font-size: 18px;
    color: #d9d9d9;
}

.planning_box2 .left span:before {
    background-image: url(../images/planning_b1.jpg);
}

.planning_box2 .right .text .tit {
    margin-top: 20px;
    font-size: 16px;
    line-height: 30px;
    color: #e0e0e0;
}

.planning_box2 .right .text a {
    margin-top: 80px;
    display: block;
    width: 140px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    font-size: 16px;
    font-family: DINEngschriftStd;
    text-transform: uppercase;
    color: #666666;
    letter-spacing: 4px;
    background: #f0f0f0;
}

.planning_box3 {
    padding: 90px 0;
    background: #f6f6f6;
}

.planning_box3 ol {
    margin-top: 50px;
    background: url(../images/planning_bg2.jpg) no-repeat center center / cover;
    padding: 175px 0 140px;
}

.planning_box3 ol li {
    float: left;
    width: 25%;
    padding-left: 6%;
}

.planning_box3 ol li .icon {
    line-height: 0;
}

.planning_box3 ol li .text {
    padding-top: 40px;
}

.planning_box3 ol li .text h3 {
    color: #fff;
    font-size: 22px;
    font-weight: normal;
}

.planning_box3 ol li .text p {
    margin-top: 5px;
    color: #fff;
    font-size: 18px;
}

.planning_box4 .right ol li .text {
    height: auto;
    bottom: 5%;
    top: auto;
    background: #fff;
    padding: 8% 5%;
}

.planning_box4 .right ol li .text h3 {
    color: #333333;
}

.planning_box4 .right ol li .text p {
    color: #333333;
}

@media (max-width: 1680px) {
    .home_lilian .text {
        max-width: 510px;
    }

    .home_lilian .img_box {
        max-width: 805px;
    }

    .news_box .box {
        padding: 70px;
    }

    .news_box .box .left {
        max-width: 930px;
    }

    .news_list ul li .text {
        width: 680px;
    }

    .news_box .box .right {
        max-width: 270px;
    }

    .news_box .box .right .wz_con li .text {
        width: 147px;
    }

    .news_box .box .right .wz_con li .text .con_btn {
        font-size: 12px;
    }

    .news_box .box .right .wz_con li .text .con_btn a {
        margin-right: 5px;
    }

    .pinpai_box .box .img {
        max-width: 580px;
    }

    .pinpai_box .box .text .t {
        font-size: 16px;
        line-height: 26px;
    }

    .pinpai_box3 .box .con {
        max-width: 760px;
    }

    .baozhaun_box .right {
        max-width: 880px;
    }

    .baozhaun_box3 .box .right {
        max-width: 740px;
    }

    .baozhaun_box3 .box .right ul li {
        width: 47%;
    }

    .haibao_box ul li .text {
        margin-top: 52px;
        min-height: 314px;
    }

    .about_gsxw .fwdt_box .top .title .title_bt,
    .design_box5 .top .title .title_bt {
        display: none;
    }

    .marketing_box2 .box {
        margin-left: 154px;
    }

    .marketing_box3 .left ol li {
        margin-top: 28px;
    }

    .marketing_box5 {
        min-height: 943px;
    }

    .planning_box2 .right {
        padding-top: 88px;
    }

}

@media (max-width: 1600px) {

    .home_lilian .img_box {
        max-width: 50%;
        min-height: 600px;
    }

    .home_lilian .text .con .t,
    .home_about .text p {
        font-size: 14px;
        line-height: 24px;
    }

    .home_about {
        min-height: 680px;
        padding-top: 95px;
    }

    .links .links_con {
        max-width: 872px;
    }

    .news_box .box {
        padding: 70px;
    }

    .news_box .box .left {
        max-width: 68%;
    }

    .news_list ul li .text {
        width: 68%;
    }

    .news_box .box .right {
        width: 30%;
    }

    .contact_top .box {
        top: -110px;
    }

    .contact_top .box ul li {
        padding: 65px 30px;
    }

    .contact_top .box ul li .t {
        font-size: 14px;
    }

    .contact_top .box ul li .t em {
        width: 226px;
    }

    .feedback .box {
        top: -60px;
    }

    .pinpai_box .box {
        padding: 0;
    }

    .kongjian_box .box {
        padding: 0;
    }

    .kongjian_box ul {
        padding-left: 0;
        padding-right: 0;
    }

    .baozhaun_box .left {
        padding-left: 0;
    }

    .baozhaun_box .right {
        max-width: 847px;
        padding-right: 0;
    }

    .baozhaun_box3 .box .right {
        max-width: 704px;
        padding-left: 54px;
    }

    .haibao_box ul li .text {
        margin-top: 50px;
        min-height: 299px;
        padding-top: 45px;
    }


    .design_box6 .right .text ol li .t p {
        font-size: 14px;
    }

    .design_box6 .right .text ol li .t .bt {
        font-size: 16px;
    }

    .design_box6 .right {
        padding-top: 80px;
    }

    .marketing_box2 {
        padding: 130px 0;
    }

    .marketing_box2 .box {
        margin-left: 92px;
    }

    .marketing_box4 {
        padding: 108px 0;
    }

    .marketing_box5 {
        min-height: 898px;
    }
}

@media (max-width: 1440px) {
    .header .icon {
        padding-left: 0;
    }
    .home_service .left .con p {
        font-size: 16px;
    }

    .home_service .right ul li .text .t {
        font-size: 14px;
        line-height: 24px;
        height: 90px;
    }

    .home_service .right ul li .text .con p {
        font-size: 14px;
    }

    .home_tezheng ol li p {
        font-size: 14px;
        line-height: 24px;
        overflow: auto;
        height: auto;
    }

    .home_tezheng ol li {
        margin-top: 48px;
    }

    .home_tezheng ol li::before {
        height: 100%;
    }

    .home_case .box ul li .text h4 {
        font-size: 18px;
    }

    .home_case .box ul li .text h3 {
        font-size: 16px;
    }

    .home_case .box ul li .text {
        padding: 5px;
    }

    .home_about .img {
        margin-left: 175px;
    }

    .home_about {
        padding: 90px 0;
        min-height: 0;
    }

    .links .links_con {
        max-width: 773px;
    }

    .footer .left .foot_nav a {
        margin-left: 20px;
    }

    .news_box .box .left {
        max-width: 70%;
    }

    .news_list ul li .text {
        width: 68%;
    }

    .news_box .box .right {
        width: 28%;
    }

    .news_box .box .right .wz_con li .text {
        width: 58%;
    }

    .news_box .box {
        padding: 50px 20px;
    }

    .contact_top .box,
    .feedback .box,
    .case_show .box {
        padding: 0;
    }

    .contact_top .box ul li .t em {
        width: 238px;
    }

    .contact_banner .container {
        padding: 205px 0 0;
    }

    .pinpai_box .box .img {
        width: 50%;
    }

    .pinpai_box .box .text .t {
        font-size: 14px;
        line-height: 24px;
    }

    .pinpai_box {
        padding: 70px 0;
    }

    .pinpai_box3 .box .con {
        width: 50%;
        min-height: 0;
    }

    .pinpai_box3 .box .con {
        padding: 50px 25px;
    }

    .pinpai_box3 .box .con ul li .t {
        width: 68%;
    }

    .pinpai_box3 .box .con ul li .t p {
        font-size: 14px;
        line-height: 24px;
    }

    .pinpai_box3 .box .con ul li .t h3 {
        font-size: 18px;
    }

    .pinpai_box3 .box .con ul li {
        margin-bottom: 50px;
    }

    .pinpai_box3 .box .con ul li:nth-child(3),
    .pinpai_box3 .box .con ul li:nth-child(4) {
        margin-bottom: 0;
    }

    .pinpai_box3 .box .con {
        top: 26px;
    }

    .pinpai_box3 {
        padding-top: 70px;
    }

    .kongjian_box ul li {
        padding: 30px;
    }

    .baozhaun_box3 .box .right ul li .text h3 {
        font-size: 18px;
    }

    .kongjian_box .box .left p,
    .kongjian_box ul li p,
    .baozhaun_box3 .box .right ul li .text p,
    .baozhaun_box3 .box .left p,
    .baozhaun_box .right ul li .text p,
    .title2 p,
    .baozhaun_box2 .box ul li .text p {
        font-size: 14px;
        line-height: 24px;
    }

    .baozhaun_box3 .box .right ul li {
        width: 48%;
    }

    .baozhaun_box3 .box {
        padding: 100px 40px 0;
    }

    .baozhaun_box3 .box {
        min-height: 675px;
    }

    .baozhaun_box2 .box {
        padding: 60px 40px;
    }

    .haibao_box ul li .text {
        margin-top: 45px;
        padding: 60px 20px 0;
        min-height: 269px;
    }

    .haibao_box ul li .text h3 {
        font-size: 20px;
    }

    .haibao_box ul li .text .t {
        font-size: 14px;
        line-height: 24px;
    }

    .title_bt {
        font-size: 14px;
    }

    .marketing_box2 .box {
        margin-left: 0;
    }

    .about_box .box .t,
    .about_box .box .text .right,
    .about_box2 .box .t,
    .about_box2 .box ol li p,
    .about_box3 .t,
    .about_box3 .yjhd_box .box .text p,
    .about_box4 .left p,
    .design_box2 .left .t,
    .design_box3 .right .text p,
    .design_box4 ol li p,
    .marketing_box5 .box p,
    .marketing_box2 .box .text p,
    .planning_box .box ol li .text p,
    .planning_box2 .right .text .tit,
    .planning_box3 ol li .text p {
        font-size: 14px;
        line-height: 24px;
    }

    .about_box .box .text .left .bt {
        font-size: 82px;
    }

    .about_box2 {
        padding: 80px 0;
    }

    .about_box2 .box {
        width: 680px;
        padding: 50px;
    }

    .about_box3 .yjhd_box .box .text h3 {
        font-size: 22px;
        font-weight: normal;
        margin-top: 18px;
    }

    .about_box3 .yjhd_box .slick-dots {
        padding-left: 32px;
    }

    .about_box4 .container .img_bg {
        width: 16%;
    }

    .about_box4 .left h3 {
        margin-top: 30px;
    }

    .about_box4 .right ol li .text h3 {
        font-size: 22px;
        font-weight: normal;
    }

    .about_box4 .right ol li .text h3 span {
        font-size: 14px;
    }

    .about_box4 .right ol li .text p {
        font-size: 12px;
        line-height: 18px;
    }

    .home_news .gdzx_box ul li .bt h3 {
        max-width: 73%;
    }

    .design_box2 .left {
        padding-top: 0;
    }

    .design_box2 .right {
        width: 45%;
    }

    .design_box3 .right .text {
        margin-bottom: 12px;
    }

    .design_box6 .right .text ol li {
        margin-top: 15px;
    }

    .design_box ul li {
        height: 148px;
    }

    .marketing_box2 .box .text a {
        margin-top: 55px;
    }

    .planning_box .box ol li {
        padding: 35px 5% 30px;
    }

    .planning_box {
        min-height: 756px;
    }

    .planning_box3 ol {
        padding: 70px 0;
    }

    .about_box4 .left p {
        line-height: 18px;
    }

}

@media (max-width: 1366px) {
    .home_service,
    .home_tezheng,
    .home_case,

    .home_lilian .text {
        max-width: 45%;
    }

    .home_lilian .img_box .img {
        width: 100%;
    }

    .home_lilian .img_box .img2 {
        width: 60%;
    }

    .home_case {
        padding-bottom: 50px;
    }

    .home_about .img {
        margin-left: 0;
    }

    .home_about .text i {
        height: 80px;
    }

    .home_about .text {
        max-width: 760px;
    }

    .home_news .fwdt_box {
        padding: 70px;
    }

    .home_news .gdzx_box {
        padding: 70px 70px 30px;
    }

    .home_news .gdzx_box ul li .bt h3 {
        font-size: 16px;
    }

    .home_news .gdzx_box ul li .bt span {
        font-size: 16px;
    }

    .links .links_con {
        max-width: 720px;
    }

    .home_news .fwdt_box .fwdt_div ul li:hover .text {
        padding-top: 56px;
    }

    .contact_banner .container h3,
    .case_banner h3,
    .case_show .box h1 {
        font-size: 28px;
    }

    .home_lilian .text .con h3,
    .home_service .left .con h3,
    .contact_top .box ul li h3,
    .feedback .box .title3 h3,
    .pinpai_box .box .text h3,
    .ny_title h3,
    .baozhaun_box .left h3,
    .title2 h3 {
        font-size: 22px;
    }

    .ny_title h3 {
        margin-top: 65px;
    }

    .title h3 {
        font-size: 22px;
        margin-top: 76px;
    }

    .pinpai_box2 .box ul li h3,
    .kongjian_box .box .left h3 {
        font-size: 22px;
    }

    .contact_top .box ul li .t em {
        width: 210px;
    }

    .pinpai_box3 .box .text .bt h3 {
        font-size: 22px;
    }

    .pinpai_box3 .box .text .bt h4 {
        font-size: 30px;
    }

    .pinpai_box3 .box .text .bt {
        top: 96px;
        left: 70px;
        padding-top: 51px;
    }

    .pinpai_box3 .box .con {
        padding: 30px 25px;
    }

    .ny_title p {
        font-size: 14px;
        margin-top: 74px;
    }

    .pinpai_box5 .box {
        padding: 50px 70px;
    }

    .pinpai_box5 .box ul li .text .bt h3,
    .pinpai_box5 .box ul li .text .bt span {
        font-size: 18px;
    }

    .pinpai_box5 .box .top .ny_title ul li {
        font-size: 20px;
    }

    .pinpai_box5 .box .top .ny_title ul li.cur,
    .baozhaun_box3 .box .left h3 {
        font-size: 22px;
    }

    .pinpai_box5 {
        padding-bottom: 70px;
    }

    .baozhaun_box {
        min-height: 500px;
    }

    .baozhaun_box .right {
        max-width: 715px;
        padding-left: 60px;
        padding-top: 40px;
    }

    .baozhaun_box .right ul li {
        width: 48%;
    }

    .baozhaun_box .right ul li {
        margin-top: 65px;
    }

    .baozhaun_box .left {
        padding-top: 126px;
    }

    .baozhaun_box3 .box .right {
        max-width: 647px;
    }

    .baozhaun_box3 .box .right ul li .icon {
        width: 46px;
    }

    .haibao_box ul li .text {
        margin-top: 42px;
        min-height: 256px;
    }

    .title_bt {
        margin-top: 86px;
    }

    .about_box,
    .about_box2,
    .about_box3,
    .about_box4,
    .design_box2,
    .design_box3,
    .design_box4,
    .marketing_box,
    .marketing_box3,
    .marketing_box4,
    .planning_box,
    .planning_box3 {
        padding: 70px 0;
    }

    .marketing_box2 {
        padding: 80px 0;
    }

    .news_info .box {
        padding: 50px 70px;
    }

    .about_box3 .yjhd_box .box .text .date {
        font-size: 24px;
    }

    .about_box4 .left h3,
    .design_box2 .left h3,
    .design_box3 .right .text h3,
    .design_box4 ol li h3 span,
    .design_box6 .right .text h3,
    .marketing_box2 .box .text h3,
    .marketing_box4 ol li .top .text h3,
    .marketing_box5 .box h3 {
        font-size: 22px;
    }

    .about_gsxw .fwdt_box .fwdt_div ul li .text_con .bt h3,
    .design_box3 .right .text h4,
    .design_box4 ol li h3,
    .design_box6 .right .text h4,
    .marketing_box3 .left ol li .t h3,
    .marketing_box4 ol li dl dt h3,
    .marketing_box4 ol li dl dd h3,
    .planning_box .box ol li .text h3,
    .planning_box3 ol li .text h3 {
        font-size: 18px;
    }

    .about_gsxw .fwdt_box .fwdt_div ul li .text_con .bt span {
        font-size: 18px;
    }

    .design_box4 ol {
        margin-top: 70px;
    }

    .design_box6 .right .text h3 {
        margin-top: 26px;
    }

    .design_box ul li .text p {
        font-size: 20px;
        font-weight: normal;
    }

    .marketing_box2 .box .text h4 {
        font-size: 44px;
        line-height: 45px;
    }

    .marketing_box3 .left ol li {
        width: 47%;
    }

    .marketing_box4 ol li dl dt,
    .marketing_box4 ol li dl dd {
        width: 47%;
    }

    .marketing_box4 ol li a {
        margin-top: 50px;
    }

    .marketing_box5 {
        background-size: 100% 100%;
        min-height: 760px;
    }

    .planning_box .box ol li.last {
        padding-bottom: 0;
    }

    .planning_box {
        min-height: 718px;
    }

    .planning_box2 .right .text a {
        margin-top: 45px;
    }

    .planning_box3 ol li .icon img {
        height: 60px;
    }

}

@media (max-width: 1280px) {
    .kongjian_box .box .left {
        width: 350px;
    }

    .pinpai_box3 .box .con ul li {
        width: 48%;
    }

    .pinpai_box3 .box .con ul li .t h3 {
        font-size: 16px;
    }

    .pinpai_box3 .box .con ul li .t {
        margin-top: 0;
    }

    .pinpai_box3 .box .con ul li {
        margin-bottom: 38px;
    }

    .home_service .right {
        width: 100%;
    }

    .design_box ul li .icon img {
        height: 50px;
    }

    .design_box ul li .text h3 {
        font-size: 16px;
    }

    .design_box ul li .text p {
        font-size: 14px;
    }

    .design_box ul li {
        height: 110px;
    }

    .design_box6 .right {
        padding-top: 55px;
    }

    .design_box2 .left a {
        margin-top: 45px;
    }

    .footer .left .foot_nav a {
        font-size: 14px;
    }

    .marketing_box3 .left ol li .icon img {
        height: 30px;
    }

    .marketing_box3 .left ol li .t p {
        height: 110px;
    }

    .marketing_box5 {
        min-height: 680px;
    }

    .about_box4 .left h3 {
        margin-top: 18px;
    }

    .about_box4 .left p {
        margin-top: 5px;
    }

    .home_about .text {
        max-width: 660px;
        float: right;
        margin-left: 0;
    }

    .links .links_con {
        max-width: 650px;
    }

    .haibao_box ul li .text {
        margin-top: 40px;
        min-height: 239px;
        padding-top: 32px;
    }

    .baozhaun_box .right {
        max-width: 680px;
    }

    .baozhaun_box2 .box ul li .text {
        width: 206px;
        height: 206px;
        padding-top: 44px;
    }

    .baozhaun_box3 .box .right {
        max-width: 576px;
    }

    .contact_banner .container {
        padding-top: 165px;
    }

    .contact_top .box ul li .t em {
        width: 182px;
    }

    .feedback .box ul li .text div em {
        margin-right: 24px;
    }

    .news_list ul li .text {
        width: 65%;
    }

    .news_box .box .right .wz_con li .text {
        width: 56%;
    }

    .pinpai_box4 .top .ny_title p {
        display: none;
    }
}

.inputerror {
    border: 1px solid #f00 !important;
    background-color: #ffe6e6 !important;
}

@-webkit-keyframes inputerrors {
    0% {
        background-color: #fff;
    }
    100% {
        background-color: #ffe6e6;
    }
}

.inputerror {
    animation: inputerrors 0.5s 3 ease;
}

.page a {
    display: inline-block;
    border: 1px solid #e4e4e4;
    line-height: 40px;
    color: #666666;
    font-size: 14px;
    margin: 0 1px;
    transition: all .5s;
    padding: 0 16px;
}

.page a:hover, .page a.cur {
    background: #222222;
    border-color: #222222;
    color: #fff;
}

/*新增NEW右侧-2018.7.11*/
.xiaotong {
    margin-top: 20px;
    margin-bottom: 20px;
}

.xiaotong li {
    float: left;
    width: auto;
    height: 35px;
    border: 1px solid #d8d8d8;
    border-radius: 3px;
    margin: 0 10px 8px 0;
    padding: 0 1em;
}

.xiaotong li a {
    display: block;
    text-align: center;
    line-height: 33px;
    color: #777777;
    font-size: 14px;
}

/*右侧边栏样式*/
.sidebar-box{
    position: fixed;
    right:0;
    bottom:10%;
    transform: translateY(-50%);
    -ms-transform:translateY(-50%); /* IE 9 */
    -moz-transform:translateY(-50%);    /* Firefox */
    -webkit-transform:translateY(-50%); /* Safari 鍜� Chrome */
    -o-transform:translateY(-50%);
    z-index:1000;
}
.sidebar li{
    width:50px;
    height:50px;
    background-color: #EAEAEA;
    /*padding: 15px;*/
    position:relative;
    text-align:right;
    border-bottom: 1px solid #DBDBDB;
    transition:all 0.5s ease-in-out;
}
.sidebar li+li{

}
.sidebar li i{
    width:50px;
    height:49px;
    position: absolute;
    right:0;
    top:0;
    z-index:1100;
    background-color: #EAEAEA;
    transition:all 0.5s ease-in-out;
}

.sidebar li a{
    display:block;
    width:100%;
}
.sidebar li .text{
    width:220px;
    font-size:14px;
    color:#0079FF;
    font-weight: 600;
    position:absolute;
    left:50px;
    top:50%;
    transform: translateY(-50%);
    -ms-transform:translateY(-50%); /* IE 9 */
    -moz-transform:translateY(-50%);    /* Firefox */
    -webkit-transform:translateY(-50%); /* Safari 鍜� Chrome */
    -o-transform:translateY(-50%);
    text-align:left;
    z-index:10;
}
.sidebar li .icon01{
    background:url('../images/aside-img01.png') no-repeat center/25px #FFF;
}
.sidebar li .icon02{
    background:url('../images/call2.png') no-repeat center/25px #FFF;
}
.sidebar li .icon03{
    background:url('../images/aside-img03.png') no-repeat center/25px #FFF;
}
.sidebar li .icon04{
    background:url('../images/aside-img04.png') no-repeat center/20px #FFF;
}
.sidebar li .icon05{
    background:url('../images/aside-img05.png') no-repeat center/25px #FFF;
}
.sidebar li .icon06{
    background:url('../images/aside-img06.png') no-repeat center/25px #FFF;
}



.sidebar:hover li{
    width: 250px;
}
.sidebar:hover li .text{
    left:30px;
}
.sidebar li:hover{
    background-color: #0079FF;
}
.sidebar li:hover .text{
    color: #FFFFFF;
}
.sidebar li:hover .icon01{
    background:url('../images/aside-img001.png') no-repeat center/25px #0079FF;
}
.sidebar li:hover .icon02{
    background:url('../images/call1.png') no-repeat center/25px #0079FF;
}
.sidebar li:hover .icon03{
    background:url('../images/aside-img003.png') no-repeat center/25px #0079FF;
}
.sidebar li:hover .icon04{
    background:url('../images/aside-img004.png') no-repeat center/20px #0079FF;
}
.sidebar li:hover .icon05{
    background:url('../images/aside-img005.png') no-repeat center/25px #0079FF;
}
.sidebar li:hover .icon06{
    background:url('../images/aside-img006.png') no-repeat center/25px #0079FF;
}
.footer_fixed{
    position:fixed;
    bottom:0;
    left:0;
    z-index:99;
    align-items: center;
    width: 100%;
    height: 130px;
    background-image: linear-gradient(to right, #ff9134 , #fc4b8f);
    font-size: 40px;
    display: none;
}
.footer_fixed > div{
    width: 50%;
}
.footer_fixed > div span{
    color: #fff;
}
.footer_fixed .footer_fixed_left{
    position: relative;
    display: flex;
    font-size: 35px;
}
.footer_fixed .footer_fixed_left > div{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}
.footer_fixed .footer_fixed_left > div img{
    width: 40px;
}
.footer_fixed .footer_fixed_left > div:nth-child(2) img{
    width: 28px;
}
.footer_fixed .footer_fixed_right div{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    height: 90px;
    margin:0 auto;
    background-image: linear-gradient(to right, #fff3da , #ffe8a6);
    border-radius: 500px;
    color:#fa2e2c;
    font-weight: bold;
}
.index_body{
    padding-bottom: 90px;
}
@media (max-width: 1024px) {
    .sidebar-box {
        display: none;
    }
    .home_case .home_case_con .box {
        height: 50vw;
    }
    .index_body{
        padding-bottom: 130px;
    }
    .footer_fixed{
        display: flex;
    }
    .banner .wz{
        width: 50%;
    }
    .home_lilian .text .con .t{
        font-size: 24px;
        line-height: 26px;
    }
    .home_lilian{
        padding-bottom: 50px;
    }
    .home_lilian .img_box{
        display: flex;
        align-items: center;
    }
    .home_tezheng ol{
        width: 100%;
    }
    .home_tezheng ol li p{
        font-size: 24px;
        line-height: 26px;
    }
    .home_service .right ul li .text .t{
        font-size: 24px;
    }
    .home_service .right ul li .text .t{
        height: 180px;
    }
    .home_case .top .gdzx_R a{
        width: 140px;
        font-size: 24px;
    }
    .home_case .top .title{
        width: 60%;
    }
    .advantage .title_image{
        width: 15% !important;
    }

    .form-pop .form-main{
        width: 70vw;
        height: 60vw;
    }
    .form-pop .title{
        font-size: 40px;
    }
    .form-pop .title img{
        width: 30px;
    }
    .form-pop .sub-title{
        font-size: 28px;
    }
    .form-pop input{
        line-height: 5.5vw;
        font-size: 25px;
    }
    .push-btn div{
        font-size:30px;
    }
}

@media (max-width: 1280px) {
    .home_case .top .gdzx_R a, .home_news .gdzx_box .top .gdzx_R a {
        padding: 0 12px;
    }
}

.m_w1920 {
    max-width: 1920px;
    margin: 0 auto;
}

.banner img,
.nybanner img {
    width: 100%;
}

@media (max-width: 1680px ) {
    .case_show .right .float_box {
        width: 19.7%;
    }
}

/**2018-8-2**/
.planning_b1, .planning_b2, .planning_b3, .planning_b_icon,
.design_w1, .design_w2, .design_w3,
.logo_w1, .logo_w2, .packaging_w1, .poster_w1, .space_w1,
.marketing_w1, .marketing_w2, .marketing_w_icon,
.about_w1, .about_w2, .about_w_icon, .news_w1 {
    position: absolute;
    line-height: 0;
}

.planning_b1 {
    width: 10.98958%;
    left: 50%;
    top: 27%;
    margin-left: -5.49479%;
}

.planning_b2 {
    width: 28.6979%;
    top: 49%;
    left: 50%;
    margin-left: -14.34895%;
}

.planning_b3, .design_w2, .marketing_w2 {
    top: 32%;
    right: 8.8%;
    width: 1.875%;
}

.planning_b_icon, .design_w3 {
    bottom: 19%;
    width: 2.6%;
    left: 50%;
    margin-left: -1.3%;
}

.design_w1 {
    width: 33.3333%;
    left: 8.9%;
    top: 32%;
}

.design_w3 {
    left: 8.9%;
    margin-left: 0;
    bottom: auto;
    top: 58%;
}

.logo_w1 {
    width: 32.4479%;
    left: 13.5%;
    top: 37%;
}

.logo_w2 {
    width: 34.0625%;
    right: 13.5%;
    top: 35%;
}

.packaging_w1 {
    width: 36.25%;
    left: 13.5%;
    top: 35%;
}

.poster_w1 {
    right: 13.5%;
    top: 36%;
    width: 31.302%;
}

.space_w1 {
    width: 25.677%;
    right: 13.5%;
    top: 36%;
}

.marketing_w1 {
    width: 30.57%;
    left: 8.9%;
    top: 32%;
}

.marketing_w_icon {
    width: 2.6%;
    left: 8.9%;
    margin-left: 0;
    top: 65%;
}

.about_w1 {
    width: 28.90625%;
    left: 8.9%;
    top: 34%;
}

.about_w2 {
    top: 32%;
    right: 8.8%;
    width: 1.875%;
}

.about_w_icon {
    width: 2.6%;
    left: 8.9%;
    margin-left: 0;
    top: 62%;
}

.news_w1 {
    width: 24.58%;
    left: 13.5%;
    top: 42%;
}

/*2018.8.21*/
.da .img img {
    transition: all 1.2s;
    -o-transition: all 1.2s;
    -moz-transition: all 1.2s;
    -ms-transition: all 1.2s;
    -webkit-transition: all 1.2s;
}

.da > ul > li:hover > .img img {
    transform: scale(1.2);
    -o-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
}

.da > ul > li > ul > li:hover > .img img {
    transform: scale(1.2);
    -o-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
}

/*2018.8.24  首页最新服务动态样式*/
.text1 {
    padding-top: 20px;
}

.text1 h3 {
    font-weight: normal;
    float: left;
    max-width: 80%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 24px;
    color: #000;
}

.text1 span {
    float: right;
    color: #000;
    font-size: 20px;
}

.text1 p {
    margin-top: 15px;
    font-size: 14px;
    line-height: 24px;
    color: #666;
}

/*2018.9.8增加上下一页与面包屑*/
.fanpian p {
    width: 48%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fanpian p:nth-child(1) {
    float: left;
}

.fanpian p:nth-child(2) {
    float: right;
}

.fanpian p a {
    color: #666;
}

.mianbaoxue {
    background: #fff;
    padding: 15px 90px 15px 90px;
}

.mianbaoxue p a, .mianbaoxue p span {
    color: #999;
}

.advantage .TweenToDelayUpChildren{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}
.advantage .title_image{
    position:absolute;
    left: 0;
    top:-70px;
    width: 8%;
}

.foot{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    background-color: #000000;
    width: 100%;
    height: 90px;
    line-height: 35px;
    position: fixed;
    bottom: 0px;
    z-index: 99;
    text-align: center;
}
.foot a:hover{
    color: #666;
}
/*.nybanner img{
	opacity: 0;
}*/



