
    /* 酷站推荐模块容器 */
    .cool-site-module {
        width: 98%;
        margin: 0 auto;
        border-radius: 2px;
        overflow: hidden;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }

    /* 模块标题 */
    .module-title {
        background-color: #f0f0f0;
        border-bottom: 1px solid #ddd;
        padding: 8px;
        font-weight: bold;
        color: #333;
    }

    /* 模块内容区域 */
    .module-content {
        background-color: #f7f7f7;
        padding: 10px;
        min-height: 390px;
        display: flex;
        flex-direction: column;
    }

    /* 酷站列表样式 */
    .cool-site-list {
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .cool-site-item {
        padding: 8px 0;
        border-bottom: 1px solid #EEEEEE;
    }

    /* 最后一项移除分隔线 */
    .cool-site-item:last-child {
        border-bottom: none;
    }

    .cool_link_title {
        font-size: 14px;
        color: #333;
        display: flex;
        align-items: center;
        cursor: pointer;
    }

    .cool_link_title img {
        vertical-align: middle;
        margin-right: 5px;
    }

    .cool_link_title:hover {
        color: #0066cc;
        text-decoration: none;
    }

    /* 空数据提示 */
    .empty-tip {
        font-size: 14px;
        color: #666;
        padding: 20px;
        text-align: center;
    }

    /* 响应式适配 */
    @media (max-width: 768px) {
        .cool-site-module {
            width: 100%;
        }

        .module-content {
            min-height: auto;
            padding: 8px;
        }

        .cool_link_title {
            font-size: 13px;
        }

        .module-title {
            padding: 6px 8px;
            font-size: 15px;
        }
    }

    @media (max-width: 480px) {
        .cool_link_title {
            font-size: 12px;
        }

        .empty-tip {
            padding: 15px;
            font-size: 13px;
        }
    }
