/* 插件功能详情区样式 - 从原始HTML完整提取 */

.plugin-category-nav {
    width: 220px;
    background: #FEFEFE;
    box-shadow: 0px 0px 24px 0px rgba(141, 141, 141, 0.25);
    border-radius: 4px;
    padding: 20px 0;
}

.category-item {
    position: relative;
    cursor: pointer;
    height: 65px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.category-item:hover {
    background: #FBEAEA;
}

.category-indicator {
    width: 4px;
    height: 20px;
    background: transparent;
    border-radius: 2px;
    margin-right: 12px;
}

.active-category {
    background: #FBEAEA;
    border-radius: 4px;
}

.active-category .category-indicator {
    background: #FD4E4E;
}

.category-icon {
    width: 22px;
    margin: 0 10px;
}

.category-name {
    color: #333;
    font-size: 20px;
    font-weight: 500;
}

.active-category .category-name {
    color: #FD4E4E;
    font-weight: 600;
}

.plugin-features-list {
    flex: 1;
    max-width: 1042px;
}

.features-content {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-card {
    position: relative;
    width: 333px;
    min-height: 220px;
    background: #FEFEFE;
    box-shadow: 0px 0px 24px 0px rgba(141, 141, 141, 0.25);
    border-radius: 4px;
    padding: 20px 23px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 30px 0px rgba(141, 141, 141, 0.35);
}

.feature-card:hover .feature-title {
    color: #FD4E4E;
}

.feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-number {
    width: 24px;
    height: 25px;
    background: #FD4E4E;
    border-radius: 4px;
    color: #fff;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    border: 1px solid #fff;
}

.feature-title {
    font-size: 20px;
    color: #333;
    font-weight: 700;
    transition: color 0.3s ease;
}

.feature-desc {
    font-size: 17px;
    line-height: 25px;
    color: #333;
    flex: 1;
    margin-bottom: 15px;
}

.feature-actions {
    display: flex;
    gap: 10px;
    margin-left: 30px;
}

.feature-card:hover .feature-actions {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0.3;
    }
    to {
        opacity: 1;
    }
}

.btn-video,
.btn-tutorial,
.btn-use {
    height: 32px;
    padding: 0 10px;
    border-radius: 4px;
    border: 1px solid #BABABA;
    color: #999;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-video:hover,
.btn-tutorial:hover,
.btn-use:hover {
    background: #FD4E4E;
    color: #fff;
    border-color: #FD4E4E;
}

/* 插件功能区域整体 */
.plugin-features-section {
    background: #fff;
    border-radius: 14px;
    padding-bottom: 30px;
    position: relative;
    margin: 60px auto;
    max-width: 1400px;
}

.radioss {
    width: 120px;
    height: 120px;
    background: #F6F6F6;
    border-radius: 50%;
    position: absolute;
    left: 10%;
    top: -50px;
}

.plugin-features-header {
    text-align: center;
    margin: 80px 0 60px;
}

.plugin-features-title {
    font-size: 32px;
    color: #333;
    font-weight: 700;
    line-height: 1.5;
}

.plugin-features-subtitle {
    margin-top: 20px;
}

.plugin-features-subtitle img {
    width: 46px;
}

.plugin-features-main {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
}

/* 工具类 */
.flex {
    display: flex;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
