/* Blue V hover tip */
.blue-v-tip {
  position: relative;
  display: inline-block;
}

.blue-v-tip .blue-v-popover {
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translate(-50%, -100%);
  background: rgba(0, 0, 0, 0.0);
  padding: 0;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  display: none;
  z-index: 1000;
}

.blue-v-tip .blue-v-popover img {
  display: block;
  max-width: 280px;
  width: 280px;
  height: auto;
  border-radius: 8px;
}

.blue-v-tip:hover .blue-v-popover {
  display: block;
}
/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* 头部样式 */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header-content {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.enterprise-badge {
    background: url(../images/logo.png) no-repeat center center;
    background-size: 100% 100%;
    width: 60px;
    height: 30px;
}

.platform-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.header-actions {
    display: flex;
    gap: 15px;
}

.refresh-btn, .profile-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.3s;
    position: relative;
}

.refresh-btn:hover, .profile-btn:hover {
    background-color: #f5f5f5;
}

/* refresh按钮hover效果 */
.refresh-btn::after {
    content: "客服";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #555;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 10px;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.refresh-btn::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #555;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 2px;
    z-index: 999;
}

.refresh-btn:hover::after,
.refresh-btn:hover::before {
    opacity: 1;
    visibility: visible;
}

/* 客服弹窗遮罩层 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 0;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.modal-overlay.show .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #333;
    color: white;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: background-color 0.3s ease;
}

.modal-close:hover {
    background: #555;
}

.qr-code-container {
    padding: 40px;
    text-align: center;
}

.qr-placeholder {
    width: 200px;
    height: 200px;
    /* background: #f8f9fa; */
    /* border: 2px dashed #ddd; */
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.qr-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.qr-placeholder p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.modal-text {
    padding: 0 40px 40px;
    text-align: center;
}

.modal-text p {
    color: #333;
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
}

/* 协议弹窗样式 */
.protocol-modal {
    background: white;
    border-radius: 16px;
    padding: 0;
    width: 65%;
    height: 75%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.protocol-header {
    flex-shrink: 0;
    padding: 24px 30px 16px;
    border-bottom: 1px solid #f0f0f0;
    background: #fafafa;
    border-radius: 16px 16px 0 0;
}

.protocol-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.protocol-content {
    flex: 1;
    overflow-y: auto;
    padding: 0;
    position: relative;
    min-height: 0;
}

.protocol-text {
    padding: 8px 20px;
    font-size: 16px;
    color: #555;
}

.protocol-text p {
    margin-bottom: 16px;
    text-align: left;
}

.protocol-text p:last-child {
    margin-bottom: 0;
}

.protocol-text strong {
    color: #333;
    font-weight: 600;
}

/* 协议弹窗底部按钮区域 */
.protocol-footer {
    flex-shrink: 0;
    padding: 20px 30px;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
    border-radius: 0 0 16px 16px;
    text-align: center;
}

.protocol-read-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    min-width: 120px;
}

.protocol-read-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.protocol-read-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

.profile-btn img {
    width: 30px;
    height: 30px;
}

/* 主要内容区域 */
.main-content {
    min-height: calc(100vh - 60px);
}

/* 英雄区域 */
.hero-section {
    background: url(../images/banner.png) no-repeat center center;
    background-size: 100% 100%;
    height: 600px;
    padding: 80px 20px 40px 20px;
    position: relative;
    overflow: hidden;
}

.certification-cta {
    max-width: 1200px;
    margin: -60px auto 0;
    position: relative;
    z-index: 100;
    padding: 0 20px;
}

.cta-content {
    background: white;
    padding: 30px 130px 30px 40px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 101;
}

.cta-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fee-text {
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

.cta-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-main {
    margin-left: 100px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.cta-icon-img {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALIAAACIBAMAAACxRayQAAAAHlBMVEVHcEztPkDvQEDuP0DvPkD////uP0D2n5/zd3j7z8/itJYOAAAABXRSTlMAgSrWZD/p0wEAAAFzSURBVGje7ZpBbsIwEEUH6AFahFgHIXVdddF9DwGBZUG4uQDQHoD0BIjrgp0KicbjBZ5fZfFnQWRm/GSNPXYcfRGs9d+fDG1UXMETZ2vr4S+458ztsUnFmz15HRIydQB7BQ35MmhMlr29iDxjyCuRMYZ8SUd4fu4NrW7Iff+oZqYW0PLgfze25Hkgh6WxtSWXJJNMMskkk0wyySny6c+71LfuUsIU8qL17nfQXdEwjVy3ulS6KxqmkJeRPkfdFQnTyGWky1Z3RcI6RcZlI3MGU+S8VRf+/Lmu/68bb1allMlmTnWTTDLJHSbD9g2DvU5pGuzP8abFmRJvWpyD/03GZQM3g90+YdWpya5ukuHkZbIEsm5AdaoEssiLVAnAbm28HZNMMskk89sXv33dScZlAzeDwFWHqxTuSCSTTDLJJJNMsjUZp9zDqQ0bhWRlqZDcuYYMkbg694FUog4wZK9Txih+C6RKGaisxqnBRSbWo/YK9jMs2op7GQ51KgAAAABJRU5ErkJggg==); 
    background-size: contain; 
    background-repeat: no-repeat; 
    background-position: center;
    flex-shrink: 0;
    width: 80px;
    height: 56px;
}

.cta-icon-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cta-title {
    margin-bottom: 10px;
    font-size: 16px;
    color: rgb(51, 51, 51);
    opacity: .9;
}

.cta-subtitle {
    margin-bottom: 0;
    font-size: 12px;
    color: #666;
    line-height: 18px;
}

.cta-button {
    background: #ff2d54;
    color: #fff;
    border: #ff2d54;
    width: 180px;
    height: 40px;
    margin-left: 99px;
}

.cta-button:hover {
    background: #c0392b;
}

/* 认证流程 */
.process-section {
    padding: 120px 20px 80px;
    background: #fff;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 60px;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #e74c3c;
    border-radius: 2px;
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.process-step {
    width: 251px;
    height: 232px;
    background: #f2f2f2;
    border-radius: 8px;
    padding: 24px 24px 0;
    position: relative;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.process-step p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #747474;
}

.step-number {
    position: absolute;
    bottom: 0;
    right: 8px;
}

.process-arrow {
    font-size: 24px;
    color: #e74c3c;
    font-weight: bold;
}

.blue-v-link {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
}

.blue-v-link:hover {
    text-decoration: underline;
}

/* 用户案例 */
.case-section {
    padding: 80px 20px;
    background: white;
}

.case-content {
    display: flex;
    width: 1220px;
    height: 500px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 18px 0 rgba(32, 51, 121, .18), 0 5px 7px 0 rgba(17, 29, 76, .16);
    margin: 0 auto;
    gap: 40px;
    align-items: center;
}

.phone-mockup {
    background: url(../images/fayuzhuangxiu.42848648762b885c.png) no-repeat center center;
    background-size: 100% 100%;
    width: 500px;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

.case-description {
    flex: 1;
    padding-left: 20px;
}

.case-description h3 {
    font-size: 32px;
    font-weight: 500;
    color: #333;
    font-weight: bold;
    position: relative;
    margin-bottom: 30px;
}

.case-description h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: #e74c3c;
    border-radius: 2px;
}

.achievements, .methods {
    margin-bottom: 30px;
}

.achievements h4, .methods h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.achievements ul, .methods ul {
    list-style: none;
    padding-left: 0;
}

.achievements li, .methods li {
    font-size: 14px;
    color: #747a8c;
}

.kpi-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.kpi-item {
    text-align: center;
}

.kpi-number {
    display: block;
    font-size: 32px;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 5px;
}

.kpi-label {
    font-size: 14px;
    color: #666;
}

/* 认证权益 */
.benefits-section {
    padding: 80px 20px;
    background: #fff;
}

.benefits-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefit-item {
    margin-bottom: 40px;
}

.benefit-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.benefit-item p {
    color: #666;
    line-height: 1.8;
}

.benefits-illustration {
    height: auto;
    min-height: 500px;
    border-radius: 20px;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-illustration img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* 覆盖范围 */
.coverage-section {
    padding: 80px 20px;
    background: white;
}

.coverage-grid {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.coverage-card {
    position: relative;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}

.coverage-card:hover {
    transform: translateY(-5px);
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    z-index: 1;
}

.card-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.certify-now-btn {
    display: block;
    margin: 0 auto;
    background: #ff2d54;
    color: white;
    border: #ff2d54;
    font-size: 18px;
    font-weight: bold;
    width: 180px;
    height: 40px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.certify-now-btn:hover {
    background: #c0392b;
}

/* 页脚 */
.footer {
    background: #370B7F;
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.contact-icon {
    font-size: 16px;
}

.qr-code {
    width: 150px;
    height: 150px;
    /* background: white; */
    border-radius: 10px;
    /* padding: 10px; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-right {
    display: flex;
    justify-content: flex-end;
}

.certification-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.badge {
    padding: 1px 12px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    white-space: nowrap;
}

.badge-icon {
    font-size: 14px;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

.footer-disclaimer p {
    font-size: 12px;
    line-height: 1.6;
    color: #bdc3c7;
    margin-bottom: 10px;
}

.footer-disclaimer a {
    text-decoration: none;
}

.footer-disclaimer a:hover {
    text-decoration: underline;
}

/* 进度条样式 */
.progress-container {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.progress-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    flex: 1;
    max-width: 200px;
}

.step::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.step:last-child::after {
    display: none;
}

.step.completed::after {
    background: #4CAF50;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e0e0e0;
    color: #999;
    position: relative;
    z-index: 2;
}

.step.active .step-icon {
    background: #2196F3;
    color: #fff;
}

.step.completed .step-icon {
    background: #4CAF50;
    color: #fff;
}

.step-text {
    font-size: 14px;
    color: #666;
    text-align: center;
}

.step.active .step-text {
    color: #2196F3;
    font-weight: 600;
}

.step.completed .step-text {
    color: #4CAF50;
}

/* 表单样式 */
.form-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.form-header {
    margin-bottom: 40px;
}

.form-header h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.notice-list {
    list-style: none;
    padding: 0;
}

.notice-list li {
    padding: 8px 0;
    color: #666;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.notice-list li::before {
    content: '•';
    color: #2196F3;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.certification-form {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 30px;
}

.form-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.required {
    color: #ff2d54;
    font-size: 14px;
    font-weight: 600;
}

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

.form-input:focus {
    outline: none;
    border-color: #2196F3;
}

.form-help {
    margin-top: 8px;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.help-link {
    color: #2196F3;
    text-decoration: none;
}

.help-link:hover {
    text-decoration: underline;
}

.radio-group {
    display: flex;
    gap: 20px;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.radio-item input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #2196F3;
}

.upload-area {
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
    /* padding: 40px; */
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s;
    background: #fafafa;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.upload-area:hover {
    border-color: #2196F3;
}

.upload-icon {
    font-size: 48px;
    color: #ff2d54;
    margin-bottom: 16px;
    display: block;
}

.upload-text {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.upload-tips {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
    display: block;
}

.upload-formats {
    font-size: 12px;
    color: #999;
    display: block;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #2196F3;
    margin-top: 2px;
    flex-shrink: 0;
}

.checkbox-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.checkbox-text a {
    color: #2196F3;
    text-decoration: none;
}

.form-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn-primary {
    background: #ff2d54;
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background: #e0244a;
}

.btn-secondary {
    background: #f5f5f5;
    color: #666;
    border: 2px solid #e0e0e0;
    padding: 12px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #e0e0e0;
    border-color: #ccc;
}

/* 支付页面样式 */
.payment-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.payment-info {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: 8px 0;
    color: #666;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.info-list li::before {
    content: '•';
    color: #2196F3;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.info-link {
    color: #2196F3;
    text-decoration: none;
}

.info-link:hover {
    text-decoration: underline;
}

.payment-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.btn-modify {
    background: #fff;
    color: #2196F3;
    border: 2px solid #2196F3;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-modify:hover {
    background: #2196F3;
    color: #fff;
}

.btn-home {
    background: #ff2d54;
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-home:hover {
    background: #e0244a;
}

.payment-section {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.payment-method {
    text-align: center;
    margin-bottom: 30px;
}

.method-label {
    background: #4CAF50;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
}

.payment-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.qr-code-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.qr-code {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-placeholder {
    text-align: center;
}

.qr-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.qr-text {
    font-size: 14px;
    color: #666;
}

.payment-details {
    flex: 1;
    text-align: center;
}

.service-name {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}

.price {
    font-size: 32px;
    color: #ff2d54;
    font-weight: bold;
}

/* 审核页面样式 */
.review-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.qr-section {
    background: #fff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.qr-code {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-placeholder {
    text-align: center;
}

.wechat-logo {
    font-size: 48px;
}

.contact-btn {
    background: #2196F3;
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 20px;
}

.contact-btn:hover {
    background: #1976D2;
}

.contact-info {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.phone-number {
    color: #2196F3;
    font-weight: 600;
}

.review-note {
    font-size: 14px;
    color: #2196F3;
    line-height: 1.6;
    background-color: #E0E9F8;
}

/* 浮动咨询按钮 */
.floating-consult {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #fff;
    border-radius: 50px;
    padding: 12px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: transform 0.3s;
    z-index: 1000;
}

.floating-consult:hover {
    transform: translateY(-2px);
}

.consult-icon {
    text-align: center;
}
.consult-icon img {
    width: 20px;
    height: 20px;
    margin-top: 8px;
    object-fit: contain;
}

.consult-text {
    font-size: 12px;
    color: #666;
    text-align: center;
}

/* 完成页面样式 */
.complete-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.success-section {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.success-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.success-icon {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.checkmark {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    position: relative;
}

.checkmark-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.success-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.success-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.success-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.info-item {
    text-align: center;
}

.info-label {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.info-value {
    font-size: 18px;
    font-weight: 600;
}

.status-active {
    color: #4CAF50;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
}








.contact-section {
    background: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.contact-title {
    text-align: center;
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
}

.contact-desc {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: transform 0.3s;
}

.contact-method:hover {
    transform: translateY(-3px);
}

.method-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.method-info {
    flex: 1;
}

.method-info h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.method-info p {
    color: #666;
    font-size: 14px;
}

.qr-code-small {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.qr-placeholder-small {
    font-size: 24px;
}

.call-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
    flex-shrink: 0;
}

.call-btn:hover {
    background: #45a049;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: #2196F3;
    border: 2px solid #2196F3;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #2196F3;
    color: white;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title h1 {
        font-size: 36px;
    }
    
    .hero-title h2 {
        font-size: 28px;
    }
    
    .hero-cards {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .case-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
    }
    
    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-right {
        justify-content: center;
    }
    
    .certification-badges {
        grid-template-columns: 1fr;
    }
    
    /* 进度条响应式 */
    .progress-steps {
        flex-direction: column;
        gap: 20px;
    }
    
    .step::after {
        display: none;
    }
    
    /* 表单响应式 */
    .certification-form {
        padding: 20px;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    /* 支付页面响应式 */
    .payment-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .payment-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-modify, .btn-home {
        width: 100%;
        max-width: 300px;
    }
    
    /* 浮动按钮响应式 */
    .floating-consult {
        bottom: 20px;
        right: 20px;
        padding: 10px 16px;
    }
    
    /* 完成页面响应式 */
    .success-section {
        padding: 40px 20px;
    }
    
    .success-title {
        font-size: 28px;
    }
    
    .success-subtitle {
        font-size: 16px;
    }
    
    .success-info {
        gap: 30px;
    }
    
    .contact-section {
        padding: 30px 20px;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .coverage-grid {
        grid-template-columns: 1fr;
    }
    
    .phone-screen {
        width: 280px;
        height: 560px;
    }
}

/* 用户认证状态弹出菜单样式 */
.profile-container {
    position: relative;
    display: inline-block;
}

.profile-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid #e0e0e0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    min-width: 300px;
    margin-top: 8px;
}

.profile-container:hover .profile-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content {
    padding: 0;
}

.user-info {
    display: flex;
    align-items: center;
    padding: 16px;
    gap: 12px;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-details {
    flex: 1;
    min-width: 0;
}

.user-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.user-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.warning-icon {
    color: #ff6b6b;
    font-size: 16px;
}

.warning-text {
    color: #666;
    flex: 1;
}

.success-icon {
    color: #2ed573;
    font-size: 16px;
}

.success-text {
    color: #2ed573;
    font-weight: 500;
}

.certify-link {
    color: #1890ff;
    text-decoration: none;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.certify-link:hover {
    background-color: #f0f8ff;
    text-decoration: none;
}

.dropdown-divider {
    height: 1px;
    background-color: #f0f0f0;
    margin: 0;
}

.dropdown-item {
    padding: 0;
    text-align: center;
}

.home-link {
    display: block;
    padding: 12px 16px;
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
}

.home-link:hover {
    background-color: #fff5f5;
    text-decoration: none;
}


/* 自定义校验弹窗样式 */
.validation-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.validation-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.validation-modal {
    background: #4a4a4a;
    color: white;
    padding: 20px 30px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: all 0.3s ease;
    max-width: 280px;
    width: 80%;
}

.validation-modal-overlay.show .validation-modal {
    transform: scale(1);
}

/* 字段错误提示样式 */
.field-error {
    color: #ff4757;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

.form-input.error {
    border-color: #ff4757;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .profile-dropdown {
        min-width: 260px;
        right: -10px;
    }
    
    .user-info {
        padding: 12px;
        gap: 10px;
    }
    
    .user-avatar {
        width: 40px;
        height: 40px;
    }
    
    .user-name {
        font-size: 15px;
    }
    
    .user-status {
        font-size: 13px;
    }
    
    .validation-modal {
        padding: 15px 25px;
        font-size: 13px;
        max-width: 250px;
    }
}

/* 文件上传状态样式 */
.upload-loading {
    text-align: center;
    color: #2196F3;
    padding: 20px;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #2196F3;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 12px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-size: 16px;
    font-weight: 500;
}

.upload-success {
    text-align: center;
    color: #4CAF50;
    padding: 20px;
}

.success-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.success-text {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.file-name {
    font-size: 14px;
    color: #333;
    margin-bottom: 4px;
}

.file-path {
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

.image-preview {
    margin-top: 10px;
    text-align: center;
}

.image-preview img {
    max-width: 100%;
    max-height: 250px;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    object-fit: contain;
}

.image-preview {
    position: relative;
    display: inline-block;
}

.delete-btn {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background-color: #f44336;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
    z-index: 10;
}

.delete-btn:hover {
    background-color: #d32f2f;
    transform: scale(1.1);
}

.delete-btn span {
    line-height: 1;
}

.upload-placeholder {
    text-align: center;
    color: #666;
    padding: 20px;
}

.upload-icon {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: 0.6;
    display: block;
}

.upload-text {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
    display: block;
}

.upload-hint {
    font-size: 12px;
    color: #999;
}

.upload-error {
    text-align: center;
    color: #f44336;
    padding: 20px;
}

.error-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.error-text {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.error-message {
    font-size: 12px;
    color: #666;
}

.qr-container {
    display: inline-block;
    margin: 10px;
    text-align: center;
}