@charset "UTF-8";
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html,
body {
	min-width: 1200px;
	font-size: 16px;
	background: #fefcf7;
}
html {
	font-family: "Microsoft YaHei", 微软雅黑, "MicrosoftJhengHei", 华文细黑,
		STHeiti, MingLiu, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
		Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
	/* for chrome */
	/* for firefox */
	scrollbar-width: thin;
}
html::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}
html::-webkit-scrollbar-track {
	border-radius: 7px;
}
html::-webkit-scrollbar-thumb {
	border-radius: 7px;
	background-image: linear-gradient(25deg, #f0d2a0, #f0d2a0, #f0d2a0);
}
.clearfix {
    zoom: 1;
    /*为IE6，7的兼容性设置*/

    &:after {
        clear: both;
        /*清除浮动*/
    }

    &:after,
    &:before {
        content: "";
        /*加一段内容*/
        display: table;
        /*创建匿名的表格单元，触发bfc*/
    }
}
ul li {
	list-style: none;
}
a {
	cursor: pointer;
	text-decoration: none;
}
input {
	outline: none;
	border: none;
}
input:focus {
	box-shadow: 0 0 3px 0px #777;
}
table {
	border-spacing: 0;
	border-collapse: collapse;
}
p {
	word-wrap: break-word;
}
.transition {
	transition: 0.4s ease all;
}
.cursor-pointer {
	cursor: pointer;
}
.hoverBright {
	transition: 0.25s ease-out all;
}
.hoverBright:hover {
	filter: brightness(1.2);
}
.hoverUnderline {
	transition: 0.25s ease-out all;
}
.hoverUnderline:hover {
	text-decoration: underline;
}
.show {
	display: block !important;
}
.hide {
	display: none !important;
}
.block {
	display: block;
}
.inline-block {
	display: inline-block;
}
.user-select-none {
	user-select: none;
	touch-action: none;
}
.row{
    display: flex;
	display: -webkit-flex;
    justify-content: center;
    align-items: center;
	/* flex-wrap: nowrap; */
}
/* 水平两边 垂直靠上 */
.row-between-start{
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-items: flex-start;
}
/* 水平靠后 垂直居中 */
.row-end-center{
	display: flex;
	display: -webkit-flex;
	justify-content: flex-end;
	align-items: center;
}
/* 水平靠前 垂直居中 */
.row-start-center{
	display: flex;
	display: -webkit-flex;
	justify-content: start;
	align-items: center;
}
/* 水平环绕 垂直居中 */
.row-around-center{
	display: flex;
	display: -webkit-flex;
	justify-content: space-around;
	align-items: center;
}
/* 水平两边 垂直居中 */
.row-between-center{
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-items: center;
}
.col{
    display: flex;
	display: -webkit-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	/* flex-wrap: nowrap; */
}
/* 垂直居中水平靠后  */
.col-center-end{
    display: flex;
	display: -webkit-flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}
/* 垂直靠上水平居中  */
.col-start-center{
    display: flex;
	display: -webkit-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.fixed-full {
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	overflow: hidden;
}
.w-full {
	width: 100%;
}
.h-full {
	height: 100%;
}
.flex {
	display: flex;
}
.grid {
	display: grid;
}
.flex-row {
	flex-direction: row;
}
.flex-column {
	flex-direction: column;
}
.flex-1 {
	flex: 1;
}
.flex-c {
	display: flex;
	align-items: center;
	justify-content: center;
}
.items-center {
	align-items: center;
}
.items-start {
	align-items: flex-start;
}
.justify-center {
	justify-content: center;
}
.justify-round {
	justify-content: space-around;
}
.justify-between {
	justify-content: space-between;
}
.justify-start {
	justify-content: flex-start;
}
.justify-end {
	justify-content: flex-end;
}
.text-center {
	text-align: center;
}
.padding-5 {
	padding: 5px;
}
.padding-10 {
	padding: 10px;
}
.margin-0-auto {
	margin: 0 auto;
}
.margin-5 {
	margin: 5px;
}
.margin-10 {
	margin: 10px;
}
.fade-enter-active,
.fade-leave-active {
	transition: 0.4s ease all;
}
.fade-enter-from,
.fade-leave-to {
	opacity: 0;
}
.gradual-mask {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 30vh;
	background: linear-gradient(to bottom, transparent, #25282edc);
	pointer-events: none;
}
.gradual-mask.mask-top {
	bottom: unset;
	top: 0;
	background: linear-gradient(to top, transparent, #25282edc);
}
.layout {
	overflow-x: hidden;
	/* min-width: 1200px; */
}
.box {
	position: relative;
	/* width: 1560px; */
	margin: 0 auto;
}
.foot {
	text-align: center;
	background: #000;
	color: #666;
	font-size: 14px;
	line-height: 40px;
	padding-top: 50px;
	padding-bottom: 50px;
}
.foot .line-1 {
	line-height: 55px;
	color: #999;
}
.foot .line-2 {
	padding-top: 5px;
	color: #999;
}
.modal {
	display: none;
	background: #00000091;
	z-index: 999;
}
.modal .modal-wrapper {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation: fadeDown 0.4s ease-out;
}
@keyframes fadeDown {
	from {
		transform: translate(-50%, -55%);
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.modal .modal-header {
	position: relative;
	padding: 40px 10px 10px;
}
.tab-list {
	position: relative;
	width: 649px;
}
.tab-list .tab-hint {
	position: absolute;
	font-size: 18px;
	top: -45px;
	left: 0;
}
.tab-list .tab-nav {
	font-size: 20px;
	margin-bottom: 40px;
	color: #56393d;
}
.tab-list .tab-item {
	height: 48px;
	border: 2px solid #eeda99;
}
.tab-list .tab-item.active {
	background: #eeda99;
}
.tab-list .tab-pane {
	display: none;
}
.tab-list .tab-pane section {
	margin-left: -20px;
	margin-bottom: 20px;
}
.tab-list .tab-pane .label {
	width: 110px;
	text-align: right;
}
.tab-list .tab-pane.active {
	display: block;
}
.swiper-button-disabled {
	cursor: not-allowed;
	filter: grayscale(1);
}
.swiper-button-disabled:hover {
	filter: grayscale(1);
}
.text-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}