.search-banner {
    height: 260px;
    margin-bottom: 10px;
    background: linear-gradient(to bottom, 
        color-mix(in srgb, var(--color-primary, #3369E3) 10%, transparent),
        color-mix(in srgb, var(--color-primary, #3369E3) 20%, transparent));
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
}

/* 兼容不支持color-mix的浏览器 */
@supports not (background: color-mix(in srgb, red, blue)) {
    .search-banner {
        background: linear-gradient(to bottom, 
            rgba(51, 105, 227, 0.1), 
            rgba(51, 105, 227, 0.2));
    }
}

.search-banner > * {
    position: relative;
    z-index: 1;
}

.search-banner .name {
    padding: 52px 0 40px;
    font-size: 36px;
    color: var(--color-primary, #3369E3)
}

.search-banner .classify-tabs {
    width: 758px;
    margin: 0 auto;
    padding-left: 30px
}

.search-banner .classify-tabs .item {
    display: inline-block;
    width: 98px;
    height: 28px;
    line-height: 28px;
    border-radius: 6px 6px 0 0;
    font-size: 12px;
    color: var(--color-primary, #3369E3);
    text-align: center;
    cursor: pointer
}

.search-banner .classify-tabs .item.active {
    background: linear-gradient(90deg, #3369E3, #3c7ee5);
    color: #fff !important;
}

.search-banner .classify-form-wrapper {
    width: 758px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    max-width: 100%;
    box-sizing: border-box;
}

.search-banner .classify-form {
    width: 758px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
}

.search-banner .classify-form:not(.classify-form-element) {
    height: 48px;
    border: 2px solid #909399;
    border-radius: 30px;
    background: #fff;
    overflow: hidden;
}

.search-banner .classify-form .search-input {
    width: 642px;
    padding: 0 30px 0 15px;
    line-height: 44px;
}

.search-banner .classify-form .search-input .el-input__inner {
    border: none;
}

.search-banner .classify-form .search-btn {
    width: 105px;
    height: 45px;
    background: linear-gradient(90deg, #3369E3, #3c7ee5);
    border: none;
    border-radius: 0;
    color: #fff;
}

.search-banner .classify-form .el-button.search-btn:hover {
    color: #fff !important;
}

.search-banner .classify-form .search-btn .icons {
    margin-right: 10px;
    font-size: 18px;
}

/* Element 搜索框（classes2）：输入框+按钮并排，不错位，按钮始终可见 */
.search-banner .classify-form.classify-form-element {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: 520px;
    height: auto;
    min-height: 44px;
    margin: 0 auto;
    border: 2px solid #dcdfe6;
    border-radius: 22px;
    background: #fff;
    overflow: visible;
    box-sizing: border-box;
}

.search-banner .classify-form-element .classify-form-input,
.search-banner .classify-form-element .el-input.classify-form-input {
    min-width: 0;
    width: 100%;
}

.search-banner .classify-form-element .classify-form-input .el-input__inner {
    height: 40px;
    line-height: 40px;
    border: none;
    border-radius: 0;
    background: transparent;
}

.search-banner .classify-form-element .classify-form-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 90px;
    height: 40px;
    margin: 0;
    padding: 0 24px;
    border: none;
    border-radius: 0 20px 20px 0;
    font-size: 15px;
    font-family: inherit;
    cursor: pointer;
    background: var(--color-primary, #3369E3) !important;
    color: #fff !important;
    visibility: visible;
    opacity: 1;
}

.search-banner .classify-form-element .classify-form-btn .el-icon-search {
    font-size: 16px;
}

.search-banner .classify-form-element .classify-form-btn:hover {
    background: var(--color-primary, #3c7ee5) !important;
    color: #fff !important;
}

.search-banner .selector-button {
    height: 48px;
    padding: 0 20px;
    border-radius: 30px;
    white-space: nowrap;
    flex-shrink: 0;
}

.colligate ul li {
    transition: all .3s
}

.colligate ul li:hover {
    background: rgba(51, 105, 227, .08);
    color: #3369E3
}

.colligate ul li:hover .cls-info {
    color: #3369E3
}

.colligate ul li:last-child {
    border-bottom: none
}

.colligate ul li>a {
    display: block;
    padding: 15px 30px;
    border-bottom: 1px dashed #e0e3e8
}

.colligate ul li .cls-name {
    float: left;
    padding-left: 10px;
    margin-top: 2px;
    border-left: 5px solid #008A64;
    font-size: 16px
}

.colligate ul li .cls-info {
    line-height: 26px;
    margin-left: 220px;
    color: #9b9b9b;
    transition: all .3s
}

.classify-detail .result-cls {
    padding: 0 10px 10px 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid #909399;
    box-sizing: border-box;
}

.classify-detail .result-cls label {
    display: block;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 16px;
    color: #303133;
}

/* 商标分类列表：一行9类，五行，全宽 */
.classify-detail .result-cls ul {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 10px 14px;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}
.classify-detail .result-cls ul li {
    display: block;
    width: 100%;
    min-width: 0;
    height: 40px;
    line-height: 40px;
    margin: 0;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #f5f7fa;
    color: #606266;
}
.classify-detail .result-cls ul li > a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0 8px;
    font-size: 14px;
    color: inherit;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.classify-detail .result-cls ul li:hover,
.classify-detail .result-cls ul li.active {
    background: var(--color-primary, #3369E3);
    color: #fff;
}
.classify-detail .result-cls ul li.active a,
.classify-detail .result-cls ul li:hover a {
    color: #fff;
}

/* 商标分类卡片网格容器 */
.classify-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 15px;
    width: 100%;
}

/* 商标分类卡片 */
.classify-card {
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.classify-card .el-card__body {
    padding: 12px 15px;
    text-align: center;
}

.classify-card-content {
    font-size: 14px;
    color: #606266;
    line-height: 1.5;
    word-break: break-all;
}

.classify-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.classify-card.active {
    background: #3369E3 !important;
    border-color: #3369E3 !important;
}

.classify-card.active .classify-card-content {
    color: #fff !important;
}

.classify-card.active .el-card__body {
    background: #3369E3;
}

.classify-card.kw-found-cls:not(.active) .classify-card-content {
    color: #909399;
}

.classify-card.active.kw-found-cls .classify-card-content {
    color: #fff !important;
}

/* 响应式设计 */
@media (max-width: 1440px) {
    .classify-cards-wrapper {
        grid-template-columns: repeat(9, 1fr);
        gap: 12px;
    }
}

@media (max-width: 1200px) {
    .classify-cards-wrapper {
        grid-template-columns: repeat(6, 1fr);
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .classify-detail .result-cls {
        padding: 0 20px 20px 20px;
    }
    
    .classify-detail .result-cls ul {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px 10px;
    }
    .classify-detail .result-cls ul li {
        height: 36px;
        line-height: 36px;
        font-size: 13px;
    }
    
    .classify-cards-wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .classify-card .el-card__body {
        padding: 10px 8px;
    }
    
    .classify-card-content {
        font-size: 12px;
    }
}

.classify-detail .result-detail {
    position: relative;
    overflow: visible;
}

.classify-detail .result-detail .group-name {
    width: 315px;
    border: 1px solid #ebeef5;
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
    align-self: flex-start;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    background: #fff;
    z-index: 10;
    float: left;
}

.classify-detail .result-detail .group-name .name {
    line-height: 24px;
    padding: 12px 10px;
    background: #f8f8f8;
    border-bottom: 1px solid #ebeef5;
    color: #909399;
    margin-bottom: 12px;
}

.classify-detail .result-detail .group-name li {
    line-height: 140%;
    padding: 0 10px 12px 20px;
    text-align: justify;
    position: relative;
    cursor: pointer
}

.classify-detail .result-detail .group-name li.active,
.classify-detail .result-detail .group-name li.active a {
    color: #3369E3; font-weight: bold;
}

.classify-detail .result-detail .group-name li.active:before {
    content: " ";
    position: absolute;
    top: 5px;
    left: 9px;
    width: 0;
    height: 0;
    border-left: 6px solid #3369E3;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent
}

.classify-detail .result-detail .group-name li:hover {
    color: #3369E3
}

.classify-detail .result-detail .group-detail {
    width: 1035px;
    margin-left: -1px;
}

.classify-detail.result-wrapper .result-detail .group-name {
    width: 100%;
    border: none
}

.classify-detail.result-wrapper .result-detail .group-name .name {
    border-top: 1px solid #ebeef5
}

.classify-detail.result-wrapper .result-detail .group-name li {
    width: 20%;
    min-height: 49px;
    float: left;
    border-left: 1px solid #ebeef5;
    border-bottom: 1px solid #ebeef5
}

.classify-detail.result-wrapper .result-detail .group-name li:last-child {
    border-right: 1px solid #ebeef5
}

/* 商标小类选择器 classes2：1440px 容器 */
.classify.container {
    max-width: 1440px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* 商品/服务卡片网格布局 - 固定一行四列，列宽自适应；align-items: start 避免卡片被拉伸导致注释被裁切 */
.goods-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
    width: 100%;
    align-items: start;
}

.goods-card {
    min-width: 0;
    background: #fff;
    border: 2px solid var(--color-primary, #3369E3);
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.25s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    height: auto;
    min-height: auto;
    color: var(--color-primary, #3369E3);
    overflow: visible;
}

.goods-card:hover {
    box-shadow: 0 4px 12px rgba(51, 105, 227, 0.2);
    border-color: var(--color-primary, #3369E3);
    transform: translateY(-2px);
}

.goods-card.goods-card-selected {
    background: rgba(51, 105, 227, 0.2) !important;
    border-color: var(--color-primary, #3369E3) !important;
    color: var(--color-primary, #3369E3) !important;
}

.goods-card.goods-card-selected .goods-name,
.goods-card.goods-card-selected .goods-code {
    color: var(--color-primary, #3369E3) !important;
}

.goods-card.goods-card-selected .goods-index {
    background: var(--color-primary, #3369E3);
    color: #fff;
}

.goods-card.goods-card-selected .goods-card-comments,
.goods-card.goods-card-selected .goods-comment-item {
    color: #606266 !important;
    border-top-color: rgba(51, 105, 227, 0.3);
}

.goods-card.goods-card-selected .cls-keyword {
    color: var(--color-primary, #3369E3) !important;
}

.goods-card-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    line-height: 1.6;
    min-height: auto;
    flex-wrap: wrap;
}

.goods-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    background: #3369E3;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 2px;
}

.goods-card .goods-name {
    color: var(--color-primary, #3369E3);
    word-wrap: break-word;
    word-break: break-all;
    text-align: left;
    flex: 1;
    min-width: 0;
    min-height: auto;
}

.goods-card .goods-code {
    color: var(--color-primary, #3369E3);
    font-size: 12px;
    flex-shrink: 0;
}

.goods-card-comments {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #ebeef5;
    font-size: 12px;
    color: #606266;
    line-height: 1.6;
    width: 100%;
    overflow: visible;
    word-wrap: break-word;
    word-break: break-word;
}

.goods-comment-item {
    margin-bottom: 5px;
    overflow: visible;
}

.goods-comment-item:last-child {
    margin-bottom: 0;
}

.goods-type {
    color: #909399;
    font-weight: bold;
    flex-shrink: 0;
}

/* 类似群组折叠卡片样式 */
.sub-groups-collapse {
    border: none;
    background: transparent;
}

.sub-groups-collapse .el-collapse-item {
    margin-bottom: 15px;
    border: 1px solid #ebeef5;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.sub-groups-collapse .el-collapse-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sub-groups-collapse .el-collapse-item__header {
    padding: 15px 20px;
    background: #fafafa;
    border-bottom: 1px solid #ebeef5;
    cursor: pointer;
    transition: background 0.3s ease;
}

.sub-groups-collapse .el-collapse-item__header:hover {
    background: #f5f5f5;
}

.sub-groups-collapse .el-collapse-item__header.is-active {
    border-bottom-color: #ebeef5;
}

.sub-groups-collapse .el-collapse-item__wrap {
    border: none;
    background: #fff;
}

.sub-groups-collapse .el-collapse-item__content {
    padding: 20px;
    background: #fff;
}

.sub-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0;
}

.sub-group-title {
    font-size: 16px;
    font-weight: bold;
    color: #303133;
    margin: 0;
    flex: 1;
}

.sub-group-count {
    font-size: 14px;
    color: #909399;
    background: #f5f7fa;
    padding: 4px 12px;
    border-radius: 12px;
    margin-left: 15px;
}

.cnipa-items-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #909399;
}

.cnipa-card {
    border-color: #f0f0f0;
    background: #fafafa;
}

.cnipa-card:hover {
    border-color: #909399;
}

/* 响应式设计 */
@media (max-width: 1440px) {
    .classify.container {
        max-width: 100%;
        padding: 0 24px;
    }
}

@media (max-width: 1200px) {
    .goods-cards-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px;
    }
    
    .goods-card {
        padding: 10px 12px;
    }
    
    .goods-card-content {
        font-size: 13px;
        gap: 6px;
    }
    
    .classify-detail .result-detail .group-name {
        width: 280px;
    }
    
    .classify-detail .result-detail .group-detail {
        width: calc(100% - 280px);
    }
}

@media (max-width: 768px) {
    .goods-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    
    .goods-card {
        padding: 10px;
    }
    
    .goods-card-content {
        font-size: 12px;
        gap: 5px;
    }
    
    .sub-groups-collapse .el-collapse-item__header {
        padding: 12px 15px;
    }
    
    .sub-group-title {
        font-size: 14px;
    }
    
    .sub-group-count {
        font-size: 12px;
        padding: 3px 8px;
    }
    
    .classify-detail .result-detail {
        flex-direction: column;
    }
    
    .classify-detail .result-detail .group-name {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .classify-detail .result-detail .group-detail {
        width: 100%;
        padding: 0;
    }
}

/* å›¾ç´ æŸ¥è¯¢ */
.element .first-list>li {
    padding: 20px 40px;
    border-bottom: 1px dashed #e0e3e8
}

.element .first-list>li:last-child {
    border-bottom: none
}

.element .second-list {
    /* display: none; */
    margin-left: 80px
}

.element .second-list>li {
    padding: 14px 40px
}

.element .second-list .iconfont {
    font-size: 12px
}

.element .third-list {
    /* display: none; */
    margin-left: 80px
}

.element .third-list>li {
    padding: 14px 40px
}

.element .iconfont {
    color: #9b9b9b;
    margin-right: 6px
}


.industry .item {
    width: 100%;
    margin-top: 20px;
    border: 1px solid #e0e3e8
}

.industry .item .item-icon {
    float: left;
    width: 200px;
    line-height: 98px;
    font-size: 18px;
    text-align: center
}

.industry .item .item-icon img {
    display: inline-block;
    margin: -4px 6px 0 0;
    vertical-align: middle
}

.industry .item .item-icon span {
    display: inline-block;
    width: 80px
}

.industry .item .item-txt {
    padding: 14px 20px 0;
    margin-left: 200px;
    border-left: 1px solid #e0e3e8;
    font-size: 16px
}

.industry .item .item-txt .trd-txt {
    float: left;
    width: 90px
}

.industry .item .item-txt .trd-item {
    margin-left: 90px
}

.industry .item .item-txt .trd-item a {
    display: inline-block;
    width: 98px;
    height: 30px;
    line-height: 30px;
    margin: 0 0 12px 6px;
    border: 1px solid #e0e3e8;
    border-radius: 4px;
    font-size: 14px;
    text-align: center
}

.industry .item .item-txt .trd-item a:hover {
    background: #3369E3;
    border-color: #3369E3;
    color: #fff
}

.industry .industry-note {
    margin: 20px 0;
    line-height: 28px
}

.industry .industry-note i {
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: -4px 4px 0 0;
    border-radius: 50%;
    vertical-align: middle
}

.industry .industry-note i.bg-green {
    background: #18c385
}

.industry .industry-note i.bg-orange {
    background: #909399
}
.whole-wrapper *{
    box-sizing: border-box;
}
.whole-wrapper {
    margin-bottom: 20px;
}

.tm-description {
    width: 100%;
    padding-bottom: 20px;
    border-bottom: 1px solid #909399;
    margin-bottom: 30px;
    font-size: 12px;
}

.tm-description .description {
    width: 100%;
    max-width: 100%;
    text-indent: 32px;
    margin: 0 auto;
    padding: 0 50px;
    box-sizing: border-box;
    font-weight: 550;
}
.tm-description > h3 {text-align: center; font-weight: bold; margin-top: 30px}
.tm-description > .comments {
    width: 100%;
    max-width: 100%;
    margin: auto;
    padding: 0 50px;
    box-sizing: border-box;
    line-height: 160%;
}
.tm-description > .comments h4 {
    font-weight: bold;
}
/* 注释卡片容器 */
.comments-cards-wrapper {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
/* 注释卡片 */
.comments-card {
    flex: 1;
    width: 50%;
    padding: 20px;
    background: #fff;
    border: 1px solid #ebeef5;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.comments-card h4 {
    margin-bottom: 15px;
    color: #303133;
    font-size: 16px;
}
.comments-card p {
    margin-bottom: 10px;
    line-height: 1.8;
    color: #606266;
}
.comments-includes {
    border-left: 3px solid #67C23A;
}
.comments-excludes {
    border-left: 3px solid #F56C6C;
}
/* 响应式设计 */
@media (max-width: 768px) {
    .comments-cards-wrapper {
        flex-direction: column;
    }
    .comments-card {
        width: 100%;
    }
}
.tm-group-goods {line-height: 140%}
.group-comments {
    margin-bottom: 20px;
    padding: 15px 20px;
    border: 1px dashed #ded8d8;
    background: #909399;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 800;
}
.sub-group-comments {
    margin-top: 15px;
    margin-bottom: 10px;
    padding: 10px 15px;
    border: 1px dashed #ebeef5;
    background: #f8f8f8;
    font-size: 12px;

}

.comments-level-2 {padding-left: 28px}
.comments-level-3 {padding-left: 40px}

.sub-group-comments .comments-level-2{
    padding-left: 24px
}
.cls-keyword {color: red !important; font-weight: bold; font-style: italic}

.classify-detail .result-cls ul li.kw-found-cls a{color: #909399}
.classify-detail .result-cls ul li.active.kw-found-cls a,
.classify-detail .result-cls ul li.kw-found-cls:hover a{color: #fff !important;}
.kw-found-group{color:#909399 }
.kw-found-group:after{
    content: ' ';
    width: 6px; height: 6px;
    background-color: #909399;
    border-radius: 3px;
    display: inline-block;
    margin-left: 3px;
}

.cart {
    width: 60px; height: 60px; position: fixed; top:80%; margin-left: 1165px ;
    border: 1px #fff solid; border-radius: 30px; line-height: 60px; text-align: center; cursor: pointer;

    background: #FFFFFF;
    box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.2);
    font-weight: bold;
}
a.item-selected {color:#3369E3;font-weight: bold;}
.cart .el-badge {line-height: 100%}
.cart  i {font-size: 24px; line-height: 100%}


.selectedItems  h4 {font-size: 16px; font-weight: bold; margin-bottom: 5px;}
.selectedItems  ul {margin-bottom: 20px;}
.selectedItems  ul li {float: left; color: #fff; background-color:  #3c7ee5; padding: 3px 8px; border-radius: 5px; margin-right: 8px; margin-bottom: 5px; cursor: pointer}
.selectedItems  ul li:hover{text-decoration: line-through; background-color: #999}

.selectedItems  h4 .copy-action {font-size: 14px; font-weight: normal; cursor: pointer}

.el-badge__content.is-fixed {top:-15px; right:0}
