/*@import "http://fonts.googleapis.com/css?family=Bree+Serif";*/

li {
    -webkit-perspective:600px;
    perspective: 600px
}

.info {
    -webkit-transform: rotate3d(1, 0, 0, 90deg);
    transform: rotate3d(1, 0, 0, 90deg);
    width: 100%;
    height: 100%;
    padding: 20px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    pointer-events: none;
  
    background-color: rgba(22, 130, 202, 1)
}

.in-top .info {
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-animation: in-top 300ms ease 0ms 1 forwards;
    animation: in-top 300ms ease 0ms 1 forwards
}

.in-right .info {
    -webkit-transform-origin: 100% 0%;
    transform-origin: 100% 0%;
    -webkit-animation: in-right 300ms ease 0ms 1 forwards;
    animation: in-right 300ms ease 0ms 1 forwards
}

.in-bottom .info {
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-animation: in-bottom 300ms ease 0ms 1 forwards;
    animation: in-bottom 300ms ease 0ms 1 forwards
}

.in-left .info {
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-animation: in-left 300ms ease 0ms 1 forwards;
    animation: in-left 300ms ease 0ms 1 forwards
}

.out-top .info {
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-animation: out-top 300ms ease 0ms 1 forwards;
    animation: out-top 300ms ease 0ms 1 forwards
}

.out-right .info {
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-animation: out-right 300ms ease 0ms 1 forwards;
    animation: out-right 300ms ease 0ms 1 forwards
}

.out-bottom .info {
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-animation: out-bottom 300ms ease 0ms 1 forwards;
    animation: out-bottom 300ms ease 0ms 1 forwards
}

.out-left .info {
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-animation: out-left 300ms ease 0ms 1 forwards;
    animation: out-left 300ms ease 0ms 1 forwards
}

@-webkit-keyframes in-top {
    from {
        -webkit-transform: rotate3d(-1, 0, 0, 90deg);
        transform: rotate3d(-1, 0, 0, 90deg)
    }
    to {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg)
    }
}

@keyframes in-top {
    from {
        -webkit-transform: rotate3d(-1, 0, 0, 90deg);
        transform: rotate3d(-1, 0, 0, 90deg)
    }
    to {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg)
    }
}

@-webkit-keyframes in-right {
    from {
        -webkit-transform: rotate3d(0, -1, 0, 90deg);
        transform: rotate3d(0, -1, 0, 90deg)
    }
    to {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg)
    }
}

@keyframes in-right {
    from {
        -webkit-transform: rotate3d(0, -1, 0, 90deg);
        transform: rotate3d(0, -1, 0, 90deg)
    }
    to {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg)
    }
}

@-webkit-keyframes in-bottom {
    from {
        -webkit-transform: rotate3d(1, 0, 0, 90deg);
        transform: rotate3d(1, 0, 0, 90deg)
    }
    to {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg)
    }
}

@keyframes in-bottom {
    from {
        -webkit-transform: rotate3d(1, 0, 0, 90deg);
        transform: rotate3d(1, 0, 0, 90deg)
    }
    to {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg)
    }
}

@-webkit-keyframes in-left {
    from {
        -webkit-transform: rotate3d(0, 1, 0, 90deg);
        transform: rotate3d(0, 1, 0, 90deg)
    }
    to {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg)
    }
}

@keyframes in-left {
    from {
        -webkit-transform: rotate3d(0, 1, 0, 90deg);
        transform: rotate3d(0, 1, 0, 90deg)
    }
    to {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg)
    }
}

@-webkit-keyframes out-top {
    from {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg)
    }
    to {
        -webkit-transform: rotate3d(-1, 0, 0, 99.5deg);
        transform: rotate3d(-1, 0, 0, 99.5deg)
    }
}

@keyframes out-top {
    from {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg)
    }
    to {
        -webkit-transform: rotate3d(-1, 0, 0, 99.5deg);
        transform: rotate3d(-1, 0, 0, 99.5deg)
    }
}

@-webkit-keyframes out-right {
    from {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg)
    }
    to {
        -webkit-transform: rotate3d(0, -1, 0, 104deg);
        transform: rotate3d(0, -1, 0, 104deg)
    }
}

@keyframes out-right {
    from {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg)
    }
    to {
        -webkit-transform: rotate3d(0, -1, 0, 104deg);
        transform: rotate3d(0, -1, 0, 104deg)
    }
}

@-webkit-keyframes out-bottom {
    from {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg)
    }
    to {
        -webkit-transform: rotate3d(1, 0, 0, 99.5deg);
        transform: rotate3d(1, 0, 0, 99.5deg)
    }
}

@keyframes out-bottom {
    from {
        -webkit-transform: rotate3d(0, 0, 0, 0deg);
        transform: rotate3d(0, 0, 0, 0deg)
    }
    to {
        -webkit-transform: rotate3d(1, 0, 0, 99.5deg);
        transform: rotate3d(1, 0, 0, 99.5deg)
    }
}

@-webkit-keyframes out-left {
    from {
        -webkit-transform: rotate3d(0, 0, 0, 14deg);
        transform: rotate3d(0, 0, 0, 14deg)
    }
    to {
        -webkit-transform: rotate3d(0, 1, 0, 104deg);
        transform: rotate3d(0, 1, 0, 104deg)
    }
}

@keyframes out-left {
    from {
        -webkit-transform: rotate3d(0, 0, 0, 14deg);
        transform: rotate3d(0, 0, 0, 14deg)
    }
    to {
        -webkit-transform: rotate3d(0, 1, 0, 104deg);
        transform: rotate3d(0, 1, 0, 104deg)
    }
}

.normalul {
    padding: 0;
    margin: 0 auto;
}

.normalul:after {
    content: "";
    display: table;
    clear: both
}

.container1 li {
    position: relative;
    float: left;
    width: 300px;
    height: 200px;
    margin: 5px;
    padding: 0;
    list-style: none;
}

.container1 li a {
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
    border-radius: 10px
}
.container1  li a h3{
	position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    height: 25px;
    text-align: center;
    color: #fff;
 line-height: 25px;
   background-color: rgba(22, 130, 202, 0.5)
}
.container1 li h3 {
    margin: 0;
    font-size: 16px;
    color: rgba(255, 255, 255, .9)
}
 
.container1 li p {
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, .8);
    margin-top: 12px;
}

.container1 li .normal {
    width: 100%;
    height: 100%;
    background-color: #ecf0f1;
    color: rgba(52, 73, 94, .6);
    box-shadow: inset 0 2px 20px #e6ebed;
    text-align: center;
    font-size: 50px;
    line-height: 200px;
    position: relative;
    /*pointer-events:none;*/
}
.container1 li .normal img{
width: 100%;
height: 100%;
border-radius:10px;
}
.container1 li .normal svg {
    pointer-events: none;
    width: 50px
}
.cjiantou{
	position: absolute;
	bottom: 16px;
	right: 32px;
}
.container1 li .normal svg path {
    fill: rgba(52, 73, 94, .2)
}

/** {
    box-sizing: border-box
}*/

body {
    background-color: #fff
}

h1 {
    margin: 5px auto 5px;
    text-align: center
}

h3 {
    font-family: 'bree serif', serif
}

.container1 {
    width: 1300px;
    margin: 0 auto;
    /*padding-left: 5%;*/
}

header {
    font-family: 'bree serif', serif;
    text-align: center;
    margin: 50px 0 25px;
    color: #34495e
}

header p {
    margin: 0;
    color: rgba(52, 73, 94, .4)
}

@media screen and (max-width: 1300px) {

.container1 {
    width: 100%;
   padding-left: 5%;

}


}
@media screen and (max-width: 981px) {

.container1 {
    width: 100%;
   padding-left: 0%;

}
.container1 li {
    
    width: 100%;
    height: 100%;
 
}

.info {
    display: none;
}
}


.containab li {
    height: 169px;
    
}
.containab li a {
    border:1px solid black;
}


.container3 {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .container3 {
    width: 768px;
  }
}
@media (min-width: 992px) {
  .container3 {
    width: 992px;
  }
}
@media (min-width: 1250px) {
  .container3 {
    width: 1250px;
  }
}
@media (min-width: 1550px) {
  .container3 {
    width: 1550px;
  }
}

.index4{padding:100px 0; position: relative; background:url(../img/icon/index4_bg1.jpg) center no-repeat;background-size:cover; }

.index4 .text{width:48%; float:left; padding:25px 0 35px 0;}
.index4 .text .H4{font-size:36px; color:#1682ca; text-transform: uppercase; font-weight: bolder; font-family: Arial;}
.index4 .text .bold{font-weight: bolder;}
.index4 .text .thin{font-weight:normal;}
.index4 .text .H5{font-size:30px; color:#313131; padding:25px 0 20px 0; position: relative;}
.index4 .text .H5::after{width:40px; height: 1px; content: ""; position: absolute; bottom:0; left: 0; background-color:#666666; opacity: .3;}
.index4 .text .p{font-size:16px; color:#707070; line-height: 34px; height: 170px; margin: 30px 0;
overflow : hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 5;
-webkit-box-orient: vertical;}
.more2{display:block; width:163px; height: 38px; line-height: 38px; background-color:#1682ca; text-align: center; font-size:14px; color:#fff;z-index: 999;}
.more2:hover{background-color:transparent; border:1px solid #1682ca; color:#1682ca;}
.index4Num{margin-top:30px; padding-top:25px; border-top:1px solid #e4e4e4; }
.index4Num .list{font-weight:bolder; float:left; }
.index4Num .list:nth-child(2){float:right;}
.index4Num .big{font-size:80px; color:#1682ca; font-family: Arial; font-weight: bolder; line-height: 58px; display: inline-block;}
.index4Num .small{font-weight:normal; display:inline-block;font-size:30px; color:#1682ca; font-family: Arial;line-height: 20px; margin: 0 20px 0 3px; vertical-align: bottom;}
.index4Num .p2{display:inline-block; font-size:16px; color:#5a5a5a; line-height: 20px; vertical-align: middle;font-weight:normal; }
.videoR{position:absolute; top:100px; right:0; width:47.34%;padding:0 0 52px 7.81%; background:url(../img/icon/p13.png) left bottom no-repeat; background-size: 93% 91.58% ;}
.videoR .pic{height:542px;}
.videoR .playBtn{width:90px; height: 90px; position: absolute; top:37.98%; left: 11.11%; cursor: pointer;}
.videoBox{width:100%; height: 100%; position: fixed; top:0; left: 0; z-index: 99999; background-color:rgba(0,0,0,0.4); display: none;}
.videoBox2{width:50%; position:fixed; top:50%; left: 50%; z-index: 999999; display: none;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);}
.videoBox2 .aboutVideo{display:block; width:100%; min-height: 10px; background: #000;}
.videoBox2 .close3{width:25px; height: 25px; position: absolute; top:-15px;right:-15px;}

@media screen and (max-width:1549px){
    .index4Num .big{font-size:40px;}
}
@media screen and (max-width:1199px){
    .index4{padding:60px 0;}
    .index4Num .big{font-size:30px;}
    .index4Num .p2{display:block;}
    .videoR{padding:0 0 30px 30px;}
    .videoR .playBtn{width:60px; height: 60px; left: 0px;}
    .index4Num{margin-top:30px; padding-top:30px;}
    .index4 .text .H4{font-size:28px;}
    .index4 .text .H5{font-size:22px;}
    .videoBox2{width:90%;}
}
@media screen and (max-width:767px){
    .index4{padding:40px 0 30px 0;}
    .index4 .text{padding:0; width:100%;}
    .videoR{position:relative;}
    .index4 .text .H4{font-size:20px;}
    .index4 .text .H5{font-size:16px; padding:10px 0;}
    .index4 .text .p{font-size:13px; line-height: 22px; height: 110px; margin: 15px 0;}
    .more2{width:120px; font-size:12px;}

    .index4Num{margin-top:20px; padding-top:20px;}
    .index4Num .big{font-size:24px; line-height: 24px;}
    .index4Num .p2{font-size:13px; margin-top:5px;}
    .videoR{width:100%; top:auto; margin-top:20px; padding:0;}
    .videoR .pic{background:none !important; height: auto;}
    .videoR .playBtn{width:30px; height: 30px; top:50%; margin-top:-15px; left: 5px;}
    .comnumber{margin-top: 20px;}
}


.c_1530_11{ width:100%; float:left;  background:#f5f5f7; padding:60px;}
.c_1530_11 .zbox{ width:100%; float:left; background:white;}
.c_1530_11 .zbox .img{ width:50%; float:left;}
.c_1530_11 .zbox .img img{ width:100%; float:left;}
.c_1530_11 .zbox .text{ width:50%; float:left; padding:55px 50px 45px 60px;}
.c_1530_11 .zbox .text h4{ width:100%; float:left; font-size:24px; color:#f70; line-height:33px;}
.c_1530_11 .zbox .text .p{ width:100%; float:left; font-size:16px; color:#444; line-height:30px; margin-top:19px; letter-spacing:0.5px;}
@media  screen and (max-width:1529px){
.c_1530_11{ padding:40px;}
.c_1530_11 .zbox{ background:none;}
.c_1530_11 .zbox .text{ padding:35px 30px 25px 40px; background:white;}
}
@media  screen and (max-width:991px){
.c_1530_11{ padding:20px; margin-top:29px;}
.c_1530_11 .zbox .img{ width:100%;}
.c_1530_11 .zbox .text{ width:100%; padding:25px 20px 15px 20px;}
.c_1530_11 .zbox .text h4{ font-size:18px; line-height:25px;}
.c_1530_11 .zbox .text .p{ font-size:14px; line-height:26px; margin-top:14px; letter-spacing:0px;}
}
@media  screen and (max-width:767px){
.c_1530_11{ padding:10px; margin-top:9px;}
.c_1530_11 .zbox .text{ padding:15px 10px 10px 10px;}
.c_1530_11 .zbox .text h4{ font-size:16px; line-height:23px;}
.c_1530_11 .zbox .text .p{ font-size:12px; line-height:22px; margin-top:8px;}
}



.c_1530_12{ width:100%; float:left; padding:20px 0 20px 0;}

.c_1530_12 ul{ width:100%; float:left;
display: flex;
display: -webkit-flex;
flex-wrap: wrap;
align-items: flex-start;}
.c_1530_12 ul li{ width:25%; float:left; margin-top:30px; padding:0 15px;}
.c_1530_12 ul li .zbox{ width:100%; float:left; background:white; min-height:232px; padding:40px 20px 10px 20px; text-align:center; cursor:pointer;
-webkit-transition: all 0.5s ease-out 0s; 
-moz-transition: all 0.5s ease-out 0s; 
-o-transition: all 0.5s ease-out 0s; 
transition: all 0.5s ease-out 0s;}
.c_1530_12 ul li .zbox .ico{ width:72px; height:72px; background:#ffdedf; display:inline-block; vertical-align:top;
-moz-border-radius:50%; 
-webkit-border-radius:50%; 
-khtml-border-radius:50%;
border-radius:50%;
-webkit-transition: all 0.5s ease-out 0s; 
-moz-transition: all 0.5s ease-out 0s; 
-o-transition: all 0.5s ease-out 0s; 
transition: all 0.5s ease-out 0s;}
.c_1530_12 ul li .zbox:hover{ box-shadow:0 0 10px rgba(0,0,0,0.2);}
.c_1530_12 ul li .zbox:hover .ico{ transform:rotateY(180deg);}
.c_1530_12 ul li .zbox h4{ width:100%; float:left; margin-top:32px; font-size:20px; color:#333; line-height:34px; font-weight:bold;}
.c_1530_12 ul li .zbox .p{ width:100%; float:left; font-size:16px; color:#666; line-height:30px;}
.c_1530_12 ul li.l1 .zbox{ min-height:261px;}
@media  screen and (max-width:991px){
.zbg3{ margin-top:40px;}
.c_1530_12{ padding:43px 0 41px 0;}
.tit_3{ padding-bottom:9px;}
.tit_3 h4{ font-size:24px; line-height:38px;}
.tit_3 h5{ font-size:12px; line-height:22px;}
.c_1530_12 ul li{ margin-top:20px; padding:0 10px;}
.c_1530_12 ul li .zbox{ padding:20px 10px 10px 10px; min-height:193px;}
.c_1530_12 ul li .zbox .ico{ width:52px; height:52px;}
.c_1530_12 ul li .zbox h4{ margin-top:22px; font-size:16px; line-height:28px;}
.c_1530_12 ul li .zbox .p{ font-size:14px; line-height:24px;}
.c_1530_12 ul li.l1 .zbox{ min-height:231px;}
}
@media  screen and (max-width:767px){
.zbg3{ margin-top:20px;}
.c_1530_12{ padding:23px 10px 21px 10px;}
.tit_3{ padding-bottom:5px;}
.tit_3 h4{ font-size:18px; line-height:32px;}
.tit_3 h5{ line-height:18px;}
.c_1530_12 ul li{ margin-top:10px; padding:0 5px; width:50%;}
.c_1530_12 ul li .zbox{ padding:10px 10px 10px 10px; min-height:143px;}
.c_1530_12 ul li .zbox .ico{ width:32px; height:32px;}
.c_1530_12 ul li .zbox h4{ margin-top:12px; font-size:14px; line-height:28px;}
.c_1530_12 ul li .zbox .p{ font-size:12px; line-height:22px;}
.c_1530_12 ul li.l1 .zbox{ min-height:180px;}
}


.bg_1{ background:#f7f7f8; z-index:99; overflow:visible; padding-bottom:60px;}
.c_1290{ width:1290px; margin:auto; position:relative; margin-top:-60px;}
.c_1290 .bian{ width:2px; height:80px; background:#d32329; position:absolute; left:50%; top:-40px; margin-left:-1px;}
.c_1290 .c_1290_1{ width:100%; background:white; padding:70px 60px 60px 60px; float:left;}
.pz_SideLayer_1{ width:100%; float:left; text-align:center; padding-bottom:40px; border-bottom:solid 1px #e5e5e5;}
.pz_SideLayer_1 .pz_SideLayer{ display:inline-block; *zoom:1; *display:inline;}
.pz_SideLayer_1 .pz_SideLayer li{ float:left; margin:2px 5px;}
.pz_SideLayer_1 .pz_SideLayer li a{ display:block; float:left; width:180px; height:46px; line-height:46px; background:#f7f7f8; font-size:16px; color:#333;}
.pz_SideLayer_1 .pz_SideLayer li a.hover,.pz_SideLayer_1 .pz_SideLayer li a:hover{ background:#f70; color:white;}
.noafter .l1 a::after{ display: none; content: ''; position: absolute; width: 80%; height:2px; background-color: #f70; bottom: 0; left: 10%; }

.ul_2{ width:100%; float:left; margin-top:10px;}
.ul_2 li{ width:50%; float:left; padding:0 15px; margin-top:30px;}
.newsbq .ul_2 li {width:100% !important; }
.ul_2 li .zbox{ width:100%; float:left; height:170px; float:left; background:#f7f7f8; padding-left:170px; position:relative;}
.ul_2 li .zbox .img{ width:170px; height:170px; position:absolute; left:0; top:0; overflow:hidden;}
.ul_2 li .zbox .img img{ width:100%; float:left;
         transition: all 1s linear;
    -moz-transition: all 1s linear;
 -webkit-transition: all 1s linear;
-o-transition: width all 1s linear;}
.ul_2 li .zbox .text{ width:100%; padding:16px 20px 0 20px; position:relative;}
.ul_2 li .zbox .text h4{ width:100%; float:left; display:block; width:100%; font-size:16px; color:#222; line-height:24px;}
.ul_2 li .zbox .text h4 a{ }


.ul_2 li .zbox .text span{color:#d22328}

.ul_2 li .zbox .text .p{ width:100%; float:left; margin-top:9px; font-size:14px; color:#666; line-height:24px; height:72px; overflow:hidden;
-webkit-transition: all 0.3s ease-out 0s; 
-moz-transition: all 0.3s ease-out 0s; 
-o-transition: all 0.3s ease-out 0s; 
transition: all 0.3s ease-out 0s;}
.ul_2 li .zbox .text .time{ width:100%; float:left; margin-top:14px; font-size:12px; color:#888; line-height:18px;
-webkit-transition: all 0.3s ease-out 0s; 
-moz-transition: all 0.3s ease-out 0s; 
-o-transition: all 0.3s ease-out 0s; 
transition: all 0.3s ease-out 0s;}
.ul_2 li .zbox .text .ico{ width:28px; height:28px; position:absolute; right:20px; top:130px; opacity:0;
-webkit-transition: all 0.3s ease-out 0s; 
-moz-transition: all 0.3s ease-out 0s; 
-o-transition: all 0.3s ease-out 0s; 
transition: all 0.3s ease-out 0s;}
.ul_2 li .zbox:hover{ background:#d32329;}
.ul_2 li .zbox:hover .text h4{ color:white;}
.ul_2 li .zbox:hover .text .p{ color:white; opacity:0.6;}
.ul_2 li .zbox:hover .text .time{ color:white; opacity:0.6;}
.ul_2 li .zbox:hover .text .ico{ opacity:1;}
.ul_2 li .zbox:hover .img img{transform: scale(1.09,1.09);
    -ms-transform: scale(1.09,1.09);    
-webkit-transform: scale(1.09,1.09);
     -o-transform: scale(1.09,1.09);    
   -moz-transform: scale(1.09,1.09);}
@media screen and (max-width:1299px) {
.c_1290{ width:90%; margin-left:5%;}
.c_1290 .c_1290_1{ padding:60px 30px 30px 30px;}
.c_1290 .bian{ height:40px; top:-20px;}
}
@media screen and (max-width:991px) {
.ul_2 li{ width:100%; margin-top:15px;}
.pz_SideLayer_5{ padding-bottom:20px;}
}
@media screen and (max-width:767px) {
.c_1290 .c_1290_1{ padding:50px 10px 10px 10px;}
.bg_1{ padding-bottom:20px;}
.c_1290{ margin-top:0px; width:100%; margin-left:0;}
.pz_SideLayer_1{ padding-bottom:10px;}
.pz_SideLayer_1 .pz_SideLayer{ width:100%;}
.pz_SideLayer_1 .pz_SideLayer li{ width:25%; margin:0;overflow: hidden}
.pz_SideLayer_1 .pz_SideLayer li a{ width:100%; height:36px; line-height:36px; font-size:14px; border:solid 1px white;}
.c_1290_1{ overflow:hidden;}
.ul_2 li{ margin-top:10px;}
.ul_2 li .zbox{ height:120px; padding-left:120px;}
.ul_2 li .zbox .img{ width:120px; height:120px;}
.ul_2 li .zbox .text{ padding:10px 12px 0 12px; }
.ul_2 li .zbox .text h4{ font-size:14px; line-height:22px;}
.ul_2 li .zbox .text .p{ margin-top:4px; font-size:12px; line-height:22px; height:40px;}
.ul_2 li .zbox .text .time{ margin-top:6px;}
.ul_2 li .zbox .text .ico{ width:20px; height:20px; right:15px; top:85px;}
}


@media screen and (max-width:991px) {
   #footer .section .container .animated{
     display: none;
   }
}