
        /* 独享CSS部分 - 联系我们页面专用 */
        /* 动态背景 */
        .dynamic-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .bg-element {
            position: absolute;
            border-radius: 50%;
            background: rgba(0, 102, 255, 0.05);
            animation: float 15s infinite linear;
        }

        .bg-element:nth-child(1) {
            width: 300px;
            height: 300px;
            top: -150px;
            right: -100px;
            animation-duration: 25s;
        }

        .bg-element:nth-child(2) {
            width: 200px;
            height: 200px;
            bottom: -50px;
            left: -50px;
            animation-duration: 20s;
            animation-direction: reverse;
        }

        .bg-element:nth-child(3) {
            width: 150px;
            height: 150px;
            top: 50%;
            right: 10%;
            animation-duration: 30s;
        }

        /* 页面标题区域 */
        .page-hero {
            height: 40vh;
            position: relative;
            overflow: hidden;
            margin-top: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .page-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient);
            z-index: -2;
        }

        .page-hero-content {
            max-width: 1200px;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .page-hero h1 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.3;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .page-hero p {
            font-size: 20px;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .page-hero-shape {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: var(--light);
            clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
            z-index: -1;
        }

        /* 联系信息区域 */
        .contact-section {
            padding: 80px 0;
        }

        .contact-content {
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
            align-items: center;
            justify-content: center;
        }

        .contact-info-card {
            flex: 1;
            min-width: 300px;
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: var(--shadow);
            position: relative;
            transform: translateY(50px);
            opacity: 0;
            transition: transform 1s ease, opacity 1s ease;
        }

        .contact-info-card.animated {
            transform: translateY(0);
            opacity: 1;
        }

        .contact-info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient);
            border-radius: 20px 20px 0 0;
        }

        .contact-title {
            font-size: 28px;
            margin-bottom: 30px;
            color: var(--dark);
            text-align: center;
            position: relative;
        }

        .contact-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--gradient);
            border-radius: 3px;
        }

        .contact-details {
            margin-bottom: 40px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            padding: 15px;
            border-radius: 10px;
            transition: var(--transition);
        }

        .contact-item:hover {
            background: var(--light);
            transform: translateX(5px);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: white;
            font-size: 20px;
            flex-shrink: 0;
        }

        .contact-text {
            flex: 1;
        }

        .contact-text h3 {
            font-size: 18px;
            margin-bottom: 5px;
            color: var(--dark);
        }

        .contact-text p {
            color: var(--gray);
            line-height: 1.6;
        }

        .contact-phone {
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            font-size: 24px;
            font-weight: 700;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: var(--shadow);
            margin-top: 20px;
        }

        .contact-phone:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 102, 255, 0.3);
        }

        .contact-phone i {
            margin-right: 10px;
        }

        /* 二维码区域 */
        .qrcode-card {
            flex: 1;
            min-width: 300px;
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: var(--shadow);
            text-align: center;
            position: relative;
            transform: translateY(50px);
            opacity: 0;
            transition: transform 1s ease, opacity 1s ease;
        }

        .qrcode-card.animated {
            transform: translateY(0);
            opacity: 1;
        }

        .qrcode-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-secondary);
            border-radius: 20px 20px 0 0;
        }

        .qrcode-title {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .qrcode-image {
            max-width: 250px;
            margin: 0 auto 25px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .qrcode-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .qrcode-desc {
            color: var(--gray);
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .qrcode-tip {
            background: var(--light);
            padding: 15px;
            border-radius: 10px;
            font-size: 14px;
            color: var(--dark);
            margin-top: 20px;
        }

        /* 服务时间区域 */
        .service-hours {
            background: var(--light);
            padding: 20px;
            border-radius: 15px;
            margin-top: 30px;
        }

        .service-hours h3 {
            font-size: 18px;
            margin-bottom: 15px;
            color: var(--dark);
            text-align: center;
        }

        .hours-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .hour-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .hour-item:last-child {
            border-bottom: none;
        }

        .hour-day {
            font-weight: 600;
            color: var(--dark);
        }

        .hour-time {
            color: var(--primary);
            font-weight: 500;
        }

        /* 咨询流程 */
        .consultation-process {
            margin-top: 80px;
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 50px;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(to right, var(--primary), var(--accent));
            z-index: 1;
        }

        .step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
            transform: translateY(50px);
            opacity: 0;
        }

        .step.animated {
            transform: translateY(0);
            opacity: 1;
        }

        .step-icon {
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 30px;
            color: var(--primary);
            box-shadow: var(--shadow);
            position: relative;
            transition: var(--transition);
            border: 3px solid transparent;
            background-clip: padding-box;
        }

        .step-icon::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            background: var(--gradient);
            border-radius: 50%;
            z-index: -1;
            opacity: 0;
            transition: var(--transition);
        }

        .step:hover .step-icon {
            color: white;
        }

        .step:hover .step-icon::before {
            opacity: 1;
        }

        .step h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--dark);
            font-weight: 600;
        }

        .step p {
            color: var(--gray);
            font-size: 14px;
        }