/* 店铺评价页面样式 */
.shop-talks-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 20px;
    clear: both;
}

/* 店铺头部 */
.shop-header-simple {
    background: #fff;
    border-radius: 8px;
    padding: 20px 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
}

.shop-header-logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 20px;
    border: 2px solid #f0f0f0;
}

.shop-header-info h1 {
    font-size: 20px;
    color: #333;
    margin-bottom: 8px;
}

.shop-header-rating {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #666;
}

.shop-header-rating span {
    color: #ff6b00;
    font-weight: bold;
}

/* 导航标签 */
.shop-nav-tabs {
    background: #fff;
    border-radius: 8px;
    padding: 0 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    border-bottom: 1px solid #eee;
}

.shop-nav-tab {
    padding: 15px 25px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.shop-nav-tab:hover {
    color: #ff6b00;
}

.shop-nav-tab.active {
    color: #ff6b00;
    border-bottom-color: #ff6b00;
}

/* 评价筛选 */
.talks-filter {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.talks-filter-title {
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.talks-filter-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.talks-filter-item {
    padding: 8px 20px;
    background: #f5f5f5;
    border-radius: 20px;
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
}

.talks-filter-item:hover {
    background: #eee;
}

.talks-filter-item.active {
    background: #ff6b00;
    color: #fff;
}

/* 评价列表 */
.talks-list {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.talks-header {
    display: grid;
    grid-template-columns: 100px 1fr 250px 120px 150px;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 2px solid #eee;
    font-weight: bold;
    color: #333;
    font-size: 14px;
}

.talks-item {
    display: grid;
    grid-template-columns: 100px 1fr 250px 120px 150px;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px dashed #eee;
    align-items: center;
}

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

.talks-type {
    font-size: 13px;
}

.talks-type.excellent {
    color: #ee1e2d;
}

.talks-type.good {
    color: #ee7fb5;
}

.talks-type.neutral {
    color: #ee7818;
}

.talks-type.bad {
    color: #a87aee;
}

.talks-type.terrible {
    color: #3077ff;
}

.talks-content {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.talks-content .time {
    color: #999;
    font-size: 12px;
    margin-top: 5px;
}

.talks-goods {
    font-size: 13px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.talks-price {
    font-size: 14px;
    color: #ff6b00;
    font-weight: bold;
}

.talks-user {
    font-size: 13px;
    color: #666;
}

/* 分页 */
.talks-pagination {
    margin-top: 30px;
    text-align: center;
}

.talks-pagination a,
.talks-pagination span {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 3px;
    border: 1px solid #ddd;
    color: #666;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
}

.talks-pagination a:hover {
    background: #ff6b00;
    color: #fff;
    border-color: #ff6b00;
}

.talks-pagination .current {
    background: #ff6b00;
    color: #fff;
    border-color: #ff6b00;
}

/* 响应式 */
@media (max-width: 992px) {
    .talks-header,
    .talks-item {
        grid-template-columns: 80px 1fr 150px;
    }
    
    .talks-header > :nth-child(4),
    .talks-header > :nth-child(5),
    .talks-item > :nth-child(4),
    .talks-item > :nth-child(5) {
        display: none;
    }
}
