a { text-decoration: none; }
.banner { width: 100%; height: 360px; position: relative; }
.crumbs { font-size: 14px; position: absolute; width: 100%; bottom: 10px; color: white; }
.crumbs a { color: white; text-decoration: none; }
.banner > img { width: 1920px; }

/* Bar Tabs */
.bar { height: 64px; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05); background: #fff; margin-bottom: 0; position: relative; z-index: 10; }
.bar ul { list-style: none; display: flex; height: 100%; margin: 0 auto; padding: 0; }
.bar ul li { height: 100%; margin-right: 40px; position: relative; cursor: pointer; }
.bar ul li a { display: block; line-height: 64px; font-size: 16px; color: #666; font-weight: 500; transition: color 0.3s; }
.bar ul .bar-active a { color: #3B83F2; font-weight: bold; }
.bar ul .bar-active::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background-color: #3B83F2; }

/* Main Content Area */
.supplier-list { background-color: #F5F7FA; padding: 40px 0; min-height: 600px; }

/* Description */
.page-description { font-size: 14px; color: #666; line-height: 24px; margin-bottom: 30px; text-align: justify; }

/* Section Header */
.section-header { margin-bottom: 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 15px; }
.section-title { font-size: 20px; font-weight: bold; color: #333; padding-left: 12px; border-left: 4px solid #3B83F2; line-height: 1; }

/* 搜索框样式 */
.supplier-search {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.supplier-search .search-item {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.supplier-search input[type="text"],
.supplier-search select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    height: 36px;
    box-sizing: border-box;
    width: 180px;
}

.supplier-search input[type="text"]:focus,
.supplier-search select:focus {
    border-color: #3B83F2;
    box-shadow: 0 0 0 2px rgba(59, 131, 242, 0.2);
}

.supplier-search .btn-search,
.supplier-search .btn-reset {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    height: 36px;
    line-height: 20px;
    transition: all 0.3s;
}

.supplier-search .btn-search {
    background-color: #3B83F2;
    color: white;
}

.supplier-search .btn-search:hover {
    background-color: #2a6fd8;
}

.supplier-search .btn-reset {
    background-color: #ffffff;
    color: #3B83F2;
    border: 1px solid #3B83F2;
}

.supplier-search .btn-reset:hover {
    background-color: #f0f7ff;
}

.supplier-search label {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* 星级评分样式 */
.star-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.star-rating .star {
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
    user-select: none;
}

.star-rating .star:hover,
.star-rating .star.active {
    color: #FFB800;
    transform: scale(1.1);
}

.star-rating .star:hover {
    transform: scale(1.15);
}


/* Grid Layout */
.list-grid { margin: 0 -10px; overflow: hidden; }
.list-item {
    float: left;
    width: calc(50% - 20px);
    margin: 10px;
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    transition: all 0.3s;
    height: 140px;
    position: relative;
}
.list-item:hover { box-shadow: 0 8px 20px rgba(59, 131, 242, 0.1); transform: translateY(-2px); }

/* Card Content */
.list-item > img { width: 90px; height: 90px; border-radius: 4px; object-fit: contain; border: 1px solid #f0f0f0; flex-shrink: 0; background: #fff; }

.list-item-info { flex: 1; margin-left: 20px; margin-right: 20px; overflow: hidden; height: 90px; display: flex; flex-direction: column; justify-content: space-between; }
.list-item-info-head h3 { font-size: 18px; color: #333; margin: 0; font-weight: bold; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.list-item-desc { font-size: 13px; color: #888; line-height: 20px; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; max-height: 40px; margin-top: 8px; }

/* Arrow Button */
.list-item-op { flex-shrink: 0; }
.arrow-btn {
    width: 36px; height: 36px; border-radius: 50%; border: 1px solid #EEEEEE; background: #fff; cursor: pointer; position: relative; padding: 0; outline: none; transition: all 0.3s;
}
.arrow-btn::after {
    content: ''; position: absolute; top: 50%; left: 45%; width: 7px; height: 7px;
    border-top: 2px solid #ccc; border-right: 2px solid #ccc; transform: translate(-50%, -50%) rotate(45deg); transition: border-color 0.3s;
}
.arrow-btn:hover { border-color: #3B83F2; background: #F0F6FF; }
.arrow-btn:hover::after { border-color: #3B83F2; }

/* Clearfix for grid if needed, though overflow:hidden on list-grid handles it usually. But if pagination is below, we need to ensure flow */
.list-grid::after { content: ""; display: table; clear: both; }
