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;
}
/* 留言弹框样式 */
.feedback-widget {
	position: fixed;
	bottom: 5px;
	right: 5px;
	width: 320px;
	background: white;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	z-index: 1000;
	overflow: hidden;
	transform: translateX(100%);
	opacity: 0;
	animation: slideIn 0.8s forwards 1s;
}
.feedback-widget.inactive{
	transform: translateY(0);
	opacity: 1;
	visibility: hidden;
}
@keyframes slideIn {
	0% {
		transform: translateX(100%);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

.widget-header {
	background: #536dfe;
	color: white;
	padding: 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.widget-header h3 {
	font-weight: 500;
	font-size: 1.4rem;
}

.close-btn {
	background: none;
	border: none;
	color: white;
	font-size: 22px;
	cursor: pointer;
	transition: transform 0.3s;
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
}

.close-btn:hover {
	transform: rotate(90deg);
	background: rgba(255, 255, 255, 0.2);
}

.widget-body {
	padding: 15px;
}
.widget-body input{
	width:90%;
}
.widget-body textarea{
	width:90%;
}
.widget-body p {
	color: #666;
	margin-bottom: 10px;
	text-align: center;
	font-size: 1rem;
}

.form-group {
	margin-bottom: 10px;
	text-align: left;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: #536dfe;
}

.form-control {
	width: 100%;
	padding: 12px 15px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 16px;
	transition: border 0.3s;
}

.form-control:focus {
	border-color: #536dfe;
	outline: none;
}

textarea.form-control {
	min-height: 100px;
	resize: vertical;
}

.submit-btn {
	background: #536dfe;
	color: white;
	border: none;
	padding: 14px 20px;
	width: 100%;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: background 0.3s;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.submit-btn:hover {
	background: #3a56e4;
}
.notification {
	position: fixed;
	bottom: 10px;
	left: 30px;
	background: #4caf50;
	color: white;
	padding: 15px 25px;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	display: flex;
	align-items: center;
	gap: 10px;
	transform: translateY(100px);
	opacity: 0;
	transition: all 0.5s ease;
	z-index: 1001;
}
.notification.show {
	transform: translateY(0);
	opacity: 1;
}
.success-message {
	position: fixed;
	top: 60px;
	right: 50px;
	background: linear-gradient(to right, #2ecc71, #27ae60);
	color: white;
	padding: 15px 25px;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	display: flex;
	align-items: center;
	z-index: 1002;
	transform: translateX(150%);
	transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.success-message.show {
	transform: translateX(0);
}

.success-icon {
	margin-right: 10px;
	font-size: 24px;
}

.success-text {
	font-weight: 500;
}   
/* 响应式设计 */
@media (max-width: 750px) {
	.grid-container {
		grid-template-columns: repeat(4, 1fr);
	}
	.feedback-widget {
		width: 90%;
		right: 5%;
		bottom: 10px;
	}
	
	h1 {
		font-size: 2rem;
	}
	.success-message {
		right: 10px;
		left: 10px;
		top: 10px;
	}
}