.bar-chart-section {
    margin: 40px 0;
    padding: 0 20px;
}

.bar-chart-container {
    width: 100%;
    overflow-x: auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 300px;
    margin-top: 20px;
}

.bar-chart-wrapper {
    display: flex;
    gap: 30px;
    padding: 20px;
    min-width: max-content;
    height: 100%;
    align-items: flex-end;
}

.bar-item {
    flex: 0 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    height: 100%;
}

.bar {
    width: 40px;
    min-height: 20px;
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
    background: linear-gradient(to top, #ff6b6b, #ff9a9a);
}

.bar-item:hover .bar {
    transform: scaleY(1.05);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.bar-label {
    margin-top: 10px;
    color: #2c3e50;
    font-weight: 500;
    text-align: center;
    font-size: 0.9rem;
    white-space: nowrap;
}

.bar-value {
    color: #666;
    font-size: 0.8rem;
    margin-top: 5px;
}

/* 自定义滚动条样式 */
.bar-chart-container::-webkit-scrollbar {
    height: 8px;
}

.bar-chart-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.bar-chart-container::-webkit-scrollbar-thumb {
    background: #ff6b6b;
    border-radius: 4px;
}

.bar-chart-container::-webkit-scrollbar-thumb:hover {
    background: #ff4757;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .bar-chart-container {
        height: 250px;
    }

    .bar-item {
        flex: 0 0 60px;
    }

    .bar {
        width: 30px;
    }

    .bar-label {
        font-size: 0.8rem;
    }
}

.trend-analysis {
    margin: 40px 0;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.trend-description {
    text-align: center;
    margin: 20px 0;
    color: #666;
}

.trend-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.legend-item i {
    font-size: 0.8rem;
}

.legend-item:first-child i {
    color: #4CAF50;
}

.legend-item:last-child i {
    color: #8BC34A;
}

.trend-chart-container {
    width: 100%;
    overflow-x: auto;
    padding: 20px;
    position: relative;
    height: 400px;
    margin-top: 20px;
}

.trend-chart-wrapper {
    display: flex;
    gap: 40px;
    padding: 20px;
    min-width: max-content;
    height: calc(100% - 40px);
    align-items: flex-end;
}

.trend-item {
    flex: 0 0 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.trend-bar-group {
    display: flex;
    gap: 4px;
    height: 100%;
    align-items: flex-end;
    position: relative;
}

.trend-bar {
    width: 30px;
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.trend-bar.primary {
    background: linear-gradient(to top, #4CAF50, #8BC34A);
}

.trend-bar.secondary {
    background: linear-gradient(to top, #8BC34A, #CDDC39);
}

.trend-tooltip {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.trend-tooltip::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px 5px 0;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.8) transparent transparent;
}

.trend-bar:hover {
    transform: scaleY(1.05);
}

.trend-bar:hover .trend-tooltip {
    opacity: 1;
}

.trend-label {
    margin-top: 15px;
    color: #2c3e50;
    font-weight: 500;
    text-align: center;
    font-size: 0.9rem;
    white-space: nowrap;
}

.rating-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5px;
}

.rating-score {
    color: #4CAF50;
    font-weight: 600;
    font-size: 1.1rem;
}

.rating-count {
    color: #666;
    font-size: 0.8rem;
    margin-top: 2px;
}

.trend-analysis-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    padding: 20px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 12px;
}

.info-card {
    text-align: center;
    padding: 15px 25px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-card i {
    font-size: 1.5rem;
    color: #4CAF50;
    margin-bottom: 10px;
}

.info-card h3 {
    color: #2c3e50;
    font-size: 1rem;
    margin-bottom: 5px;
}

.info-card p {
    color: #666;
    font-size: 0.9rem;
}

/* 自定义滚动条样式 */
.trend-chart-container::-webkit-scrollbar {
    height: 8px;
}

.trend-chart-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.trend-chart-container::-webkit-scrollbar-thumb {
    background: #4CAF50;
    border-radius: 4px;
}

.trend-chart-container::-webkit-scrollbar-thumb:hover {
    background: #388E3C;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .trend-chart-container {
        height: 300px;
    }

    .trend-item {
        flex: 0 0 80px;
    }

    .trend-bar {
        width: 25px;
    }

    .trend-analysis-info {
        flex-direction: column;
        gap: 15px;
    }

    .info-card {
        width: 100%;
    }
}

/* 通用样式 */
.section-description {
    text-align: center;
    margin: 20px 0 30px;
    color: #666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* 评分排行榜样式 */
.rating-section {
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.rating-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.rating-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.rating-card:hover {
    transform: translateY(-5px);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rating-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(76, 175, 80, 0.9);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.card-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9rem;
}

.card-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.card-tags span {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
}

/* 类型化推荐样式 */
.genre-section {
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
}

.genre-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.genre-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.genre-header {
    padding: 20px;
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}

.genre-header i {
    font-size: 1.5rem;
}

.genre-content {
    padding: 20px;
}

.genre-content p {
    color: #666;
    margin-bottom: 20px;
}

.genre-examples {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.example-item {
    text-align: center;
}

.example-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;
}

.example-item span {
    color: #2c3e50;
    font-size: 0.9rem;
}

.genre-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.genre-tags span {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
}

/* 评分数据分析板块 */
.rating-analysis-section {
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

/* 排行榜样式 */
.ranking-board {
    margin: 30px 0;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.ranking-scroll {
    width: 100%;
    overflow-x: auto;
    padding: 10px 0;
}

.ranking-list {
    display: flex;
    gap: 20px;
    min-width: max-content;
}

.ranking-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 300px;
}

.ranking-item:hover {
    transform: translateY(-5px);
}

.rank-number {
    font-size: 24px;
    font-weight: bold;
    color: #ff6b6b;
    margin-right: 15px;
    min-width: 30px;
}

.rank-content {
    display: flex;
    gap: 15px;
    flex: 1;
}

.rank-content img {
    width: 80px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.rank-info {
    flex: 1;
}

.rank-info h4 {
    margin: 0 0 8px;
    color: #2c3e50;
    font-size: 1.1rem;
}

.rank-score {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff6b6b;
    margin-bottom: 5px;
}

.rank-stats {
    color: #666;
    font-size: 0.9rem;
}

/* 评分分布图表样式 */
.score-distribution {
    margin: 30px 0;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.distribution-chart {
    margin-top: 20px;
}

.chart-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.chart-legend span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.chart-legend i {
    font-size: 12px;
}

.chart-legend i:first-child {
    color: #ff6b6b;
}

.chart-legend i:last-child {
    color: #4CAF50;
}

/* 影响力矩阵样式 */
.influence-matrix-section {
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
}

.matrix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.matrix-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.matrix-header {
    padding: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}

.matrix-card.market .matrix-header {
    background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
}

.matrix-card.reputation .matrix-header {
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
}

.matrix-card.industry .matrix-header {
    background: linear-gradient(135deg, #2196F3, #03A9F4);
}

.matrix-card.culture .matrix-header {
    background: linear-gradient(135deg, #9C27B0, #BA68C8);
}

.matrix-content {
    padding: 20px;
}

.matrix-item {
    margin-bottom: 15px;
}

.matrix-label {
    display: block;
    color: #666;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.matrix-bar {
    height: 30px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.matrix-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 15px;
    transition: width 0.3s ease;
}

.market .matrix-bar::before {
    background: linear-gradient(to right, #FF6B6B, #FF8E8E);
}

.reputation .matrix-bar::before {
    background: linear-gradient(to right, #4CAF50, #8BC34A);
}

.industry .matrix-bar::before {
    background: linear-gradient(to right, #2196F3, #03A9F4);
}

.culture .matrix-bar::before {
    background: linear-gradient(to right, #9C27B0, #BA68C8);
}

.matrix-value {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.9rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .matrix-grid {
        grid-template-columns: 1fr;
    }

    .ranking-item {
        width: 250px;
    }

    .rank-content img {
        width: 60px;
        height: 90px;
    }

    .matrix-bar {
        height: 25px;
    }
}

/* 自定义滚动条 */
.ranking-scroll::-webkit-scrollbar {
    height: 8px;
}

.ranking-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.ranking-scroll::-webkit-scrollbar-thumb {
    background: #ff6b6b;
    border-radius: 4px;
}

.ranking-scroll::-webkit-scrollbar-thumb:hover {
    background: #ff4757;
}