/* 运营页面头部样式 */
.operation-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.operation-hero h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.operation-hero p {
    font-size: 1.2em;
    opacity: 0.9;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

/* 运营导航样式 */
.operation-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.operation-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-decoration: none;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.operation-nav-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.operation-nav-item i {
    font-size: 2em;
    margin-bottom: 10px;
}

/* 内容区域样式 */
.operation-content {
    padding: 60px 0;
    background: #f8f9fa;
}

.operation-section {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    animation: fadeInUp 1s ease-out;
}

.operation-section h2 {
    color: var(--secondary-color);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.8em;
}

.operation-section h2 i {
    color: var(--primary-color);
}

/* 运营体系样式 */
.system-overview {
    display: grid;
    gap: 30px;
}

.system-layer {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.system-layer:hover {
    transform: translateY(-5px);
}

.system-layer h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.system-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.system-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.system-item i {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-bottom: 10px;
}

.system-item h4 {
    margin: 10px 0;
    color: var(--secondary-color);
}

.system-item ul {
    list-style: none;
    padding: 0;
}

.system-item li {
    padding: 5px 0;
    color: var(--dark-gray);
}

/* 服务标准样式 */
.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.standard-card {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.standard-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.standard-icon i {
    font-size: 1.8em;
    color: white;
}

.standard-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.standard-details h4 {
    color: var(--primary-color);
    margin: 15px 0 10px;
}

.standard-details ul {
    list-style: none;
    padding: 0;
}

.standard-details li {
    padding: 5px 0;
    color: var(--dark-gray);
}

/* 服务质量标准样式 */
.standard-label {
    display: inline-block;
    width: 100px;
    color: var(--secondary-color);
    font-weight: 500;
}

.standard-progress {
    display: inline-block;
    width: calc(100% - 110px);
    height: 20px;
    background: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    margin-left: 10px;
    vertical-align: middle;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #2ecc71);
    border-radius: 10px;
    position: relative;
    transition: width 1s ease-in-out;
}

.progress-bar span {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 0.9em;
    font-weight: 500;
}

.standard-details ul li {
    margin-bottom: 15px;
    padding: 10px;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.standard-details ul li:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 标准卡片增强样式 */
.standard-card {
    position: relative;
    overflow: hidden;
}

.standard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.standard-card:hover::before {
    opacity: 1;
}

.standard-icon {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.standard-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease-out;
}

.standard-card:hover .standard-icon::after {
    transform: scale(1);
}

/* 动画效果 */
@keyframes progressFill {
    from {
        width: 0;
    }
}

.progress-bar {
    animation: progressFill 1.5s ease-out forwards;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .standard-label {
        display: block;
        width: 100%;
        margin-bottom: 5px;
    }

    .standard-progress {
        width: 100%;
        margin-left: 0;
    }

    .standard-details ul li {
        padding: 15px;
    }
}

/* 悬停效果增强 */
.standard-details ul li {
    position: relative;
    overflow: hidden;
}

.standard-details ul li::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.standard-details ul li:hover::after {
    transform: translateX(100%);
}

/* 质量控制样式 */
.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

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

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

.quality-header {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.quality-header i {
    font-size: 1.5em;
}

.quality-content {
    padding: 25px;
}

.quality-item {
    margin-bottom: 20px;
}

.quality-item:last-child {
    margin-bottom: 0;
}

.quality-item h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.quality-item ul {
    list-style: none;
    padding: 0;
}

.quality-item li {
    padding: 5px 0;
    color: var(--dark-gray);
}

/* 数据分析样式 */
.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

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

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

.analysis-header {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.analysis-header i {
    font-size: 1.5em;
}

.analysis-content {
    padding: 25px;
}

.chart-container {
    position: relative;
    height: 300px;
    margin: 20px 0;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.chart-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.chart-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px 12px 0 0;
}

.analysis-metrics {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.metric-item h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.1em;
}

.metric-item h4::before {
    content: '';
    width: 4px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 2px;
}

.metric-item ul {
    list-style: none;
    padding: 0;
}

.metric-item li {
    padding: 5px 0;
    color: var(--dark-gray);
}

/* 数据分析样式增强 */
.analysis-metrics .metric-item ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 10px;
    background: var(--light-gray);
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.analysis-metrics .metric-item ul li:hover {
    transform: translateX(5px);
    background: rgba(74, 144, 226, 0.1);
}

.analysis-metrics .metric-item ul li i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 2px;
}

.sub-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    margin-left: 28px;
    padding: 8px;
    background: rgba(74, 144, 226, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.sub-metrics span {
    background: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9em;
    color: var(--dark-gray);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.sub-metrics span:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .operation-hero {
        padding: 80px 0 40px;
    }

    .operation-nav {
        gap: 15px;
    }

    .operation-nav-item {
        width: calc(50% - 15px);
    }

    .operation-section {
        padding: 20px;
    }

    .standards-grid,
    .quality-grid,
    .analysis-grid {
        grid-template-columns: 1fr;
    }

    .analysis-metrics {
        grid-template-columns: 1fr;
    }

    .sub-metrics {
        flex-direction: column;
        gap: 5px;
    }

    .analysis-metrics .metric-item ul li {
        flex-direction: column;
    }

    .analysis-metrics .metric-item ul li i {
        margin-bottom: 5px;
    }

    .chart-container {
        height: 250px;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.operation-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}

.operation-section:nth-child(2) {
    animation-delay: 0.2s;
}

.operation-section:nth-child(3) {
    animation-delay: 0.4s;
}

.operation-section:nth-child(4) {
    animation-delay: 0.6s;
}

/* 动画效果补充 */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.analysis-metrics .metric-item ul li {
    animation: slideIn 0.3s ease-out forwards;
}

.analysis-metrics .metric-item ul li:nth-child(2) {
    animation-delay: 0.1s;
}

.analysis-metrics .metric-item ul li:nth-child(3) {
    animation-delay: 0.2s;
}

.analysis-metrics .metric-item ul li:nth-child(4) {
    animation-delay: 0.3s;
}

.analysis-metrics .metric-item ul li:nth-child(5) {
    animation-delay: 0.4s;
}

.analysis-metrics .metric-item ul li:nth-child(6) {
    animation-delay: 0.5s;
}

/* 数据分析总览样式 */
.analysis-overview {
    margin-bottom: 30px;
}

.overview-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.overview-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.overview-icon {
    width: 50px;
    height: 50px;
    background: var(--light-gray);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.overview-card:hover .overview-icon {
    background: var(--primary-color);
}

.overview-icon i {
    font-size: 1.5em;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.overview-card:hover .overview-icon i {
    color: white;
}

.overview-info {
    flex: 1;
}

.overview-info h4 {
    color: var(--dark-gray);
    font-size: 0.9em;
    margin-bottom: 5px;
}

.overview-value {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.overview-trend {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9em;
}

.overview-trend.positive {
    color: #2ecc71;
}

.overview-trend.negative {
    color: #e74c3c;
}

/* 响应式调整补充 */
@media (max-width: 1200px) {
    .overview-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .overview-cards {
        grid-template-columns: 1fr;
    }

    .overview-card {
        padding: 15px;
    }

    .overview-icon {
        width: 40px;
        height: 40px;
    }

    .overview-value {
        font-size: 1.5em;
    }
}

/* 动画效果补充 */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.overview-card:hover .overview-value {
    animation: pulse 1s ease infinite;
}

/* 分析卡片样式增强 */
.analysis-card {
    position: relative;
    overflow: visible;
}

.analysis-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.analysis-card:hover::before {
    opacity: 1;
}

/* 指标项样式优化 */
.metric-item ul li {
    position: relative;
    padding-left: 25px;
}

.metric-item ul li i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.metric-item ul li:hover i {
    transform: translateY(-50%) scale(1.2);
    color: var(--primary-color);
}

/* 运营流程样式 */
.process-flow {
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.process-step {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    position: relative;
}

.process-step:not(:last-child) {
    border-bottom: 1px dashed var(--light-gray);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.step-icon i {
    font-size: 1.5em;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    background: var(--primary-color);
}

.process-step:hover .step-icon i {
    color: white;
    transform: scale(1.1);
}

.step-content {
    flex: 1;
}

.step-content h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-size: 1.2em;
}

.step-content p {
    color: var(--dark-gray);
    margin-bottom: 10px;
    font-size: 0.9em;
}

.step-details {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.step-details span {
    background: var(--light-gray);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9em;
    color: var(--dark-gray);
    transition: all 0.3s ease;
}

.process-step:hover .step-details span {
    background: rgba(74, 144, 226, 0.1);
    color: var(--primary-color);
}

.step-arrow {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.step-arrow i {
    transition: transform 0.3s ease;
}

.process-step:hover .step-arrow i {
    transform: translateX(5px);
}

/* 进度指示器 */
.process-step::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 100%;
    height: calc(100% - 60px);
    width: 2px;
    background: var(--light-gray);
    z-index: 1;
}

.process-step:last-child::before {
    display: none;
}

.process-step::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 50%;
    width: 40px;
    height: 40px;
    border: 2px solid var(--light-gray);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    transition: all 0.3s ease;
}

.process-step:hover::after {
    border-color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

/* 动画效果 */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.process-step {
    animation: fadeInRight 0.5s ease-out forwards;
    opacity: 0;
}

.process-step:nth-child(1) {
    animation-delay: 0.1s;
}

.process-step:nth-child(2) {
    animation-delay: 0.2s;
}

.process-step:nth-child(3) {
    animation-delay: 0.3s;
}

.process-step:nth-child(4) {
    animation-delay: 0.4s;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .process-flow {
        padding: 15px;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .step-details {
        justify-content: center;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    .process-step::before {
        left: 50%;
        width: 2px;
        height: 30px;
        top: auto;
        bottom: -30px;
    }

    .process-step::after {
        left: 50%;
        top: auto;
        bottom: -15px;
    }
}

/* 系统层级样式优化 */
.system-layer {
    position: relative;
    overflow: hidden;
}

.system-layer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.system-layer:hover::before {
    opacity: 1;
}

/* 系统项样式增强 */
.system-item {
    position: relative;
    overflow: hidden;
}

.system-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.system-item:hover::after {
    transform: translateX(0);
}

/* 资源调度样式 */
.resource-stats {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    padding: 10px;
    background: var(--light-gray);
    border-radius: 8px;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 10px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.stat-value {
    display: block;
    font-size: 1.5em;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 0.9em;
    color: var(--dark-gray);
}

/* 资源项样式增强 */
.system-layer.resource .system-item {
    position: relative;
    overflow: hidden;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.system-layer.resource .system-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.system-layer.resource .system-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.system-layer.resource .system-item:hover::before {
    opacity: 1;
}

.system-layer.resource .system-item i {
    font-size: 2em;
    margin-bottom: 15px;
    background: var(--light-gray);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.system-layer.resource .system-item:hover i {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* 动画效果 */
@keyframes statsCount {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.stat-value {
    animation: statsCount 1s ease-out forwards;
}

/* 资源状态指示器 */
.stat-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.stat-item:hover::after {
    width: 80%;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .resource-stats {
        flex-direction: column;
    }

    .stat-item {
        width: 100%;
    }

    .system-layer.resource .system-item {
        margin-bottom: 20px;
    }
}

/* 系统层级交互增强 */
.system-layer {
    transition: all 0.3s ease;
}

.system-layer:hover {
    transform: translateY(-5px);
}

.system-layer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(255,255,255,0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.system-layer:hover::after {
    opacity: 1;
} 