h1 {
	font-size: 28px;
	text-align: center;
	font-weight: 600;
}

.intro {
	font-size: 17px;
	color: #444;
	margin-bottom: 30px;
	line-height: 1.7;
	text-align: center;
}

.faq-container {
	background: white;
	padding: 10px;
}

.faq-title {
            color: #ff0000;
            text-align: center;
            font-weight: normal;
            font-size: 32px;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
}

.faq-item {
	margin-bottom: 30px;
}

.question {
	font-size: 18px;
	font-weight: 600;
	color: #1a3a6c;
	margin-bottom: 12px;
	line-height: 1.5;
}

.answer {
	color: #444;
	line-height: 1.7;
	margin-left: 10px;
	font-size:16px;
}

.features {
	margin-top: 10px;
	margin-left: 25px;
}

.feature {
	margin-bottom: 8px;
	position: relative;
	padding-left: 10px;
	line-height: 1.6;
}

.feature:before {
	position: absolute;
	left: 0;
	font-weight: bold;
}
.dump-features {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px 0;
}
.dump-feature {
	flex: 0 0 calc(35% - 20px);
	text-align: center;
}
.feature-img {
	width: 100%;
	height: 250px;
	background-color: #f5f5f5;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #666;
	font-size: 16px;
}
.feature-title {
	font-weight: bold;
	margin-bottom: 10px;
	color: #333;
	font-size:16px;
}
.feature-desc {
	color: #666;
	font-size:16px;
	line-height: 1.5;
	padding: 0 2px;
}
.grid-container {
	display: grid;grid-template-columns: repeat(8, 1fr);
	gap: 10px;
	margin:20px 0;
}

.translateSelectLanguage{
		position: fixed;
		top: 20px;
		right: 20px;
		z-index: 1000;
		background:#FF4500; /* 红色悬停效果 */
		padding: 20px;
		border-radius: 12px;
		box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
		backdrop-filter: blur(10px);
		border: 1px solid rgba(255, 255, 255, 0.5);
		transition: transform 0.3s ease, box-shadow 0.3s ease;
		color:#FFFFFF;
	}
.translateSelectLanguage:hover{
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
	
}
.translateSelectLanguage option{
		background: white;
		color: #333;
		padding: 20px;
}
#translate{
	position: relative;
	display: none;
}
#translate::after{
	content: "";
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	width: 10px;
	height: 10px;
	border-right: 2px solid white;
	border-bottom: 2px solid white;
	transform: translateY(-60%) rotate(45deg);
	pointer-events: none;
	transition: transform 0.3s ease;
} 

.grid-container a{ display: block;overflow:hidden;}

.grid-item {
	background: white;
	border-radius: 6px;
	padding: 8px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.grid-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-container {
	width: 60px;
	height: 60px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 6px;
	color: white;
	font-size: 1.4rem;
}

.item-text {
	font-size: 0.75rem;
	color: #34495e;
	font-weight: 500;
	line-height: 1.2;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
}