#box-main {
	position: relative;
	background-color: #fff;
	top: 100vh;
	box-shadow: 0 -1px 5px rgb(0 0 0 / 10%);
}

body {
    cursor: url('https://www.switolor.cn/os/other/menu/pointer.png'), auto;
}

/* 小标题 */
.box-tip {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 4vh 0;
}

.box-tip-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 0 5vw;
}

.box-tip-left {
	width: 20vw;
	height: 0.1rem;
	background-image: linear-gradient(to left, #DADADA, #FFF);
}

.box-tip-right {
	width: 20vw;
	height: 0.1rem;
	background-image: linear-gradient(to right, #DADADA, #FFF);
}

.box-tip-content-title {
	font-size: 1.5rem;
	color: #515151;
	font-weight: bold;
}

.box-tip-content-text {
	font-size: 0.6	rem;
	color: #515151;
	margin-top: 0.5rem;
}






/* 跑马灯效果的卡片 */
.box-card-parent {
	width: 100%;
	height: 29vw;
	padding: 5vw 0;
	overflow: hidden;
	position: relative;
	background-color: #f9feff;
}
#box-card {
	position: absolute;
	/* width: 70.5vw; */
	display: flex;
	flex-direction: row;
}

.box-card-item {
	width: 20vw;
	height: 26vw;
	padding: 1.5vw;
	margin-right: 2vw;
	/* border: 1px solid #C9C9C9; */
	border-radius: 10px;
	box-shadow: 0 0 2px 2px #efefef;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	background-color: white;
}

.box-card-item:hover {
	box-shadow: 0 0 2px 2px #52c9ff !important;
}

.box-card-item-img {
	width: 20vw;
	height: 11.25vw;
	border-radius: 10px;
}

.box-card-item-content {
	align-items: center;
	height: 10vw;
}

.box-card-item-title {
	font-size: 0.8rem;
	font-weight: bold;
	margin-bottom: 0.5vw;
}

.box-card-item-text {
	color: #515151;
	font-size: 0.7rem;
	display: -webkit-box;
	word-break: break-all;
	/*超出文字用省略号代替*/
	text-overflow: ellipsis; 
	/*竖直方向的超出和隐藏*/
	-webkit-box-orient: vertical;
	/*设定行数为2*/
	-webkit-line-clamp: 4;
	/*多出部分隐藏*/
	overflow: hidden;
}

.box-card-item-btn {
	border: 1px solid #52c9ff;
	border-radius: 6px;
	color: #52c9ff;
	padding: 0.8vw 3vw;
	cursor: pointer;
	letter-spacing: 1px;
}




/**
 * 模块介绍
 */
.box-model {
	display: flex;
	flex-direction: row;
	justify-content: center;
	margin-top: 3vh;
}

#box-model-left {
	width: 40vw;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding-right: 5vw;
	padding-bottom: 1.25rem;
}

.box-model-info-group {
	display: flex;
	flex-direction: column;
}

.box-model-info-title {
	font-size: 2rem;
}

.box-model-info-content {
	font-size: 0.8rem;
	color: #757575;
	display: -webkit-box;
	word-break: break-all;
	/*超出文字用省略号代替*/
	text-overflow: ellipsis; 
	/*竖直方向的超出和隐藏*/
	-webkit-box-orient: vertical;
	/*设定行数为2*/
	-webkit-line-clamp: 2;
	/*多出部分隐藏*/
	overflow: hidden;
	margin-top: 2vh;
}

.box-model-info-img {
	width: 40vw;
	border-radius: 5px;
	display: none;
}

@media only screen and (min-width: 1024px) {
	#box-model-right {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: flex-start;
		width: 45vw;
	}
	
	.box-model-item {
		width: 140px;
		margin-right: 1.25rem;
		margin-bottom: 1.25rem;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		box-shadow: 0 0 4px 2px #E9ECF1;
		border-radius: 8px;
		padding: 2vw;
		cursor: pointer;
	}
	
	.box-model-item-click {
		box-shadow: 0 0 4px 2px #b4e5ff;
	}
	
	.box-model-item-img {
		width: 80px;
		height: 80px;
		border-radius: 10px;
	}
	
	.box-model-item-text {
		font-weight: bold;
		margin-top: 1vw;
		font-size: 1rem;
		letter-spacing: 1px;
		color: #515151;
	}
}


@media only screen and (max-width: 1024px) {
	
	#box-model-left {
		padding-bottom: 0 !important;
	}
	
	#box-model-right {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 48vw;
		height: 26vh;
		padding-top: 1.25rem;
		overflow-y: scroll;
	}
	
	.box-model-item {
		width: 36vw;
		margin-bottom: 1.25rem;
		display: flex;
		flex-direction: row;
		justify-content: space-around;
		align-items: center;
		box-shadow: 0 0 4px 2px #E9ECF1;
		border-radius: 8px;
		padding: 2vw;
		cursor: pointer;
	}
	
	.box-model-item-click {
		box-shadow: 0 0 4px 2px #b4e5ff;
	}
	
	.box-model-item-img {
		width: 3rem;
		height: 3rem;
		border-radius: 0.6rem;
	}
	
	.box-model-item-text {
		font-weight: bold;
		font-size: 1.2rem;
		letter-spacing: 1px;
		color: #515151;
	}
}