



/* 核心样式 */
.wp-server-info-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.wp-server-info-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.wp-server-info-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #3498db, #9b59b6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-section {
    margin-bottom: 3rem;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.info-section:hover {
    transform: translateY(-5px);
}

.info-section h3 {
    background: linear-gradient(90deg, #3498db, #9b59b6);
    color: white;
    padding: 1rem 1.5rem;
    margin: 0;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.info-section h3 i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.wp-server-info-table {
    width: 100%;
    border-collapse: collapse;
}

.wp-server-info-table th, 
.wp-server-info-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.wp-server-info-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #34495e;
    width: 30%;
}

.wp-server-info-table tr:hover td {
    background-color: #f8f9fa;
}

.wp-server-info-table tr:last-child td {
    border-bottom: none;
}

.wp-server-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wp-server-info-list li {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.wp-server-info-list li:last-child {
    border-bottom: none;
}

.wp-server-info-list strong {
    min-width: 200px;
    color: #3498db;
    font-weight: 600;
}

.wp-server-info-list span {
    background: #f8f9fa;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-family: monospace;
}

.shortcode-usage {
    padding: 1.5rem;
}

.shortcode-usage code {
    background: #2c3e50;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 1rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wp-server-info-container {
        padding: 1rem;
    }
    
    .wp-server-info-table th, 
    .wp-server-info-table td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .wp-server-info-list li {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .wp-server-info-list strong {
        margin-bottom: 0.5rem;
    }
}

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

.info-section {
    animation: fadeIn 0.5s ease forwards;
}

.info-section:nth-child(2) {
    animation-delay: 0.1s;
}

/* 状态指示器 */
.status-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
}

.status-good {
    background-color: #2ecc71;
}

.status-warning {
    background-color: #f39c12;
}

.status-critical {
    background-color: #e74c3c;
}



/* 基础评论样式 */
.comment {
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.comment:hover {
    background-color: #f9f9f9;
}

.comment-author {
    font-weight: bold;
    margin-bottom: 5px;
}

.comment-meta {
    color: #666;
    font-size: 0.9em;
}

.comment-content {
    line-height: 1.6;
}

.plugin-list { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); 
    gap: 20px; 
    margin-top: 20px; 
}
.plugin-card { 
    background: #fff; 
    border: 1px solid #ddd; 
    padding: 20px; 
    border-radius: 4px; 
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}
.plugin-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.plugin-card h3 { 
    margin-top: 0; 
    color: #23282d; 
    border-bottom: 1px solid #eee; 
    padding-bottom: 10px; 
}
.plugin-meta p { 
    margin: 8px 0; 
    color: #555; 
    display: flex; 
    align-items: center; 
}
.plugin-meta .dashicons { 
    margin-right: 5px; 
    color: #72777c; 
    width: 18px;
    height: 18px;
    font-size: 18px;
}
.install-plugin { 
    margin-top: 15px; 
    width: 100%; 
}
.button-success { 
    background-color: #46b450; 
    border-color: #46b450; 
}
.button-error { 
    background-color: #dc3232; 
    border-color: #dc3232; 
}




.acs-comments-container {
    margin: 20px 0;
}

.acs-comment {
    padding: 15px;
    margin-bottom: 15px;
    background: #f9f9f9;
    border-radius: 5px;
    border-left: 4px solid #0073aa;
}

.acs-comment-author {
    font-weight: bold;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.acs-comment-date {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.acs-comment-content {
    line-height: 1.6;
}

.latest-comment {
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-left: 3px solid #1e73be;
}

.comment-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.comment-date {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.comment-content {
    line-height: 1.6;
}

.comments-toggle {
    background: #1e73be;
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 3px;
    margin-bottom: 15px;
}

.comments-toggle:hover {
    background: #135e96;
}

.comment-pagination {
    margin-top: 20px;
    text-align: center;
}

.comment-pagination a, 
.comment-pagination span {
    margin: 0 5px;
    padding: 5px 10px;
    display: inline-block;
}

.comment-pagination a {
    background: #f9f9f9;
    color: #1e73be;
    text-decoration: none;
}

.comment-pagination a:hover {
    background: #eee;
}

.comment-pagination .current {
    background: #1e73be;
    color: white;
}

.comment-tag-filter {
    margin-bottom: 20px;
}

.comment-tag-filter a {
    display: inline-block;
    margin-right: 10px;
    padding: 3px 8px;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 3px;
}

.comment-tag-filter a.active {
    background: #1e73be;
    color: white;
}

.comment-tags {
    margin-top: 8px;
}

.comment-tag {
    display: inline-block;
    margin-right: 5px;
    padding: 2px 6px;
    background: #e6f2ff;
    color: #1e73be;
    font-size: 0.8em;
    border-radius: 3px;
}
