@charset "utf-8";

* {
	margin: 0;
	padding: 0;
	list-style-type: none;
	-webkit-tap-highlight-color: transparent;

}

html {
	font-size: calc(100vw / 750 * 100);
	scroll-behavior: smooth;
}

body {
	font-size: 16px;
}

#app {
	width: 100vw;
	height: 100vh;
	display: flex;
	flex-direction: column;
}

.content-box {
	flex: 1;
	overflow: auto;
	position: relative;
}


.flex-row {
	display: flex;
	flex-direction: row;
}

.flex-column {
	display: flex;
	flex-direction: column;
}

.flex-1 {
	flex: 1;
}

.j-c {
	justify-content: center;
}

.a-c {
	align-items: center;
}

.j-s-b {
	justify-content: space-between;
}

.j-s-a {
	justify-content: space-around;
}

.j-s-e {
	justify-content: space-evenly;
}


/* 头部的titleBar */
.header {
	height: 0.69rem;
	background-color: #FFFFFF;
}

.left-img-box {
	margin-left: 0.21rem;
}

.txt-img-box {
	width: 3rem;
	height: 0.5rem;
	margin-left: 0.24rem;
	perspective: 2rem;
	position: relative;
}

.txt-img-box>img {
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	position: absolute;
}

.txt-img-1 {
	animation: ani-txt-img-1 5s linear infinite;
}

.txt-img-2 {
	animation: ani-txt-img-2 5s linear infinite;
}

@keyframes ani-txt-img-1 {
	from {
		transform: rotateX(0deg);
	}

	50% {
		transform: rotateX(180deg);
	}

	100% {
		transform: rotateX(0deg);
	}

}

@keyframes ani-txt-img-2 {
	from {
		transform: rotateX(-180deg);
	}

	50% {
		transform: rotateX(0deg);
	}

	100% {
		transform: rotateX(-180deg);
	}
}



.logo-img {
	height: 0.48rem;
}



.right-menu-img {
	width: 0.21rem;
	height: 0.21rem;
	margin-right: 0.21rem;
}


.toTop a {
	cursor: pointer;
}

.toTop>a>img {
	width: 0.69rem;
	height: 0.69rem;
	display: block;
}

.toTop>span {
	color: #666666;
	font-size: 0.25rem;
	margin-top: 0.14rem;
}


/* 手机号联系我们 */
.phone-box {
	margin-top: 0.56rem;
	margin-bottom: 0.56rem;
}

.phone-box>img {
	width: 0.69rem;
	height: 0.69rem;
}

.phone-box>a {
	text-decoration: none;
	color: #666666;
	font-size: 0.42rem;
	margin-left: 0.28rem;
}

/* 底部蓝色的盒子 */

.page-bottom-box {
	background-image: url(../img/index/55.png);
	background-size: 100% 100%;
	padding-top: 0.26rem;
	box-sizing: border-box;
}

.wechat-box>li {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #FFFFFF;
	font-size: 0.25rem;
}

.wechat-box>li>img {
	width: 1.36rem;
	height: 1.36rem;
	margin-top: 0.15rem;
}

.page-bottom-box-addr {
	font-size: 0.25rem;
	color: #FFFFFF;
	margin-top: 0.39rem;
	line-height: 1.8;
	box-sizing: border-box;
	padding: 0px 0.24rem;
}

.page-bottom-box-stick {
	height: 0.83rem;
	background: linear-gradient(130deg, #746CFF 0%, #B8B4FF 100%);
	color: #FFFFFF;
	font-size: 0.31rem;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	box-sizing: border-box;
	padding: 0 0.26rem;
}

/* 0元领取福利 */
.welfare {
	width: 2.08rem;
	height: 0.56rem;
	background: url(../img/index/74.png);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 0.25rem;
	
}

/* 版权 */
.copyright {
	height: 0.69rem;
	background-color: #000000;
	color: #FFFFFF;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 0.24rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}


.slide-bar {
	position: fixed;
	left: 0px;
	right: 0px;
	top: 0.69rem;
	bottom: 0px;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 9999;
	display: none;
}



.menu-box {
	transition: all 0.5s linear;
	width: 3.47rem;
	background-color: white;
	height: 100%;
	position: absolute;
	right: 0px;
	top: 0px;
	overflow: auto;
	transform: translateY(0);
}



.menu-title {
	display: flex;
	height: 0.69rem;
	background: linear-gradient(130deg, #746CFF 0%, #B8B4FF 100%);
	color: #FFFFFF;
	font-weight: bold;
	font-size: 0.25rem;
	display: flex;
	align-items: center;
	padding-left: 0.37rem;
	box-sizing: border-box;
	text-decoration: none;
}

.menu-list {
	box-sizing: border-box;
	padding-left: 11px;
}

.menu-list li {}

.menu-list li a {
	text-decoration: none;
	color: #333333;
	display: block;
	height: 0.72rem;
	display: flex;
	align-items: center;
	border-bottom: 1px solid #e6e6e6;
	box-sizing: border-box;
	padding-left: 0.26rem;
	font-size: 0.25rem;
}

.dropdown-menu-item {
	position: relative;
	display: flex;
	align-items: center;
}

.dropdown-menu-item>img {
	width: 0.28rem;
	height: 0.24rem;
	position: absolute;
	right: 0.4rem;
}

.submenu {
	display: none;
}

.submenu>li>a {
	padding-left: 0.62rem;
}

.type-box-list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.type-box-title {
	font-size: 0.35rem;
	color: #333333;
	border-left: 4px solid #746CFF;
	padding-left: 0.14rem;
	margin: 0.21rem 0.28rem;
}

.type-box-item {
	display: flex;
	flex-direction: column;
	width: 50%;
	text-decoration: none;
	font-size: 0.21rem;
	align-items: center;
	text-align: center;
	margin-top: 0.21rem;
}

.type-box-item>img {
	width: 0.56rem;
	height: 0.56rem;
	margin-bottom: 0.19rem;
}

.type-box-item>span {
	color: #333333;
}


/* 自定义轮播的左右箭头 */
.custom-swiper-button-next::after {
	content: "\e618" !important;
	font-family: "iconfont" !important;
	font-size: 0.56rem !important;
}

.custom-swiper-button-prev::after {
	content: "\e619" !important;
	font-family: "iconfont" !important;
	font-size: 0.56rem !important;
}
