        /* 基础样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", sans-serif;
        }



        .containerSH {
            max-width: 1320px;
            margin: 0 auto;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        /* 头部样式 */
        .headerSH {
            background-color: #0066cc;
            color: white;
            padding: 30px 40px;
            text-align: center;
        }

            .headerSH h1 {
                font-size: 28px;
                margin-bottom: 10px;
            }

            .headerSH p {
                font-size: 16px;
                opacity: 0.9;
            }

        /* 搜索栏样式 */
        .searchSH-bar {
            padding: 20px 40px;
            display: flex;
            justify-content: flex-end;
            gap: 10px;
            border-bottom: 1px solid #eaeaea;
        }

            .searchSH-bar input {
                padding: 8px 15px;
                border: 1px solid #ddd;
                border-radius: 4px;
                width: 200px;
                font-size: 14px;
            }

            .searchSH-bar button {
                padding: 8px 15px;
                background-color: #0066cc;
                color: white;
                border: none;
                border-radius: 4px;
                cursor: pointer;
                font-size: 14px;
                transition: background-color 0.3s;
            }

                .searchSH-bar button:hover {
                    background-color: #0055aa;
                }

        /* 商会列表样式 */
        .chamber-list {
            padding: 20px 40px;
        }

            .chamber-list h2 {
                font-size: 18px;
                color: #333;
                margin-bottom: 20px;
                padding-bottom: 10px;
                border-bottom: 2px solid #0066cc;
                display: inline-block;
            }

        .chambers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
        }

        .chamber-card {
            display: flex;
            flex-direction: column;
            border: 1px solid #eaeaea;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }

            .chamber-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            }

        .chamber-logo {
            width: 100%;
            height: 100px;
            object-fit: contain;
            background-color: #FFF;
            padding: 15px;
            border-bottom: 1px solid #eaeaea;
        }

        .chamber-info {
            padding: 18px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-color: #f9f9f9;
        }

        .chamber-name {
            font-size: 17px;
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
            text-align: center;
        }

        .chamber-enterprise-count {
            font-size: 15px;
            color: #666;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .chamber-enterprise-count i {
                margin-right: 6px;
                color: #0066cc;
            }

        /* 分页样式 */
        .paginationSH {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            padding-bottom: 20px;
        }

            .paginationSH button {
                padding: 8px 15px;
                margin: 0 5px;
                border: 1px solid #ddd;
                border-radius: 4px;
                cursor: pointer;
                background-color: white;
                color: #333;
                transition: background-color 0.3s, color 0.3s;
            }

                .paginationSH button.active {
                    background-color: #0066cc;
                    color: white;
                    border-color: #0066cc;
                }

                .paginationSH button:hover:not(.active) {
                    background-color: #f0f5ff;
                }

        /* 响应式设计 */
        @media (max-width: 768px) {

            .headerSH,
            .searchSH-bar,
            .chamber-list {
                padding: 15px;
            }

            .chambers-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 15px;
            }

            .chamber-logo {
                height: 80px;
                padding: 10px;
            }

            .chamber-info {
                padding: 15px;
            }

            .chamber-name {
                font-size: 16px;
            }

            .chamber-enterprise-count {
                font-size: 14px;
            }

        }

        .blog_post {
            padding-top: 20px;
            padding-bottom: 0px;
        }