﻿.flex {
	display: flex;
	display: -webkit-flex;
}

.flex-sub {
	flex: 1;
	-webkit-flex: 1;
}

.align-center {
	align-items: center;
}

.align-start {
	align-items: flex-start;
}

.align-end {
	align-items: flex-end;
}

.justify-center {
	justify-content: center;
}

.justify-start {
	justify-content: flex-start;
}

.justify-end {
	justify-content: flex-end;
}

.justify-between {
	justify-content: space-between;
}

img {
	/* image-rendering: -moz-crisp-edges;
	image-rendering: -o-crisp-edges;
	image-rendering: pixelated;
	image-rendering: crisp-edges;
	-ms-interpolation-mode: nearest-neighbor; */
	width: 100%;
	display: block;
}


/*包含以下五种的链接*/
a {
	text-decoration: none;
}

/*正常的未被访问过的链接*/
a:link {
	text-decoration: none;
}

/*已经访问过的链接*/
a:visited {
	text-decoration: none;
}

/*鼠标划过(停留)的链接*/
a:hover {
	text-decoration: none;
}

/* 正在点击的链接，鼠标在元素上按下还没有松开*/
a:active {
	text-decoration: none;
}

/* 获得焦点的时候 鼠标松开时显示的颜色*/
a:focus {
	text-decoration: none;
}

.logo,
.logo img {
	width: 212px;
	height: 50px;
}


@media (min-width: 768px) {

	.header {
		height: 84px;
		background-color: #FFF;
	}

	.menu_text {
		font-size: 16px;
		font-family: Microsoft YaHei;
		font-weight: 400;
		color: rgba(22, 22, 22, 1);
		margin-left: 70px;
	}

	.menu_on {
		position: relative;
	}

	.menu_on::before {
		position: absolute;
		content: ' ';
		bottom: -11px;
		width: 57px;
		height: 4px;
		left: 50%;
		margin-left: -28.5px;
		background: rgba(238, 73, 88, 1);
	}

	.sub_title {
		padding: 60px 0px 30px;
	}

	.sub_title img {
		height: 72px;
		width: auto;
		margin: 0 auto;
	}

	.big-text {
		margin-top: 10px;
		font-size: 14px;
		font-family: Microsoft YaHei;
		font-weight: 400;
		color: rgba(51, 51, 51, 1);
		background: rgba(242, 242, 242, 1);
		padding: 50px 140px;
		text-align: left;

	}

	.call-abs {
		padding: 40px 0px 0px 40px;
		flex-direction: column;
	}

	.concat-icon {
		height: 24px;
		width: 24px;
		margin-right: 10px;
	}

	.concat-text {
		margin: 0;
		font-size: 14px;
		font-family: Microsoft YaHei;
		font-weight: 400;
		color: rgba(51, 51, 51, 1);
	}

	.footer {
		background: rgba(51, 51, 51, 1);
		font-size: 14px;
		font-family: PingFang SC;
		font-weight: 400;
		color: #CCCCC7;
		padding: 70px 0px;
	}

	.footer .wx {
		height: 120px;
		width: 120px;
		margin: 0 auto 20px;
	}

	.route_title {
		font-size: 20px;
		font-family: Microsoft YaHei;
		font-weight: 400;
		color: rgba(145, 144, 144, 1);
		text-align: left;
		padding: 60px 20px 30px;
	}

	.product-detail {
		padding-left: 20px !important;
	}

	.detail-header {
		margin-bottom: 52px;
	}
}

@media (max-width: 768px) {
	.header {
		padding: 16px 25px;
		background-color: #FFF;
	}

	.menu_text {
		font-size: 14px;
		font-family: Microsoft YaHei;
		font-weight: 400;
		color: rgba(22, 22, 22, 1);
	}

	.menu_on {
		position: relative;
	}

	.menu_on::before {
		position: absolute;
		content: ' ';
		bottom: -6px;
		width: 50px;
		height: 2.5px;
		left: 50%;
		margin-left: -25px;
		background: rgba(238, 73, 88, 1);
	}

	.sub_title {
		padding: 40px 0px 30px;
	}

	.sub_title img {
		height: 42px;
		width: auto;
		margin: 0 auto;
	}

	.big-text {
		margin-top: 10px;
		font-size: 14px;
		font-family: Microsoft YaHei;
		font-weight: 400;
		color: rgba(51, 51, 51, 1);
		background: rgba(242, 242, 242, 1);
		padding: 30px;
		text-align: left;
	}

	.call-abs {
		padding: 20px;
		flex-direction: column;
	}

	.concat-icon {
		height: 18px;
		width: 18px;
		margin-right: 10px;
	}

	.concat-text {
		margin: 0;
		font-size: 13px;
		font-family: Microsoft YaHei;
		font-weight: 400;
		color: rgba(51, 51, 51, 1);
	}

	.footer {
		background: rgba(51, 51, 51, 1);
		font-size: 12px;
		font-family: PingFang SC;
		font-weight: 400;
		color: #CCCCC7;
		padding: 30px 0px;
	}

	.footer .wx {
		height: 90px;
		width: 90px;
		margin: 0 auto 20px;
	}

	.route_title {
		position: relative;
		font-size: 16px;
		font-family: Microsoft YaHei;
		font-weight: 400;
		color: rgba(0, 0, 0, 1);
		text-align: left;
		padding-left: 20px;
		margin-top: -4px;

	}

	.route_title::before {
		position: absolute;
		content: ' ';
		bottom: -8px;
		width: 36px;
		height: 2.5px;
		left: 20px;
		background: rgba(238, 73, 88, 1);
	}

	.product-detail {
		padding-top: 20px;
		padding-bottom: 20px;
	}
}

.big-text p {
	text-indent: 2em;
}

.product-text {
	font-size: 16px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(22, 22, 22, 1);
	margin-top: 14px;
	margin-bottom: 20px;
}

.top_bg .top_bg_con .swiper-button-next {
	background: url(../img/right.png) no-repeat center;
	right: 3.1%;
}

.top_bg .top_bg_con .swiper-button-prev {
	background: url(../img/left.png) no-repeat center;
	left: 3.1%;
}

.swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	display: inline-block;
	border-radius: 100%;
	background: #FFF;
	opacity: 0.6;
}

.swiper-pagination-bullet-active {
	background: #FFF;
	opacity: 1;
}

.page-container {
	margin: 50px auto 0px;
}

.page-num {
	width: 30px;
	height: 28px;
	border-radius: 2px;
	text-align: center;
	line-height: 28px;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	background-color: #F5F5F5;
	color: #5E5E6A;
	margin: 0 6px;
}

.page-num-on {
	background-color: #EE4958;
	color: #FFF;
}

.screen-icon {
	height: 14px;
	width: 14px;
	margin-right: 20px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	display: none;
}

.product-list-m {
	padding: 0px 20px;
}

.product-item-image {
	width: 37%;
	padding-bottom: 26%;
	margin-right: 10px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.product-item-info-t {
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(22, 22, 22, 1);
	margin-bottom: 10px;
	text-align: left;
}

.product-item-info-s {
	font-size: 12px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #919090;
	margin-bottom: 10px;
}

.product-item-m {
	margin-bottom: 10px;
}

.product-item-money {
	font-weight: 400;
	color: rgba(238, 73, 88, 1);
}

.product-detail-title {
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(22, 22, 22, 1);
	margin-bottom: 18px;
}

.product-detail-money {
	font-size: 20px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(238, 73, 88, 1);
	margin-bottom: 18px;
}

.detail-header {
	overflow: hidden;
}

.detail-header::before {
	display: table;
	content: " ";
}

.detail-header::after {
	content: " ";
	clear: both;
}

.product-detail-desc {
	display: table;
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(145, 144, 144, 1);
}

.product-detail-desc::before {
	display: table;
	content: " ";
}

.product-detail-desc::after {
	content: " ";
	clear: both;
}

.product-detail-desc div {
	padding: 0px 0px 18px;
}

.product-detail-opt {
	font-size: 14px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: rgba(49, 49, 49, 1);
}

.opt-icon {
	width: 16px;
	height: 16px;
	margin-right: 10px;
}

.opt-text {
	margin: 0;
}
.xiangqing-d video{
 width:100%;
}
.xiangqing-t {
	padding: 8px 0px;
	text-align: center;
	border-bottom: 1px solid #E5E5E5;
	margin: 10px 0px;
	font-size: 20px;
	font-weight: 400;
	color: rgba(26, 26, 26, 1);
}

.xiangqing-d {
	padding-bottom: 60px;
}

.xiangqing-d img {
	width: 100%;
	margin: 0;
}

.container {
	padding-left: 10px !important;
	padding-right: 10px !important;
}

.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
	padding-left: 10px !important;
	padding-right: 10px !important;
}

.m-page-container {
	text-align: center;
}

.m-page-container img {
	width: 24px;
	height: 24px;
	margin: 10px auto;
}

[v-cloak] {display: none;}
