/*bannertx*/
#banner{width:1004px;height:268px;background: url(../images/bannerpic.png) no-repeat center center;margin: auto;position: relative;z-index: 1000;top: 320px;}
.animated {-webkit-animation-duration: 1s;animation-duration: 3s;-webkit-animation-fill-mode: both;animation-fill-mode: both;}
.zoomIn {-webkit-animation-name: zoomIn;animation-name: zoomIn;}
@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }

    50% {
        opacity: 1
    }
}
