
        /* 自定义模块的专属容器 */
        .custom-contact-container {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px 0;
            background-color: #ffffff; /* 可选背景色 */
        }

        .custom-contact-list {
            display: flex;
            justify-content: center;
            gap: 20px;
            max-width: 1200px;
            width: 100%; /* 防止超出屏幕 */
        }

        .custom-contact-item {
            text-align: left;
            padding: 20px;
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 5px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            width: 300px; /* 固定宽度 */
            flex-shrink: 0; /* 防止缩放 */
        }

        .custom-contact-item h3:first-child {
            font-size: 1.5em;
            color: #004fa0;
            margin-bottom: 8px;
            font-weight: bold;
        }

        .custom-contact-item h3:nth-child(2) {
            font-size: 1.2em;
            color: #004fa0;
            margin-bottom: 10px;
        }

        .custom-contact-item p {
            color: #555;
            font-size: 1em;
            margin: 6px 0;
        }

        .custom-contact-item a {
            color: #2b6884;
            text-decoration: none;
        }

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