/* 全局样式重置，简单清除默认边距等 */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: "微软雅黑", sans-serif;
background: linear-gradient(to bottom, #ffd54f, #ff9800); /* 模拟橙色渐变背景，贴近原图风格 */
color: #333;
}

/* 顶部header样式 */
.header {
padding: 20px;
text-align: center;
}

.header .logo-title {
display: flex;
align-items: center;
justify-content: center;
}

.header img.logo {
width: 80px;
margin-right: 10px;
}

.header h1 {
font-size: 24px;
color: #d32f2f; /* 标题颜色，可根据实际logo调整 */
}

.header p {
font-size: 16px;
margin-top: 5px;
color: #666;
}

.header .hotline {
margin-top: 10px;
}

.header .hotline a {
display: inline-block;
padding: 8px 15px;
background-color: #d32f2f;
color: #fff;
text-decoration: none;
border-radius: 5px;
font-size: 14px;
}

.header .qrcode {
margin-top: 10px;
}

.header .qrcode img {
width: 150px;
}

.header .qrcode p {
font-size: 12px;
color: #666;
}

/* 内容板块通用样式 */
.content-section {
background-color: #fff;
margin: 15px;
border-radius: 8px;
padding: 15px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.content-section h2 {
font-size: 18px;
color: #ff9800; /* 标题橙色，呼应主题 */
margin-bottom: 10px;
border-left: 5px solid #ff9800;
padding-left: 10px;
}

.content-section .feature-item {
margin-bottom: 15px;
}

.content-section .feature-item h3 {
font-size: 16px;
color: #d32f2f;
margin-bottom: 5px;
}

.content-section .feature-item p {
font-size: 14px;
color: #666;
line-height: 1.6;
}

/* 专业合规板块，这里示例放图片，实际可循环渲染 */
.compliance-list {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-top: 5px;
}

.compliance-list .compliance-item {
flex: 1 1 calc(50% - 10px); /* 每行放两个，适配移动端 */
text-align: center;
}

.compliance-list .compliance-item img {
width: 100%;
border-radius: 5px;
margin-bottom: 5px;
}

.compliance-list .compliance-item p {
font-size: 12px;
color: #666;
}

/* 联系我们板块 */
.contact-section {
text-align: center;
}

.contact-section .contact-info {
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 10px;
}

.contact-section .contact-info img.logo {
width: 80px;
margin-right: 10px;
}

.contact-section .contact-info h2 {
font-size: 18px;
color: #d32f2f;
}

.contact-section .contact-info p {
font-size: 14px;
color: #666;
}

.contact-section .contact-info .hotline {
font-size: 14px;
color: #000;
}

.contact-section .qrcode {
margin-top: 10px;
}

.contact-section .qrcode img {
width: 150px;

}

.contact-section .qrcode p {
font-size: 12px;

}

.contact-section .form {
margin-top: 15px;
}

.contact-section .form label {
display: block;
text-align: left;
font-size: 14px;
color: #333;
margin-bottom: 5px;
}

.contact-section  .foot-info{
margin-top: 20px;
color: #d32f2f;
}

.contact-section .form input {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 14px;
}

.contact-section .form button {
width: 100%;
padding: 10px;
background-color: #ff9800;
color: #fff;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
}

/* 遮罩层样式 */
#overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
display: none;
justify-content: center;
align-items: center;
z-index: 1000;
opacity: 0;
transition: opacity 0.3s ease;
}

/* 弹窗样式 */
#modal {
background-color: white;
padding: 20px;
border-radius: 5px;
width: 50%;
max-width: 500px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
transform: scale(0.9);
opacity: 0;
transition: transform 0.3s ease, opacity 0.3s ease;
}

.modal-body {
margin-bottom: 20px;
}
#minfo{
	text-align: center;
}

.modal-footer {
text-align: center;
}

.modal-footer button {
margin-left: 10px;
padding: 8px 16px;
font-size: 14px;
width: 80%;
background-color: #ff9800;
border: none;
color:#fff;
}


/* 显示状态样式 */
#overlay.show {
display: flex;
opacity: 1;
}

#modal.show {
transform: scale(1);
opacity: 1;
}


