
/*中间广告轮播*/
.banner{
	position: relative;
	background-color: #ccc;
	margin-top: 0px;
}
.banner .my-swiper .swiper-slide{
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
.banner .my-swiper .swiper-slide img{
	width: 100%;
}
.banner .my-swiper .swiper-slide a{
	display: block;
	height: 500px;
	position: relative;
}
.banner .my-swiper .swiper-slide a .inbox{
	bottom: 120px;
	position: absolute;
	left: 14.3%;
	z-index: 11;
	width: 80%;
}
.banner .my-swiper .swiper-slide a .inbox .title{
	font-size: 38px;
	color: #ffffff;
	font-family: "Microsoft JhengHei";
	font-weight: bold;
	line-height: 1.5;
	max-height: 114px;
	overflow: hidden;
}
.banner .my-swiper .swiper-slide a .inbox .line{
	height: 50px;
	width: 1px;
	background-color: #fff;
	margin-top: 10px;
	margin-bottom: 22px;
}
.banner .my-swiper .swiper-slide a .inbox .more{
	width: 160px;
	height: 60px;
	border: 2px solid #fff;
	text-align: center;
	line-height: 56px;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	background-color: rgba(255,255,255,.35);
}
.banner .my-swiper .scrolldowm{
	position: absolute;
	bottom: 0;
	right: 5.2%;
	-webkit-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    font-size: 12px;
    color: #ffffff;
    font-weight: bold;
    z-index: 10;
    padding-bottom: 30px;
    font-family: "Arial";
    width: 24px;
    cursor: pointer;
}
.banner .my-swiper .scrolldowm:after{
	content: '';
    display: block;
    background-color: #fff;
    position: absolute;
    bottom: 0px;
    left: 0;
    height: 100%;
    width: 1px;
    -webkit-animation: elastic 2.5s infinite;
    animation: elastic 2.5s infinite;
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
}
@-webkit-keyframes elastic {
    0% { height: 100%; }
    90% { height: 0%;}
    100% { height: 100%; }
}
@keyframes elastic {
    0% { height: 100%; }
    90% { height: 0%;}
    100% { height: 100%; }
}
.banner .my-swiper .btn{
	position: absolute;
    top: 50%;
    height: 60px;
    width: 60px;
    z-index: 10;
    cursor: pointer;
    margin-top: -30px;
    border-radius: 50%;
    border: 1px solid #fff;
    background-color: rgba(255,255,255,.35);
}
.banner .my-swiper .my-prev{
    left:50px;
}
.banner .my-swiper .my-next{
    right: 50px;
}
.banner .my-swiper .btn:after{
	content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    top: 50%;
    left: 50%;
    margin-top: -4px;
    margin-left: -4px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.banner .my-swiper .my-prev:after {
   border-top: 2px solid #f4f4f5;
   border-left: 2px solid #f4f4f5;
}
.banner .my-swiper .my-next:after {
   border-bottom: 2px solid #f4f4f5;
   border-right: 2px solid #f4f4f5;
}
.banner .my-swiper .my-pagination{
	position: absolute;
	bottom: 30px;
	text-align: center;
	left: 0;
	z-index: 11;
}
.banner .my-swiper .my-pagination .swiper-pagination-bullet{
	width: 6px;
	height: 6px;
	background-color: #fff;
	opacity: 1;
	vertical-align: middle;
}
.banner .my-swiper .my-pagination .swiper-pagination-bullet-active{
	width: 24px;
	height: 24px;
	background-color: transparent;
	border: 1px solid #fff;
	position: relative;
}
.banner .my-swiper .my-pagination .swiper-pagination-bullet-active:after{
	content: "";
	width: 4px;
	height: 4px;
	position: absolute;
	top: 50%;
	left: 50%;
	border-radius: 50%;
	margin-left: -2px;
	margin-top: -2px;
	background-color: #fff;
}
.banner .my-swiper .swiper-slide{
	-webkit-transform: scale(0.85);
	-moz-transform: scale(0.85);
	-ms-transform: scale(0.85);
	-o-transform: scale(0.85);
	transform: scale(0.85);
}
.banner .my-swiper .swiper-slide-active{
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	-webkit-animation: myscale 1.7s;
	-moz-animation: myscale 1.7s;
	-ms-animation: myscale 1.7s;
	-o-animation: myscale 1.7s;
	animation: myscale 1.7s;
}
@-webkit-keyframes myscale{
	0%,50%{
		-webkit-transform: scale(0.85);
	}
	100%{
		-webkit-transform: scale(1);
	}
}
@-moz-keyframes myscale{
	0%,50%{
		-moz-transform: scale(0.85);
	}
	100%{
		-moz-transform: scale(1);
	}
}
@-ms-keyframes myscale{
	0%,50%{
		-ms-transform: scale(0.85);
	}
	100%{
		-ms-transform: scale(1);
	}
}
@-o-keyframes myscale{
	0%,50%{
		-o-transform: scale(0.85);
	}
	100%{
		-o-transform: scale(1);
	}
}
@keyframes myscale{
	0%,50%{
		transform: scale(0.85);
	}
	100%{
		transform: scale(1);
	}
}
@media only screen  and (max-width: 1440px) {
	.banner .my-swiper .my-prev{
		left: 40px;
	}
	.banner .my-swiper .my-next{
		right: 40px;
	}
	.banner .my-swiper .swiper-slide a .inbox .title{
		font-size: 30px;
		max-height: 90px;
	}
	.banner .my-swiper .swiper-slide a .inbox .line{
		height: 40px;
	}
	.banner .my-swiper .swiper-slide a .inbox .more{
		width: 140px;
		height: 50px;
		line-height: 46px;
	}
	.banner .my-swiper .swiper-slide a .inbox{
		bottom: 100px;
	}
}
@media only screen  and (max-width: 1280px){
	.banner .my-swiper .swiper-slide a .inbox{
		bottom: 70px;
	}
}
@media only screen  and (max-width: 1024px) {
	.banner .my-swiper .btn{
		width: 50px;
		height: 50px;
		margin-top: -25px;
	}
	.banner .my-swiper .swiper-slide a .inbox .title{
		font-size: 24px;
		max-height: 72px;
	}
	.banner .my-swiper .swiper-slide a .inbox .line{
		height: 30px;
	}
	.banner .my-swiper .swiper-slide a .inbox .more{
		width: 120px;
		height: 40px;
		line-height: 36px;
	}
	.banner .my-swiper .swiper-slide a .inbox{
		bottom: 50px;
	}
	.banner .my-swiper .scrolldowm{
		padding-bottom: 15px;
	}
	.banner .my-swiper .my-pagination{
		bottom: 15px;
	}
	.banner .my-swiper .my-prev{
		left: 30px;
	}
	.banner .my-swiper .my-next{
		right: 30px;
	}
}
@media only screen  and (max-width: 1023px) {
	.banner{
		margin-top: 50px;
	}
}
@media only screen  and (max-width: 800px) {
	.banner .my-swiper .btn{
		width: 40px;
		height: 40px;
		margin-top: -20px;
	}
	.banner .my-swiper .my-prev{
		left: 20px;
	}
	.banner .my-swiper .my-next{
		right: 20px;
	}
	.banner .my-swiper .swiper-slide img{
		display: none;
	}
	.banner .my-swiper{
		height: 350px;
	}
	.banner .my-swiper .swiper-slide a .inbox .title{
		font-size: 20px;
		max-height: 60px;
	}
	.banner .my-swiper .swiper-slide a .inbox .line{
		height: 24px;
		margin-top: 8px;
		margin-bottom: 15px;
	}
	.banner .my-swiper .swiper-slide a .inbox .more{
		width: 100px;
		height: 30px;
		line-height: 26px;
	}
	.banner .my-swiper .swiper-slide a .inbox{
		bottom: 30px;
	}
	.banner .my-swiper .my-pagination{
		bottom: 10px;
	}
}
@media only screen  and (max-width: 600px) {
	.banner .my-swiper .scrolldowm{
		display: none;
	}
	.banner .my-swiper{
		height: 280px;
	}
	.banner .my-swiper .btn{
		width: 30px;
		height: 30px;
		margin-top: -15px;
	}
	.banner .my-swiper .my-prev:after{
		margin-left: -3px;
	}
	.banner .my-swiper .my-next:after{
		margin-left: -5px;
	}
	.banner .my-swiper .swiper-slide a .inbox .title{
		font-size: 16px;
		max-height: 48px;
	}
	.banner .my-swiper .swiper-slide a .inbox .line{
		height: 18px;
		margin-top: 5px;
		margin-bottom: 10px;
	}
	.banner .my-swiper .swiper-slide a .inbox .more{
		width: 80px;
	}
	.banner .my-swiper .my-prev{
		left: 5px;
	}
	.banner .my-swiper .my-next{
		right: 5px;
	}
	.banner .my-swiper .swiper-slide a .inbox{
		width: 80%;
	}
}
@media only screen  and (max-width: 414px) {
	.banner .my-swiper{
		height: 210px;
	}
}
