<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">        /* 鍗＄墖鏁翠綋鏍峰紡 */
        .contact-card {
            max-width: 400px;
            margin: 2rem auto;
            background-color: white;
            border-radius: 1rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
            transform: translateY(-3px);
        }

        /* 鍗＄墖澶撮儴鏍峰紡 */
        .card-header {
            background: linear-gradient(90deg, #29a6f8, #5ebdf3);
            color: white;
            padding: 1.25rem 1.5rem;
        }

        .card-header h2 {
            margin: 0;
            font-size: clamp(1.25rem, 3vw, 1.5rem);
            font-weight: 500;
            letter-spacing: 0.05rem;
            display: flex;
            align-items: center;
            position: relative;
            padding-left: 2rem;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        }

        .card-header h2::before {
            content: "馃搰";
            position: absolute;
            left: 0;
            font-size: 1.5rem;
            transform: scale(0.9);
            transition: transform 0.3s ease;
        }

        .card-header:hover h2::before {
            transform: scale(1.1) rotate(5deg);
        }

        /* 鑱旂郴淇℃伅鍖哄煙 */
        .contact-info {
            padding: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }


        .contact-item i {
            color: #108ae0;
            width: 1.5rem;
            text-align: center;
            margin-right: 0.75rem;
            font-size: 1.1rem;
        }

        .contact-item span {
            line-height: 1.5;
            font-size: 0.95rem;
        }

        /* 鍦板潃淇℃伅鐗规畩澶勭悊 */
        .contact-item.address {
            align-items: flex-start;
        }

        .contact-item.address i {
            padding-top: 2px;
        }

        .contact-item.address span {
            display: block;
        }

        /* 鍥炬爣鍜屾枃瀛楀垎绂诲鐞� */
        .contact-item .icon {
            min-width: 1.5rem;
            text-align: center;
            margin-right: 0.75rem;
            color: #108ae0;
            font-size: 1.1rem;
        }

        .contact-item .label {
            font-weight: 500;
            margin-right: 0.25rem;
        }

        /* 鍏紬鍙峰尯鍩� */
        .qrcode-area {
            margin-top: 2rem;
            text-align: center;
        }

        .qrcode-area img {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border-radius: 0.75rem;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border: 2px solid white;
            transition: transform 0.3s ease;
        }

        .qrcode-area img:hover {
            transform: scale(1.15);
        }

        .qrcode-area h3 {
            color: #108ae0;
            font-size: 1.05rem;
            font-weight: 600;
            margin-top: 0.75rem;
            letter-spacing: 0.25rem;
            text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
        }

        /* 鍗＄墖搴曢儴瑁呴グ */
        .card-footer {
            height: 0.25rem;
            background: linear-gradient(90deg, #108ae0, #5bb3e9);
        }

        .contact-item img {
        	width: 50px;
        	height: 50px;
        	object-fit: cover;
        	border-radius: 4px;
        	display: block;
        }</pre></body></html>