.link-icon {
    font-size: 14px;
}

.link-text {
    font-weight: normal;
}

/* 响应式调整 */
@media (max-width: 480px) {
    .psi-title {
        flex-wrap: wrap;
    }
    

}
/* 基础样式 */
.psi-header h1::before {
    content: '🚀';  /* 或使用其他图标 */
    margin-right: 0px;
    font-size: 24px;
}
.psi-title {
    font-size: 24px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.psi-icon {
    color: #1a73e8;
    font-size: 24px;
}

.psi-subtitle {
    font-size: 14px;
    color: #5f6368;
    font-weight: normal;
    margin-left: 10px;
}

/* 设备选择按钮样式 */
.device-toggle {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    width: 100%;
}

.device-label {
    flex: 1;
    height: 56px; /* 固定高度 */
    background: #f8f9fa;
    border: 2px solid #dadce0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-label:hover {
    background: #f1f3f4;
    border-color: #1a73e8;
}

/* 隐藏原始单选框 */
.device-label input[type="radio"] {
    display: none;
}

/* 内容容器 */
.device-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 内部容器 */
.device-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

/* 图标样式 */
.device-icon {
    font-size: 20px;
    margin-right: 8px;
    color: #5f6368;
    transition: all 0.3s ease;
    line-height: 1;
}

/* 文字样式 */
.device-text {
    font-size: 14px;
    font-weight: 500;
    color: #5f6368;
    transition: all 0.3s ease;
    line-height: 1;
}

/* 选中状态样式 */
.device-label input[type="radio"]:checked ~ .device-content .device-icon,
.device-label input[type="radio"]:checked ~ .device-content .device-text {
    color: #1a73e8;
}

/* 选中的标签样式 */
.device-label input[type="radio"]:checked {
    background: #e8f0fe;
}

.device-label:has(input[type="radio"]:checked) {
    background: #e8f0fe;
    border-color: #1a73e8;
}

/* 添加点击效果 */
.device-label:active {
    transform: scale(0.98);
}

/* 响应式调整 */
@media (max-width: 480px) {
    .device-toggle {
        flex-direction: column;
        gap: 10px;
    }
    
    .device-label {
        width: 100%;
    }
}

.psi-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Google Sans', Arial, sans-serif;
    color: #202124;
}

.psi-header {
    margin-bottom: 30px;
}

.psi-header h1 {
    font-size: 24px;
    color: #202124;
    margin-bottom: 20px;
}

/* 表单样式 */
.psi-form {
    width: 100%;
}

.url-input-container {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.url-input-container input[type="url"] {
    flex: 1;
    min-width: 200px;
    padding: 12px 16px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    font-size: 16px;
}

.analyze-button {
    background: #1a73e8;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.analyze-button:hover {
    background: #1557b0;
    box-shadow: 0 2px 4px rgba(26,115,232,0.2);
}

.device-toggle {
    display: flex;
    gap: 20px;
}

.device-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.device-label input[type="radio"] {
    margin-right: 8px;
}

/* 加载动画 */
.psi-loading {
    display: none;
    text-align: center;
    padding: 40px;
}

.loading-spinner {
    border: 3px solid #f3f3f3;
    border-radius: 50%;
    border-top: 3px solid #1a73e8;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 得分卡片样式 */
.scores-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.score-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 1px 2px rgba(60,64,67,.3), 0 2px 6px 2px rgba(60,64,67,.15);
}

.score-circle-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
}

.score-circle {
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

.score-circle.score-good {
    stroke: #0cce6b;
}

.score-circle.score-average {
    stroke: #ffa400;
}

.score-circle.score-poor {
    stroke: #ff4e42;
}

.score-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    font-weight: 500;
}

.score-label {
    font-size: 16px;
    color: #5f6368;
}

/* 审计类别样式 */
.audit-category {
    background: white;
    border-radius: 8px;
    margin-bottom: 24px;
    box-shadow: 0 1px 2px rgba(60,64,67,.3), 0 2px 6px 2px rgba(60,64,67,.15);
}

.audit-category-header {
    padding: 20px 24px;
    border-bottom: 1px solid #dadce0;
}

.audit-category-header h2 {
    margin: 0;
    font-size: 18px;
    color: #202124;
}

/* 审计项目样式 */
.audit-item {
    padding: 20px 24px;
    border-bottom: 1px solid #dadce0;
}

.audit-item-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.audit-item-title {
    font-weight: 500;
    flex: 1;
}

.audit-item-score {
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 4px;
}

.audit-item-score.score-good {
    background: #e6f4ea;
    color: #137333;
}

.audit-item-score.score-average {
    background: #fef7e0;
    color: #ea8600;
}

.audit-item-score.score-poor {
    background: #fce8e6;
    color: #c5221f;
}

.audit-item-description {
    color: #5f6368;
    margin-bottom: 12px;
    line-height: 1.5;
}

/* 审计详情样式 */
.audit-details {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 4px;
    margin-top: 12px;
}

.audit-details-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    padding: 8px;
    background: white;
    border-radius: 4px;
}

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

.status-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
}

.status-icon.good {
    background: #e6f4ea;
    color: #137333;
}

.status-icon.average {
    background: #fef7e0;
    color: #ea8600;
}

.status-icon.poor {
    background: #fce8e6;
    color: #c5221f;
}

.audit-details-content {
    flex: 1;
    width: 90%;
}

.savings-value {
    color: #188038;
    font-weight: 500;
    margin-top: 4px;
}

/* 错误提示样式 */
.error-container {
    background: #fce8e6;
    padding: 20px;
    border-radius: 8px;
    color: #c5221f;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .scores-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .url-input-container {
        flex-direction: column;
    }
    
    .analyze-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .scores-container {
        grid-template-columns: 1fr;
    }
}


/* 输入框容器样式更新 */
.url-input-container {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

/* 输入框样式 */
.url-input-container input[type="url"] {
    flex: 1;
    min-width: 200px;
    padding: 12px 16px;
    border: 1px solid #dadce0;
    border-radius: 4px;
    font-size: 16px;
}

/* 分析按钮样式 */
.analyze-button {
    background: #1a73e8;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.analyze-button:hover {
    background: #1557b0;
    box-shadow: 0 2px 4px rgba(26,115,232,0.2);
}

/* 官方分析按钮样式 */
.official-analyze-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    background: #fff;
    color: #1a73e8;
    border: 1px solid #1a73e8;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.official-analyze-button:hover {
    background: #e8f0fe;
    box-shadow: 0 2px 4px rgba(26,115,232,0.1);
}

.button-icon {
    font-size: 14px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .url-input-container {
        flex-direction: column;
    }
    
    .url-input-container input[type="url"],
    .analyze-button,
    .official-analyze-button {
        width: 100%;
    }
}














.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-close {
    font-size: 1.5em;
    cursor: pointer;
}

.modal-body {
    margin-top: 20px;
}

.impact-list {
    list-style-type: none;
    padding-left: 20px;
}

.impact-list li {
    margin-bottom: 10px;
}

.contact-btn {
    display: block;
    text-align: center;
    margin-top: 20px;
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
}

.contact-btn:hover {
    background-color: #45a049;
}





/* 性能分数模块样式 */
.performance-score-module {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.score-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.score-header h2 {
    margin: 0;
    font-size: 24px;
    color: #202124;
}

.score-alert {
    color: #ffffff;
    font-weight: 500;
    background: #FF9800;
    padding: 0px 10px;
    border-radius: 50px;
    font-size: 14px;
}


.score-number {
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
}

.score-label {
    font-size: 16px;
    margin-top: 5px;
}

.score-description {
    flex: 1;
    font-size: 18px;
    line-height: 1.5;
}

 /*分数颜色类 */
/*.score-excellent {*/
/*    background: #0cce6b;*/
/*}*/

/*.score-good {*/
/*    background: #0cce6b;*/
/*}*/



/*.score-poor {*/
/*    background: #ff4e42;*/
/*}*/

/* 优化服务模块 */
.optimization-offer {
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.offer-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #1a73e8;
}

.offer-description ul {
    margin: 15px 0;
    padding-left: 20px;
}

.offer-description li {
    margin: 8px 0;
    color: #5f6368;
}

.offer-price {
    font-size: 18px;
    margin: 15px 0;
    text-align: center;
}

.offer-price span {
    color: #d93025;
    font-weight: bold;
}

.contact-button {
    display: block;
    background: #1a73e8;
    color: white;
    text-align: center;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 15px;
}

.contact-button:hover {
    background: #1557b0;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .score-content {
        flex-direction: column;
        text-align: center;
    }
    
    .score-description {
        margin-top: 20px;
    }
}






/* 指标展示部分 */
.offer-metrics {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 30px 0;
}

.metric-item {
    flex: 1;
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.metric-item:hover {
    transform: translateY(-5px);
    background: #eef2ff;
    box-shadow: 0 8px 16px rgba(26,115,232,0.1);
}

.metric-value {
    font-size: 32px;
    font-weight: bold;
    color: #1a73e8;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-value span {
    font-size: 20px;
    opacity: 0.8;
    margin-left: 2px;
}

.metric-label {
    color: #5f6368;
    font-size: 14px;
    font-weight: 500;
}

/* 服务特性部分 */
.service-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #eef2ff;
    transform: translateX(5px);
}

.feature-icon {
    color: #34a853;
    font-weight: bold;
    font-size: 18px;
}

.feature-item span:last-child {
    color: #202124;
    font-size: 14px;
    font-weight: 500;
}

/* 底部价格和按钮部分 */
.offer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e8eaed;
}

.price-section {
    text-align: left;
}

.original-price {
    color: #5f6368;
    text-decoration: line-through;
    font-size: 14px;
    margin-bottom: 5px;
}

.original-price span {
    font-weight: 500;
}

.current-price {
    color: #d93025;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.current-price span {
    font-size: 28px;
}

.price-note {
    color: #34a853;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.price-note:before {
    content: '🛡️';
    font-size: 14px;
}

.contact-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1a73e8, #34a853);
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(26,115,232,0.2);
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26,115,232,0.3);
}

.button-text {
    font-size: 16px;
}

.button-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.contact-button:hover .button-icon {
    transform: translateX(4px);
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .service-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .offer-metrics {
        flex-direction: column;
    }
    
    .metric-item {
        padding: 15px;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .offer-footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .price-section {
        text-align: center;
    }
    
    .contact-button {
        width: 100%;
        justify-content: center;
    }
}














/* 评分内容区域 */
.score-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 35px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.08),
        inset 0 -1px 0 rgba(255,255,255,0.9);
}

/* 评分显示部分 */
.score-display-wrapper {
    flex: 0 0 220px;
    position: relative;
    padding: 10px;
    background: white;
    border-radius: 50%;
    box-shadow: 
        0 15px 35px rgba(26,115,232,0.15),
        inset 0 2px 5px rgba(255,255,255,0.9);
}

.score-display {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.score-circle {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    filter: drop-shadow(0 4px 6px rgba(26,115,232,0.2));
}

.score-circle path:first-child {
    stroke: #f0f3f9;
    stroke-linecap: round;
}

.score-circle path:last-child {
    stroke-linecap: round;
    animation: progress 1.5s ease-out forwards;
}

@keyframes progress {
    0% {
        stroke-dasharray: 0, 100;
    }
}

.score-inner {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 75%;
    height: 75%;
    background: white;
    border-radius: 50%;
    box-shadow: 
        0 8px 20px rgba(0,0,0,0.08),
        inset 0 -2px 5px rgba(0,0,0,0.03);
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.score-number {
    font-size: 52px;
    font-weight: 800;
    background: linear-gradient(135deg, #1a73e8 0%, #34a853 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.score-label {
    margin-top: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #5f6368;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* 评分分析部分 */
.score-analysis {
    flex: 1;
    min-width: 0;
    animation: slideIn 0.6s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(20px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.analysis-status {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding: 10px 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.status-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    position: relative;
}

.status-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    filter: blur(8px);
    opacity: 0.4;
    z-index: -1;
}

.status-text {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, #202124 0%, #5f6368 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 状态样式 */
.status-excellent .status-icon {
    background: linear-gradient(135deg, #34a853 0%, #0f9d58 100%);
}

.status-good .status-icon {
    background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
}

.status-average .status-icon {
    background: linear-gradient(135deg, #fbbc04 0%, #f29900 100%);
}

.status-poor .status-icon {
    background: linear-gradient(135deg, #ea4335 0%, #c5221f 100%);
}

.analysis-description {
    font-size: 16px;
    line-height: 1.7;
    color: #202124;
    margin-bottom: 20px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.analysis-tips {
    padding: 15px 20px;
    background: linear-gradient(145deg, #f8f9fa 0%, #eef2ff 100%);
    border-left: 4px solid #1a73e8;
    border-radius: 8px;
    font-size: 14px;
    color: #5f6368;
    line-height: 1.6;
    box-shadow: 
        0 4px 15px rgba(0,0,0,0.05),
        inset 0 2px 5px rgba(255,255,255,0.5);
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .score-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .score-display-wrapper {
        margin: 0 auto;
    }
    
    .analysis-status {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .score-content {
        padding: 25px;
    }
    
    .score-display-wrapper {
        flex: 0 0 180px;
    }
    
    .score-display {
        width: 160px;
        height: 160px;
    }
    
    .score-number {
        font-size: 42px;
    }
    
    .status-text {
        font-size: 18px;
    }
}

/* 结果容器样式 */
.results-container {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-top: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.results-header {
    margin-bottom: 24px;
}

.results-header h2 {
    font-size: 24px;
    color: #202124;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.results-meta {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 8px;
}

.results-meta p {
    margin: 8px 0;
    color: #5f6368;
    font-size: 14px;
}

.results-meta strong {
    color: #202124;
    margin-right: 8px;
}

/* 指标网格样式 */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.metric-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 1px 2px rgba(60,64,67,.3), 0 2px 6px 2px rgba(60,64,67,.15);
    transition: transform 0.3s ease;
}

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

.metric-card h3 {
    font-size: 16px;
    color: #202124;
    margin-bottom: 16px;
}

.metric-card .score {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 12px;
}

/* 进度条样式 */
.progress-bar {
    height: 8px;
    background: #f1f3f4;
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    height: 100%;
    transition: width 0.5s ease;
}

/* 分数颜色类 */
.score-good .progress {
    background: #0cce6b;
}

.score-average .progress {
    background: #ffa400;
}

.score-poor .progress {
    background: #ff4e42;
}

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

@media (max-width: 480px) {
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .results-container {
        padding: 16px;
    }
    
    .metric-card {
        padding: 16px;
    }
}

/* 问题列表样式 */
.issues-list {
    margin-top: 16px;
    text-align: left;
}

.issue-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.issue-item:hover {
    background: #f1f3f4;
    transform: translateX(4px);
}

.issue-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    color: white;
}

.issue-icon.warning {
    background: #ffa400;
}

.issue-icon.error {
    background: #ff4e42;
}

.issue-content {
    flex: 1;
}

.issue-title {
    font-size: 14px;
    font-weight: 500;
    color: #202124;
    margin-bottom: 4px;
}

.issue-description {
    font-size: 13px;
    color: #5f6368;
    line-height: 1.4;
}

.issue-impact {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    background: #e8f0fe;
    color: #1a73e8;
    border-radius: 4px;
    font-size: 12px;
    margin-top: 4px;
}

.issue-impact.high {
    background: #fce8e6;
    color: #c5221f;
}

.issue-impact.medium {
    background: #fef7e0;
    color: #ea8600;
}

.issue-impact.low {
    background: #e6f4ea;
    color: #137333;
}


.metric-card .score-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}



/* 诊断列表样式 */
.diagnostics-list {
    margin-top: 20px;
}

.diagnostics-list h4 {
    font-size: 16px;
    color: #202124;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e8eaed;
}

.diagnostic-item {
    background: white;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: 0 1px 2px rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
}

.diagnostic-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.diagnostic-title {
    font-size: 14px;
    font-weight: 500;
    color: #202124;
}

.diagnostic-score {
    font-size: 14px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 4px;
}

.diagnostic-description {
    font-size: 13px;
    color: #5f6368;
    line-height: 1.4;
    margin-bottom: 12px;
}

.diagnostic-details {
    background: #f8f9fa;
    border-radius: 4px;
    padding: 12px;
}

.diagnostic-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.diagnostic-item-detail {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e8eaed;
}

.diagnostic-item-detail:last-child {
    border-bottom: none;
}

.diagnostic-item-detail a {
    color: #1a73e8;
    text-decoration: none;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.diagnostic-item-detail .bytes,
.diagnostic-item-detail .time {
    margin-left: 16px;
    font-size: 12px;
    color: #5f6368;
    background: #e8f0fe;
    padding: 2px 8px;
    border-radius: 4px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .metric-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .metric-value {
        margin: 4px 0;
    }
    
    .diagnostic-item-detail {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .diagnostic-item-detail .bytes,
    .diagnostic-item-detail .time {
        margin: 4px 0 0 0;
    }
}





















