/* 商标交易大厅样式 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.filter-container {
    background: #fff;
    margin-top: 20px;
    margin-bottom: 16px;
    border: 1px solid #e8e8e8;
}

.filter-row {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px dashed #e8e8e8;
	text-align: center;
}

.filter-row:last-child {
    border-bottom: none;
}

.filter-label {
    width: 100px;
    min-width: 100px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 28px;
}

.filter-options {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.filter-option {
    display: inline-block;
    padding: 4px 12px;
    font-size: 13px;
    color: #666;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.2s;
    line-height: 1.5;
}

.filter-option:hover {
color: #1664ff;
    font-weight: 500;
    background: #eff6ff;
	
}

.filter-option.active {
	color: #1664ff;
    font-weight: 500;
    background: #eff6ff;
    font-weight: 600;
    font-size: 13px;
}

.filter-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    padding: 16px 20px;
}

.protection-banner {
    background: #fff7e6;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.protection-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.protection-icon {
    font-size: 48px;
}

.protection-title {
    font-size: 32px;
    font-weight: 800;
    color: #333;
}

.protection-subtitle {
    font-size: 48px;
    font-weight: 800;
    color: #ff6b00;
}

.protection-right {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.protection-text {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.advanced-filter {
    background: #f5f5f5;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.filter-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.protection-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0px 16px;
    border: 2px solid #ff6b00;
    background: #fff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: #ff6b00;
	    height: 30px;
}

.protection-checkbox input {
    width: 16px;
    height: 16px;
    accent-color: #ff6b00;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-select {
    padding: 0px 16px;
    border: 1px solid #d9d9d9;
    border-radius: 0;
    font-size: 13px;
    color: #666;
    background: #fff;
    cursor: pointer;
    min-width: 120px;
    outline: none;
    height: 30px;
}

.filter-input {
    padding: 0px 16px;
    border: 1px solid #d9d9d9;
    border-radius: 0;
    font-size: 13px;
    color: #333;
    background: #fff;
    outline: none;
    width: 120px;
    height: 30px;
}

.price-separator {
    color: #666;
    font-size: 14px;
}

.filter-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-item {
    font-size: 15px;
    color: #666;
}

.stat-item strong {
    font-size: 24px;
    color: #333;
    font-weight: 700;
}

.stat-separator {
    color: #999;
    font-size: 18px;
}

/* 搜索框 */
.search-bar {
    background: #fff;
    padding: 16px 20px;
    border: 1px solid #e8e8e8;
    border-top: none;
    margin-bottom: 20px;
}

.search-bar form {
    display: flex;
    gap: 12px;
    align-items: center;
}

.search-input {
    flex: 1;
    max-width: 400px;
    padding: 10px 16px;
    border: 1px solid #d9d9d9;
    border-radius: 0;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.search-input:focus {
    border-color: #1664ff;
}

.search-button {
    padding: 10px 32px;
    background: linear-gradient(135deg, #1664ff 0%, #3a7fff 100%);
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.search-button:hover {
    box-shadow: 0 4px 12px rgba(22, 100, 255, 0.35);
}

.brand-grid-section {
    background: #fff;
    padding: 0;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: #e8e8e8;
}

.brand-grid-card {
    background: #fff;
    padding: 20px 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.2s;
}

.brand-grid-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    z-index: 1;
}

.protection-tag,
.hot-tag {
    position: absolute;
    top: 20px;
    left: 16px;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    color: #fff;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.hot-tag {
    left: 70px;
    background: #ff4d4f;
}

.brand-grid-image {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 16px;
}

.brand-grid-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.brand-name-short {
    font-size: 48px;
    font-weight: 700;
    color: #999;
}

.brand-grid-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    line-height: 1.5;
    margin-bottom: 12px;
    min-height: 54px;
}

.brand-grid-scope {
    font-size: 12px;
    color: #999;
    margin-bottom: 16px;
    line-height: 1.6;
    padding: 8px 12px;
    background: #fff7ed;
    color: #ff6b00;
}

.brand-grid-price {
    font-size: 20px;
    font-weight: 800;
    color: #ff6b00;
    margin-bottom: 16px;
}

.btn-detail {
    display: block;
    width: 100%;
    padding: 6px 0;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.2s;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    color: #fff;
    border: none;
}

.btn-detail:hover {
    box-shadow: 0 4px 12px rgba(255,107,0,0.35);
    transform: translateY(-1px);
}

.pagination {
    padding: 40px 0;
}

.brand-detail {
    background: #fff;
    padding: 32px;
    margin-top: 24px;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.brand-main {
    flex: 1;
    display: flex;
    gap: 40px;
    min-width: 0;
}

.brand-left {
    width: 300px;
    flex-shrink: 0;
}

.brand-image-wrapper {
    width: 100%;
    height: 300px;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.brand-main-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-name-large {
    font-size: 72px;
    font-weight: 800;
    color: #999;
}

.brand-view-info {
    background: #f9fafb;
    padding: 20px;
}

.view-title {
    font-size: 14px;
    color: #999;
    margin-bottom: 12px;
}

.view-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.view-item {
    font-size: 13px;
    color: #666;
}

.brand-right {
    flex: 1;
    min-width: 0;
}

.brand-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    color: #fff;
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.brand-title {
    font-size: 36px;
    font-weight: 800;
    color: #333;
    margin-bottom: 24px;
    line-height: 1.4;
}

.brand-price-section {
    background: #f9fafb;
    padding: 24px;
    margin-bottom: 20px;
}

.price-breakdown {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #ff6b00;
}

.price-label {
    font-size: 14px;
    color: #999;
    margin-top: 4px;
}

.price-divider {
    font-size: 24px;
    color: #666;
    font-weight: 600;
}

.brand-tip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #fff7e6;
    margin-bottom: 20px;
    border-top: 1px solid #fed7aa;
    border-bottom: 1px solid #fed7aa;
}

.tip-icon {
    font-size: 18px;
}

.tip-text {
    font-size: 14px;
    color: #666;
}

.tip-link {
    color: #ff6b00;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-left: auto;
}

.brand-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.brand-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-meta-item.full-width {
    grid-column: span 2;
}

.meta-label {
    font-size: 15px;
    color: #999;
}

.meta-value {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.goods-items-section {
    margin-bottom: 24px;
}

.goods-label {
    font-size: 15px;
    color: #999;
    margin-bottom: 12px;
    display: inline-block;
}

.goods-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.goods-item {
    padding: 8px 16px;
    border: 2px solid #ff6b00;
    color: #ff6b00;
    font-size: 14px;
}

.services-section {
    margin-bottom: 32px;
}

.services-label {
    font-size: 15px;
    color: #999;
    margin-bottom: 12px;
}

.services-list {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.service-item {
    padding: 12px 20px;
    border: 1px solid #d9d9d9;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.service-name {
    font-size: 15px;
    color: #333;
}

.service-price {
    font-size: 15px;
    color: #333;
    font-weight: 600;
}

.action-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.action-btn {
    flex: 1;
    padding: 16px 40px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 0;
}

.buy-btn {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    color: #fff;
    border: none;
}

.favorite-btn {
    background: #fff;
    color: #ff6b00;
    border: 2px solid #ff6b00;
}

.brand-guarantee {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 24px 0;
    border-top: 1px solid #e8e8e8;
    justify-content: center;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #999;
}

.guarantee-icon {
    font-size: 24px;
}

.brand-side {
    width: 280px;
    flex-shrink: 0;
}

.agent-card {
    background: #fff;
    padding: 24px;
    text-align: center;
    border: 1px solid #e8e8e8;
    margin-bottom: 20px;
}

.agent-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #f5f5f5;
    margin: 0 auto 16px;
}

.agent-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.agent-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.agent-contact-btn {
    width: 100%;
    padding: 12px 0;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 16px;
}

.agent-stat {
    font-size: 14px;
    color: #666;
}

.qrcode-card {
    background: #fff;
    padding: 24px;
    text-align: center;
    border: 1px solid #e8e8e8;
}

.qrcode-wrapper {
    width: 200px;
    height: 200px;
    background: #f5f5f5;
    margin: 0 auto 16px;
}

.qrcode-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qrcode-text {
    font-size: 14px;
    color: #666;
}
