		.service-banner { 
			height:340px;
			background-image: url(__THEME_STATIC__/img/bg_caishui.png);
			background-position: center center;
			background-repeat: no-repeat; 
			background-size: auto 340px; 
			}
			.center-box {
				margin: auto;
				width: 	1000px;
				padding-top: 60px;
			}
			.center-box h1 {
				height: 80px;
				line-height: 80px;
				font-size: 35px;
				font-weight: 400;
				color: #FFF;
			}
			.center-text {
				font-size: 15px;
				font-weight: 100;
				line-height: 30px;
				color: #FFF;
			}
			.center-text p {
				color: #FFF;
			}
			.center-btn {
			animation: re-banner-slide-20 .8s cubic-bezier(.4,0,.2,1) 0s 1;				
			}
			.center-btn a {
				margin-top: 30px;
				border: 1px solid #FFF;
				float: left;
				font-size: 14px!important;
		    width: 120px;
		    height: 36px;
		    line-height: 36px;
		    text-align: center;
		    color: #fff;
			}
			.center-btn a:hover{
				color: #333;
				background: #FFF;
		    transition: color .3s ease-in-out,background .3s ease-in-out;
    		}
			
			@keyframes fadeInLeft {
			  from {
			    opacity: 0;
			    transform: translate3d(0, 50%, 0);
			  }
			
			  to {
			    opacity: 1;
			    transform: none;
			  }
			}
			
			/*添加动画*/
			.center-box{
			    animation-duration: 1s;
			    transition-delay: .4s;
			    animation-fill-mode: both;
			    animation-name: fadeInLeft;
			    transition: transform 700ms cubic-bezier(0.25, 0.46, 0.33, 0.98),opacity 700ms cubic-bezier(0.25, 0.46, 0.33, 0.98);
			}			
			
			
