/**
 * 网站推荐插件前台样式
 */

/* 容器 */
.webs-exhibition-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* 类别标题 */
.webs-exhibition-category-title {
    margin: 30px 0 20px;
    padding-bottom: 10px;
    font-size: 25px;
}

/* 网站容器 */
.webs-exhibition-websites {
    display: flex;
    flex-wrap: wrap;
    padding: 0 15px;
}

/* 单个网站项目 */
.webs-exhibition-item {
    width: calc(33.333% - 30px);
    margin: 0 15px 20px;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

/* 响应式布局 */
@media (max-width: 992px) {
    .webs-exhibition-item {
        width: calc(50% - 30px);
    }
}

@media (max-width: 576px) {
    .webs-exhibition-item {
        width: calc(100% - 30px);
    }
}

/* 链接样式 */
.webs-exhibition-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

/* 图标容器 */
.webs-exhibition-icon-wrapper {
    margin-right: 35px;
    border-radius: 50%;
    overflow: hidden;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* 图标 */
.webs-exhibition-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* 网站名称容器 */
.webs-exhibition-name-wrapper {
    text-align: left;
    transition: all 0.3s ease;
}

/* 网站名称 */
.webs-exhibition-name {
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
}

/* 鼠标悬停效果 - 图标 */
.webs-exhibition-icon-wrapper:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 鼠标悬停效果 - 网站名 */
.webs-exhibition-name-wrapper:hover {
    transform: scale(1.05);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* 分割线 */
.webs-exhibition-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    height: 10px;
}

.webs-exhibition-divider .dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #475671;
    margin: 0 40px;
}
