@media screen and (max-width:768px) {
  :root {
    --head: 52px;
    --color: #EC1D26;
  }

  .ff2 {
    font-family: "Montserrat", "Mulish", sans-serif;
  }

  .ff3 {
    font-family: "Gilroy", "Montserrat", "Mulish", sans-serif;
  }

  body {
    color: #333;
  }

  .C-wrap {
    width: 100%;
    margin: 0 auto;
    max-width: 100%;
    padding: 0 16px;
  }

  .head-zhanwei {
    height: var(--head);
  }

  html.act {
    overflow: hidden;
  }
  
  .head1 {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 50;
    width: 100%;
    height: var(--head);
    padding: 0 16px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .06);
  }

  .isback .head1 {
    transform: translateY(-100%);
    transition: transform .4s ease;
  }

  .head1 .logo {
    width: 88px;
    flex-shrink: 0;
  }

  .head1 .logo img {
    width: 100%;
    display: block;
  }

  .head1 .right {
    gap: 12px;
  }

  .head1 .right > .C-btn1 {
    display: none;
  }

  .head1 .menu {
    position: fixed;
    left: 0;
    top: var(--head);
    width: 100%;
    height: auto;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 80px;
    overflow-y: auto;
    transform: translateX(100%);
    opacity: 0;
    transition: transform .35s ease, opacity .35s ease;
    z-index: 49;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  header.open .menu {
    transform: translateX(0);
    opacity: 1;
  }

  .head1 .menu .link {
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .head1 .menu .link.mob-only {
    display: block;
  }

  .head1 .menu .link.mob-only > a {
    color: var(--color);
    font-weight: 700;
  }

  .head1 .menu .link > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    padding: 0 20px;
    color: #333;
    line-height: 50px;
  }

  .head1 .menu .link > .link-row {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    height: 50px;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .head1 .menu .link > .link-row > a {
    flex: 1;
    min-width: 0;
    height: auto;
    padding: 0;
    line-height: 50px;
    white-space: nowrap;
    color: #333;
  }

  .head1 .menu .link.on > .link-row > a {
    color: var(--color);
  }

  .head1 .menu .link.on > a {
    color: var(--color);
  }

  .head1 .menu .link.has-sub.is-open > .link-row > a {
    color: var(--color);
  }

  .head1 .menu .link > a::after {
    display: none;
  }

  .head1 .menu .link.has-sub > .link-row {
    cursor: default;
  }

  .head1 .menu .arrow-down {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-right: -12px;
    padding: 0;
    border: none;
    background: transparent;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform .25s ease;
  }

  .head1 .menu .arrow-down::before {
    content: "";
    position: absolute;
    inset: 0;
  }

  .head1 .menu .arrow-down img {
    width: 12px;
    height: 12px;
    display: block;
    pointer-events: none;
  }

  .head1 .menu .link.has-sub.on .arrow-down img,
  .head1 .menu .link.has-sub.is-open .arrow-down img {
    filter: brightness(0) saturate(100%) invert(15%) sepia(91%) saturate(7156%) hue-rotate(354deg) brightness(95%) contrast(93%);
  }

  .head1 .menu .link.has-sub.is-open .arrow-down {
    transform: rotate(180deg);
  }

  .head1 .menu .sub-menu {
    position: static;
    transform: none;
    width: 100%;
    padding: 0 0 8px;
    background: #f7f7f7;
    border-top: 0;
    box-shadow: none;
    flex-direction: column;
    gap: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
  }

  .head1 .menu .link.has-sub.is-open > .sub-menu {
    display: flex;
  }

  .head1 .menu .sub-menu::before {
    display: none;
  }

  .head1 .menu .sub-menu .sub-item {
    display: block;
    width: 100%;
    padding: 12px 36px;
    color: #666;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: left;
    line-height: 1.4;
  }

  .head1 .menu .sub-menu .sub-item::after {
    display: none;
  }

  .head1 .menu .sub-menu .sub-group {
    width: 100%;
  }

  .head1 .menu .sub-menu .sub-group.has-third > .sub-item-row {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 44px;
  }

  .head1 .menu .sub-menu .sub-group.has-third .sub-item-row .sub-item {
    flex: 1;
    min-width: 0;
    padding: 12px 8px 12px 36px;
    color: #666;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: left;
    line-height: 1.4;
    box-sizing: border-box;
  }

  .head1 .menu .sub-menu .sub-group.has-third.is-open > .sub-item-row .sub-item {
    color: var(--color);
  }

  .head1 .menu .sub-menu .arrow-right {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-right: 8px;
    padding: 0;
    border: none;
    background: transparent;
    transform: rotate(0deg);
    flex-shrink: 0;
    cursor: pointer;
    transition: transform .25s ease;
  }

  .head1 .menu .sub-menu .arrow-right::before {
    content: "";
    position: absolute;
    inset: 0;
  }

  .head1 .menu .sub-menu .arrow-right img {
    width: 12px;
    height: 12px;
    display: block;
    pointer-events: none;
  }

  .head1 .menu .sub-group.has-third.is-open > .sub-item-row .arrow-right {
    transform: rotate(180deg);
  }

  .head1 .menu .sub-group.has-third.is-open > .sub-item-row .arrow-right img {
    filter: brightness(0) saturate(100%) invert(15%) sepia(91%) saturate(7156%) hue-rotate(354deg) brightness(95%) contrast(93%);
  }

  .head1 .menu .third-menu {
    position: static;
    left: auto;
    top: auto;
    margin: 0;
    min-width: 0;
    width: 100%;
    padding: 0;
    background: #eee;
    border-top: 0;
    box-shadow: none;
    flex-direction: column;
    gap: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    overflow: visible;
  }

  .head1 .menu .third-menu::before {
    display: none;
  }

  .head1 .menu .sub-group.has-third.is-open > .third-menu {
    display: flex;
  }

  .head1 .menu .third-menu .third-item {
    display: block;
    width: 100%;
    padding: 10px 36px 10px 52px;
    color: #888;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: left;
    line-height: 1.4;
    box-sizing: border-box;
  }

  .head1 .menu .third-menu .third-item::after {
    display: none;
  }

  .head1 .menu .third-menu .third-item:active {
    color: var(--color);
  }

  .head1 .navbar-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    position: relative;
    z-index: 51;
  }

  .head1 .navbar-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #333;
    transition: transform .3s ease, opacity .25s ease;
  }

  header.open .navbar-toggle .line-top {
    transform: translateY(7px) rotate(45deg);
  }

  header.open .navbar-toggle .line-middle {
    opacity: 0;
  }

  header.open .navbar-toggle .line-bottom {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  
  .foot1 {
    background: #0f0000;
    color: #fff;
    padding: 32px 0 20px;
  }

  .foot1 .ftop {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
  }

  .foot1 .zuo {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    width: 100%;
  }

  .foot1 .zuo .logo {
    width: 110px;
  }

  .foot1 .foot-link {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 12px;
    width: 100%;
  }

  .foot1 .foot-link .col {
    width: 100%;
  }

  .foot1 .foot-link .col-contact {
    grid-column: 1 / -1;
  }

  .foot1 .foot-link .col li {
    list-style-type: none;
  }

  .foot1 .foot-link .col .a1 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 16px;
  }

  .foot1 .foot-link .col .lh {
    line-height: 1.85;
    color: #fff;
    font-size: 13px;
  }

  .foot1 .foot-link .col .lh a {
    color: #fff;
  }

  .foot1 .foot-link .col-contact .lh {
    font-size: 14px;
    word-break: break-all;
    line-height: 1.55;
  }

  .foot1 .you {
    width: 100%;
  }

  .foot1 .you .title {
    margin-bottom: 12px;
    color: #fff;
    font-size: 16px;
  }

  .foot1 .you .form {
    position: relative;
    border: 1px solid #fff;
    height: 42px;
    padding: 0 14px;
    margin-bottom: 18px;
  }

  .foot1 .you .form input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    height: 100%;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
  }

  .foot1 .you .form input::placeholder {
    color: #cacaca;
  }

  .foot1 .you .form .line {
    width: 1px;
    height: 60%;
    background: #fff;
    margin: 0 12px;
  }

  .foot1 .you .form button {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0;
    height: 100%;
    font-size: 13px;
    flex-shrink: 0;
  }

  .foot1 .you .socials {
    gap: 14px;
    justify-content: flex-start;
  }

  .foot1 .you .socials .ic {
    display: block;
    width: 26px;
    height: 26px;
  }

  .foot1 .you .socials .ic img {
    width: 100%;
    height: 100%;
  }

  .foot1 .fline {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, .15);
    margin: 24px 0 12px;
  }

  .foot1 .fcopy {
    color: #fff;
    opacity: .7;
    font-size: 12px;
    text-align: center;
  }
  
  .C-btn1 {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--color);
    color: #fff;
    padding: 5px 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background .3s, transform .3s;
  }
  
  .C-btn1 .icon {
    display: block;
    width: 7px;
  }
  
  .C-btn1:hover {
    background: #c91720;
    transform: translateY(-1px);
  }
  
  .C-btn2 {
    display: inline-block;
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
    padding: 6px 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background .3s, color .3s;
  }
  
  .C-btn2:hover {
    background: #fff;
    color: var(--color);
  }
  
  .C-title {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding-bottom: 4px;
  }
  
  .C-title h2 {
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1s ease;
    white-space: nowrap;
  }
  
  .C-title.light h2 {
    color: #fff;
  }
  
  .C-title .line {
    display: block;
    width: 55px;
    height: 3px;
    background: var(--color);
    margin-top: 4px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .9s ease .3s;
  }
  
  .C-title.show h2 {
    clip-path: inset(0 0 0 0);
  }
  
  .C-title.show .line {
    transform: scaleX(1);
  }
  
  .C-title.no-line .line {
    display: none;
  }
  
  .page-home .C-title {
    margin-bottom: 20px;
  }
  
  .home1 {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--head));
    overflow: hidden;
  }

  .home1 .home1-swiper,
  .home1 .swiper-wrapper,
  .home1 .swiper-slide {
    width: 100%;
    height: 100%;
  }

  .home1 .home1-swiper {
    touch-action: pan-y pinch-zoom;
    cursor: grab;
  }

  .home1 .home1-swiper.swiper-grabbing {
    cursor: grabbing;
  }

  .home1 .swiper-slide {
    position: relative;
    overflow: hidden;
  }

  .home1 .bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .home1 .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .home1 .swiper-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, .6) 100%);
    z-index: 1;
  }

  .home1 .C-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 90px;
    margin: 0 auto;
    z-index: 3;
    padding: 0 20px;
    width: 100%;
  }

  .home1 .txt {
    max-width: 100%;
    color: #fff;
  }

  .home1 .t1 {
    color: #fff;
    line-height: 1.3;
    margin: 0 0 8px;
    font-size: 18px;
  }

  .home1 .t1 .red,
  .home1 .t2 .red {
    color: var(--color);
  }

  .home1 .t2 {
    color: #fff;
    line-height: 1.05;
    margin: 0;
    font-size: 40px;
  }

  .home1 .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(0.3em);
    transition: opacity .25s ease, transform .25s ease;
  }

  .home1 .char.show {
    opacity: 1;
    transform: translateY(0);
  }

  .home1 .home1-pagination {
    position: absolute;
    left: 50%;
    right: auto;
    top: auto;
    bottom: 5.5rem;
    transform: translateX(-50%);
    z-index: 10;
    width: auto;
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
  }

  .home1 .home1-pagination .swiper-pagination-bullet {
    position: relative;
    width: 0.5rem;
    height: 0.5rem;
    background: rgba(255, 255, 255, .45);
    border-radius: 50%;
    opacity: 1;
    margin: 0;
    transition: background .3s, width .3s;
  }

  .home1 .home1-pagination .swiper-pagination-bullet::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2.25rem;
    height: 2.25rem;
    transform: translate(-50%, -50%);
  }

  .home1 .home1-pagination .swiper-pagination-bullet-active {
    background: #fff;
    width: 1.5rem;
    height: 0.5rem;
    border-radius: 0.25rem;
  }

  .home1 .scroll-down {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 10;
    color: #fff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
  }

  .home1 .scroll-down .icon {
    display: block;
    width: 12px;
    margin: 0 auto;
    animation: scrollDown 1.6s ease-in-out infinite;
  }

  .home1 .scroll-down span {
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  @keyframes scrollDown {
    0% { transform: translateY(-2px); opacity: .6; }
    50% { transform: translateY(2px); opacity: 1; }
    100% { transform: translateY(-2px); opacity: .6; }
  }

  .home2 {
    background: #fff;
    padding: 32px 0;
  }

  .page-home .home2 .list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }

  .home2 .item {
    display: block;
    position: relative;
    color: #333;
  }

  .home2 .item .pic {
    position: relative;
    height: 150px;
    border: 1px solid #eee;
    overflow: hidden;
    background: #fff;
  }

  .home2 .item .pic img {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
  }

  .home2 .item .info {
    padding-top: 10px;
  }

  .home2 .item .tag {
    color: var(--color);
    letter-spacing: 1px;
    margin-bottom: 4px;
    font-size: 12px;
  }

  .home2 .item .row {
    margin-top: 4px;
  }

  .home2 .item .name {
    color: #333;
    margin: 0;
    font-size: 16px;
  }

  .home2 .item .arrow {
    display: block;
    width: 14px;
    height: 14px;
    position: relative;
    flex-shrink: 0;
  }

  .home2 .item .arrow img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .home3 {
    background: #0b0b0b;
    padding: 32px 0;
  }

  .home3 .C-title h2 {
    color: #fff;
  }

  .page-home .home3 .list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .home3 .item {
    position: relative;
    overflow: hidden;
    display: block;
    height: 110px;
    cursor: pointer;
  }

  .home3 .item .bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .home3 .item .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .home3 .item .mask {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
    z-index: 1;
  }

  .home3 .item .name {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    font-size: 15px;
    text-align: center;
    padding: 0 8px;
  }

  .home4 {
    background: #fff;
    padding: 32px 0;
  }

  .page-home .home4 .list {
    grid-template-columns: repeat(1, 1fr);
    gap: 14px;
  }

  .home4 .item {
    display: block;
    color: #333;
    background: #f8f8f8;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
  }

  .home4 .item .pic {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
  }

  .home4 .item .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .home4 .item .info {
    position: relative;
    padding: 14px 16px 16px;
    min-height: 110px;
  }

  .home4 .item .ibg {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 110px;
    opacity: .85;
    pointer-events: none;
  }

  .home4 .item .date {
    color: #999;
    margin-bottom: 6px;
    font-size: 12px;
  }

  .home4 .item .title {
    color: var(--color);
    line-height: 1.35;
    margin: 0 0 8px;
    position: relative;
    z-index: 2;
    font-size: 16px;
  }

  .home4 .item .desc {
    color: #333;
    line-height: 1.55;
    position: relative;
    z-index: 2;
    font-size: 13px;
  }

  .home4 .item .more {
    color: var(--color);
    text-decoration: underline;
    display: inline-block;
    margin-top: 10px;
    position: relative;
    z-index: 3;
    font-size: 13px;
  }

  .home5 {
    background: var(--color);
    padding: 36px 20px;
    color: #fff;
  }

  .home5 .C-wrap {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
  }

  .home5 .zuo {
    width: 100%;
  }

  .home5 .zuo .C-title {
    margin-bottom: 14px;
  }

  .home5 .zuo .C-title h2 {
    color: #fff;
  }

  .home5 .intr {
    color: rgba(255, 255, 255, .92);
    line-height: 1.6;
    margin: 0 0 18px;
    font-size: 15px;
  }

  .home5 .you {
    width: 220px;
    height: 220px;
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    align-self: center;
  }

  .home5 .you .ring {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    animation: rotate-disc 14s linear infinite;
    will-change: transform;
  }

  @keyframes rotate-disc {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .home5 .you .circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
  }

  .home5 .you .circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0) contrast(1.05);
  }
  
  .pd1 {
    background: #fff;
    padding: 0 0 32px;
  }

  .pd1 .C-title {
    margin-bottom: 16px;
  }

  .page-connectors .pd1 .C-title {
    display: block;
    width: 100%;
  }

  .page-connectors .pd1 .C-title h2 {
    font-size: 20px;
    line-height: 1.35;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
    letter-spacing: .5px;
  }

  .pd1 .pd-main {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 18px;
  }

  .pd1 .pd-aside {
    width: 100%;
    flex-shrink: 0;
    background: #f8f8f8;
    border: 1px solid #ededed;
    border-radius: 8px;
    padding: 14px;
    box-sizing: border-box;
  }

  .pd1 .pd-aside .filter-group {
    padding: 0;
  }

  .pd1 .pd-aside .filter-group + .filter-group {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #ededed;
  }

  .pd1 .pd-aside .filter-title {
    color: #333;
    line-height: 1.3;
    margin: 0 0 10px;
    text-transform: capitalize;
    font-size: 16px;
  }

  .pd1 .pd-aside .filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    border-top: 0;
    padding-top: 0;
  }

  .pd1 .pd-aside .filter-list-tree {
    display: block;
    flex-wrap: nowrap;
    gap: 0;
  }

  .pd1 .pd-aside .filter-sub-group {
    width: 100%;
  }

  .pd1 .pd-aside .filter-sub-group.has-third > .filter-item-row {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 40px;
  }

  .pd1 .pd-aside .filter-sub-group.has-third .filter-item-row .filter-item {
    flex: 1;
    min-width: 0;
    display: block;
    padding: 8px 0;
    border-radius: 0;
    color: #52525c;
    white-space: normal;
    letter-spacing: 0;
    text-transform: none;
  }

  .pd1 .pd-aside .arrow-right {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: -8px;
    padding: 0;
    border: none;
    background: transparent;
    transform: rotate(-90deg);
    flex-shrink: 0;
    cursor: pointer;
    transition: transform .25s ease;
  }

  .pd1 .pd-aside .arrow-right::before {
    content: "";
    position: absolute;
    inset: 0;
  }

  .pd1 .pd-aside .arrow-right img {
    width: 12px;
    height: 12px;
    display: block;
    pointer-events: none;
  }

  .pd1 .pd-aside .filter-sub-group.has-third.is-open > .filter-item-row .arrow-right {
    transform: rotate(0deg);
  }

  .pd1 .pd-aside .filter-sub-group.has-third.is-open > .filter-item-row .arrow-right img {
    filter: brightness(0) saturate(100%) invert(15%) sepia(91%) saturate(7156%) hue-rotate(354deg) brightness(95%) contrast(93%);
  }

  .pd1 .pd-aside .filter-sub-group.has-third.is-open > .filter-item-row .filter-item,
  .pd1 .pd-aside .filter-sub-item.on {
    color: var(--color);
    background: transparent;
  }

  .pd1 .pd-aside .filter-third-menu {
    display: none;
    padding: 0 0 4px 12px;
  }

  .pd1 .pd-aside .filter-sub-group.has-third.is-open > .filter-third-menu {
    display: block;
  }

  .pd1 .pd-aside .filter-sub-item {
    display: block;
    padding: 8px 0;
    color: #888;
    line-height: 1.4;
    font-size: 12px;
    white-space: normal;
    letter-spacing: 0;
    text-transform: none;
  }

  .pd1 .pd-aside .filter-list-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
  }

  .pd1 .pd-aside .filter-list-tags .filter-item {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 500px;
    color: #52525c;
    line-height: 1.4;
    font-size: 12px;
    white-space: nowrap;
    letter-spacing: .2px;
  }

  .pd1 .pd-aside .filter-list-tree > .filter-item {
    display: block;
    padding: 8px 0;
    border-radius: 0;
    color: #52525c;
    line-height: 1.4;
    font-size: 14px;
    white-space: normal;
    letter-spacing: 0;
  }

  .pd1 .pd-aside .filter-list-tags .filter-item.on {
    color: #fff;
    background: var(--color);
    border-color: var(--color);
  }

  .pd1 .pd-aside .filter-list-tree .filter-item.on,
  .pd1 .pd-aside .filter-list-tree .filter-sub-item.on {
    color: var(--color);
    background: transparent;
  }

  .pd1 .pd2 {
    flex: none;
    width: 100%;
    min-width: 0;
    gap: 14px;
  }

  .pd1 .pd2 .item {
    display: block;
    color: #333;
  }

  .pd1 .pd2 .item .pic {
    position: relative;
    height: 150px;
    background: #f8f8f8;
    border: 1px solid #ededed;
    overflow: hidden;
  }

  .pd1 .pd2 .item .pic img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .pd1 .pd2 .item .info {
    padding: 10px 4px 0;
  }

  .pd1 .pd2 .item .tag {
    color: var(--color);
    line-height: 1.4;
    margin: 0;
    letter-spacing: 0;
    font-size: 11px;
    text-transform: uppercase;
  }

  .pd1 .pd2 .item .row {
    margin-top: 4px;
    flex-wrap: nowrap;
  }

  .pd1 .pd2 .item .name {
    color: #333;
    line-height: 1.3;
    margin: 0;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .pd1 .pd2 .item .arrow {
    display: block;
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    margin-left: 6px;
  }

  .pd1 .pd2 .item .arrow img {
    width: 100%;
    height: 100%;
  }
  
  .page-cable-info {
    background: #fff;
  }

  .page-cable-info .pd2 {
    background: #f8f8f8;
    padding: 0 0 24px;
  }

  .page-cable-info .pd2-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: wrap;
    background: #f8f8f8;
    padding: 0;
  }

  .page-cable-info .pd2-gallery {
    width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
  }

  .page-cable-info .pd2-main {
    width: 100%;
    overflow: hidden;
  }

  .page-cable-info .pd2-main .pic {
    height: 280px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .page-cable-info .pd2-main .pic img {
    /* max-width: 78%; */
    /* max-height: 78%; */
    /* object-fit: contain; */
  }

  .page-cable-info .pd2-thumb {
    margin: 12px 15px 0;
    width: auto;
    padding: 0;
  }

  .page-cable-info .pd2-thumb .swiper-slide {
    width: 86px;
    flex-shrink: 0;
  }

  .page-cable-info .pd2-thumb .thumb {
    width: 86px;
    height: 56px;
    border: 1px solid #ddd;
    background: #fff;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .page-cable-info .pd2-thumb .thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .page-cable-info .pd2-thumb .swiper-slide-thumb-active .thumb {
    border-color: var(--color);
  }

  .page-cable-info .pd2-detail {
    flex: none;
    width: 100%;
    min-width: 0;
    height: auto;
    max-height: none;
    overflow: visible;
    padding: 24px 16px 8px;
    box-sizing: border-box;
  }

  .page-cable-info .pd2-detail .crumb {
    color: var(--color);
    line-height: 1.5;
    margin: 0 0 18px;
    font-size: 12px;
    word-break: break-word;
  }

  .page-cable-info .pd2-detail .crumb span {
    color: #666;
  }

  .page-cable-info .pd2-block {
    width: 100%;
  }

  .page-cable-info .pd2-block .sku {
    color: var(--color);
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.4;
    margin: 0 0 8px;
    font-size: 16px;
  }

  .page-cable-info .pd2-block .head .title {
    color: #333;
    line-height: 1.3;
    margin: 0;
    font-size: 22px;
  }

  .page-cable-info .pd2-block .head .sub {
    color: #666;
    line-height: 1.5;
    margin: 6px 0 0;
    font-size: 13px;
  }

  .page-cable-info .pd2-block .head + .pd2-opt {
    margin-top: 20px;
    padding-top: 0;
  }

  .page-cable-info .pd2-opt + .pd2-opt {
    margin-top: 18px;
  }

  .page-cable-info .pd2-block .head + .pd2-opt + .pd2-opt {
    padding-top: 0;
  }

  .page-cable-info .pd2-opt .opt-label {
    color: #333;
    text-transform: uppercase;
    line-height: 1.4;
    margin: 0 0 8px;
    font-size: 13px;
  }

  .page-cable-info .spec-btns {
    gap: 6px;
    flex-wrap: wrap;
  }

  .page-cable-info .spec-btn {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 500px;
    background: #fff;
    color: #333;
    line-height: 1;
    font-size: 12px;
  }

  .page-cable-info .spec-btn.on {
    background: #111;
    border-color: #111;
    color: #fff;
  }

  .page-cable-info .color-list {
    gap: 8px;
    flex-wrap: wrap;
  }

  .page-cable-info .color-item {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 2px solid transparent;
    background: transparent;
    overflow: hidden;
    box-sizing: border-box;
  }

  .page-cable-info .color-item.on {
    border-color: var(--color);
  }

  .page-cable-info .color-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .page-cable-info .pd2-opt .desc p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 13px;
  }

  .page-cable-info .feat-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .page-cable-info .feat-list li {
    gap: 6px;
    align-items: flex-start;
    line-height: 1.55;
    color: #666;
    font-size: 2.8vw;
  }

  .page-cable-info .feat-list li + li {
    margin-top: 6px;
  }

  .page-cable-info .feat-list .mark {
    color: var(--color);
    flex-shrink: 0;
    line-height: 1.55;
  }

  .page-cable-info .pd3 .C-title,
  .page-cable-info .pd4 .C-title,
  .page-cable-info .pd5 .C-title {
    margin-bottom: 16px;
  }

  .page-cable-info .pd3 {
    background: #f8f8f8;
    padding: 32px 0 24px;
  }

  .page-cable-info .spec-table {
    border: 1px solid #ececec;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
  }

  .page-cable-info .spec-table .row {
    align-items: stretch;
    flex-wrap: nowrap;
    height: auto;
    min-height: 36px;
  }

  .page-cable-info .spec-table .row:nth-child(odd) {
    background: #fafafa;
  }

  .page-cable-info .spec-table .cell {
    padding: 8px 10px;
    line-height: 1.5;
    box-sizing: border-box;
    font-size: 13px;
  }

  .page-cable-info .spec-table .cell.label {
    width: 42%;
    flex-shrink: 0;
    color: #333;
    align-self: center;
  }

  .page-cable-info .spec-table .cell.val {
    flex: 1;
    min-width: 0;
    color: #333;
    align-self: center;
    word-break: break-word;
  }

  .page-cable-info .pd4.home2,
  .page-cable-info .pd5.home2 {
    background: #f8f8f8;
    padding: 32px 0 40px;
  }

  .page-cable-info .pd4.home2 .list,
  .page-cable-info .pd5.home2 .list {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  
  .page-merch .home6 {
    position: relative;
    width: 100%;
    height: 286px;
    overflow: hidden;
    background: #000;
  }
  
  .page-merch .home6 .bg {
    position: absolute;
    inset: 0;
  }
  
  .page-merch .home6 .bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
  }
  
  .page-merch .home6 .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .page-merch .home6 .C-wrap {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
  }
  
  .page-merch .home6 h1 {
    color: #fff;
    line-height: 36px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .page-merch .home6 h1 .red {
    color: var(--color);
  }
  
  .page-merch .merch-sec {
    background: #fff;
    padding: 24px 0 32px;
  }
  
  .page-merch .merch-sec .C-title {
    margin-bottom: 6px;
  }
  
  .page-merch .merch-sec .list {
    gap: 12px;
  }
  
  .page-merch .merch-sec .item {
    display: block;
    color: #333;
  }
  
  .page-merch .merch-sec .item .pic {
    position: relative;
    height: 248px;
    background: #d9d9d9;
    overflow: hidden;
  }
  
  .page-merch .merch-sec .item .pic img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .4s ease;
  }
  
  .page-merch .merch-sec .item .info {
    margin-top: 4px;
    flex-wrap: nowrap;
  }
  
  .page-merch .merch-sec .item .name {
    color: #333;
    line-height: 1.4;
    margin: 0;
    transition: color .3s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .page-merch .merch-sec .item .arrow {
    display: inline-block;
    color: var(--color);
    font-style: normal;
    line-height: 1;
    flex-shrink: 0;
    margin-left: 5px;
    transition: transform .35s ease;
  }
  
  .page-merch .merch-sec .item:hover .pic img {
    transform: scale(1.05);
  }
  
  .page-merch .merch-sec .item:hover .name {
    color: var(--color);
  }
  
  .page-merch .merch-sec .item:hover .arrow {
    transform: translate(2px, -2px);
  }
  
  .page-artists .pd9 {
    background: #f8f8f8;
    padding: 40px 0 32px;
  }
  
  .page-artists .pd9-head {
    display: inline-block;
    padding-bottom: 20px;
  }
  
  .page-artists .pd9-head h2 {
    color: #333;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0 0 4px;
  }
  
  .page-artists .pd9-head .line {
    display: block;
    width: 72px;
    height: 3px;
    background: var(--color);
    margin: 0 0 12px;
  }
  
  .page-artists .pd9-head .desc {
    color: #333;
    line-height: 1.4;
    margin: 0;
  }
  
  .page-artists .pd9-swiper {
    width: 100%;
    overflow: hidden;
  }
  
  .page-artists .pd9-swiper .list {
    gap: 10px;
  }
  
  .page-artists .pd9-swiper .item {
    position: relative;
    display: block;
    height: 160px;
    overflow: hidden;
    background: #d9d9d9;
    color: #fff;
  }
  
  .page-artists .pd9-swiper .item .bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
  }
  
  .page-artists .pd9-swiper .item .mask {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    transition: background .35s ease;
  }
  
  .page-artists .pd9-swiper .item .txt {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 16px 16px 27px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
  }
  
  .page-artists .pd9-swiper .item .name {
    color: #fff;
    line-height: 15px;
    margin: 0;
  }
  
  .page-artists .pd9-swiper .item .sub {
    color: #f4f4f5;
    line-height: 10px;
    margin: 0;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity .35s ease, transform .35s ease;
  }
  
  .page-artists .pd9-swiper .item:hover .bg {
    transform: scale(1.06);
  }
  
  .page-artists .pd9-swiper .item:hover .mask {
    background: rgba(0, 0, 0, .55);
  }
  
  .page-artists .pd9-swiper .item:hover .sub {
    opacity: 1;
    transform: translateY(0);
  }
  
  .page-artists .pd9-pagebar {
    margin-top: 30px;
    height: 25px;
    gap: 0;
  }
  
  .page-artists .pd9-prev,
  .page-artists .pd9-next {
    width: 25px;
    height: 25px;
    border: 1px solid #0f0000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color .25s ease;
  }
  
  .page-artists .pd9-prev img,
  .page-artists .pd9-next img {
    width: 15px;
    height: 15px;
    display: block;
    transition: filter .25s ease;
  }
  
  .page-artists .pd9-prev:hover,
  .page-artists .pd9-next:hover {
    background: var(--color);
    border-color: var(--color);
  }
  
  .page-artists .pd9-prev:hover img,
  .page-artists .pd9-next:hover img {
    filter: brightness(0) invert(1);
  }
  
  .page-artists .pd9-prev.swiper-button-disabled,
  .page-artists .pd9-next.swiper-button-disabled {
    opacity: .35;
    pointer-events: none;
  }
  
  .page-artists .pd9-pagination {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: auto;
    margin: 0px 6px;
  }
  
  .page-artists .pd9-pagination .swiper-pagination-bullet {
    width: 25px;
    height: 25px;
    border-radius: 0;
    background: transparent;
    color: #0f0000;
    font-size: 14px;
    font-family: "Inter", "Montserrat", sans-serif;
    font-weight: 400;
    line-height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    cursor: pointer;
    margin: 0 !important;
    transition: background-color .25s ease, color .25s ease;
  }
  
  .page-artists .pd9-pagination .swiper-pagination-bullet:hover {
    color: var(--color);
  }
  
  .page-artists .pd9-pagination .swiper-pagination-bullet-active {
    background: var(--color);
    color: #fff;
  }
  
  .page-artists .pd9-pagination .swiper-pagination-bullet-active:hover {
    color: #fff;
  }
  
  .page-artists .pd9-pagination .pd9-dots {
    cursor: default;
    pointer-events: none;
  }
  
  .page-artists .pd9-pagination .pd9-dots:hover {
    color: #0f0000;
    background: transparent;
  }
  
  .page-aboutus .home7 {
    background: #f9f9fb;
    padding: 36px 0;
  }

  .page-aboutus .home7-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
  }

  .page-aboutus .home7-grid .zuo h1 {
    color: #333;
    letter-spacing: -1px;
    line-height: 1.15;
    margin: 0 0 14px;
    font-size: 36px;
  }

  .page-aboutus .home7-grid .zuo h1 .red {
    color: var(--color);
  }

  .page-aboutus .home7-grid .zuo .desc {
    color: #555;
    line-height: 1.65;
    margin: 0 0 18px;
    max-width: 100%;
    font-size: 13px;
  }

  .page-aboutus .home7-grid .zuo .tag {
    gap: 8px;
    align-items: center;
  }

  .page-aboutus .home7-grid .zuo .tag .bar {
    display: block;
    width: 32px;
    height: 2px;
    background: var(--color);
  }

  .page-aboutus .home7-grid .zuo .tag .txt {
    color: #333;
    letter-spacing: 1px;
  }

  .page-aboutus .home7-grid .you {
    position: relative;
    width: 100%;
  }

  .page-aboutus .home7-grid .you .pic {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #edeef0;
  }

  .page-aboutus .home7-grid .you .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .page-aboutus .home7-grid .you .stat {
    display: none;
  }

  .page-aboutus .home8 {
    background: #fff;
    padding: 36px 0;
  }

  .page-aboutus .home8-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }

  .page-aboutus .home8-grid .zuo {
    width: 100%;
    height: 200px;
    background: #eee;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
  }

  .page-aboutus .home8-grid .zuo .pic,
  .page-aboutus .home8-grid .zuo .pic img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  .page-aboutus .home8-grid .you .C-title {
    margin-bottom: 14px;
  }

  .page-aboutus .home8-grid .you .desc {
    color: #333;
    line-height: 1.65;
    margin: 0 0 10px;
    font-size: 13px;
  }

  .page-aboutus .home9 {
    background: #fff;
    padding: 36px 0;
  }

  .page-aboutus .home9 .C-title {
    margin-bottom: 20px;
  }

  .page-aboutus .home9 .value-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: auto;
  }

  .page-aboutus .home9 .card {
    width: 100%;
    min-height: auto;
    padding: 56px 22px 24px;
    border: 1px solid #d8d8d8;
    border-radius: 10px;
    background: #fff;
    text-align: center;
    position: relative;
  }

  .page-aboutus .home9 .card .ico {
    position: absolute;
    left: 50%;
    top: 18px;
    transform: translateX(-50%);
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .page-aboutus .home9 .card .ico img {
    max-width: 32px;
    max-height: 28px;
    display: block;
  }

  .page-aboutus .home9 .card .t {
    color: #333;
    line-height: 1.25;
    margin: 0 0 10px;
    font-size: 18px;
  }

  .page-aboutus .home9 .card .desc {
    color: #555;
    line-height: 1.65;
    margin: 0;
    font-size: 13px;
  }

  .signal-meter {
    display: flex;
    gap: 2px;
    height: 6px;
    width: 100%;
    padding: 0;
    background-color: #979797;
  }

  .signal-meter .bar {
    flex: 1;
    height: 100%;
    background: #e31e24;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .9s ease;
  }

  .signal-meter.show .bar {
    transform: scaleX(1);
  }

  .signal-meter .bar:nth-child(4) { opacity: .8; }
  .signal-meter .bar:nth-child(5) { opacity: .6; }
  .signal-meter .bar:nth-child(6) { opacity: .4; }
  .signal-meter .bar:nth-child(7) { opacity: .2; }
  .signal-meter .bar:nth-child(8) { opacity: .1; }

  .signal-meter.show .bar:nth-child(1) { transition-delay: 0s; }
  .signal-meter.show .bar:nth-child(2) { transition-delay: .06s; }
  .signal-meter.show .bar:nth-child(3) { transition-delay: .12s; }
  .signal-meter.show .bar:nth-child(4) { transition-delay: .18s; }
  .signal-meter.show .bar:nth-child(5) { transition-delay: .24s; }
  .signal-meter.show .bar:nth-child(6) { transition-delay: .3s; }
  .signal-meter.show .bar:nth-child(7) { transition-delay: .36s; }
  .signal-meter.show .bar:nth-child(8) { transition-delay: .42s; }

  .page-aboutus .home10 {
    background: #fff;
    padding: 36px 0;
  }

  .page-aboutus .home10 .map {
    position: relative;
    width: 100%;
  }

  .page-aboutus .home10 .map .bg {
    width: 100%;
    height: auto;
    display: block;
  }

  .page-aboutus .home10 .map .dot {
    position: absolute;
    left: 10.2%;
    top: 3.9%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .page-aboutus .home10 .map .dot .ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed var(--color);
    animation: aboutus-breath 2.4s ease-in-out infinite;
  }

  .page-aboutus .home10 .map .dot .r1 {
    width: 60px;
    height: 60px;
    border: 2px dashed rgba(231, 30, 36);
    opacity: .35;
  }

  .page-aboutus .home10 .map .dot .r2 {
    width: 26px;
    height: 26px;
    border-style: solid;
    border-color: rgba(231, 30, 36);
    animation-delay: .4s;
  }

  .page-aboutus .home10 .map .dot .r3 {
    width: 10px;
    height: 10px;
    border-style: solid;
    border-color: rgba(231, 30, 36);
    animation-delay: .8s;
  }

  .page-aboutus .home10 .map .dot .core {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color);
    animation: aboutus-breath 2.4s ease-in-out infinite;
  }

  @keyframes aboutus-breath {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: .65; }
  }

  .page-aboutus .home10 .map .info {
    position: static;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 24px;
    padding: 0 20px;
  }

  .page-aboutus .home10 .map .info .block h3 {
    color: #333;
    line-height: 1.2;
    margin: 0 0 8px;
    font-size: 20px;
  }

  .page-aboutus .home10 .map .info .block p {
    color: #555;
    line-height: 1.55;
    margin: 0 0 4px;
    font-size: 13px;
  }

  .page-aboutus .home10 .map .info .block-row {
    display: flex;
    gap: 40px;
    flex-wrap: nowrap;
  }

  .page-aboutus .home10 .map .info .block-row .block {
    width: auto;
    flex: 1;
    min-width: 0;
  }

  .page-aboutus .home11 {
    width: 100%;
    align-items: stretch;
    flex-wrap: nowrap;
  }

  .page-aboutus .home11 .link {
    flex: 1;
    min-width: 0;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f8f8f8;
    color: #333;
    text-decoration: none;
  }

  .page-aboutus .home11 .link:nth-child(even) {
    background: #f0f0f0;
  }

  .page-aboutus .home11 .link .ico {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .page-aboutus .home11 .link .ico img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .page-aboutus .home11 .link .txt {
    text-transform: lowercase;
    line-height: 1.2;
    font-size: 12px;
  }
  
  /* catalog -------------------------------------------- */
  .page-catalog .ct1 {
    background: #fff;
    padding-top: 20px;
    padding-bottom: 60px;
  }
  
  .page-catalog .ct1 .C-title {
    margin-bottom: 12px;
  }
  
  .ct-search {
    width: 100%;
    height: 33px;
    padding: 0 12px;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    transition: border-color .25s ease, box-shadow .25s ease;
    box-sizing: border-box;
  }
  
  .ct-search:focus-within {
    border-color: var(--color);
    box-shadow: 0 0 0 3px rgba(231, 30, 36, .08);
  }
  
  .ct-search-ico {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    display: block;
  }
  
  .ct-search-ico img {
    width: 100%;
    height: 100%;
    display: block;
  }
  
  .ct-search-input {
    flex: 1;
    height: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: #333;
    line-height: 33px;
    padding: 0;
  }
  
  .ct-search-input::placeholder {
    color: #9ca3af;
  }
  
  .page-catalog .ct-list {
    gap: 20px 30px;
  }
  
  .page-catalog .ct-item {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 54px;
    padding: 10px 10px 10px 10px;
    background: #fff;
    border: 1px solid #eaeaea;
    color: #333;
    transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
    box-sizing: border-box;
  }
  
  .page-catalog .ct-item.active {
    border-color: var(--color);
  }
  
  .page-catalog .ct-list:hover .ct-item.active {
    border-color: #eaeaea;
    box-shadow: none;
  }
  
  .page-catalog .ct-list .ct-item:hover {
    border-color: var(--color);
    transform: translateY(-1px);
    box-shadow: 0 5px 12px rgba(231, 30, 36, .12);
  }
  
  .page-catalog .ct-item.is-hide {
    display: none;
  }
  
  .page-catalog .ct-item .ico {
    width: 20px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .page-catalog .ct-item .ico img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
  }
  
  .page-catalog .ct-item .meta {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
  }
  
  .page-catalog .ct-item .meta .t {
    color: #333;
    line-height: 1.5;
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  
  .page-download .ct-item {
    height: 54px;
  }
  
  .page-download .ct-item .meta .t {
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  
  .page-catalog .ct-item .meta .v {
    color: #999;
    line-height: 1.5;
    margin: 0;
  }
  
  .page-catalog .ct-item .dl {
    height: 100%;
    width: 34px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    transition: transform .25s ease;
    border-left: 0.052vw solid transparent;
  }
  
  .page-catalog .ct-item:hover .dl {
    transform: translateY(1px);
  }
  
  .page-catalog .ct-item .dl-ico {
    width: 16px;
    height: 16px;
    display: block;
  }
  
  .page-catalog .ct-item .dl-ico img {
    width: 100%;
    height: 100%;
    display: block;
  }
  
  .page-catalog .ct-item .dl-size {
    color: #999;
    line-height: 1.5;
    white-space: nowrap;
  }
  
  .ct-empty {
    display: none;
    width: 100%;
    padding: 30px 0;
    text-align: center;
    color: #999;
    margin: 0;
  }
  
  .ct-empty.show {
    display: block;
  }
  
  /* download ------------------------------------------- */
  .page-download .dl1 {
    background: #fff;
    padding-top: 20px;
  }
  
  .page-download .dl1 .C-title {
    margin-bottom: 12px;
  }
  
  .page-download .dl-list {
    gap: 12px;
  }
  
  .page-download .dl-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 45px;
    padding: 11px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    color: #333;
    transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
    box-sizing: border-box;
  }
  
  .page-download .dl-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color);
    transition: width .25s ease;
  }
  
  .page-download .dl-list .dl-item:hover {
    border-color: var(--color);
    transform: translateY(-1px);
    box-shadow: 0 5px 12px rgba(231, 30, 36, .12);
  }
  
  .page-download .dl-list .dl-item:hover::before {
    width: 3px;
  }
  
  .page-download .dl-item.is-hide {
    display: none;
  }
  
  .page-download .dl-item .dl-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
  }
  
  .page-download .dl-item .dl-ico {
    width: 18px;
    height: 22px;
    flex-shrink: 0;
    display: block;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, .15));
  }
  
  .page-download .dl-item .dl-ico img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
  }
  
  .page-download .dl-item .meta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
  }
  
  .page-download .dl-item .meta .t {
    color: #1e2939;
    line-height: 9px;
    margin: 0 0 2px;
    letter-spacing: -.12px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  
  .page-download .dl-item .meta .files {
    color: #99a1af;
    line-height: 8px;
    margin: 0;
    letter-spacing: .138px;
    text-transform: uppercase;
  }
  
  .page-download .dl-item .dl-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding-left: 9px;
    border-left: 1px solid #f3f4f6;
    height: 24px;
    flex-shrink: 0;
    transition: transform .25s ease;
  }
  
  .page-download .dl-item:hover .dl-side {
    transform: translateY(1px);
  }
  
  .page-download .dl-item .dl-side-ico {
    width: 9px;
    height: 9px;
    display: block;
  }
  
  .page-download .dl-item .dl-side-ico img {
    width: 100%;
    height: 100%;
    display: block;
  }
  
  .page-download .dl-item .dl-size {
    color: #99a1af;
    line-height: 7px;
    letter-spacing: .3px;
    white-space: nowrap;
  }
  
  .page-support .pd11 {
    background: #fff;
    padding: 36px 0;
  }

  .page-support .pd11-main {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }

  .page-support .pd11 .zuo {
    width: 100%;
    max-width: 100%;
  }

  .page-support .pd11 .zuo-desc {
    color: #333;
    line-height: 1.5;
    margin: 10px 0 24px;
    width: 100%;
    font-size: 15px;
  }

  .page-support .pd11 .user-center-title {
    margin-bottom: 14px;
  }

  .page-support .pd11 .login-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 14px;
  }

  .page-support .pd11 .form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .page-support .pd11 .form-label {
    color: #333;
    line-height: 1.4;
    font-size: 15px;
  }

  .page-support .pd11 .form-input {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 8px;
    background: #fff;
    color: #333;
    line-height: 42px;
    outline: none;
    box-sizing: border-box;
    transition: border-color .25s ease;
    font-size: 15px;
  }

  .page-support .pd11 .form-input:focus {
    border-color: var(--color);
  }

  .page-support .pd11 .form-tip {
    margin: 0;
    color: var(--color);
    line-height: 1.4;
    opacity: 0;
    transition: opacity .25s ease;
    font-size: 12px;
  }

  .page-support .pd11 .form-tip.show {
    opacity: 1;
  }

  .page-support .pd11 .login-btn {
    width: 100%;
    height: 46px;
    margin-top: 8px;
    background: var(--color);
    color: #fff;
    border: none;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 46px;
    cursor: pointer;
    font-size: 16px;
  }

  .page-support .pd11 .you {
    width: 100%;
    flex-shrink: 0;
  }

  .page-support .pd11 .you-block {
    margin-top: 18px;
  }

  .page-support .pd11 .you-block + .you-block {
    margin-top: 22px;
  }

  .page-support .pd11 .you-row {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    flex-wrap: nowrap;
  }

  .page-support .pd11 .you-row .you-col {
    flex: 1;
    min-width: 0;
  }

  .page-support .pd11 .you-t {
    color: #333;
    line-height: 1.3;
    margin: 0 0 8px;
    font-size: 18px;
  }

  .page-support .pd11 .you-p {
    color: #555;
    line-height: 1.55;
    margin: 0 0 4px;
    font-size: 13px;
  }

  .page-support .pd11 .you-p:last-child {
    margin-bottom: 0;
  }

  .page-support .pd12 {
    padding: 32px 0 40px;
    background: #fff;
  }

  .page-support .pd12 .C-title {
    margin-bottom: 20px;
  }

  .page-support .news-list {
    gap: 16px;
    grid-template-columns: repeat(1, 1fr);
  }

  .news-item {
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
    background: #f5f5f5;
    border: 1px solid transparent;
    overflow: hidden;
  }

  .news-item.active {
    background: #fff;
    border-color: rgba(231, 50, 58, .35);
  }

  .news-item .pic {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #e8e8e8;
    flex-shrink: 0;
  }

  .news-item .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .news-item .info {
    flex: 1;
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
  }

  .news-item .date {
    color: #999;
    line-height: 1.4;
    margin: 0;
    font-size: 12px;
  }

  .news-item .t {
    color: var(--color);
    line-height: 1.35;
    margin: 0;
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
  }

  .news-item .desc-group {
    font-size: 13px;
  }

  .news-item .desc-group .desc,
  .news-item .desc-group .t {
    color: #333;
    line-height: 1.55;
    margin: 0;
    font-size: 13px;
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    text-transform: none;
    overflow: hidden;
  }

  .news-item .desc-group .txt-hide-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  /* dealers -------------------------------------------- */
  .page-dealers .dp10 {
    background: #fff;
    padding: 0 0 40px;
  }

  .page-dealers .dp10 .C-title {
    margin-bottom: 16px;
  }

  .page-dealers .dp-main {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
  }

  .page-dealers .dp-aside {
    width: 100%;
    flex-shrink: 0;
    border: 1px solid #e4e4e7;
    border-radius: 8px;
    padding: 12px 14px;
    background: #fff;
    position: static;
    top: auto;
    box-sizing: border-box;
  }

  .page-dealers .dp-aside .country-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 10px;
  }

  .page-dealers .dp-aside .country-item {
    display: inline-block;
    color: #52525c;
    line-height: 1.4;
    font-size: 13px;
    padding: 5px 12px;
    border-radius: 500px;
    white-space: nowrap;
  }

  .page-dealers .dp-aside .country-item.on {
    color: #fff;
    background: var(--color);
  }

  .page-dealers .dp-aside .country-list .country-item:nth-child(n+9) {
    display: none;
  }

  .page-dealers .dp-aside.is-expanded .country-list .country-item:nth-child(n+9) {
    display: inline-block;
  }

  .page-dealers .dp-aside .country-toggle {
    display: inline-flex;
    align-items: center;
    margin-top: 12px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--color);
    font-size: 13px;
    letter-spacing: .3px;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
  }

  .page-dealers .dp-aside .country-toggle::after {
    content: "";
    width: 0;
    height: 0;
    margin-left: 6px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform .25s ease;
  }

  .page-dealers .dp-aside.is-expanded .country-toggle::after {
    transform: rotate(180deg);
  }

  .page-dealers .dp-grid {
    flex: none;
    width: 100%;
    min-width: 0;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }

  .page-dealers .dp-grid .card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #333;
  }

  .page-dealers .dp-grid .card .pic {
    width: 100%;
    height: 160px;
    background: #f4f4f5;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .page-dealers .dp-grid .card .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .page-dealers .dp-grid .card .info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 2px;
  }

  .page-dealers .dp-grid .card .name {
    color: var(--color);
    line-height: 1.3;
    margin: 0;
    text-transform: capitalize;
    font-size: 18px;
  }

  .page-dealers .dp-grid .card .addr p {
    color: #333;
    line-height: 1.55;
    margin: 0;
    font-size: 14px;
    word-break: break-word;
  }
  
  .page-connectors-info .tech-spec {
    margin-top: 24px;
  }

  .page-connectors-info .tech-spec h2 {
    color: #333;
    text-transform: uppercase;
    line-height: 1.3;
    margin: 0 0 14px;
    font-size: 20px;
  }

  .page-connectors-info .tech-table {
    margin-bottom: 16px;
  }

  .page-connectors-info .tech-table:first-of-type {
    margin-top: 0;
  }

  .page-connectors-info .tech-table .t-head {
    background: var(--color);
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px 6px 0 0;
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: .3px;
    font-size: 12px;
  }

  .page-connectors-info .tech-table .t-body {
    background: #fff;
    border: 1px solid #ececec;
    border-top: 0;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
  }

  .page-connectors-info .tech-table .t-row {
    align-items: stretch;
    flex-wrap: nowrap;
    min-height: 36px;
  }

  .page-connectors-info .tech-table .t-row:nth-child(odd) {
    background: #fafafa;
  }

  .page-connectors-info .tech-table .t-cell {
    padding: 8px 10px;
    line-height: 1.5;
    box-sizing: border-box;
    font-size: 12px;
  }

  .page-connectors-info .tech-table .t-cell.label {
    width: 50%;
    flex-shrink: 0;
    color: #333;
  }

  .page-connectors-info .tech-table .t-cell.val {
    flex: 1;
    min-width: 0;
    color: #666;
    word-break: break-word;
  }
  
  /* news -------------------------------------------- */
  .page-news .home11 {
    position: relative;
    width: 100%;
    height: 379px;
    overflow: hidden;
    background: #000;
  }
  
  .page-news .home11 .bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
  }
  
  .page-news .home11 .mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .25) 50%, rgba(0, 0, 0, .08) 100%);
    z-index: 2;
  }
  
  .page-news .home11 .home11-wrap {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 108px 16px 60px 16px;
    box-sizing: border-box;
  }
  
  .page-news .home11 .home11-inner {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .page-news .home11 .h11-title {
    color: #fff;
    text-transform: uppercase;
    line-height: 30px;
    letter-spacing: -1px;
    margin: 0;
  }
  
  .page-news .home11 .h11-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .page-news .home11 .h11-info p {
    color: #fff;
    line-height: 24px;
    margin: 0;
  }
  
  .page-news .home11 .h11-link {
    align-self: flex-start;
    color: #fff;
    line-height: 18px;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity .25s ease, transform .25s ease;
  }
  
  .page-news .home11 .h11-link:hover {
    opacity: .85;
    transform: translateX(2px);
  }
  
  .page-news .pd14 {
    background: #fff;
    padding: 32px 0 40px;
  }

  .page-news .pd14 .C-title {
    margin-bottom: 20px;
  }

  .page-news .news-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }

  .page-news .news-item .read-more {
    display: inline-block;
    position: static;
    margin-top: 10px;
    color: var(--color);
    text-decoration: underline;
    text-underline-offset: 1px;
    line-height: 1.4;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    font-size: 13px;
  }
  
  /* 通用：grid 子项 min-width: 0，避免内容把列撑大 ---- */
  .grid-x2 > *,
  .grid-x3 > *,
  .grid-x4 > *,
  .grid-x5 > *,
  .grid-x6 > * {
    min-width: 0;
  }

  .grid-x4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* 通用：row.flex-xb-yc / info.flex-xb-yc 内 name 单行省略 ---- */
  .row.flex-xb-yc,
  .info.flex-xb-yc {
    flex-wrap: nowrap;
  }
  
  .row.flex-xb-yc .name,
  .info.flex-xb-yc .name {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .row.flex-xb-yc .arrow,
  .info.flex-xb-yc .arrow {
    flex-shrink: 0;
  }
  
  /* newsdetail ----------------------------------------- */
  .page-newsdetail .home12 {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #000;
  }

  .page-newsdetail .home12 .bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
  }

  .page-newsdetail .home12 .mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, .25) 60%, rgba(0, 0, 0, .05) 100%);
    z-index: 2;
  }

  .page-newsdetail .home12 .home12-wrap {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 16px 24px;
    gap: 8px;
    box-sizing: border-box;
  }

  .page-newsdetail .home12 .h12-title {
    color: #fff;
    line-height: 1.2;
    margin: 0;
    font-size: 28px;
  }

  .page-newsdetail .home12 .h12-date {
    color: #fff;
    line-height: 1.35;
    margin: 0;
    font-size: 16px;
  }

  .page-newsdetail .pd15 {
    background: #fff;
    padding: 28px 0 40px;
  }

  .page-newsdetail .pd15 .back-btn {
    display: inline-block;
    color: var(--color);
    text-decoration: underline;
    text-underline-offset: 2px;
    margin-bottom: 20px;
    font-size: 14px;
  }

  .page-newsdetail .pd15-main {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 32px;
  }

  .page-newsdetail .pd15 .zuo {
    flex: none;
    width: 100%;
    min-width: 0;
    max-width: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .page-newsdetail .share-bar {
    background: #f6f7f8;
    border-radius: 8px;
    padding: 12px 16px;
    flex-wrap: wrap;
    gap: 8px 14px;
    align-items: center;
  }

  .page-newsdetail .share-btn {
    color: #333;
    line-height: 1.3;
    padding: 2px 0;
    font-size: 13px;
  }

  .page-newsdetail .share-btn.share-ig.active {
    background: linear-gradient(to right, #8c3baa 0%, #e5525c 45%, #df426b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }

  .page-newsdetail .share-btn.active:not(.share-ig) {
    color: var(--color);
  }

  .page-newsdetail .article .C-title {
    margin-bottom: 14px;
  }

  .page-newsdetail .article-body p {
    color: #333;
    line-height: 1.65;
    margin: 0 0 12px;
    font-size: 14px;
  }

  .page-newsdetail .article-body p:last-child {
    margin-bottom: 0;
  }

  .page-newsdetail .article-link {
    color: #333;
    text-decoration: underline;
    text-underline-offset: 2px;
    word-break: break-all;
    font-size: 14px;
  }

  .page-newsdetail .article-img {
    margin: 16px 0 0;
    width: 100%;
    aspect-ratio: 797 / 439;
    object-fit: cover;
    display: block;
    background: #f5f5f5;
  }

  .page-newsdetail .pd15 .you {
    flex: none;
    width: 100%;
    flex-shrink: 0;
  }

  .page-newsdetail .you .C-title {
    margin-bottom: 16px;
  }

  .page-newsdetail .more-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .page-newsdetail .more-item {
    display: flex;
    flex-direction: column;
    width: auto;
    background: #f5f5f5;
    border: 1px solid transparent;
    overflow: hidden;
  }

  .page-newsdetail .more-item .pic {
    width: 100%;
    height: 120px;
    overflow: hidden;
    background: #e8e8e8;
  }

  .page-newsdetail .more-item .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .page-newsdetail .more-item .info {
    padding: 10px 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .page-newsdetail .more-item .date {
    color: #999;
    line-height: 1.4;
    margin: 0;
    font-size: 12px;
  }

  .page-newsdetail .more-item .t {
    color: var(--color);
    line-height: 1.35;
    margin: 0;
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
  }

  .page-newsdetail .more-item .desc {
    color: #333;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
  }
  
  .copy-toast {
    position: fixed;
    left: 50%;
    top: 30%;
    transform: translate(-50%, -50%) scale(.95);
    padding: 7px 14px;
    background: rgba(0, 0, 0, .85);
    color: #fff;
    font-size: 12px;
    border-radius: 8px;
    z-index: 9999;
    opacity: 0;
    transition: opacity .25s ease, transform .25s ease;
    pointer-events: none;
  }
  
  .copy-toast.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  
  .page-finder .home15 {
    background: #fff;
  }

  .page-finder .home15-hero {
    position: relative;
    width: 100%;
    height: 100px;
    background: #0f0f0f;
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  .page-finder .home15-hero::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: var(--color);
    clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 100%);
  }

  .page-finder .home15-hero .C-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 26px 20px;
    background: linear-gradient(105deg, #000 0%, #737373 68%, #7B585B 68%, #B60010 100%);
  }

  .page-finder .home15-hero h1 {
    color: #fff;
    margin: 0;
    letter-spacing: 1px;
    line-height: 1.2;
    font-size: 26px;
  }

  .page-finder .home15-hero .C-title {
    margin: 0;
  }

  .page-finder .home15-hero .C-title .line {
    background: var(--color);
  }

  .page-finder .home15-intro {
    color: #555;
    line-height: 1.6;
    margin: 16px 0 0;
    max-width: none;
    font-size: 13px;
  }

  .page-finder .home15-main {
    position: relative;
    height: 200px;
    margin-top: 16px;
  }

  .page-finder .home15-main .layer {
    position: absolute;
    inset: 0;
    width: auto;
    max-width: 92%;
    height: 100%;
    margin: 0 auto;
    object-fit: contain;
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
  }

  .page-finder .home15-main .layer.on {
    opacity: 1;
  }

  .page-finder .finder-progress-sec {
    padding: 20px 0 0;
  }

  .page-finder .pd16 {
    padding: 24px 0 40px;
  }

  .page-finder .finder-progress {
    position: static;
    display: flex;
    align-items: center;
    gap: 10px;
    height: auto;
  }

  .page-finder .finder-progress .back-btn {
    position: static;
    transform: none;
    display: none;
    align-items: center;
    color: #000;
    letter-spacing: .5px;
    font-size: 12px;
    flex-shrink: 0;
    padding: 0;
    margin: 0;
    opacity: 1;
    pointer-events: auto;
  }

  .page-finder .finder-progress .back-btn.show {
    display: inline-flex;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0 4px 0 0;
  }

  .page-finder .finder-progress .back-btn .ico {
    width: 10px;
    height: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 4px;
    flex-shrink: 0;
  }

  .page-finder .finder-progress .back-btn .ico img {
    width: 100%;
    height: 100%;
    display: block;
  }

  .page-finder .finder-progress .step-list {
    flex: 1;
    width: auto;
    min-width: 0;
    gap: 0;
  }

  .page-finder .finder-progress.is-active .step-list {
    width: auto;
    margin: 0;
  }

  .page-finder .finder-progress .step {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e5e5e5;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
  }

  .page-finder .finder-progress .step.on {
    background: var(--color);
    color: #fff;
  }

  .page-finder .finder-progress .step .done-ico {
    display: none;
    width: 12px;
    height: 12px;
  }

  .page-finder .finder-progress .step .done-ico img {
    width: 100%;
    height: 100%;
    display: block;
  }

  .page-finder .finder-progress .step.done .num {
    display: none;
  }

  .page-finder .finder-progress .step.done .done-ico {
    display: block;
  }

  .page-finder .finder-progress .step-line {
    flex: 1;
    height: 1px;
    background: #e5e5e5;
  }

  .page-finder .finder-progress .step-line.on {
    background: var(--color);
  }

  .page-finder .pd16 .C-title {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }

  .page-finder .pd16 .C-title h2 {
    font-size: 20px;
    line-height: 1.35;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
    letter-spacing: .5px;
  }

  .page-finder .finder-grid {
    width: auto;
    margin: 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .page-finder .finder-grid .ft-group {
    display: contents;
  }

  .page-finder .finder-grid .ft-group:not(.is-active) > .ft-item {
    display: none;
  }

  .page-finder .finder-grid .ft-group.is-active > .ft-item {
    opacity: 1;
    visibility: visible;
  }

  .page-finder .ft-item {
    display: block;
    text-align: center;
    padding: 14px 8px;
    border: 1px solid #eee;
    background: #fff;
    width: auto;
    height: auto;
  }

  .page-finder .ft-item .pic {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    overflow: hidden;
  }

  .page-finder .ft-item .pic img {
    width: auto;
    height: 90%;
    max-width: 90%;
    object-fit: contain;
  }

  .page-finder .ft-item .name {
    color: var(--color);
    line-height: 1.4;
    margin: 0;
    letter-spacing: .3px;
    font-size: 13px;
  }

  .page-finder .finder-grid.is-found {
    width: auto;
    height: auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 0 0 24px;
  }

  .page-finder .finder-grid.is-found .ft-item {
    padding: 0;
    border: 0;
    width: auto;
    height: auto;
    background: transparent;
    color: #333;
    text-align: left;
  }

  .page-finder .finder-grid.is-found .ft-item .inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: auto;
  }

  .page-finder .finder-grid.is-found .ft-item .pic {
    position: relative;
    height: 140px;
    border: 0;
    background: transparent;
    margin: 0;
    overflow: hidden;
  }

  .page-finder .finder-grid.is-found .ft-item .pic img {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
  }

  .page-finder .finder-grid.is-found .ft-item .row {
    flex-wrap: nowrap;
    gap: 6px;
    width: 100%;
  }

  .page-finder .finder-grid.is-found .ft-item .name {
    color: #333;
    line-height: 1.4;
    letter-spacing: 0;
    margin: 0;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
  }

  .page-finder .finder-grid.is-found .ft-item .arrow {
    display: block;
    width: 12px;
    height: 12px;
    position: relative;
    flex-shrink: 0;
  }

  .page-finder .finder-grid.is-found .ft-item .arrow img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    filter: brightness(0) saturate(100%) invert(15%) sepia(91%) saturate(7156%) hue-rotate(354deg) brightness(95%) contrast(93%);
  }
}

