     .card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            padding: 30px;
            margin-bottom: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }
        
        /* 客服卡片样式 */
        .agents-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 25px;
            margin-top: 20px;
        }
        
        .agent-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
            padding-top: 30px; /* 添加顶部内边距 */
        }
        
        .agent-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        /* 头像容器 - 圆形居中 */
        .agent-avatar-container {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .agent-avatar {
            width: 100px;
            height: 100px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
            border-radius: 50%;
            border: 3px solid #3498DB;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        
        .agent-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        
        .agent-card:hover .agent-avatar img {
            transform: scale(1.05);
        }
        
        .agent-info {
            padding: 0 15px 20px;
        }
        
        .agent-name {
            font-weight: 700;
            font-size: 1.3rem;
            color: #2C3E50;
            margin-bottom: 8px;
        }
        
        .agent-expertise {
            color: #3498DB;
            font-weight: 600;
            font-size: 1rem;
            background: rgba(52, 152, 219, 0.1);
            padding: 5px 10px;
            border-radius: 20px;
            display: inline-block;
            margin: 10px 0;
        }
        
        .contact-btn {
            display: inline-block;
            background: #3498DB;
            color: white;
            padding: 8px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 10px;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
            outline: none;
        }
        
        .contact-btn:hover {
            background: #2980B9;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
        }
        
        /* 流程部分样式 */
        .process-container {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
            position: relative;
        }
        
        .process-container::before {
            content: "";
            position: absolute;
            top: 50px;
            left: 0;
            right: 0;
            height: 3px;
            background: #3498DB;
            z-index: 1;
        }
        
        .process-step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
            padding: 0 15px;
        }
        
        .step-icon {
            width: 100px;
            height: 100px;
            background: white;
            border: 3px solid #3498DB;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2.5rem;
            color: #3498DB;
            position: relative;
        }
        
        .step-title {
            font-size: 1.3rem;
            color: #2C3E50;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .step-description {
            color: #5D6D7E;
            font-size: 1rem;
            line-height: 1.5;
        }
        
        /* 页脚样式 */
        footer {
            text-align: center;
            padding: 30px 0;
            color: #7F8C8D;
            font-size: 0.9rem;
            margin-top: 20px;
        }
        
        .service-note {
            background: #FFF8E1;
            border-left: 4px solid #FFC107;
            padding: 15px 20px;
            margin-top: 30px;
            border-radius: 0 8px 8px 0;
            font-size: 0.95rem;
        }
        
        /* 模态框样式 */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            background: white;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            max-width: 400px;
            width: 90%;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            position: relative;
            animation: modalAppear 0.4s ease;
        }
        
        @keyframes modalAppear {
            from { opacity: 0; transform: translateY(-50px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.5rem;
            color: #7F8C8D;
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .close-btn:hover {
            color: #E74C3C;
        }
        
        .modal-title {
            color: #2C3E50;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .modal-subtitle {
            color: #3498DB;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .qrcode {
            width: 200px;
            height: 200px;
            margin: 0 auto 20px;
            background: #f5f5f5;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 6rem;
            color: #3498DB;
        }
        
        .modal-text {
            color: #5D6D7E;
            margin-top: 20px;
            font-size: 0.95rem;
        }
        
        .department-tags {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        
        .department-tag {
            background: #ECF0F1;
            color: #5D6D7E;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
        }
        
        .highlight {
            color: #E74C3C;
            font-weight: bold;
        }