.container {
    width: 1200px;
    margin: 22px auto;
    padding-top: 74px;
    transform-origin: top;
    transition: transform 0.3s ease-in-out;
    /*padding-left: 0;*/
}

.logo {
    width: 15%;
}

.brandName {
    display: flex;
    text-align: center;
    /*margin-bottom: 10px;*/
    align-items: center;
    justify-content: center;
}

.brandName .brandNameLeft {
    text-align: left;
    display: flex;
    white-space: nowrap;
    max-width: 100%;
    align-items: center;
}
.brandName .brandNameRight {
    text-align: left;
    padding: 20px;
    /*width: 150px;*/
}

.brandName .brandNameLeft a {
    color: #3366CC;
    font-size: 18px;
    /*font-family: '宋体';*/
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
}

.brandName .brandNameLeft a:hover {
    color: #3366CC;
    text-decoration: none;
}

.brandName .brandNameRight img {
    cursor: pointer;
}

.brandNameRight .off {
    height: 22px;
    width: 22px;
}

.brandNameRight .open {
    width: 22px;
    height: 22px;
}

.left-menu, .right-content {
    /*padding: 0 25px;*/
    width: 1120px;
    background: #fff;
    border: 1px solid #e3e3e3;
    margin-bottom: 6px;
}

.left-menu {
    display: flex;
    height: 90px;
    width: 1120px;
}

.right-content {
    min-height: 616px;
    height: auto;
}

.menu {
    width: 1120px;
    align-items: center;
    display: flex;
    background-color: #fff;
    border-left: 1px solid #e3e3e3;
    border-top: 1px solid #e3e3e3;
    border-right: 1px solid #e3e3e3;
    padding: 0 25px;
}

.menu-item {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 15px 25px 15px 0;
}

.menu-item-logo {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    background-size: cover;
    margin-bottom: 10px
}

.menu-item-text {
    font-size: 16px;
    transition: color 0.3s;
    /*margin-bottom: 10px;*/
    /*font-family: "宋体";*/
    font-weight: bolder;
}

.menu-item-text.selected {
    /*color: #3366cc;*/
    color: red;
    font-size: 17px;
}

/*.menu-item-text:hover {*/
/*    color: red;*/
/*}*/

/* 产品目录 */
.product-list {
    min-height: 616px;
    height: auto;
    overflow: hidden;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 10px;
}
.product-list-item {
    width: 90%;
}
.product-list .product-list-classify {
    display: flex;
    flex-direction: column; /* 使子元素垂直排列 */
    justify-content: flex-start;
}

.product-list .product-list-classify {
    display: flex;
    flex-direction: column; /* 使子元素垂直排列 */
    justify-content: flex-start;
}

.product-list .product-list-classify label {
    display: flex;
    align-items: center; /* 垂直居中对齐 */
    cursor: pointer;
    font-size: 12px;
    height: 20px;
}

.product-list .product-list-classify input[type="radio"] {
    appearance: none; /* 移除默认样式 */
    width: 16px; /* 设置宽度 */
    height: 16px; /* 设置高度 */
    background-color: transparent; /* 背景透明 */
    border: 1px solid #ccc; /* 边框颜色 */
    outline: none; /* 去掉焦点样式 */
    position: relative;
    z-index: 1;
    cursor: pointer;
    margin: 0; /* 与文本之间的间距 */
}

.product-list .product-list-classify input[type="radio"]::before {
    content: ''; /* 创建伪元素 */
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background-color: transparent; /* 初始背景透明 */
    border: none; /* 没有边框 */
    transition: background-color 0.3s ease; /* 过渡效果 */
    transform: translate(-50%, -50%);
}

.product-list .product-list-classify input[type="radio"]:checked::before {
    background-color: #3366cc; /* 选中时背景蓝色 */
}

.product-list .product-list-classify input[type="radio"]:checked::after {
    /*content: '✓'; !* 使用勾号符号 *!*/
    font-size: 10px; /* 勾号大小 */
    color: white; /* 勾号颜色 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.product-list .product-list-classify span {
    line-height: 20px; /* 与选框高度一致 */
    margin-left: 5px; /* 文本和单选按钮之间的间距 */
}

.product-list .product-list-classify .product-list-classify-car {
    margin-left: 5px;
    cursor: pointer;
}

.product-list .product-list-classify .hidden {
    display: none;
}

.product-list .product-level {
    float: left;
    width: 30%;
    display: block;
    align-items: stretch
}

.product-list .product-level li {
    display: block;
    padding-left: 10px;
}

.product-list .product-level li a {
    line-height: 16px;
    padding: 10px 5px;
    text-align: left;
    font-size: 14px;
    display: block;
    font-weight: 700;
    color: rgb(51, 51, 51);
    text-decoration: none;
}

/*第一个元素的样式*/
.right-content .product-list .product-list-item ul:last-child {
    border-left: 1px solid #e3e3e3;
}
/*中间元素的样式*/
.right-content .product-list .product-list-item ul:not(:first-child):not(:last-child) {
    border-left: 1px solid #e3e3e3;
}

.product-list .product-level-1 li.on a {
    background: #FFFFFF;
    color: red;
}

.product-list .product-level-2 li.on a {
    background: #FFFFFF;
    color: red;
}

.product-list .product-level-3 li.on a {
    color: red;
}

.brandDesc {
    height: 616px;
    overflow: hidden;
    display: flex;
    padding: 20px 0;
    overflow-y: auto;
    padding-right: 10px;
}
/* 自定义滚动条样式 */
.brandDesc::-webkit-scrollbar {
    width: 10px; /* 滚动条的宽度 */
}

.brandDesc::-webkit-scrollbar-track {
    background-color: #f1f1f1; /* 轨道背景颜色 */
}

.brandDesc::-webkit-scrollbar-thumb {
    background-color: #a6a6a6; /* 滑块颜色 */
    border-radius: 5px; /* 滑块圆角 */
}

/*.brandDesc::-webkit-scrollbar-thumb:hover {*/
/*    background-color: #888; !* 滑块悬停颜色 *!*/
/*}*/
/*.brandDesc.hide-scrollbar::-webkit-scrollbar {*/
/*    display: none; !* 隐藏滚动条 *!*/
/*}*/

.brandDesc p {
    /*font-size: 1.5rem;*/
    /*text-indent: 2em;*/
    /*color: #666666;*/
    /*letter-spacing: 1px;*/
    /*text-align: justify;*/

    text-indent: 2em;
    letter-spacing: 1px;
    padding: 0 5px;
    text-align: left;
    color: rgb(51, 51, 51);
    text-decoration: none;
    line-height: 25px;
    font-weight: 700;
}

.Encyclopedia-one {
    font-size: 20px;
    text-align: center;
    color: #3366CC;
    line-height: 74px;
}

.details-guige-left {
    width: 80%;
    float: left;
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.details-guige-left img {
    float: left;
    cursor: pointer;
    height: 40px;
}

.details-guige-left .details-guige-p {
    /*padding: 12px 0;*/
    line-height: 24px;
    color: #999;
    height: 100%;
    display: flex;
    align-items: center;
}

.details-guige-left .details-guige-p .book {
    color: #333;
    font-size: 15px;
}

.details-guige-right {
    float: right;
    width: 20%;
    padding: 10px 0;
}

.details-guige-right li {
    display: inline-block;
    width: 90px;
    text-align: center;
    cursor: pointer;
}

.details-guige-right li p {
    /*line-height: 28px;*/
}

/*选型文档*/
.article {
    padding-top: 20px;
}

.article_div {
    height: 580px;
    overflow-y: auto;
}

/* 自定义滚动条样式 */
.article_div::-webkit-scrollbar {
    width: 10px; /* 滚动条的宽度 */
}

.article_div::-webkit-scrollbar-track {
    background-color: #f1f1f1; /* 轨道背景颜色 */
}

.article_div::-webkit-scrollbar-thumb {
    background-color: #a6a6a6; /* 滑块颜色 */
    border-radius: 5px; /* 滑块圆角 */
}

.article_div::-webkit-scrollbar-thumb:hover {
    background-color: #888; /* 滑块悬停颜色 */
}

.article_div #product-info-div .details-guige-left {
    cursor: pointer;
}
.article_div #technical-file-div .details-guige-left {
    cursor: pointer;
}

/*样品申请*/
.sampleApply {
    padding-top: 20px;
}

.sample-apply {
    margin-bottom: 10px;
}

.miaoshu {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    line-height: 24px;
}

.sample-apply-manufacturer {
    font-size: 15px;
    color: #999;
    line-height: 22px;
    margin-left: 38px;
    margin-top: 15px;
}

.sample-apply-agent {
    height: auto;
    overflow: hidden;
    font-size: 15px;
    color: #999;
    line-height: 22px;
    margin-left: 38px;
}

/*联系方式*/
.contactWay {
    padding-top: 20px;
}

.contact-way {
    margin-bottom: 10px;
}

.contact-way-manufacturer {
    font-size: 15px;
    color: #999;
    line-height: 22px;
    margin-left: 38px;
    margin-top: 15px;
}

.contact-way-agent {
    height: auto;
    overflow: hidden;
    font-size: 15px;
    color: #999;
    line-height: 22px;
    margin-left: 38px;
}

/*交叉搜索*/
.intersectSearch {
    position: relative;
    align-items: center;
    /*padding-top: 10px;*/
}

.intersect-search-input {
    display: flex;
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
    position: relative;
}

.intersect-search {
    float: left;
    /*margin: 15px 0 0 0;*/
    border: 1px solid #3366cc;
    border-right: none;
    position: relative;
    display: flex;
    align-items: center; /* 垂直居中 */
}

.intersect-search input {
    width: 486px;
    line-height: 27px;
    border: none;
    padding: 4px 30px 4px 10px;
    outline: none;
}

.intersect-search .closeText {
    margin-right: 10px;
    position: absolute;
    left: 460px;
    top: 8px;
    cursor: pointer;
}

.intersect-search .cearch-botton {
    line-height: 38px;
    color: #fff;
    background: #3366cc;
    display: inline-block;
    padding: 0 40px;
    cursor: pointer;
}

.search-suggest {
    width: 488px;
    border-right: 1px solid #3366CC;
    border-bottom: 1px solid #3366CC;
    border-left: 1px solid #3366CC;
    display: none;
    line-height: 32px;
    background: #fff;
    padding: 0 10px;
    max-height: 260px;
    overflow: auto;
    position: absolute;
    top: 100%;
    z-index: 10;
    left: 0;
}

.search-suggest .history-search .closeText {
    margin-right: 10px;
    position: absolute;
    left: 460px;
    cursor: pointer;
}

/*历史记录*/
.history-search-div {
    display: flex;
    flex-wrap: wrap;
    max-height: 200px;
    overflow-y: auto;
    cursor: pointer;
}

/* 自定义滚动条样式 */
.history-search-div::-webkit-scrollbar {
    width: 10px; /* 滚动条的宽度 */
}

.history-search-div::-webkit-scrollbar-track {
    background-color: #f1f1f1; /* 轨道背景颜色 */
}

.history-search-div::-webkit-scrollbar-thumb {
    background-color: #a6a6a6; /* 滑块颜色 */
    border-radius: 5px; /* 滑块圆角 */
}

.history-search-div::-webkit-scrollbar-thumb:hover {
    background-color: #888; /* 滑块悬停颜色 */
}

.his-record {
    display: inline-flex;
    align-items: center;
    background-color: #f5f5f5;
    margin-right: 10px;
    margin-bottom: 10px;
    white-space: nowrap;
    border-radius: 5px;
    line-height: 1.5;
}

.his-record:last-child {
    margin-right: 0;
}

/*热门搜索*/
.hot-search-div {
    display: flex;
    flex-wrap: wrap;
    max-height: 200px;
    overflow-y: auto;
    cursor: pointer;
}

.hot-record {
    display: inline-flex;
    align-items: center;
    background-color: #f5f5f5;
    margin-right: 10px;
    margin-bottom: 10px;
    white-space: nowrap;
    border-radius: 5px;
    line-height: 1.5;
}

.hot-record:last-child {
    margin-right: 0;
}

/*搜索结果*/
.intersectSearch .intersect-search-result {
    padding-top: 10px;
    /*height: 400px;*/
    overflow-y: auto;
    /*width: 800px;*/
}

/* 自定义滚动条样式 */
.intersectSearch .intersect-search-result::-webkit-scrollbar {
    width: 10px; /* 滚动条的宽度 */
}

.intersectSearch .intersect-search-result::-webkit-scrollbar-track {
    background-color: #f1f1f1; /* 轨道背景颜色 */
}

.intersectSearch .intersect-search-result::-webkit-scrollbar-thumb {
    background-color: #a6a6a6; /* 滑块颜色 */
    border-radius: 5px; /* 滑块圆角 */
}

.intersectSearch .intersect-search-result::-webkit-scrollbar-thumb:hover {
    background-color: #888; /* 滑块悬停颜色 */
}

.intersectSearch .intersect-search-result .cross-search-result-num {
    display: flex;
    border-bottom: 1px solid #e3e3e3;
    font-weight: bold;
    padding-bottom: 10px;
}

.intersectSearch .intersect-search-result .cross-search-result-num p {
    padding-left: 5px;
    padding-right: 5px;
}

.intersectSearch .intersect-search-result .cross-search-result {
    padding: 8px 10px;
    cursor: pointer;
    border-bottom: 1px solid #e3e3e3;
    position: relative;
}

.intersectSearch .intersect-search-result .cross-search-result p {
    color: #999;
    width: calc(100% - 200px);
    max-height: 32px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.intersectSearch .intersect-search-result .cross-search-result p.bord {
    color: #3366CC;
    font-size: 16px;
    font-weight: bold;
    padding: 1px 1px 1px 0;
}

.intersectSearch .search-detail {
    /*padding-top: 10px;*/
    height: 100%;
    overflow-y: auto;
    width: 100%;
}

/* 自定义滚动条样式 */
.intersectSearch .search-detail::-webkit-scrollbar {
    width: 10px; /* 滚动条的宽度 */
}

.intersectSearch .search-detail::-webkit-scrollbar-track {
    background-color: #f1f1f1; /* 轨道背景颜色 */
}

.intersectSearch .search-detail::-webkit-scrollbar-thumb {
    background-color: #a6a6a6; /* 滑块颜色 */
    border-radius: 5px; /* 滑块圆角 */
}

.intersectSearch .search-detail::-webkit-scrollbar-thumb:hover {
    background-color: #888; /* 滑块悬停颜色 */
}
.cross-search-detail-classify-div {
    padding-top: 10px;
    border-bottom: 1px solid #e3e3e3;
    padding-bottom: 8px;
}
.intersectSearch .search-detail .cross-search-detail-classify {
    color: #3366CC;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    /*padding-left: 8px;*/
}

.intersectSearch .search-detail .cross-search-detail-tittle {
    border-bottom: 1px solid #e3e3e3;
    font-size: 15px;
    font-weight: bold;
    padding-top: 10px;
    padding-bottom: 10px;
}

.intersectSearch .search-detail .cross-search-detail {
    padding: 8px 0;
    cursor: pointer;
    border-bottom: 1px solid #e3e3e3;
    position: relative;
}

.intersectSearch .search-detail .cross-search-detail p {
    color: #999;
    width: calc(100% - 200px);
    max-height: 32px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.intersectSearch .search-detail .cross-search-detail p.bord {
    color: #3366CC;
    font-size: 16px;
    font-weight: bold;
    padding: 1px 1px 1px 0;
}

/*应用领域*/
.app-area {
    padding-top: 10px;
}

.app-area .app-area-level-1 {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.app-area .app-area-level-3, .app-area-level-4, .app-area-level-5 {
    border-left: 1px solid #e3e3e3;
}

.app-area .app-area-level-1 li {
    position: relative;
    padding: 10px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.app-area .app-area-level-1 li::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.app-area .app-area-level-1 li.on::before {
    background-color: #3366CC;
}

.app-area .app-area-level-1 a {
    color: rgb(51, 51, 51);
    font-weight: bold;
    font-size: 15px;
    text-decoration: none;
}

.app-area .app-area-level-1 li:last-child {
    margin-right: 0;
}

.app-area .app-area-level-classify {
    height: auto;
    overflow: hidden;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.app-area .app-area-level-classify .app-area-level {
    float: left;
    width: 25%;
    display: block;
    align-items: stretch
}

.app-area .app-area-level-classify .app-area-level li {
    display: block;
    padding-left: 10px;
}

.app-area .app-area-level-classify .app-area-level li a {
    line-height: 16px;
    padding: 10px 5px;
    text-align: left;
    font-size: 14px;
    display: block;
    font-weight: 700;
    color: rgb(51, 51, 51);
    text-decoration: none;
}

.app-area .app-area-level-classify .app-area-level-1 li.on a {
    background: #FFFFFF;
    color: red;
}

.app-area .app-area-level-classify .app-area-level-2 li.on a {
    background: #FFFFFF;
    color: red;
}

.app-area .app-area-level-classify .app-area-level-3 li.on a {
    color: red;
}

.app-area .app-area-level-classify .app-area-level-4 li.on a {
    color: red;
}

.app-area .app-area-level-classify .app-area-level-5 li.on a {
    color: red;
}

.app-area .app-area-level-list {
    padding: 8px 20px;
    cursor: pointer;
    position: relative;
}

.app-area .app-area-level-list .app-area-content-result {
    border-bottom: 1px solid #e3e3e3;
    display: flex;
    height: 30px;
    align-items: center;
}

.app-area .app-area-level-list .app-area-content-result p {
    width: calc(100% - 200px);
    max-height: 32px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-left: 10px;
    font-size: 15px;
}

.app-area .app-area-level-list .app-area-content-result .app-area-content-type-detail {
    width: 140px;
    font-size: 18px;
    color: #999;
    text-align: center;
}

.app-area .app-area-content {
    display: flex;
    flex-direction: column;
}

.app-area .app-area-content .app-area-content-image-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.app-area .app-area-content .app-area-content-image-container .app-area-content-image-carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.app-area .app-area-content .app-area-content-image-container .app-area-content-image-carousel img {
    width: 100%;
    height: auto;
}

.app-area .app-area-content .app-area-content-image-container #app-area-content-image-prev, #app-area-content-image-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 100;
    background-color: rgba(178, 178, 178, 0.5);
    color: white;
    border: none;
    padding: 5px 10px;
    outline: none;
}

.app-area .app-area-content .app-area-content-image-container #app-area-content-image-prev {
    left: 10px;
}

.app-area .app-area-content .app-area-content-image-container #app-area-content-image-next {
    right: 10px;
}

.app-area .app-area-content .app-area-content-image-container .image-counter {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    color: white;
    background-color: rgba(178, 178, 178, 0.5);
    padding: 5px 10px;
    border-radius: 4px;
}

.app-area .app-area-content .app-area-content-image-container #app-area-content-image-prev:hover,
.app-area .app-area-content .app-area-content-image-container #app-area-content-image-next:hover,
.app-area .app-area-content .app-area-content-image-container .image-counter:hover {
    background-color: rgba(178, 178, 178, 0.7); /* 鼠标悬停时加深背景颜色 */
}

.app-area .app-area-content .app-area-content-image-container img {
    max-width: 400px;
    max-height: 200px;
}

.app-area .app-area-content .app-area-content-content-container {
    width: 100%;
}

.app-area .app-area-content .app-area-content-content-container .app-area-content-content-container-option {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.app-area .app-area-content .app-area-content-content-container .app-area-content-content-container-option li {
    position: relative;
    padding: 10px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.app-area .app-area-content .app-area-content-content-container .app-area-content-content-container-option li::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.app-area .app-area-content .app-area-content-content-container .app-area-content-content-container-option li.selected::before {
    background-color: #3366CC;
}

.app-area .app-area-content .app-area-content-content-container .app-area-content-content-container-option .app-area-content-tab {
    margin: 5px;
    padding: 10px 20px;
    cursor: pointer;
    border: none;
}

.app-area .app-area-content .tab:hover {
    background-color: #ddd;
}

.app-area-detail-content {

}

.app-area-recommend-content {
    padding-top: 10px;
}

.app-area-summary-content {
    padding-top: 10px;
}

.app-area-app-content {
    padding-top: 10px;
}

.app-area-schema-content {
    padding-top: 10px;
}

.app-area-recommend-more {
    padding-right: 20px;
}

.app-area-recommend-text {
    width: 90%;
}


.app-area-recommend-once {
    padding-bottom: 10px;
    padding-top: 10px;
    border-bottom: 1px solid #e3e3e3;
    height: auto;
    overflow: hidden;
    margin-bottom: 0 !important;
}

.app-area-recommend-once dt {
    font-size: 14px;
    cursor: pointer;
    font-weight: normal;
    position: relative;
    padding-left: 10px;
}

.app-area-recommend-once dt i {
    width: 18px;
    height: 18px;
    display: block;
    background: url(../../img/icon_hide.png) no-repeat;
    margin-top: 2px;
    margin-left: 5px;
    float: right;
}

.app-area-recommend-once dt i.open {
    background: url(../../img/icon_open.png) no-repeat;
}

.app-area-recommend-once dd {
    padding-left: 20px;
    display: none;
    margin-top: 15px;
}

.app-area-recommend-detail li {
    background-color: #fff;
}

.app-area-recommend-recommedClassifyChip {
    border-bottom: 1px solid #e3e3e3;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
}

.app-area-recommend-recommedChips {
    cursor: pointer;
    border-bottom: 1px solid #e3e3e3;
    padding-top: 5px;
    padding-bottom: 5px;
}

.app-area-recommend-recommedChips .bord {
    color: #3366CC;
    padding-left: 5px;
}

.app-area-recommend-recommedChips p {
    color: #999;
    width: calc(100% - 200px);
    max-height: 32px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-left: 5px;
}

.app-area .app-area-content .app-area-content-content-container .app-area-detail-content .app-area-content-result {
    padding: 8px 20px;
    cursor: pointer;
    border-bottom: 1px solid #e3e3e3;
    position: relative;
}

.app-area .app-area-content .app-area-content-content-container .app-area-detail-content .app-area-content-result img {
    width: 25px;
    height: 25px;
    float: left;
}

.app-area .app-area-content .app-area-content-content-container .app-area-detail-content .app-area-content-result p {
    width: calc(100% - 200px);
    max-height: 32px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-left: 10px;
    font-size: 15px;
}

.app-area .app-area-content .app-area-content-content-container .app-area-detail-content .app-area-content-result .app-area-content-right-type {
    position: absolute;
    right: 0px;
    width: 220px;
    height: calc(100% - 16px);
    top: 0px;
    display: flex;
    align-items: center;
    text-align: center;
    margin: 8px 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;

}

.app-area .app-area-content .app-area-content-content-container .app-area-detail-content .app-area-content-result .app-area-content-right-type .app-area-content-type-detail {
    width: 140px;
    font-size: 18px;
    color: #999;
}

/*新品速递*/
.new-product {
    /*padding-top: 10px;*/
}

.new-product .new-product-option {
    position: relative;
    display: flex;
    align-items: center;
    height: 40px;
    border-bottom: 1px solid #e3e3e3;
}

.new-product .new-product-level-1 a {
    color: rgb(51, 51, 51);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
}

.new-product .new-product-level-1 a.on {
    color: red;
    font-size: 15px;
}

.new-product .new-product-level-1 {
    display: flex;
    list-style: none;
    padding: 0;
    /*margin: 10px;*/
    justify-content: flex-start;
}

.new-product .new-product-level-1 li {
    position: relative;
    padding: 10px;
    cursor: pointer;
    transition: color 0.3s ease;
    white-space: nowrap;
    /*overflow: hidden;*/
    text-overflow: ellipsis;
}

.new-product .new-product-level-1 li::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.new-product .new-product-level-1 li.on::before {
    background-color: #3366CC;
    width: 70%;
    left: 15%;
}

/*!* 第一个元素的样式 *!*/
/*.new-product .new-product-level-1 li:first-child {*/
/*    border-left: 1px solid #e3e3e3;*/
/*}*/

/*!* 最后一个元素的样式 *!*/
/*.new-product .new-product-level-1 li:last-child {*/
/*    border-right: 1px solid #e3e3e3;*/
/*}*/

/*!* 中间元素的样式 *!*/
/*.new-product .new-product-level-1 li:not(:first-child):not(:last-child) {*/
/*    border-right: 1px solid #e3e3e3;*/
/*}*/

.new-product .new-product-more a {
    color: rgb(51, 51, 51);
    padding: 10px 10px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
}

.new-product .new-product-option .new-product-slider {
    width: 90%;
    /*overflow: hidden;*/
    display: flex;
    align-items: center;
}

.new-product .new-product-option .new-product-slider a {
    text-decoration: none;
}

.new-product .new-product-option .new-product-slider-list {
    overflow: hidden;
    display: block;
    float: left;
    position: relative;
    width: 1000px;
}

.new-product .new-product-option .new-product-slider-list-ul {
    width: 20000px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 0
}

.new-product .new-product-option .new-product-slider-list-ul li {
    width: 144px;
    height: 20px;
    float: left;
}

.new-product .new-product-option .new-product-slider-list-ul li a {
    display: block;
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    margin-left: 4px;
    margin-right: 4px;
}

.new-product .new-product-option .new-product-slider-list-ul li a {
    text-decoration: none;
}

.new-product .new-product-option .new-product-slider-list-ul li.active a, .new-product-slider-list-ul li:hover a {
    border: 1px solid #0033cc;
}

.new-product .new-product-option .new-product-slider-list-ul li a:focus {
    border: 1px solid #0033cc;
}

.new-product .new-product-option .new-product-slider-list-ul li h2 {
    font-size: 17px;
    color: #0033cc;
    line-height: 24px;
    margin: 0 5px;
}

.new-product .new-product-option .new-product-slider-list-ul li p {
    font-size: 12px;
    line-height: 20px;
    margin-left: 5px;
    margin-right: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-product .new-product-more {
    margin-left: 30px;
    position: relative;
}

/* 新品速递分类 */
.new-product-classify {
    height: auto;
    overflow: hidden;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: absolute;
    z-index: 10;
    background-color: #fff;
    box-shadow: 9px 8px 16px rgb(0 0 0 / 18%);
    width: 450px;
    border: 1px solid rgb(227, 227, 227);
}

.new-product-classify .new-product-classify-level {
    float: left;
    display: block;
    align-items: stretch;
    padding-left: 10px;
    width: 33.33%;
}

.new-product-classify .new-product-classify-level li {
    display: block;
}

.new-product-classify .new-product-classify-level li a {
    line-height: 16px;
    padding: 10px 5px;
    text-align: left;
    font-size: 14px;
    display: block;
    font-weight: 700;
    color: rgb(51, 51, 51);
    text-decoration: none;
}

.new-product-classify .new-product-classify-level-2, .new-product-classify-level-3 {
    border-left: 1px solid #e3e3e3;
}

.new-product-classify .new-product-classify-level-1 li.on a {
    background: #FFFFFF;
    color: red;
}

.new-product-classify .new-product-classify-level-2 li.on a {
    background: #FFFFFF;
    color: red;
}

.new-product-classify .new-product-classify-level-3 li.on a {
    color: red;
}

.new-product .new-product-content {
    height: 540px;
    overflow-y: auto;
}

/* 自定义滚动条样式 */
.new-product .new-product-content::-webkit-scrollbar {
    width: 10px; /* 滚动条的宽度 */
}

.new-product .new-product-content::-webkit-scrollbar-track {
    background-color: #f1f1f1; /* 轨道背景颜色 */
}

.new-product .new-product-content::-webkit-scrollbar-thumb {
    background-color: #a6a6a6; /* 滑块颜色 */
    border-radius: 5px; /* 滑块圆角 */
}

.new-product .new-product-content::-webkit-scrollbar-thumb:hover {
    background-color: #888; /* 滑块悬停颜色 */
}

.new-product .new-product-content .new-product-content-result {
    padding: 8px 20px;
    cursor: pointer;
    border-bottom: 1px solid #e3e3e3;
    position: relative;
}

.new-product .new-product-content .new-product-content-result p {
    color: #999;
    width: calc(100% - 200px);
    max-height: 32px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.new-product .new-product-content .new-product-content-result p.bord {
    color: #3366CC;
    font-size: 16px;
    font-weight: bold;
    padding: 1px 1px 1px 0;
}

.new-product .new-product-content .new-product-content-result span {
    font-size: 18px;
    color: #3366CC;
    width: 140px;
    text-align: center;
    border-left: 1px solid #e3e3e3;
    position: absolute;
    top: 8px;
    right: 0;
}

.new-product .new-product-content .new-product-content-result .new-product-content-right-type {
    position: absolute;
    right: 0px;
    height: calc(100% - 16px);
    top: 0px;
    display: flex;
    align-items: center;
    text-align: center;
    margin: 8px 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;

}

.new-product .new-product-content .new-product-content-result .new-product-content-right-type .new-product-content-type-replace {
    background: #e73f3c;
    color: #ffffff;
    margin-left: 22px;
    margin-right: 22px;
    display: inline-block;
    line-height: 14px !important;
    width: 30px;
    height: 14px;
    text-align: center;
    font-size: 11px;
    padding: 0 2px
}

.new-product .new-product-content .new-product-content-result .new-product-content-right-type .new-product-content-type-replace-no {
    background: none;
}

.new-product .new-product-content .new-product-content-result .new-product-content-right-type .new-product-content-type-detail {
    width: 120px;
    border-left: 1px solid #e3e3e3;
    font-size: 16px;
    color: #3366CC;
}

/*应用文章*/
.app-article {
    /*padding-top: 10px;*/
}

.app-article .app-article-option {
    position: relative;
    display: flex;
    align-items: center;
    height: 40px;
    border-bottom: 1px solid #e3e3e3;
}

/*.app-article .app-article-level-1 {*/
/*    height: 30px;*/
/*    float: left;*/
/*}*/

/*.app-article .app-article-level-1 li {*/
/*    display: inline;*/
/*    margin-right: 10px;*/
/*    font-size: 15px;*/
/*}*/

/*.app-article .app-article-level-1 li.on {*/
/*    border-bottom-color: rgb(51, 102, 204);*/
/*    border-bottom-width: 2px;*/
/*}*/

.app-article .app-article-level-1 {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    /*border-bottom: 1px solid #e3e3e3;*/
    justify-content: flex-start;
}

.app-article .app-article-level-1 li {
    position: relative;
    padding: 10px;
    cursor: pointer;
    transition: color 0.3s ease;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.app-article .app-article-level-1 li::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.app-article .app-article-level-1 li.on::before {
    background-color: #3366CC;
    width: 70%;
    left: 15%;
}

.app-article .app-article-level-1 li.on a {
    color: red;
    font-size: 15px;
}

.app-article .app-article-level-1 a {
    color: rgb(51, 51, 51);
    /*padding: 10px 10px;*/
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
}

.app-article .app-article-more a {
    color: rgb(51, 51, 51);
    padding: 10px 10px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
}

.app-article .app-article-option .app-article-slider {
    width: 90%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.app-article .app-article-option .app-article-slider a:hover {
    text-decoration: none
}

.app-article .app-article-option .app-article-slider-list {
    margin-left: 10px;
    /*margin-right: 9px;*/
    /*height: 40px;*/
    overflow: hidden;
    display: flex;
    float: left;
    position: relative;
    width: 1000px;
}

.app-article .app-article-option .app-article-slider-list-ul {
    width: 20000px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 0
}

.app-article .app-article-option .app-article-slider-list-ul li {
    width: 144px;
    height: 20px;
    float: left;
}

.app-article .app-article-option .app-article-slider-list-ul li a {
    display: block;
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    margin-left: 4px;
    margin-right: 4px;
}

.app-article .app-article-option .app-article-slider-list-ul li a {
    text-decoration: none;
}

.app-article .app-article-option .app-article-slider-list-ul li.active a, .app-article-slider-list-ul li:hover a {
    border: 1px solid #0033cc;
}

.app-article .app-article-option .app-article-slider-list-ul li a:focus {
    border: 1px solid #0033cc;
}

.app-article .app-article-option .app-article-slider-list-ul li h2 {
    font-size: 17px;
    color: #0033cc;
    line-height: 24px;
    margin: 0 5px;
}

.app-article .app-article-option .app-article-slider-list-ul li p {
    font-size: 12px;
    line-height: 20px;
    margin-left: 5px;
    margin-right: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.app-article .app-article-more {
    margin-left: 10px;
}

/*应用文章内容*/
.app-article .app-article-content {
    height: 560px;
    overflow-y: auto;
    /*margin-top: 8px;*/
}

/* 自定义滚动条样式 */
.app-article .app-article-content::-webkit-scrollbar {
    width: 10px; /* 滚动条的宽度 */
}

.app-article .app-article-content::-webkit-scrollbar-track {
    background-color: #f1f1f1; /* 轨道背景颜色 */
}

.app-article .app-article-content::-webkit-scrollbar-thumb {
    background-color: #a6a6a6; /* 滑块颜色 */
    border-radius: 5px; /* 滑块圆角 */
}

.app-article .app-article-content::-webkit-scrollbar-thumb:hover {
    background-color: #888; /* 滑块悬停颜色 */
}

.app-article .app-article-content .app-article-content-result {
    padding: 15px 10px;
    /*cursor: pointer;*/
    border-bottom: 1px solid #e3e3e3;
    position: relative;
}

.app-article .app-article-content .app-article-content-result img {
    width: 25px;
    height: 25px;
    float: left;
}

.app-article .app-article-content .app-article-content-result p {
    width: calc(100% - 200px);
    max-height: 32px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    /*padding-left: 10px;*/
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.app-article .app-article-content .app-article-content-result p:hover {
    color: #3366cc;
}

.app-article .app-article-content .app-article-content-result .app-article-content-right-type {
    position: absolute;
    right: 0px;
    width: 200px;
    height: calc(100% - 16px);
    top: 0px;
    display: flex;
    align-items: center;
    /*text-align: center;*/
    margin: 8px 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    border-left: 1px solid #e3e3e3;
    display: flex;
    padding: 0 10px;
}

.app-article .app-article-content .app-article-content-result .app-article-content-right-type .app-article-chips {
    padding: 0 10px;
    width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: left;
}

.app-article .app-article-content .app-article-content-result .app-article-content-right-type .app-article-chips a {
    color: #000;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
}

/*.app-article .app-article-content .app-article-content-result .app-article-content-right-type div:not(:first-child) {*/
/*    border-left: 1px solid #e3e3e3;*/
/*}*/

.app-article .app-article-content .app-article-content-result .app-article-content-right-type .chip-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.app-article .app-article-content .app-article-content-result .app-article-content-right-type .chip-main {
    cursor: pointer;
    padding: 6px 12px;
    font-weight: 700;
    font-size: 15px;
}

.app-article .app-article-content .app-article-content-result .app-article-content-right-type .chip-main a {
    color: inherit;
    text-decoration: none;
    display: block;
    font-weight: 700;
    font-size: 15px;
}

.app-article .app-article-content .app-article-content-result .app-article-content-right-type .chip-main:hover a {
    color: #3366cc;
}

.app-article .app-article-content .app-article-content-result .app-article-content-right-type .chip-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    padding: 4px 0;
}

.app-article .app-article-content .app-article-content-result .app-article-content-right-type .chip-container:hover .chip-dropdown {
    display: block;
}

.app-article .app-article-content .app-article-content-result .app-article-content-right-type .chip-item {
    padding: 6px 10px;
}

.app-article .app-article-content .app-article-content-result .app-article-content-right-type .chip-item a {
    color: inherit;
    text-decoration: none;
    display: block;
    font-weight: 700;
    font-size: 15px;
}

.app-article .app-article-content .app-article-content-result .app-article-content-right-type .chip-item:hover a {
    color: #3366cc;
}

/*应用文章更多分类*/
.app-article .app-article-category {
    height: auto;
    overflow: hidden;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: absolute;
    z-index: 10;
    width: 30%;
    background-color: #fff;
    box-shadow: 9px 8px 16px rgb(0 0 0 / 18%);
    border: 1px solid rgb(227, 227, 227);
    padding: 10px 5px;
}

.app-article .app-article-category .app-article-category-content {
    display: flex;
    flex-direction: column;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
}

.app-article .app-article-category .app-article-category-content .app-article-category-content-tittle {
    padding-bottom: 5px;
    font-size: 17px;
    font-weight: 700
}

.app-article .app-article-category .app-article-category-content .app-article-category-content-content {
    display: flex;
    gap: 10px;
    padding-bottom: 5px;
    flex-wrap: wrap;
}

.app-article .app-article-category .app-article-category-content .app-article-category-content-content-a {
    background: #efefef;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
}

.app-article .app-article-category .app-article-category-content .app-article-category-content-content-a a {
    color: black;
    text-decoration: none;
    padding: 5px 10px;
}

.app-article .app-article-category .app-article-category-content .tittle-default-color a {
    color: #3366CC;
    padding: 5px 10px;
    /*font-size: 15px;*/
    font-weight: 700;
}

.app-article .app-article-category .app-article-category-content .app-article-category-content-content:last-child {
    margin-bottom: 0;
}

/* 默认隐藏所有内容项 */
.content-item {
    display: none;
}

/* 激活时显示内容 */
.content-item.active {
    display: block;
}

/* 图片放大器 */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    position: relative;
    margin: 15% auto;
    max-width: 90%;
    max-height: 80%;
    text-align: center;
    background-color: transparent;
}

.modal-content img {
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.successNotification {
    display: flex;
    position: fixed;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f0f9eb; /* 淡绿色背景 */
    color: #333;
    border: 1px solid #08994480;
    padding: 10px;
    /*box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);*/
    z-index: 1000;
    align-items: center;
}

.right-content .once-company{font-size: 17px; color: #000; margin: 15px 0 8px; cursor: pointer;}
.right-content .once-company a{color: #3366cc}
.right-content .once-company a:hover{color: #3366cc; text-decoration: none}
.right-content .once-link{color: #3366cc; text-decoration: none}
.right-content .once-link:hover, .once-link:active, .once-link:focus{text-decoration: none;}
.right-content .once-son{height:auto;overflow: hidden; margin-bottom: 0 !important;}
.right-content .once-son dt{font-size: 15px; line-height: 22px; display: flex; cursor: pointer; font-weight: normal;}
.right-content .once-son dt i{width: 18px; height: 18px; display: block; background: url(../../img/icon_hide.png) no-repeat; margin-top: 2px; margin-left: 5px;}
.right-content .once-son dt i.open{background: url(../../img/icon_open.png) no-repeat;}
.right-content .once-son dd{padding-left: 40px; display: none; margin-top: 15px;}
.right-content .once-agent-list{height: auto; overflow: hidden; font-size: 16px;	color: #999; line-height: 22px; margin-left: 38px;}
.right-content .once-agent-item{height: auto; overflow: hidden; margin-bottom: 15px;}

/*厂家样品*/
.brand-sample-option {
    position: relative;
    /*display: flex;*/
    align-items: flex-start;
    border: 1px solid #e3e3e3;
    /*width: 1120px;*/
    margin-bottom: 6px;
    background-color: #fff;
    min-height: 35px;
    border-top: none;
    border-left: none;
    border-right: none;
}

.brand-sample-option .option-item {
    display: flex;
    align-items: flex-start;
    /*border-bottom: 1px dashed #e3e3e3;*/
    margin-left: 10px;
    margin-top: 10px;
}

/* 基础样式 */
.brand-sample-option .brand-sample-classify-slider-level-1 {
    display: flex;
    flex-wrap: wrap; /* 确保可以换行 */
    list-style: none;
    padding-left: 10px;
    /*margin: 10px 0; !* 恢复外边距 *!*/
    /*justify-content: space-between; !* 平均分布 li 元素 *!*/
    align-items: center; /* 垂直居中对齐 */
    max-height: 24px; /* 默认只显示一行的高度，根据实际情况调整 */
    overflow: hidden;
    transition: max-height 0.3s ease-out; /* 平滑过渡效果 */
    height: 24px;
}

/* 当需要显示所有 li 时添加此 class */
.brand-sample-option .brand-sample-classify-slider-level-1.show-all {
    max-height: none; /* 移除高度限制 */
    height: unset;
}

/* li 样式 */
.brand-sample-option .brand-sample-classify-slider-level-1 li {
    position: relative;
    /*flex: 1 1 calc(10% - 4px); !* 每行10个，减去边距 *!*/
    box-sizing: border-box;
    margin-right: 15px; /* 右边距 */
    margin-bottom: 10px; /* 下边距 */
    cursor: pointer;
    transition: color 0.3s ease;
    text-align: center; /* 文字水平居中 */
    line-height: 20px; /* 设置行高使文字垂直居中，根据实际情况调整 */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* 超出部分用省略号表示 */
    padding-bottom: 4px;
}

/* a 标签样式 */
.brand-sample-option .brand-sample-classify-slider-level-1 a {
    color: rgb(51, 51, 51);
    /*font-weight: 600;*/
    font-size: 14px;
    text-decoration: none;
    display: block; /* 确保 a 标签占据整个 li 的宽度 */
    width: 100%;
    height: 100%; /* 确保 a 标签也垂直居中 */
    line-height: inherit; /* 继承 li 的行高 */
}

/* 高亮选中的 a 标签 */
.brand-sample-option .brand-sample-classify-slider-level-1 a.on {
    color: red;
    font-size: 14px;
}

/* li 的伪元素样式 */
.brand-sample-option .brand-sample-classify-slider-level-1 li::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: transparent;
    transition: background-color 0.3s ease, width 0.3s ease, left 0.3s ease;
}

/* 高亮选中的 li 的伪元素 */
.brand-sample-option .brand-sample-classify-slider-level-1 li.on::before {
    background-color: #3366CC;
    width: 70%;
    left: 15%;
}

.brand-sample-option .brand-sample-package-slider-level-1 a {
    color: rgb(51, 51, 51);
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
}

.brand-sample-option .brand-sample-package-slider-level-1 a.on {
    color: red;
    font-size: 13px;
}

.brand-sample-option .brand-sample-package-slider-level-1 {
    display: flex;
    list-style: none;
    padding: 0;
    /*margin: 10px;*/
    justify-content: flex-start;
}

.brand-sample-option .brand-sample-package-slider-level-1 li {
    position: relative;
    padding: 5px 10px;
    cursor: pointer;
    transition: color 0.3s ease;
    white-space: nowrap;
    /*overflow: hidden;*/
    text-overflow: ellipsis;
}

.brand-sample-option .brand-sample-package-slider-level-1 li::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.brand-sample-option .brand-sample-package-slider-level-1 li.on::before {
    background-color: #3366CC;
    width: 70%;
    left: 15%;
}

/* 置灰已选中的可选项 */
.brand-sample-classify-slider-level-1 li.selected {
    background-color: #e73f3c;
}

.brand-sample-classify-slider-level-1 li.selected a {
    color: #fff;
}

.brand-sample-classify-slider-level-1 li.selected:hover {
    border-color: #3366cc;
}

.brand-sample-option .brand-sample-slider {
    width: 91%;
    /*overflow: hidden;*/
    display: flex;
    align-items: flex-start;
}

.brand-sample-option .brand-sample-slider a {
    text-decoration: none;
}

.brand-sample-option .brand-sample-slider > :last-child {
    margin-left: auto; /* 将最后一个子元素推到最右边 */
}

.brand-sample-option .brand-sample-slider-list {
    overflow: hidden;
    display: block;
    float: left;
    position: relative;
    width: 100%;
}

.brand-sample-option .brand-sample-slider-list-ul {
    width: 20000px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 0
}

.brand-sample-option .brand-sample-slider-list-ul li {
    width: 144px;
    height: 20px;
    float: left;
}

.brand-sample-option .brand-sample-slider-list-ul li a {
    display: block;
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    margin-left: 4px;
    margin-right: 4px;
}

.brand-sample-option .brand-sample-slider-list-ul li a {
    text-decoration: none;
}

.brand-sample-option .brand-sample-slider-list-ul li.active a, .brand-sample-slider-list-ul li:hover a {
    border: 1px solid #0033cc;
}

.brand-sample-option .brand-sample-slider-list-ul li a:focus {
    border: 1px solid #0033cc;
}

.brand-sample-option .brand-sample-slider-list-ul li h2 {
    font-size: 17px;
    color: #0033cc;
    line-height: 24px;
    margin: 0 5px;
}

.brand-sample-option .brand-sample-slider-list-ul li p {
    font-size: 12px;
    line-height: 20px;
    margin-left: 5px;
    margin-right: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.brand-sample-more {
    /*margin-left: 20px;*/
    position: relative;
    display: flex;
    align-items: flex-start;
    right: 0;
}

.brand-sample-more a {
    color: rgb(51, 51, 51);
    padding: 0 10px;
    /*font-weight: 600;*/
    font-size: 14px;
    text-decoration: none;
}

.brand-sample-more a:hover {
    color: #3366cc;
}

.brand-sample .data-null {
    display: flex;
    justify-content: center;
}

.current-page-search-input {
    display: flex;
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
    position: relative;
}

.current-page-search {
    float: left;
    /*margin: 15px 0 0 0;*/
    border: 1px solid #e73f3c;
    border-right: none;
    position: relative;
    display: flex;
    align-items: center; /* 垂直居中 */
}

.current-page-search input {
    width: 486px;
    /*line-height: 27px;*/
    border: none;
    padding: 4px 30px 4px 10px;
    outline: none;
}

.current-page-search .closeText {
    margin-right: 10px;
    position: absolute;
    left: 460px;
    top: 8px;
    cursor: pointer;
}

.current-page-search .cearch-botton {
    line-height: 38px;
    color: #fff;
    background: #e73f3c;
    display: inline-block;
    padding: 0 40px;
    cursor: pointer;
}

.current-page-search-suggest {
    width: 488px;
    border-right: 1px solid #e73f3c;
    border-bottom: 1px solid #e73f3c;
    border-left: 1px solid #e73f3c;
    display: none;
    line-height: 32px;
    background: #fff;
    padding: 0 10px;
    max-height: 260px;
    overflow: auto;
    position: absolute;
    top: 73%;
    z-index: 10;
    left: 0;
}

.current-page-search-suggest .current-page-history-search .closeText {
    margin-right: 10px;
    position: absolute;
    left: 460px;
    cursor: pointer;
}

/*历史记录*/
.current-page-history-search-div {
    display: flex;
    flex-wrap: wrap;
    max-height: 200px;
    overflow-y: auto;
    cursor: pointer;
}

/* 自定义滚动条样式 */
.current-page-history-search-div::-webkit-scrollbar {
    width: 10px; /* 滚动条的宽度 */
}

.current-page-history-search-div::-webkit-scrollbar-track {
    background-color: #f1f1f1; /* 轨道背景颜色 */
}

.current-page-history-search-div::-webkit-scrollbar-thumb {
    background-color: #a6a6a6; /* 滑块颜色 */
    border-radius: 5px; /* 滑块圆角 */
}

.current-page-history-search-div::-webkit-scrollbar-thumb:hover {
    background-color: #888; /* 滑块悬停颜色 */
}

.current-page-his-record {
    display: inline-flex;
    align-items: center;
    background-color: #f5f5f5;
    margin-right: 10px;
    margin-bottom: 10px;
    white-space: nowrap;
    border-radius: 5px;
    line-height: 1.5;
}

.current-page-his-record:last-child {
    margin-right: 0;
}

.select-input {
    width: 42px;
    height: 20px;
    background: #fff;
    border: 1px solid #ccc;
    line-height: 18px;
    text-align: center;
    color: #9a9a9a;
    cursor: pointer;
    float: right;
    font-size: 14px;
}

.selected-container {
    /*position: relative; !* 确保内部绝对定位元素相对于此容器 *!*/
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-left: 10px;
    margin-right: 10px;
}

/* 确认取消按钮样式 */
.confirm-cancel-buttons {
    display: flex;
    justify-content: center; /* 水平居中 */
    /*position: absolute;*/
    bottom: 0; /* 固定在底部 */
    left: 0;
    right: 0; /* 确保宽度覆盖整个容器 */
    padding: 10px; /* 可选：增加一些内边距 */
}

.padding-left-right-25 {
    padding: 0 25px;
}

.margin-left-right-25 {
    margin: 0 25px;
}
/*@media (max-width: 1199.98px) {*/
/*    .container {*/
/*        transform: scale(0.9);*/
/*    }*/
/*}*/

/* 中等屏幕（桌面） */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .container {
        transform: scale(1);
    }
}

/* 大屏幕（大桌面） */
@media (min-width: 1400px) and (max-width: 1919.98px) {
    .container {
        transform: scale(1);
        padding-left: 0;
    }
}

/* 超大屏幕（非常大的桌面） */
@media (min-width: 1920px) {
    .container {
        transform: scale(1);
        padding-left: 0;
    }
}