        /* 联系卡片 */
        .contact-method-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            text-align: center;
            border-top: 5px solid var(--anqie-primary);
        }
        
        .contact-method-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        
        .contact-icon {
            width: 80px;
            height: 80px;
            background: rgba(13, 110, 253, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }
        
        .contact-icon i {
            font-size: 2.5rem;
            color: var(--anqie-primary);
        }
        
        .contact-detail {
            font-size: 1.2rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
            word-break: break-all;
        }
        
        .contact-label {
            color: #666;
            font-size: 1rem;
            margin-bottom: 15px;
        }
        
        .contact-action-btn {
            display: inline-block;
            background: var(--anqie-primary);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .contact-action-btn:hover {
            background: #0b5ed7;
            color: white;
            transform: translateY(-3px);
        }

        /* 联系信息小卡片 */
        .contact-info-box {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            text-align: center;
            height: 100%;
        }
        
        .contact-icon-small {
            width: 50px;
            height: 50px;
            background: rgba(13, 110, 253, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
        }
        
        .contact-icon-small i {
            font-size: 1.5rem;
            color: var(--anqie-primary);
        }