@charset "utf-8";

/*-- 全局reset
-------------------------------------------*/

html,
body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
object,
code,
legend,
button,
input,
label,
th,
td,
a,
img {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}

* {
	box-sizing: border-box;
}

@font-face {
	/* 自定义字体的名字 */
	font-family: "Helvetica-Regular";
	/* 字体文件的路径和格式 */
	src: url("../fonts/Helvetica-Neue.ttf") format("truetype");
}

@font-face {
	font-family: "helvetica-bold";
	src: url("../fonts/Helvetica-bold.ttf") format("truetype");
}

html {
	font-size: 62.5%;
}

body {
	/* background-color: #ffffff; */
	background-color: #f5f5f5;
	font-family: "Helvetica-Regular", sans-serif;
	font-size: 1.4rem;
	position: relative;
}

img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	/* width: 100%;
	height: 100%; */
	object-fit: cover;
}

.MaximumWidth {
	width: 87%;
	margin: 0 auto;
	max-width: 1920px;
}

section {
	max-width: 1920px;
	margin: 0 auto;
}

.titlemin {
	margin-left: 15px;
	font-weight: normal;
	font-family: helvetica-Regular, Helvetica, Arial, sans-serif;
}

.img-bg {
	background-repeat: no-repeat;
	background-size: 100% 100%;
	/* background-size: cover; */
	position: relative;
}

.img-bg::before {
	content: "";
	position: absolute;
	/* 一定要用绝对定位 */
	width: 100%;
	height: 100%;
	backdrop-filter: blur(20px);
	/* 模糊半径 */
}

/*清除内外边距*/
h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: bold;
	font-family: helvetica-bold, Helvetica, Arial, sans-serif;
}

p {
	font-family: helvetica-Regular, Helvetica, Arial, sans-serif;
}

/*设置默认字体*/
:focus {
	outline: 0;
}

ul,
ol {
	list-style: none;
}

/*重置列表*/
fieldset,
img {
	border: 0 none;
	vertical-align: top;
}

/*重置图片元素*/
address,
caption,
cite,
code,
dfn,
em,
i,
th,
var,
optgroup {
	font-style: normal;
	font-weight: normal;
}

abbr,
acronym {
	border: 0;
	font-variant: normal;
}

input,
button,
select,
optgroup,
option {
	font-family: inherit;
	font-size: inherit;
	font-style: inherit;
	font-weight: inherit;
}

code,
kbd,
samp,
tt {
	font-size: 100%;
}

/*@purpose To enable resizing for IE */
/*@branch For IE6-Win, IE7-Win */
input,
button,
select {
	/* *font-size: 100%; */
	outline: none;
}

form label {
	cursor: pointer;
}

*/ table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*重置表格*/
blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

a {
	color: #292929;
	text-decoration: none;
	-webkit-transition: color 0.2s ease-in-out;
	-moz-transition: color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out;
	-webkit-transition: background-color 0.2s ease-in-out;
	-moz-transition: background-color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out;
}

a:hover {
	text-decoration: none;
	/*color: #f8b62d;*/
}

/*--清除浮动
-------------------------------------------*/

/*-- 字号、颜色、外边距、内补丁、居中、行高、显示、隐藏
--------------------------------------------------------------------------*/
.c-333 {
	color: #333;
}

.c-666 {
	color: #666;
}

.c-999 {
	color: #999;
}

.c-green {
	color: #1fb079;
}

.c-orange {
	color: #fc714c;
}

.c-reg {
	color: #d90106;
}

/* 字号 */

/* 隐藏 居中 */

/*文字隐藏,省略号*/
/* 布局 */
.center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.row {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.column {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.column-space-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
}

.space-between {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.space-around {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
}

.one {
	flex: 1;
}

.noScorll {
	overflow: -moz-scrollbars-none;
}

/* #endif */

.text-ellipsis1 {
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	white-space: normal;
}

.text-ellipsis2 {
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	white-space: normal;
}

.text-ellipsis3 {
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	white-space: normal;
}

.text-ellipsis4 {
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 4;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	white-space: normal;
}

/* 清除滚动条 */
.noScorll::-webkit-scrollbar {
	width: 0 !important;
	height: 0 !important;
	display: none;
}

.noScorll {
	-ms-overflow-style: none;
	overflow: auto;
}

/* 右箭头 */
.right-arrow {
	display: block;
	border-top: 2px solid #a3a3a3;
	border-right: 2px solid #a3a3a3;
	width: 12px;
	height: 12px;
	transition: all 0.8s;
	transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transition: all 0.5s;
	margin-top: 2px;
}

/* 分页 */
.paging {
	font-size: 16px;
	margin: 30px auto;
}

.paging .pnum {
	margin: 0 10px;
}

.pnum {
	width: 20px;
	height: 20px;
	line-height: 20px;
	text-align: center;
	background-color: #b5b5b6;
	border-radius: 50%;
	cursor: pointer;
	color: #ffffff;
}

.pnum a {
	color: #ffffff;
}

.previous,
.next-page {
	width: 30px;
	height: 30px;
	position: relative;
	cursor: pointer;
}

.previous a,
.next-page a {
	display: inline-block;
	width: 30px;
	height: 30px;
}

.previous a:after {
	content: '';
	width: 8px;
	height: 8px;
	position: absolute;
	top: 50%;
	left: calc(50% - 3px);
	border-left: 2px solid #ffffff;
	border-bottom: 2px solid #ffffff;
	-webkit-transform: translate(0, -50%) rotate(-135deg);
	transform: translate(0, -50%) rotate(45deg);
}

.next-page a:after {
	content: '';
	width: 8px;
	height: 8px;
	position: absolute;
	top: 50%;
	left: calc(50% - 7px);
	border-left: 2px solid #ffffff;
	border-bottom: 2px solid #ffffff;
	-webkit-transform: translate(0, -50%) rotate(-135deg);
	transform: translate(0, -50%) rotate(-135deg);
}


.previous {
	margin-right: 20px;
	background-color: #fbb03b;
}

.previous a {
	display: inline-block;
}

.next-page {
	color: #ffffff;
	margin-left: 10px;
	border-radius: 50%;
	background-color: #fbb03b;
}

.next-page a {
	color: #ffffff;
}

.cpage {
	color: #f9f9f9;
	cursor: default;
	background-color: #fbb03b;
}

.pnum:hover {
	color: #ffffff;
	background-color: #fbb03b;
}

.previous:hover:after {
	cursor: pointer;
}

.next-page:hover:after {
	cursor: pointer;
	border-left: 2px solid #fbb03b;
	border-bottom: 2px solid #fbb03b;
}

.nomore {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: #f4f4f5;
}

.nomore:after {
	content: '';
	width: 8px;
	height: 8px;
	position: absolute;
	top: 50%;
	left: calc(50% - 3px);
	border-left: 2px solid #a3a3a3;
	border-bottom: 2px solid #a3a3a3;
	-webkit-transform: translate(0, -50%) rotate(-135deg);
	transform: translate(0, -50%) rotate(45deg);
}

.next-page.nomore:after {
	content: '';
	width: 8px;
	height: 8px;
	position: absolute;
	left: calc(50% - 7px);
	border-left: 2px solid #a3a3a3;
	border-bottom: 2px solid #a3a3a3;
	-webkit-transform: translate(0, -50%) rotate(-135deg);
	transform: translate(0, -50%) rotate(-135deg);
}

.nomore:hover {
	cursor: default;
	background-color: #f4f4f5;
}

.nomore:hover:after {
	cursor: default;
	border-left: 2px solid #a3a3a3;
	border-bottom: 2px solid #a3a3a3;
}

/* 面包屑导航 */
.menu-nav .nav-list {
	font-weight: 400;
	font-size: 1.6rem;
	color: #7a7a7a;
	display: flex;
	align-items: center;
	margin: 100px 0 30px 0;
}

.menu-nav .nav-list li {
	/* moz-user-select: -moz-none; */
	-moz-user-select: text;
	-o-user-select: text;
	-khtml-user-select: text;
	-webkit-user-select: text;
	-ms-user-select: text;
	user-select: text;
}

.menu-nav .nav-list a {
	color: #7a7a7a;
	/* moz-user-select: -moz-none; */
	-moz-user-select: text;
	-o-user-select: text;
	-khtml-user-select: text;
	-webkit-user-select: text;
	-ms-user-select: text;
	user-select: text;
}

.menu-nav .nav-list img {
	width: 15px;
	height: 15px;
	margin: 0 3px;
	vertical-align: middle;
}

.menu-nav .nav-list .phone-navitem {
	width: 25px;
	height: 27px;
	display: none;
}

/* 统一导航栏 */
.total-menu {
	background-color: #282828;
	padding: 38px 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.total-menu .tmenu-item {
	font-weight: 400;
	font-size: 1.8rem;
	color: #ffffff;
	margin-right: 80px;
}

.total-menu .tmenu-item:hover {
	cursor: pointer;
	color: #f8b62d;
}

.total-menu .tmenu-active {
	color: #f8b62d;
	position: relative;
}

.total-menu .tmenu-active::after {
	content: "";
	width: 100%;
	height: 3px;
	background: #f8b62d;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -38px;
	transition: all 0.3s;
}

.tmenu-item:last-child {
	margin-right: 0;
}

/* 详情页导航图片 */
.page-brand {
	position: relative;
}

.page-brand img {
	height: 550px;
	width: 100%;
}

.page-brand .page-name {
	position: absolute;
	left: 50%;
	top: 60%;
	transform: translate(-50%, -50%);
	font-weight: bold;
	font-size: 6.4rem;
	color: #ffffff;
	text-align: center;
}

@media screen and (max-width: 1600px) {
	.MaximumWidth {
		width: 90%;
	}
}

/* @media screen and (max-width: 1280px) { */
@media screen and (max-width: 1400px) {
	.MaximumWidth {
		width: 95%;
		min-width: 1080px;
	}

	.page-brand img {
		height: 370px;
	}

	.page-brand .page-name {
		font-size: 3.6rem;
		line-height: 4.2rem;
	}

	.menu-nav .nav-list {
		margin: 56px 0 15px 0;
	}
}

@media screen and (max-width: 768px) {
	.MaximumWidth {
		width: 92%;
		min-width: auto;
	}

	.titlemin {
		margin-left: 5px;
	}

	.page-brand img {
		height: 400px;
	}

	.page-brand .page-name {
		width: 100%;
		font-size: 2.8rem;
		color: #ffffff;
		line-height: 3.3rem;
		text-shadow: 0px 8px 16px rgba(0, 0, 0, 0.12);
	}

	.menu-nav .nav-list {
		margin: 40px 0 16px 0;
		font-size: 1.3rem;
		line-height: 1.7rem;
	}

	.menu-nav .nav-list .pc-navitem {
		display: none;
	}

	.menu-nav .nav-list .phone-navitem {
		display: block;
	}

	/* 导航栏 */
	.total-menu {
		padding: 0 0 24px;
		/* padding: 24px 0; */
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.total-menu .tmenu-item {
		width: calc(50vw - 4px);
		/* height: 85px; */
		margin-right: 0;
		padding: 15px 0;
		text-align: center;
		border-bottom: 2px solid #ffffff;
	}

	.total-menu .tmenu-active::after {
		bottom: -2px;
	}

	/*.paging {*/
	/*	display: none;*/
	/*}*/
}