.main .detail .name {
	text-align: center;
	font-size: 26px;
	color: #141414;
	font-weight: bold;
	margin-top: 50px;
}

.main .detail .sub {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px 0px;
	border-bottom: 1px solid #eee;
}

.main .detail .sub span {
	text-align: center;
	font-size: 14px;
	color: #666
}

.main .detail .content {
	display: flex;
	flex-direction: column;
 /*justify-content:center;min-height:500px*/
	margin-top: 20px;
}
.main .detail .content a {
	display: inline-block;
  	text-indent: 0;
}
.main .detail .content p {
	width: 100%;
	height: 100%;
	line-height: 32px
}

.main .detail .content p video {
	width: 70%;
	height: 100%
}

.main .prod-list .prod-item {
	margin-bottom: 30px
}

.main .prod-list .prod-item .img-box {
	overflow: hidden
}

.main .prod-list .prod-item .img-box img {
	width: 360px;
	height: 360px;
	transform: scale(1);
	transition: .3s linear all
}

.main .prod-list .prod-item .name {
	height: 58px;
	background: #f2f2f2;
	line-height: 58px;
	text-align: center;
	font-size: 18px;
}

.main .prod-list .prod-item:hover .img-box img {
	transform: scale(1.1)
}

.main .prod-list .prod-item:hover .name {
	color: #ff6600
}
.prev-next {
	display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    margin: 30px 0;
    border-top: 1px solid #ebebeb;
    padding-top: 30px;
  color: #999;
}
.prev-next .prev{
    flex: 1;
    display: flex;
    align-items: center;
}
.prev-next .next{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: end;
}
@media (max-width:1200px) {

	.main .detail .name {
	text-align: center;
	font-size: 26px;
	color: #141414;
	font-weight: bold;
	margin-top: 50px;
	line-height: 28px;
    margin: 10px 0;
    font-size: 18px;
}

.main .detail .sub {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0px 0px 15px;
	border-bottom: 1px solid #eee;
}

	.main .detail .content {
		min-height: 0
	}

	.main .prod-list .prod-item {
		margin-bottom: 30px
	}

	.main .prod-list .prod-item .img-box {
		overflow: hidden
	}

	.main .prod-list .prod-item .img-box img {
		width: 100%;
		height: 120px;
		transform: scale(1);
		transition: .3s linear all
	}

	.main .prod-list .prod-item .name {
		height: 38px;
		background: #f2f2f2;
		line-height: 38px;
		text-align: center;
		font-size: 14px;
		font-weight: bold;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		box-sizing: border-box;
		padding: 0 10px
	}

	.main .prod-list .prod-item:hover .img-box img {
		transform: scale(1.1)
	}

	.main .prod-list .prod-item:hover .name {
		color: #ff6600
	}
  .prev-next {
	    flex-direction: column;
    align-items: flex-start;
    font-size: 14px;
}
  .prev-next .prev {
    margin-bottom: 15px;
  }
}