/* 内容结构比例样式 */
.content-ratio {
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: space-between;
}

.ratio-item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.ratio-bar {
    height: 8px;
    background: #e5e5e7;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.ratio-item:nth-child(1) .ratio-bar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: var(--percent);
    background: #FF6B6B;
    border-radius: 4px;
    transition: width 0.8s ease;
}

.ratio-item:nth-child(2) .ratio-bar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: var(--percent);
    background: #4ECDC4;
    border-radius: 4px;
    transition: width 0.8s ease;
}

.ratio-item:nth-child(3) .ratio-bar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: var(--percent);
    background: #FFE66D;
    border-radius: 4px;
    transition: width 0.8s ease;
}

.ratio-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.ratio-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1d1d1f;
    margin: 0;
}

.ratio-info p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1d1d1f;
    margin: 0;
}

/* 内容系列样式 */
.content-series {
    margin-top: 30px;
}

.series-item {
    margin-bottom: 35px;
}

.series-item h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 20px;
}

.story-list li {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #1d1d1f;
}

.story-list p {
    font-size: 1rem;
    color: #86868b;
    margin: 8px 0 8px 20px;
}

.value-list li {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #1d1d1f;
    padding-left: 20px;
    position: relative;
    width: 100%;
    display: block;
}

.value-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #007AFF;
}