/* * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
} */

/* body {
	background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
	color: #fff;
	line-height: 1.6;
	min-height: 100vh;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
} */

.container {
	max-width: 1200px;
	width: 100%;
	padding: 20px;
	text-align: center;
}

/* header {
	text-align: center;
	padding: 40px 20px;
	background: rgba(0, 0, 0, 0.4);
	border-radius: 15px;
	margin-bottom: 40px;
} */

h1 {
	font-size: 2.8rem;
	margin-bottom: 15px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.subtitle {
	font-size: 1.2rem;
	max-width: 800px;
	margin: 0 auto;
	opacity: 0.9;
}

.trigger-section {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	padding: 40px;
	text-align: center;
	margin-top: 30px;
	backdrop-filter: blur(10px);
}

.trigger-title {
	font-size: 1.8rem;
	margin-bottom: 30px;
	color: #ffcc00;
}

.trigger-btn {
	display: inline-block;
	cursor: pointer;
	margin:0 34px 0 16px;
	color:#1E1E1E

}

.trigger-btn:hover {
	color:#1D96FF;
}

/* 蒙版样式 */
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* background: #1E1E1E;
	opacity: 0.8; */
	/* display: flex;
	justify-content: center;
	align-items: center; */
	/* background: rgba(30, 30, 30, 0.8); */
	/* z-index: 10;
	opacity: 0;*/
	z-index: 10;
	visibility: hidden; 
	/* transition: opacity 0.4s ease, visibility 0.4s ease; */
}

.overlay.active {
	/* opacity: 0.8; */
	visibility: visible;
}

.panels-container {
	display: flex;
	justify-content: center;
	align-items:flex-end;
	position: relative;
	background: rgba(30, 30, 30, 0.8);
	/* background:red; */
	gap: 60px;
	height: 55%;
}
.button{
	background: rgba(30, 30, 30, 0.8);
	/* background:yellow; */
	display: flex;
	justify-content: center;
	align-items: flex-start;
	height: 45%;
	padding-top: 76px;
}

.panel {
	z-index: 100;
	background: #FFFFFF;
	color: #333;
	border-radius: 8px;
	width: 400px;
	height: 190px;
	border: 1px solid #707070;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	/* padding: 20px; */
	overflow: hidden;
}

.left-panel {
	/* transition-delay: 0.2s; */
	margin-right:100px;
}
.right-panel{
	padding-top:30px;
}
.left-panel i,.right-panel i{
	width: 56px;
	height:56px;
	display: block;
}
.left-panel i{
	background: url(i13.png) no-repeat;
}
.right-panel i{
	background: url(i14.png) no-repeat;
}
.right-panel .bottom{
	display: flex;
	justify-content: space-between;
}
.right-panel .bottom .login{
	display: block;
	text-align: center;
    height: 50px;
    display: block;
    width: 100px;
    line-height: 50px;
}
.right-panel .bottom .login1{
	margin-right:80px;
}
.panel .text{
	font-weight: bold;
	margin-top:18px;
	font-size: 22px;
	color: #1E1E1E;	
}
/* .right-panel {
	transition-delay: 0.2s;
} */

.overlay.active .panel {
	/* transform: translateY(0); */
	opacity: 1;
}

.panel-header {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #eaeaea;
}

.panel-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	font-size: 1.2rem;
	color: white;
}

.left-panel .panel-icon {
	background: #1a2a6c;
}

.right-panel .panel-icon {
	background: #e52e71;
}

.panel-title {
	font-size: 1.5rem;
	color: #333;
	margin: 0;
}

.panel-content {
	text-align: left;
	line-height: 1.6;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.panel-content p {
	margin-bottom: 10px;
}

.stats-container {
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
}

.stat-item {
	text-align: center;
	flex: 1;
}

.stat-value {
	font-size: 1.8rem;
	font-weight: bold;
	margin-bottom: 5px;
}

.left-panel .stat-value {
	color: #1a2a6c;
}

.right-panel .stat-value {
	color: #e52e71;
}

.stat-label {
	font-size: 0.9rem;
	color: #666;
}

.feature-list {
	list-style-type: none;
	padding-left: 0;
	margin-top: 10px;
}

.feature-list li {
	padding: 8px 0;
	border-bottom: 1px solid #f0f0f0;
	display: flex;
	align-items: center;
}

.feature-list li:last-child {
	border-bottom: none;
}

.feature-list i {
	margin-right: 10px;
	font-size: 1rem;
}

.left-panel .feature-list i {
	color: #1a2a6c;
}

.right-panel .feature-list i {
	color: #e52e71;
}

/* 关闭按钮样式 */
.close-btn {
	font-size: 22px;
	cursor: pointer;
	color: #fff;
	/* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);*/
	display: flex;
	align-items: center;
	justify-content: center; 
	position: relative;
	z-index: 10;
	/* background:red; */
}
.close-btn i{
	display: inline-block;
	background: url(close.png) no-repeat;
	width: 30px;
	height: 30px;
	margin-right:16px;
}
/* .close-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.close-btn:active {
	transform: scale(0.95);
} */

/* 响应式设计 */
@media (max-width: 1000px) {
	.panels-container {
		flex-direction: column;
	/* 	gap: 40px; */
		justify-content: center;
		align-items: center;
	}
	
	.button{
		justify-content: center;
	}			
	.close-btn {
		order: 3;
		margin-top: 20px;
	}
	.left-panel{
		margin-right: 0;
	}
	
}

@media (max-width: 600px) {
	.panel {
		width: 90%;
		height: auto;
		min-height: 190px;
	}

	h1 {
		font-size: 2.2rem;
	}
}

.code-example {
	background: rgba(0, 0, 0, 0.3);
	padding: 20px;
	border-radius: 10px;
	margin-top: 40px;
	text-align: left;
}

.code-example h3 {
	margin-bottom: 15px;
	color: #ffcc00;
	text-align: center;
}

pre {
	background: #2d2d2d;
	color: #f8f8f2;
	padding: 15px;
	border-radius: 8px;
	overflow-x: auto;
	font-size: 0.9rem;
	line-height: 1.5;
}

.info-box {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	padding: 20px;
	margin-top: 30px;
	text-align: left;
}

.info-box h3 {
	color: #ffcc00;
	margin-bottom: 15px;
}