﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", sans-serif;
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}
/* 分页样式 */
.info-pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    padding-bottom:30px;
    gap: 10px;
}
.info-page-item {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .info-page-item:hover,
    .info-page-item.info-active {
        background: #007bff;
        color: white;
    }

.ques-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.ques-header {
    text-align: center;
    padding: 20px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.ques-main-content {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.ques-left-panel {
    flex: 3;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    width: 70%;
}

.ques-right-panel {
    flex: 1;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px;
}

.ques-news-section-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #667eea;
    color: #333;
}

.ques-news-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

    .ques-news-item:last-child {
        border-bottom: none;
    }

    .ques-news-item:hover {
        transform: translateX(5px);
    }

.ques-news-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    cursor: pointer;
    transition: color 0.3s ease;
    color: #333;
}

    .ques-news-title:hover {
        color: #667eea;
    }

.ques-news-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
}

.ques-news-summary {
    font-size: 14px;
    line-height: 1.5em;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 60%;
}

.ques-recommend-list {
    list-style: none;
}

.ques-recommend-item {
    padding: 10px 0;
    border-top: 1px dashed #ddd;
}

    .ques-recommend-item:first-child {
        border-top: none;
    }

    .ques-recommend-item a {
        text-decoration: none;
        color: #666;
        transition: color 0.3s ease;
    }

        .ques-recommend-item a:hover {
            color: #667eea;
        }

.ques-shop-section {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px;
}

.ques-shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.ques-shop-item {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
}

    .ques-shop-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

.ques-shop-name {
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ques-shop-description {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.ques-shop-rating {
    color: #ffc107;
    font-size: 14px;
}

@media (max-width: 768px) {
    .ques-main-content {
        flex-direction: column;
    }

    .ques-container {
        padding: 10px;
    }

    .ques-shop-grid {
        grid-template-columns: 1fr;
    }
}
