.product-home-content {
	width: 1033px;
	margin: auto;
}

.product-home-content .title-img-box {
	widows: 1033px;
	height: 241px;
	position: relative;
	margin: auto;
	cursor: pointer;
}
.product-home-content .title-img-box img {
	position: absolute;
	top: 0;
	left: 0;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;	
}
.init-img {

}
.active-img {
	opacity: 0;
	filter:Alpha(opacity=0);
}
.product-home-content .title-img-box:hover .init-img {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
	filter: Alpha(opacity=0);	
}
.product-home-content .title-img-box:hover .active-img {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
	filter: Alpha(opacity=100);	
}


.product-home-content .m-show-wrap {
	height: 474px;	
	padding: 10px 0;
}
.product-home-content .m-show-wrap .left-show{
	position: relative;
	width: 515px;
	height: 474px;
	padding: 30px;
	padding-top: 20px;
	background: #F2F2F2;
}
.product-home-content .m-show-wrap .left-show .swiper-container {
	height: 100%;
}
.product-home-content .m-show-wrap .left-show .swiper-container .swiper-slide img{
	display: block;
	margin :auto;
	margin-top: 30px;	
}
.product-home-content .m-show-wrap .slide-head {
	font-size: 15px;
	line-height: 22px;
}
.product-home-content .m-show-wrap .slide-head .title{
	color: #00A0E9;
	font-weight: bold;
}
.product-home-content .m-show-wrap .slide-head .type {
	color: #474747;
}
.product-home-content .m-show-wrap .left-show .pagination {
  position: absolute;
  left: 0;
  text-align: center;
  bottom:5px;
  width: 100%;
}
.product-home-content .m-show-wrap .left-show .swiper-pagination-switch {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: #B5B5B5;
  box-shadow: 0px 1px 2px #555 inset;
  margin: 0 3px;
  cursor: pointer;
}
.product-home-content .m-show-wrap .left-show .swiper-active-switch {
  background: #00A0E9;
}
.product-home-content .m-show-wrap .left-show .arrow-left {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -30px;
  font-size: 60px;
  color: #fff;
  z-index: 999;
  opacity: .8;
}
.product-home-content .m-show-wrap .left-show .arrow-right {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -30px;
  font-size: 60px;
  color: #fff;
  z-index: 999;
  opacity: .8;  
}

.product-home-content .m-show-wrap .right-show {
	width: 505px;
	height: 474px;
}

.product-home-content .m-show-wrap .right-show .show-top-box {
	height: 231px;
	padding: 30px;
	padding-top: 20px;
	padding-bottom: 0;
	background: #F2F2F2;
	position: relative;
}

.product-home-content .m-show-wrap .right-show .show-top-box img {
	position: absolute;
	bottom: 0;
	right: 60px;
}
.product-home-content .m-show-wrap .right-show .show-bottom-box {
	margin-top: 12px;
	height: 231px;
	padding: 30px;
	padding-top: 20px;	
	padding-bottom: 0;	
	background: #F2F2F2;
	position: relative;		
}
.product-home-content .m-show-wrap .right-show .show-bottom-box img {
	position: absolute;
	bottom: 0;
	right: 60px;
}
.product-home-content .m-product-item .more-product {
	margin-top: 20px;
	margin-bottom: 60px;
}
.product-home-content .m-product-item .more-product a{
	color: #00a0e9;
	font-size: 16px;
}


@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}