@charset "utf-8";

* {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: none;
    max-height: 100%;
    scroll-behavior: smooth;
}

:root {
    --blue: #2563eb;
    --red: #dc2626;
    --orange: #f97316;
    --white: #fff;
    --black: #000;
    --fontSize-12: 12px;
    --fontSize-14: 14px;
    --fontSize-16: 16px;
    --fontSize-15: 15px;
    --fontSize-18: 18px;
    --fontSize-20: 20px;
    --fontSize-22: 22px;
    --fontSize-24: 24px;
    --fontSize-26: 26px;
    --fontSize-28: 28px;
    --fontSize-30: 30px;
    --fontSize-32: 32px;
    --fontSize-34: 34px;
    --fontSize-36: 36px;
    --fontSize-38: 38px;
    --fontSize-40: 40px;
    --fontSize-42: 42px;
    --fontSize-48: 48px;
    --fontSize-64: 64px;
    --lightgrey: #f9fafb;
    --grey444: #444;
    --grey666: #666;
    --grey999: #999;
    --greyccc: #ccc;
    --greyeee: #eee;
    --greyddd: #ddd;
    --lh140: 140%;
    --lh160: 160%;
    --lh180: 180%;
    --lh200: 200%;
    --lh220: 220%;
    --vh100: 100vh;
    --border-radius-5: 5px;
    --border-radius-10: 10px;
    --border-radius-15: 15px;
    --border-radius-20: 20px;
    --border-radius-30: 30px;
    --bgBlack: #2a2a2a;
    --footerColor: #8e8e8e
}

body {
    color: var(--textColor);
    background: var(--lightgrey);
}

body,
button,
input,
select,
textarea {
    font-family: pingfang SC,
        helvetica neue,
        arial,
        hiragino sans gb,
        microsoft yahei ui,
        microsoft yahei,
        simsun,
        sans-serif !important;
}

body,
p,
h1,
ul,
li,
input,
img,
figure,
h3,
h1,
h2,
h4,
h5,
h6,
dl,
dd,
dt {
    margin: 0;
    padding: 0;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 900;
}

input[type="text"],
input[type="password"],
input[type="submit"],
input[type="reset"],
input[type="button"],
textarea {
    -webkit-appearance: none;
}


address,
cite,
dfn,
em,
var,
i {
    font-style: normal;
}


small {
    font-size: 12px;
}

ul,
ol {
    list-style: none;
}

sub {
    bottom: 0
}

a {
    text-decoration: none;
    color: #010114
}

a:hover {
    color: var(--blue);
    text-decoration: none;
}

sup {
    vertical-align: text-top;
}

sub {
    vertical-align: text-bottom;
}

abbr[title] {
    border-bottom: 1px dotted;
    cursor: footer-help;
}

legend {
    color: var(--textColor);
}

fieldset,
img {
    border: 0;
    max-width: 100%;
}

a img {
    vertical-align: text-bottom;
}

textarea {
    overflow: auto;
    vertical-align: top;
    resize: vertical;
}

button,
input,
select,
textarea {
    font-size: 100%;
}

button,
input,
select {
    vertical-align: middle;
}

/* 更改输入框的 placeholder 文本颜色 */
input::placeholder,
textarea::placeholder {
    color: var(--grey666) !important
        /* 或者你想要的任何颜色值 */
}

button {
    cursor: pointer;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption,
th {
    text-align: left;
}

.fz12 {
    font-size: var(--fontSize-12);
}

.fz14 {
    font-size: var(--fontSize-14);
}

.text666 {
    color: var(--grey666)
}

.text999 {
    color: var(--grey999);
}

.text-blue {
    color: var(--blue);
}

.text-red {
    color: var(--red);
}

.bg-grey {
    background: #f2f2f2;
}

.btn {
    white-space: nowrap;
}

.btn-orange {
    background: var(--orange);
    color: var(--white);
}

.btn-orange:hover {
    color: var(--white);
}

.btn-default {
    border: 1px solid #ced4da;
}

.btn-default:hover {
    border: 1px solid var(--blue);
    color: var(--blue);
}

.text-capital {
    text-transform: uppercase
}

.arial {
    font-family: Arial, Helvetica, sans-serif;
}

.lh140 {
    line-height: 140%;
}

.lh160 {
    line-height: 160%;
}

.lh180 {
    line-height: 180%;
}

.lh200 {
    line-height: 200%;
}

.lh220 {
    line-height: 220%;
}

.vh-100 {
    height: 100vh;
    transition: .3s;
    transform: scale(1.1);
}

.modal-open {
    padding-right: 0 !important;
    overflow-y: auto;
}

/**************滚动条样式**********/

::-webkit-scrollbar {
    width: 10px;
    height: 1px;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .3);
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, .1);
}


/**************框架公用样式**********/
.photo em {
    display: block;
    overflow: hidden;
}

.photo img {
    transition: 0.5s;
}

.photo:hover img {
    transform: scale(1.1);
}

.iconfont {
    font-size: inherit;
}

.container-fluid {
    max-width: 1920px;
    padding-left: 30px;
    padding-right: 30px;
}

header {
    top: 0;
    padding-top: 10px;
    padding-bottom: 16px;
    box-shadow: 0 0 2px rgba(0, 0, 0, .1);
    z-index: 9;
}

header h3 span {
    font-size: 16px;
}

.notice-list {
    height: 40px;
    line-height: 40px;
    /* background: #fef3c7;
  border-radius: var(--border-radius-5); */
}

.notice-list .swiper-slide a {
    width: calc(100% - 20px);
    display: block;
}

header .search-form .btn {
    right: 0;
    font-size: 18px;
}

header .mobile-search i.icon-guanbi,
header .mobile-search.active i.icon-search {
    display: none;
}

header .mobile-search.active i.icon-guanbi {
    display: block;
}

.filter-list-select {
    min-width: 200px
}

header .dropdown-menu {
    min-width: 100%;
}

header .dropdown-item {
    padding: 0.25rem 15px;
}

.filter-list {
    border-top: 1px solid #eee;
}


header .dropdown button {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-list figure section a {
    padding: 5px 15px;
    background: #f2f2f2;
    display: block;
    white-space: nowrap;
    border-radius: 5px;
    margin-top: 4px;
    margin-bottom: 4px;
    margin-right: 8px;
}

.filter-list figure section a:last-child {
    margin-right: 0;
}

.filter-list figure section a:hover,
.filter-list figure section a.current {
    background: var(--blue);
    color: var(--white);
}

.filter-list figure em {
    display: none;
}

/* .products-list {
    margin-top: 220px;
} */

.products-list ul {
    gap: 1.5%;
}

.products-list li {
    width: 18.8%;
    margin-bottom: 30px;
    border-radius: var(--border-radius-10);
    background: var(--white);
    padding-bottom: 35px;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, .05);
}

.products-list li:hover {
    box-shadow: 0 0 10px rgba(37, 99, 235, .2);
}

.products-list li article b {
    position: absolute;
    color: var(--white);
    display: inline-block;
    padding: 2px 10px;
    font-size: var(--fontSize-14);
    z-index: 5;
    border-radius: var(--border-radius-5);
    left: 10px;
    top: 10px;
}

.products-list li time {
    display: none;
}

/* .products-list li article em::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .3);
  display: block;
  top: 0;
} */

.products-list li article em {
    padding-bottom: 60%;
}

.products-list li article em img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
}

.products-list li article {
    border-radius: var(--border-radius-10);
    overflow: hidden;
}

.products-list li article em i.icon-video {
    bottom: 10px;
    right: 10px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    z-index: 5;
    line-height: initial;
}

.products-list li article em span.icon-share {
    top: 10px;
    right: 10px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    z-index: 5;
    width: 28px;
    height: 28px;
    line-height: 28px;
    background: #fff;
    text-align: center;
    border-radius: 50%;
}

.products-list li article em .picture-num {
    padding: 0 6px;
    border-radius: 5px;
    background: rgba(255, 255, 255, .6);
    backdrop-filter: blur(12px);
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 5;
    font-size: var(--fontSize-14);
}

.products-list li article figure section {
    font-size: 14px;
}

.products-list li article figure section p {
    margin-bottom: 8px;
}

.products-list li article figure section p span:last-child {
    color: #666;
}

.products-list li article figure section p span:last-child span:last-child {
    display: none;
}

.products-list li article figure .links-list {
    position: absolute;
    width: calc(100% - 32px);
    bottom: 16px;
}

.products-list li article figure .links-list a {
    display: block;
    font-size: 14px;
    padding: 5px 12px;
    border-radius: var(--border-radius-5);
}

.products-list li article figure .links-list a:first-child {
    color: #4c85ef;
    background: rgb(76, 133, 239, .1);
}

.products-list li article figure .links-list a:nth-child(2) {
    color: #23a658;
    background: rgb(35, 166, 88, .1);
}

.products-list li article figure .links-list a:last-child {
    color: #ec6b28;
    background: rgb(236, 107, 40, .1);
}

.products-list li article figure .links-list a:hover {
    color: #fff
}

.products-list li article figure .links-list a:first-child:hover {
    background: rgb(76, 133, 239, 1);
}

.products-list li article figure .links-list a:nth-child(2):hover {
    background: rgb(35, 166, 88, 1);
}

.products-list li article figure .links-list a:last-child:hover {
    background: rgb(236, 107, 40, 1);
}

/* .products-list li article figure .links-list a.links-tb {
    color: var(--orange);
    border: 1px solid var(--orange);
} */

.products-list li .pro-label a {
    color: #fff;
    padding: 2px 6px;
    display: block;
    border-radius: var(--border-radius-5);
    font-size: 14px;
    margin-top: 5px;
    margin-right: 5px;
}

.products-list li .pro-label a.labelcolor-default {
    background: #d9f316;
    color: #333 !important;
}

.products-list li .pro-label a.labelcolor-new {
    background: #d10000;
}

.products-list li .pro-label a.labelcolor-hot {
    background: #d10000;
}

.products-list li .pro-label a.labelcolor-yuansheng {
    background: #cf6ef2;
}

.products-list li .pro-label a.labelcolor-yueyu {
    background: #3377ff;
}

.products-list li .pro-label a.labelcolor-yanhui {
    background: #53b277;
}

.products-list li .pro-label a.labelcolor-original {
    background: #fff82f;
    color: #333 !important;
}

.products-list li .pro-label a.labelcolor-ai,
.products-list li .pro-label a.labelcolor-ai-music {
    background: #6725cb;
}

.products-list li .pro-label a.labelcolor-update {
    background: #009483;
}

.products-list li .pro-label a.labelcolor-love {
    background: #ffe0f9;
    color: #fd087e;
}

.products-list li .pro-label a.labelcolor-funny {
    background: #6b82f5;
}

.products-list li .pro-label a.labelcolor-lipshape {
    background: #faa755;
}

.products-list li .pro-label a.labelcolor-transition {
    background: #f2e9d9;
    color: #333 !important;
}

.products-list li .pro-label a:hover {
    color: #fff;
}

.products-list-more {
    font-size: 14px;
    margin-top: 10px;
}

.products-list-more i {
    font-size: 13px;
    transition: .3s;
    color: #999;
}

.products-list-more.active i {
    transition: .3s;
    transform: rotate(90deg);
}

.video-list li {
    display: flex;
    align-items: center;
}

.videoed {
    display: none;
    width: 50px;
    height: 50px;
    position: absolute;
    left: 45%;
    top: 45%;
    z-index: 99999;
    border-radius: 100%;
}

.videos {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 9999999;
    transform: translate(-50%, -50%);
    max-width: 40rem;
    max-height: 90vh;
    width: 100%;
}

.videos video {
    width: 100%;
    max-height: 90vh;
    display: block;
}

.videos-bg {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999999;
}

.vclose {
    position: absolute;
    right: -30px;
    font-size: 30px;
    top: -30px;
    border-radius: 100%;
    cursor: pointer;
    color: #fff;
}

.modal-open .modal {
    padding-right: 0 !important;
}

.modal-content {
    border: 0;
}

.modal-dialog {
    top: 50%;
    transform: translateY(-50%) !important;
    width: 96%;
    margin: 0 auto;
}

.modal-body {
    max-height: calc(100dvh - 180px);
    overflow-y: auto;
}

.modal-dialog .text-prompt {
    font-size: var(--fontSize-14);
    color: var(--grey666);
}

.modal-dialog .video-content {
    min-height: 300px;
}

.modal.show-bg {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
}

.modal-dialog.video-list {
    max-width: 650px;
}

.preview-modal .modal-body {
    background: #f5f5f5
}

.preview-area {
    min-height: 200px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    border: 2px dashed #ddd;
    border-radius: 10px;
    padding: 15px;
}

.preview-area img {
    max-width: 100%;
}

.preview-footer button {
    width: 48%;
}

.loading {
    display: none;
    text-align: center;
    color: #666;
    font-style: italic;
}

.page {
    width: 100%;
    padding: 50px 0 15px 0;
    text-align: center;
    overflow: hidden;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page a,
.page span {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 3px 10px;
    margin: 0 3px;
    background: #fff
}

.page span,
.page a:hover {
    background: var(--blue);
    border: 1px solid var(--blue);
    color: #fff !important;
    border-radius: 5px;
}

.page .prev,
.page .next {
    margin: 0 10px;
}

.back-top {
    right: 15px;
    bottom: 15px;
}

.back-top a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: var(--blue);
    color: #fff;
    display: block;
    border-radius: 50%;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background: white;
    border-radius: 5px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    width: 90%;
    max-width: 500px;
    transform: scale(0.7);
    transition: all 0.3s ease;
    overflow: hidden;
}

.popup-overlay.active .popup-container {
    transform: scale(1);
}

.popup-header {
    background: linear-gradient(135deg, #009ad6 0%, #2563eb 100%);
    color: white;
    padding: 20px 30px;
}

.popup-header h2 {
    font-size: 30px;
    font-weight: 600;
}

.popup-body {
    padding: 1rem;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
}

.popup-footer {
    padding: 1rem;
    border-top: 1px solid #dee2e6;
}

.checkbox-container {
    cursor: pointer;
    color: #4a5568;
    font-weight: 500;
    margin-bottom: 0
}

.checkbox-container input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e0;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-container input:checked+.checkmark {
    background: #667eea;
    border-color: #667eea;
}

.checkbox-container input:checked+.checkmark::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 14px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width:1800px) {
    .products-list li article figure .links-list a {
        padding: 5px 10px;
        font-size: 13px;
    }
}

@media screen and (max-width:1680px) {
    .products-list li article figure .links-list a {
        padding: 5px 6px;
        font-size: 12px;
    }
}

@media screen and (max-width:1440px) {
    .filter-list figure section a {
        padding: 5px 10px;
    }
}

@media screen and (max-width:1366px) {
    .products-list ul {
        gap: 2%;
    }

    .products-list li {
        width: 23.5%;
    }
}

@media screen and (max-width:1280px) {
    .logo-name {
        font-size: 24px;
    }

    .filter-list figure section a {
        padding: 6px 8px;
        margin-right: 6px;
        font-size: 14px;
    }

    .filter-list-select {
        min-width: 160px;
    }

    header h3 span {
        font-size: 14px;
    }
}

@media screen and (max-width:767px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }

    body,
    input,
    .form-control,
    .dropdown-item,
    .btn {
        font-size: var(--fontSize-15);
    }

    h3,
    .popup-header h2 {
        font-size: var(--fontSize-20)
    }

    h4 {
        font-size: var(--fontSize-18);
    }

    h5 {
        font-size: var(--fontSize-14);
    }

    .lh200 {
        line-height: 160%;
    }

    .products-list-parameter,
    .filter-list,
    header .search-form {
        display: none;
    }

    header .mobile-search {
        right: 15px;
        top: 10px;
        font-size: 20px;
        z-index: 55;
    }

    header {
        padding-top: 10px;
        padding-bottom: 15px;
    }

    header h3 span {
        font-size: 14px;
    }

    header .search-form {
        position: absolute;
        background: #fff;
        top: 0;
        left: 0;
        width: 100%;
        padding: 20px 15px 15px;
        z-index: 5;
        box-shadow: 0 0 10px rgba(0, 0, 0, .1);
        height: 100px;
    }

    header .search-form form,
    .dropdown-menu,
    .notice-list {
        width: 100%;
    }

    .notice-list {
        height: 32px;
        line-height: 32px;
        background: #fef3c7;
        border-radius: var(--border-radius-5);
    }

    .filter-list figure section a {
        padding: 4px 15px;
        margin-right: 5px;
    }

    .filter-list figure section a:nth-child(3) {
        margin-right: 15px;
    }

    .products-list-more,
    .filter-list figure em {
        display: block;
    }

    .filter-list figure em {
        right: 0;
        top: 3px;
    }

    .filter-list figure em i {
        color: #999;
    }

    .filter-list figure .filter-content {
        height: 35px;
        overflow: hidden;
    }

    .filter-list figure .filter-content.active {
        height: auto;
    }

    /* .products-list {
        margin-top: 170px;
    } */

    .products-list li {
        width: 48%;
        margin-bottom: 15px;
        padding-bottom: 40px;
    }

    .products-list li article figure section,
    .products-list li .pro-label a {
        font-size: 13px;
    }

    .products-list li article figure .links-list a {
        border: 0 !important;
        padding: 0;
        background: none !important;
        line-height: 1.2;
    }

    .products-list li article figure .links-list a:hover {
        color: initial;
    }

    .products-list li article figure .links-list a i {
        margin-right: 0 !important;
        font-size: var(--fontSize-18);
    }

    .products-list li article figure .links-list a span {
        display: none;
    }

    .products-list li article figure .links-list {
        border-top: 1px solid #eee;
        padding-top: 5px;
        margin-top: 10px;
        bottom: 8px;
        width: calc(100% - 16px);
    }

    .products-list li article b {
        font-size: var(--fontSize-12);
        padding: 2px 5px;
        left: 5px;
        top: 5px;
    }

    .videos {
        width: 92%;
        max-height: 100%;
    }

    .videos video {
        width: 100%;
    }

    .vclose {
        right: -10px;
        top: -35px;
        font-size: 24px;
    }

    .mobile-filter-list,
    .filter-list-select {
        width: 48%;
    }

    .products-list li article em span.icon-share {
        font-size: 12px;
        top: 5px;
        right: 5px;
        width: 20px;
        height: 20px;
        line-height: 20px;
    }

    .products-list li article em i.icon-video {
        right: 5px;
        bottom: 5px;
        font-size: 28px;
    }

    .video-list li {
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .video-list li input {
        margin-bottom: 5px;
    }

    .products-list ul {
        justify-content: space-between;
    }

    .products-list li article em .picture-num {
        font-size: var(--fontSize-12);
        padding: 2px 5px;
        left: 5px;
        bottom: 5px;
    }

    .popup-container {
        width: 96%;
    }

    .products-list li article figure section p {
        margin-bottom: 6px;
    }

    .btn {
        padding: 6px 10px;
    }

    .dropdown-toggle::after {
        margin-left: 0;
    }
}