  /* 在线链接服务仅供平台体验和调试使用，平台不承诺服务的稳定性，企业客户需下载字体包自行发布使用并做好备份。 */
  @font-face {
    font-family: "思源黑体 Regular";font-weight: 400;src: url("//at.alicdn.com/wf/webfont/PAZpgNyEz3lS/rL4dxzXkyd2u.woff2") format("woff2"),
    url("//at.alicdn.com/wf/webfont/PAZpgNyEz3lS/2KxhzYy1lSTQ.woff") format("woff");
    font-display: swap;
  }


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: '思源黑体 Regular';
}

.lp_head,.navbar,.blcbac,.rightxf,.bottomxf {
    display: none;
}
body {
    margin: 0;
    padding: 0;
    color: #333;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    background: white;
    overflow: hidden;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.header {
    background: #000078;
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.header h1 {
    display: block;
    font-size: 16px;
    opacity: 0.9;
    margin: 0 auto 12px;
    line-height: 1.6;
    font-weight: normal;
}

.header p {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 1px;
}

.form-selector {
    background: #f0f5ff;
    padding: 60px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    border-bottom: 1px solid #e0e8ff;
}

.form-option {
    padding: 14px 25px;
    background: rgba(255,255,255,.5);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    border: 2px solid #d0d9ff;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 120, 0.05);
}

.form-option i {
    font-size: 20px;
}

.form-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 120, 0.1);
}

.form-option.active {
    background: #000078;
    color: white;
    border-color: #000078;
    box-shadow: 0 6px 15px rgba(0, 0, 120, 0.2);
}

.confidential {
    background: #e3f2fd;
    text-align: center;
    padding: 12px;
    font-size: 14px;
    color: #0d47a1;
    font-weight: 500;
    border-bottom: 1px solid #bbdefb;
}

.form-container {
    padding: 30px 40px;
    min-height: 500px;
}

.form-section {
    margin-bottom: 30px;
    animation: slideIn 0.6s ease-out;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.section-title {
    font-size: 20px;
    color: #000078;
    padding-bottom: 12px;
    margin-bottom: 20px;
    border-bottom: 2px solid #000078;
    position: relative;
    display: flex;
    align-items: center;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: #4caf50;
}

.section-title i {
    margin-right: 10px;
    font-size: 22px;
}

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

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

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.form-group input[type="radio"] {
    padding: 0;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: #000078;
    box-shadow: 0 0 0 3px rgba(0, 0, 120, 0.2);
    outline: none;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.optional {
    color: #757575;
    font-weight: normal;
    font-size: 13px;
    margin-left: 5px;
}

.contact-row {
    display: flex;
    gap: 20px;
}

.contact-row .form-group {
    flex: 1;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px 0;
}

.checkbox-item {
    display: flex;
    align-items: center;
    min-width: 200px;
}

.checkbox-item label {
    margin-bottom: 0;
}
.checkbox-item input {
    margin-right: 8px;
    width: 18px;
    height: 18px;
}

.checkbox-item input[type="text"] {
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-left: 10px;
    width: 250px;
}

.checkbox-item input[type="text"]:focus {
    border-color: #000078;
    box-shadow: 0 0 0 3px rgba(0, 0, 120, 0.2);
    outline: none;
}

.gender-group {
    display: flex;
    gap: 20px;
    margin: 0;
    align-items: flex-start;
    padding-top: 8px;
}

.gender-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gender-option input {
    width: 18px;
    height: 18px;
}

.submit-btn {
    background: linear-gradient(to right, #000078, #1e1eb9);
    color: white;
    border: none;
    padding: 16px 30px;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 120, 0.3);
    margin-top: 20px;
}

.submit-btn:hover {
    background: linear-gradient(to right, #1e1eb9, #000078);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 120, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.pdf-button-container {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e0e8ff;
}

.pdf-btn {
    width: auto;
    background: linear-gradient(to right, #000078, #1e1eb9);
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 120, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.pdf-btn:hover {
    background: linear-gradient(to right, #1e1eb9, #000078);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 120, 0.4);
}

.pdf-btn:active {
    transform: translateY(0);
}

.package-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.package-table th {
    background: #000078;
    color: white;
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
}

.package-table td {
    padding: 12px;
    border-bottom: 1px solid #e0e8ff;
    font-size: 14px;
    line-height: 1.5;
}

.package-table th:first-child,
.package-table td:first-child {
    width: 25%;
    min-width: 120px;
}

.package-table th:last-child,
.package-table td:last-child {
    width: 75%;
}

.package-table tr:nth-child(even) {
    background: #f8f9ff;
}

.package-table tr:hover {
    background: #f0f5ff;
}

.package-name {
    font-weight: 600;
    color: #000078;
}

.package-content {
    color: #555;
}

.therapy-intro {
    background: #f8f9ff;
    border-radius: 8px;
    padding: 25px;
    margin-top: 30px;
    border-left: 4px solid #000078;
}

.therapy-intro h3 {
    color: #000078;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.therapy-intro h4 {
    color: #000078;
    font-size: 16px;
    margin: 20px 0 10px 0;
    font-weight: 600;
}

.therapy-intro p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.therapy-intro ul {
    margin: 10px 0;
    padding-left: 20px;
}

.therapy-intro li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}

.therapy-intro .highlight {
    color: #000078;
    font-weight: 600;
}

.footer-note {
    text-align: center;
    margin-top: 20px;
    color: #616161;
    font-size: 14px;
    font-style: italic;
}

.form-type {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-type.active {
    display: block;
}

/* 咨询信息页面样式 */
.info-page {
    padding: 80px 0;
    background: #ffffff;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.top-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.info-block {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 200px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #000078;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.info-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.info-content {
    flex: 1;
}

.info-content h3 {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    font-weight: normal;
}

.info-content p {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    margin: 0;
}

.main-qr {
    text-align: center;
    margin-bottom: 40px;
}

.qr-code {
    width: 200px;
    height: 200px;
    border-radius: 15px;
    margin: 0 auto 20px;
    display: block;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.qr-code:hover {
    transform: scale(1.05);
}

.qr-label {
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.quick-consult-btn {
    background: white;
    border: 2px solid #000078;
    color: #ffffff;
    background: #000078;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-bottom: 60px;
    text-decoration: none;
    outline: none;
    animation: gentlePulse 0.5s ease-in-out infinite;
}

.quick-consult-btn:hover {
    background: #000078;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 120, 0.3);
    animation: none;
}

@keyframes gentlePulse {
    0% {
        box-shadow: 0 4px 15px rgba(0, 0, 120, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 20px rgba(0, 0, 120, 0.4);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 4px 15px rgba(0, 0, 120, 0.2);
        transform: scale(1);
    }
}

.bottom-qrs {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.qr-item {
    flex: 1;
    text-align: center;
    min-width: 180px;
}

.small-qr {
    width: 140px;
    height: 140px;
    border-radius: 10px;
    margin: 0 auto 15px;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.small-qr:hover {
    transform: scale(1.05);
}

.small-qr-label {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

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

/* 增强响应式设计 */
/* 大屏幕设备 (1200px以上) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
    
    .info-container {
        max-width: 1200px;
    }
    
    .form-selector {
        padding: 60px 40px;
    }
    
    .form-option {
        padding: 16px 30px;
        font-size: 16px;
    }
}

/* 中等屏幕设备 (768px - 1199px) */
@media (min-width: 768px) and (max-width: 1199px) {
    .container {
        max-width: 90%;
        margin: 0 auto;
    }
    
    .info-container {
        max-width: 90%;
    }
    
    .form-selector {
        padding: 40px 20px;
    }
    
    .form-option {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .header {
        padding: 60px 0;
    }
    
    .header h1 {
        font-size: 28px;
    }
    
    .header p {
        font-size: 18px;
    }
    
    .form-container {
        padding: 25px 30px;
    }
    
    .section-title {
        font-size: 19px;
    }
    
    .qr-code {
        width: 180px;
        height: 180px;
    }
    
    .small-qr {
        width: 120px;
        height: 120px;
    }
}

/* 平板设备 (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .container {
        max-width: 95%;
        margin: 0 auto;
    }
    
    .info-container {
        max-width: 95%;
    }
    
    .header {
        padding: 40px 20px;
    }
    
    .header h1 {
        font-size: 24px;
    }
    
    .header p {
        font-size: 16px;
    }
    
    .form-selector {
        padding: 30px 15px;
        gap: 10px;
    }
    
    .form-option {
        padding: 12px 15px;
        font-size: 14px;
        min-width: 140px;
    }
    
    .form-container {
        padding: 20px 15px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .form-group input, .form-group textarea, .form-group select {
        padding: 12px 14px;
        font-size: 15px;
    }
    
    .contact-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .checkbox-group {
        gap: 10px;
    }
    
    .checkbox-item {
        min-width: 180px;
    }
    
    .qr-code {
        width: 160px;
        height: 160px;
    }
    
    .small-qr {
        width: 100px;
        height: 100px;
    }
    
    .info-block {
        padding: 15px;
        min-width: 150px;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
    }
    
    .info-icon img {
        width: 25px;
        height: 25px;
    }
    
    .info-content h3 {
        font-size: 13px;
    }
    
    .info-content p {
        font-size: 15px;
    }
}

/* 手机设备 (320px - 480px) */
@media (max-width: 780px) {
    
    .container {
        max-width: 100%;
        margin: 0;
        border-radius: 10px;
    }
    
    .info-container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .header {
        padding: 30px 15px;
    }
    
    .header h1 {
        font-size: 20px;
        line-height: 1.3;
    }
    
    .header p {
        font-size: 14px;
    }
    
    .form-selector {
        padding: 20px 10px;
        gap: 8px;
    }
    
    .form-option {
        justify-content: center;
        padding: 10px 12px;
        font-size: 14px;
        min-width: 120px;
        flex: 0 1 48%;
    }
    
    .form-option:last-child {
        font-size: 17px;
                background: #c3e6e7;
    }
    
    .form-option.active {
        font-weight: 600;
    }
    
    .form-option i {
        font-size: 16px;
    }
    
    .form-container {
        padding: 15px 10px;
    }
    
    .section-title {
        font-size: 16px;
        padding-bottom: 10px;
        margin-bottom: 15px;
    }
    
    .section-title i {
        font-size: 18px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .form-group input, .form-group textarea, .form-group select {
        padding: 10px 12px;
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    .contact-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .checkbox-group {
        gap: 8px;
        margin: 10px 0;
    }
    
    .checkbox-item {
        min-width: 100%;
        margin-bottom: 8px;
        flex-wrap: wrap;
    }
    
    .checkbox-item input[type="text"] {
        width: 100%;
        margin-top: 10px;
        margin-left: 5px;
        padding: 10px 12px;
        font-size: 13px;
                height: 36px;
    }
    
    .gender-group {
        gap: 15px;
        padding-top: 5px;
    }
    
    .submit-btn {
        padding: 14px 20px;
        font-size: 16px;
        margin-top: 15px;
    }
    
    .pdf-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .package-table {
        font-size: 12px;
    }
    
    .package-table th,
    .package-table td {
        padding: 8px 6px;
        font-size: 12px;
    }
    
    .therapy-intro {
        padding: 20px 15px;
        margin-top: 20px;
    }
    
    .therapy-intro h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .therapy-intro h4 {
        font-size: 14px;
        margin: 15px 0 8px 0;
    }
    
    .therapy-intro p,
    .therapy-intro li {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .qr-code {
        width: 140px;
        height: 140px;
    }
    
    .small-qr {
        width: 80px;
        height: 80px;
    }
    
    .qr-label {
        font-size: 16px;
    }
    
    .small-qr-label {
        font-size: 12px;
    }
    
    .info-page {
        padding: 40px 0;
    }
    
    .top-info {
        flex-wrap: wrap;
        margin-bottom: 40px;
        gap: 10px;
    }
    
    .info-block {
        padding: 12px;
        width: 100%;
    }
    
    .info-icon {
        width: 35px;
        height: 35px;
    }
    
    .info-icon img {
        width: 20px;
        height: 20px;
    }
    
    .info-content h3 {
        font-size: 14px;
    }
    
    .info-content p {
        font-size: 14px;
    }
    
    .main-qr {
        margin-bottom: 30px;
    }
    
    .quick-consult-btn {
        padding: 12px 20px;
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .bottom-qrs {
        gap: 15px;
    }
    
    .qr-item {
        min-width: auto;
    }
}

/* 超小屏幕设备 (320px以下) */
@media (max-width: 320px) {
    .header h1 {
        font-size: 18px;
    }
    
    .header p {
        font-size: 13px;
    }
    
    .form-option {
        padding: 8px 10px;
        font-size: 12px;
        min-width: 100px;
    }
    
    .form-option i {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 15px;
    }
    
    .form-group input, .form-group textarea, .form-group select {
        padding: 8px 10px;
        font-size: 13px;
    }
    
    .submit-btn {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    .qr-code {
        width: 120px;
        height: 120px;
    }
    
    .small-qr {
        width: 70px;
        height: 70px;
    }
} 