[data-lang="en"] {
	/* display: none; */
}

/* 当根元素有 lang-en 类时，显示英文内容，隐藏中文内容 */
html.lang-en [data-lang="zh"] {
	display: none;
}

/* 
        html.lang-en [data-lang="en"] {
            display: block;
        } */

/* 滑块开关样式 */
.switch {
	position: relative;
	display: inline-block;
	width: 120px;
	height: 34px;
}

.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #2196F3;
	-webkit-transition: .4s;
	transition: .4s;
	border-radius: 34px;
	display: flex;
	align-items: center;
	padding: 0 10px;
	box-sizing: border-box;
}

.slider:before {
	position: absolute;
	content: "中文";
	text-align: center;
	line-height: 26px;
	height: 26px;
	width: 56px;
	left: 4px;
	bottom: 4px;
	background-color: #ffffff;
	-webkit-transition: .4s;
	transition: .4s;
	border-radius: 34px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	color: #2196F3;
}

.slider:after {
	content: "EN";
	color: white;
	position: absolute;
	right: 15px;
	z-index: 1;
}

input:checked+.slider:after {
	content: "中文";
	left: 15px;
	right: auto;
	color: white;
}

input:checked+.slider:before {
	content: "EN";
	-webkit-transform: translateX(56px);
	-ms-transform: translateX(56px);
	transform: translateX(56px);
	color: #2196F3;
}

input:focus+.slider {
	box-shadow: 0 0 1px #2196F3;
}

/* 弹窗样式 */
.popup {
	display: none;
	/* 隐藏弹窗 */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1000;
}

.popup-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 75%;
	/* 四分之三屏幕宽度，可根据需求调整 */
	max-width: 600px;
	/* 最大宽度 */
	/* height: 75%; */
	/* 四分之三屏幕高度 */
	background: white;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
	overflow: auto;
	/* 内容过多时滚动 */
}

.close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 20px;
	cursor: pointer;
	color: #666;
}

.content-area {
	padding: 20px;
}

.qrcode-container {
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 20px 0;
}

.qrcode-img {
	width: 45%;
	/* 每个二维码占45%宽度，留5%间距 */
	max-width: 200px;
	height: auto;
	border: 1px solid #eee;
	border-radius: 5px;
}

/*
flex弹性布局
 */
.flex {
	display: flex;
}

.flex-auto {
	flex: 0 0 auto;
}

.basis-10 {
	flex-basis: 20%;
}

.basis-20 {
	flex-basis: 40%;
}

.basis-25 {
	flex-basis: 50%;
}

.basis-60 {
	flex-basis: 60%;
}

.basis-80 {
	flex-basis: 80%;
}

.flex-sub {
	flex: 1;
}

.flex-twice {
	flex: 2;
}

.flex-treble {
	flex: 3;
}

.flex-row {
	flex-direction: row;
}

.flex-row-reverse {
	flex-direction: row-reverse;
}

.flex-column {
	flex-direction: column;
}

.flex-column-reverse {
	flex-direction: column-reverse;
}

.flex-wrap {
	flex-wrap: wrap;
}

.align-start {
	align-items: flex-start;
}

.align-end {
	align-items: flex-end;
}

.align-center {
	align-items: center;
}

.align-stretch {
	align-items: stretch;
}

.align-baseline {
	align-items: baseline;
}

.self-start {
	align-self: flex-start;
}

.self-center {
	align-self: center;
}

.self-end {
	align-self: flex-end;
}

.self-stretch {
	align-self: stretch;
}

.self-baseline {
	align-self: baseline;
}

.justify-start {
	justify-content: flex-start;
}

.justify-end {
	justify-content: flex-end;
}

.justify-center {
	justify-content: center;
}

.justify-between {
	justify-content: space-between;
}

.justify-around {
	justify-content: space-around;
}

/*
text
 */
.text-5 {
	font-size: .625rem !important;
}

.text-12 {
	font-size: .75rem !important;
}

.text-14 {
	font-size: .875rem !important;
}

.text-15 {
	font-size: .9375rem !important;
}

.text-16 {
	font-size: 1rem !important;
}

.text-18 {
	font-size: 1.125rem !important;
}

.text-20 {
	font-size: 1.25rem !important;
}

.text-22 {
	font-size: 1.375rem !important;
}

.text-24 {
	font-size: 1.5rem !important;
}

.text-26 {
	font-size: 1.625rem !important;
}

.text-28 {
	font-size: 1.75rem !important;
}

.text-30 {
	font-size: 1.875rem !important;
}

.text-32 {
	font-size: 2rem !important;
}

.text-40 {
	font-size: 2.5rem !important;
}

.text-60 {
	font-size: 3.75rem !important;
}

.text-Abc {
	text-transform: Capitalize;
}

.text-ABC {
	text-transform: Uppercase;
}

.text-abc {
	text-transform: Lowercase;
}

.text-indent {
	text-indent: 2rem;
}

.text-price::before {
	content: "¥";
	font-size: 80%;
	margin-right: .25rem !important;
}

.text-cut {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.text-break {
	word-break: break-all;
}

.text-bold {
	font-weight: bold;
}

.text-bold-400 {
	font-weight: 400;
}

.text-bold-500 {
	font-weight: 500;
}

.text-bold-600 {
	font-weight: 600;
}

.text-bold-700 {
	font-weight: 700;
}

.text-bold-800 {
	font-weight: 800;
}

.text-center {
	text-align: center;
}

.text-content {
	line-height: 1.6;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.text-aj {
	text-align: justify;
	text-justify: inter-ideograph;
}

.text-u {
	text-decoration: underline;
}

.text-o {
	text-decoration: overline;
}

.text-l {
	text-decoration: line-through;
}

.text-auto-wrap {
	word-wrap: break-word;
	word-break: normal;
}

.text-wrap {
	word-break: break-all;
}

.text-clamp {
	display: -webkit-box;
	word-wrap: break-word;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.text-blue {
	color: #377dff !important;
}

.text-indigo {
	color: #6e00ff !important;
}

.text-purple {
	color: #510FA8 !important;
}

.text-pink {
	color: #f074ad !important;
}

.text-red {
	color: #f25767 !important;
}

.text-orange {
	color: #FFBE3D !important;
}

.text-yellow {
	color: #ffc431 !important;
}

.text-green {
	color: #00c9a7 !important;
}

.text-teal {
	color: #50b5ff !important;
}

.text-cyan {
	color: #4bd6e5 !important;
}

.text-white {
	color: #FFFFFF !important;
}

.text-gray {
	color: #718096 !important;
}

.text-gray-dark {
	color: #2D3748 !important;
}

.text-primary {
	color: #377dff !important;
}

.text-secondary {
	color: #f7faff !important;
}

.text-success {
	color: #00c9a7 !important;
}

.text-info {
	color: #50b5ff !important;
}

.text-warning {
	color: #FFBE3D !important;
}

.text-danger {
	color: #f25767 !important;
}

.text-light {
	color: #f7faff !important;
}

.text-dark {
	color: #292C37 !important;
}

.text-primary-desat {
	color: #6C8AEC !important;
}

.text-black {
	color: #1e2022 !important;
}


/* lists item */
.lists-item {
	width: 50%;
}

.lists-item:nth-of-type(odd) {
	padding-right: .125rem !important;
}

.lists-item:nth-of-type(even) {
	padding-left: .125rem !important;
}

.wrap-big {
	width: 1100px !important;
}

/*pagination*/
.pagination-center .pagination {
	justify-content: center;
}

/*line-clamp*/
.line-clamp-1 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	text-overflow: ellipsis;
}

.line-clamp-2 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
}

.line-clamp-3 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	text-overflow: ellipsis;
}

.line-clamp-4 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
	text-overflow: ellipsis;
}

.line-clamp-5 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	overflow: hidden;
	text-overflow: ellipsis;
}

/*background-size*/
.bg-size {
	background-size: 100%;
}

@media (max-width: 991.98px) {
	.bg-size-lg {
		background-size: auto 100%;
	}
}


.line-height-18 {
	line-height: 1.8 !important;
}

.pop-wrap {
	width: 120px;
	position: fixed;
	bottom: 10rem;
	right: 1.5rem;
	z-index: 9;
	font-family: Helvetica Neue For Number, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Helvetica Neue, Helvetica, Arial, sans-serif;
}

.pop-wrap img {
	width: 90%;
}

.select-title {
	height: 30px;
	line-height: 30px;
}

.select-lists {
	list-style: none;
	padding-left: 0;
	margin: 0;
}

.select-lists li a {
	text-decoration: none;
	display: block;
	height: 30px;
	line-height: 30px;
	color: #000;
	padding: 0 11px;
	margin: 0;
}

.select-lists li a:hover,
.select-lists li.current a {
	color: #FFF;
	background: #0082EF;
}

.content-lists .content-item a {
	text-decoration: none;
	display: block;
	color: #000;
}

.content-lists .content-item:hover a {
	box-shadow: 0 0.5rem 1.5rem rgb(22 28 45 / 10%) !important;
}

.__edit img {
	max-width: 100%;
	vertical-align: bottom;
}

.footer-about,
.footer-about a {
	text-decoration: none;
}

.footer-about h4 {
	color: #377dff;
}