
    .contact-info {
        font-family: Arial, sans-serif;
        color: #333;
        background-color: #f9f9f9;
        padding: 20px;
        border-radius: 8px;
        max-width: 500px;
        margin: 20px auto;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .contact-info h2 {
        font-size: 22px;
        margin-bottom: 15px;
        color: rgb(34, 93, 152); /* 使用 RGB 颜色 */
    }

    .contact-info table {
        width: 100%;
        border-collapse: collapse; /* 隐藏表格边框 */
    }

    .contact-info table td {
        padding: 8px 0; /* 单元格上下间距 */
        font-size: 18px;
        vertical-align: top; /* 顶部对齐 */
    }

    .contact-info table td:first-child {
        width: 30%; /* 左侧标签宽度 */
        font-weight: bold;
        color: rgb(34, 93, 152); /* 左边字体颜色 */
    }

    .contact-info table td:last-child {
        color: #000; /* 右边字体颜色为黑色 */
    }

    .contact-info a {
        color: #000; /* 链接颜色为黑色 */
        text-decoration: none;
    }

    .contact-info a:hover {
        text-decoration: underline;
    }
