        .contact-wrap {
            max-width: 900px;
            margin: 0 auto;
            background: #fff;
            padding: 40px;
            border-radius: 12px;
        }
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }
        .contact-itema {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px;
            background: #f8fafc;
            border-radius: 8px;
            transition: 0.3s;
        }
        .contact-itema:hover {
            box-shadow: 0 5px 15px rgba(22,93,255,0.08);
        }
        .contact-itema .icon-box {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            flex-shrink: 0;
        }
        .contact-itema .text h4 {
            font-size: 16px;
            margin-bottom: 4px;
            color: #222;
        }
        .contact-itema .text p {
            font-size: 14px;
            color: #666;
        }
        .service-tips {
            margin-top: 35px;
            padding: 20px;
            background: #f5f7fa;
            border-radius: 8px;
            font-size: 14px;
            color: #666;
            border-left: 4px solid #165DFF;
            line-height: 1.8;
        }
        /* 手机端自适应 */
        @media (max-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
            .contact-wrap {
                padding: 20px;
            }
        }