:root {
  --head: 4.791vw;
  --color: #EC1D26;
}

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

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

body {
  color: #333;
}

.C-wrap {
  width: 87.5vw;
  margin: 0 auto;
  max-width: 100%;
}

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

.head1 {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 50;
  width: 100%;
  height: var(--head);
  padding: 0 6.25vw;
  background: #fff;
  transition: transform .6s ease, box-shadow .3s ease;
}

body.scroll .head1 {
  box-shadow: 0 0.208vw 0.833vw rgba(0, 0, 0, .06);
}

.isback .head1 {
  transform: translateY(-100%);
}

.head1 .logo {
  width: 11.458vw;
}

.head1 .menu {
  gap: 2.083vw;
  letter-spacing: 0.052vw;
  text-transform: uppercase;
}

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

.head1 .menu .link > a,
.head1 .menu .link > .link-row > a {
  color: #666;
  position: relative;
  padding: 0.416vw 0;
  transition: color .3s;
}

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

.head1 .menu .link > a::after,
.head1 .menu .link > .link-row > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0.104vw;
  background: var(--color);
  transition: width .35s ease;
}

.head1 .menu .link.on > a::after,
.head1 .menu .link.on > .link-row > a::after,
.head1 .menu .link:hover > a::after,
.head1 .menu .link:hover > .link-row > a::after {
  width: 100%;
}

.head1 .menu .link.has-sub {
  position: relative;
}

.head1 .menu .link.has-sub > .link-row {
  display: inline-flex;
  align-items: center;
  gap: 0.208vw;
}

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

.head1 .menu .arrow-down {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.625vw;
  height: 0.625vw;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.head1 .menu .arrow-down img {
  width: 100%;
  height: 100%;
  display: block;
  transition: filter .25s ease;
  pointer-events: none;
}

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

.head1 .menu .sub-menu {
  position: absolute;
  left: 50%;
  top: 170%;
  transform: translateX(-50%);
  width: fit-content;
  min-width: 7.3vw;
  padding: 1.25vw 0.625vw;
  background: #fff;
  border-top: 0.156vw solid var(--color);
  box-shadow: 0 0.416vw 1.25vw rgba(0, 0, 0, .08);
  display: flex;
  flex-direction: column;
  gap: 0.833vw;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 10;
  overflow: visible;
}

.head1 .menu .sub-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 2.083vw;
}

.head1 .menu .link.has-sub:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.head1 .menu .sub-menu .sub-item {
  display: block;
  width: 100%;
  padding: 0;
  white-space: nowrap;
  color: #333;
  font-size: 0.625vw;
  letter-spacing: 0.104vw;
  text-transform: uppercase;
  text-align: center;
  line-height: 0.937vw;
  transition: color .25s ease;
}

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

.head1 .menu .sub-menu .sub-item:hover {
  color: var(--color);
}

.head1 .menu .sub-menu .sub-group {
  position: relative;
}

.head1 .menu .sub-menu .sub-group.has-third > .sub-item-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.312vw;
}

.head1 .menu .sub-menu .sub-group.has-third .sub-item-row .sub-item {
  flex: 1;
  min-width: 0;
}

.head1 .menu .sub-menu .arrow-right {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.5vw;
  height: 0.5vw;
  padding: 0;
  border: none;
  background: transparent;
  transform: rotate(-90deg);
  flex-shrink: 0;
  cursor: pointer;
}

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

.head1 .menu .third-menu {
  position: absolute;
  left: 100%;
  top: 0;
  margin-left: .625vw;
  min-width: 9vw;
  padding: 1.25vw 0.625vw;
  background: #fff;
  border-top: 0.156vw solid var(--color);
  box-shadow: 0 0.416vw 1.25vw rgba(0, 0, 0, .08);
  display: flex;
  flex-direction: column;
  gap: 0.833vw;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 20;
}

.head1 .menu .third-menu::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  bottom: 0;
  width: 0.625vw;
}

.head1 .menu .sub-group.has-third:hover > .third-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.head1 .menu .third-menu .third-item {
  display: block;
  width: 100%;
  padding: 0;
  white-space: nowrap;
  color: #333;
  font-size: 0.625vw;
  letter-spacing: 0.104vw;
  text-transform: uppercase;
  text-align: center;
  line-height: 0.937vw;
  transition: color .25s ease;
}

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

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

.head1 .right {
  gap: 2.083vw;
}


.foot1 {
  background: #0f0000;
  color: #fff;
  padding: 4.166vw 0 2.604vw;
}

.foot1 .ftop {
  align-items: flex-start;
}

.foot1 .zuo {
  align-items: flex-start;
  gap: 6.25vw;
}

.foot1 .zuo .logo {
  width: 11.458vw;
  margin-top: 0.416vw;
}

.foot1 .foot-link {
  gap: 2.083vw;
}

.foot1 .foot-link .col {
  width: 11.458vw;
}

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

.foot1 .foot-link .col-contact {
  width: 13.541vw;
}

.foot1 .foot-link .col .a1 {
  margin-bottom: 0.625vw;
  color: #fff;
}

.foot1 .foot-link .col .lh {
  line-height: 1.718vw;
  color: #fff;
}

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

.foot1 .foot-link .col .lh a:hover {
  color: var(--color);
}

.foot1 .you {
  width: 23.437vw;
}

.foot1 .you .title {
  margin-bottom: 0.625vw;
  color: #fff;
}

.foot1 .you .form {
  position: relative;
  border: 0.052vw solid #fff;
  height: 3.177vw;
  padding: 0 1.25vw;
  margin-bottom: 1.25vw;
}

.foot1 .you .form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  height: 100%;
  letter-spacing: 0.052vw;
  text-transform: uppercase;
}

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

.foot1 .you .form .line {
  width: 0.052vw;
  height: 100%;
  background: #fff;
  margin: 0 1.25vw;
}

.foot1 .you .form button {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  letter-spacing: 0.052vw;
  text-transform: uppercase;
  padding: 0;
  height: 100%;
  transition: color .3s;
}

.foot1 .you .form button:hover {
  color: var(--color);
}

.foot1 .foot-subscribe-tip {
  min-height: 1.2em;
  margin: -0.625vw 0 0.833vw;
  color: #cacaca;
  letter-spacing: 0.026vw;
}

.foot1 .foot-subscribe-tip.is-success {
  color: #8fd18f;
}

.foot1 .foot-subscribe-tip.is-error {
  color: #ff9a9a;
}

.foot1 .you .form.is-loading button {
  opacity: 0.6;
  pointer-events: none;
}

.foot1 .you .socials {
  gap: 0.625vw;
}

.foot1 .you .socials .ic {
  display: block;
  width: 1.875vw;
  height: 1.875vw;
  transition: transform .3s;
}

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

.foot1 .you .socials .ic:hover {
  transform: translateY(-0.156vw);
}

.foot1 .fline {
  width: 100%;
  height: 0.052vw;
  background: rgba(255, 255, 255, .15);
  margin: 3.125vw 0 1.041vw;
}

.foot1 .fcopy {
  color: #fff;
  opacity: .7;
}

.C-btn1 {
  display: inline-flex;
  align-items: center;
  gap: 0.52vw;
  background: var(--color);
  color: #fff;
  padding: 0.52vw 1.25vw;
  letter-spacing: 0.104vw;
  text-transform: uppercase;
  transition: background .3s, transform .3s;
}

.C-btn1 .icon {
  display: block;
  width: 0.729vw;
}

.C-btn1:hover {
  background: #c91720;
  transform: translateY(-0.104vw);
}

.C-btn2 {
  display: inline-block;
  border: 0.052vw solid #fff;
  color: #fff;
  background: transparent;
  padding: 0.625vw 1.25vw;
  letter-spacing: 0.104vw;
  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: 0.416vw;
}

.C-title h2 {
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.052vw;
  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: 5.729vw;
  height: 0.26vw;
  background: var(--color);
  margin-top: 0.416vw;
  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: 2.083vw;
}

.home1 {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin-top: 0;
}

.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, .55) 100%);
  z-index: 1;
}

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

.home1 .txt {
  max-width: 57.291vw;
  color: #fff;
}

.home1 .t1 {
  color: #fff;
  line-height: 1.3;
  margin: 0 0 1.25vw;
}

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

.home1 .t2 {
  color: #fff;
  line-height: 1;
  margin: 0;
  font-size: 5vw;
}

.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: 7.5vw;
  transform: translateX(-50%);
  z-index: 10;
  width: auto;
  display: flex;
  flex-direction: row;
  gap: 0.75vw;
  padding: 0.625vw 1.042vw;
}

.home1 .home1-pagination .swiper-pagination-bullet {
  position: relative;
  width: 0.5vw;
  height: 0.5vw;
  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.083vw;
  height: 2.083vw;
  transform: translate(-50%, -50%);
}

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

.home1 .scroll-down {
  position: absolute;
  right: 6.25vw;
  bottom: 18%;
  z-index: 10;
  color: #fff;
  cursor: pointer;
  gap: 0.52vw;
}

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

.home1 .scroll-down span {
  letter-spacing: 0.104vw;
  text-transform: uppercase;
}

@keyframes scrollDown {
  0% {
    transform: translateY(-0.208vw);
    opacity: .6;
  }

  50% {
    transform: translateY(0.208vw);
    opacity: 1;
  }

  100% {
    transform: translateY(-0.208vw);
    opacity: .6;
  }
}

.home2 {
  background: #fff;
}

.home2 .list {
  gap: 2.604vw 0.937vw;
}

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

.home2 .item .pic {
  position: relative;
  height: 13.281vw;
  border: 0.052vw solid #eee;
  overflow: hidden;
  transition: border-color .35s ease;
  background: #fff;
}

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

.home2 .item .info {
  padding-top: 0.729vw;
}

.home2 .item .tag {
  color: var(--color);
  letter-spacing: 0.052vw;
  margin-bottom: 0.208vw;
}

.home2 .item .row {
  margin-top: 0.208vw;
}

.home2 .item .name {
  color: #333;
  transition: color .3s;
  margin: 0;
}

.home2 .item .arrow {
  display: block;
  width: 1.041vw;
  height: 1.041vw;
  position: relative;
}

.home2 .item .arrow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform .35s ease;
}

.home2 .item:hover .pic {
  border-color: var(--color);
}

.home2 .item:hover .name {
  color: var(--color);
}

.home2 .item:hover .arrow img {
  transform: translateX(0.208vw);
  filter: brightness(0) saturate(100%) invert(15%) sepia(91%) saturate(7156%) hue-rotate(354deg) brightness(95%) contrast(93%);
}

.home2 .item:hover .pic img {
  transform: translateX(-50%) scale(1.04);
}

.home3 {
  background: #0b0b0b;
}

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

.home3 .list {
  gap: 0;
}

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

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

.home3 .item .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.home3 .item .mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  backdrop-filter: blur(0.052vw);
  transition: background .4s ease, backdrop-filter .4s ease;
  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: 0.052vw;
  margin: 0;
  transition: transform .35s ease, letter-spacing .35s ease;
}

.home3 .item:hover .mask {
  background: rgba(0, 0, 0, .15);
  backdrop-filter: blur(0);
}

.home3 .item:hover .bg img {
  transform: scale(1.08);
}

.home3 .item:hover .name {
  letter-spacing: 0.156vw;
}

.home4 {
  background: #fff;
}

.home4 .list {
  gap: 1.041vw;
}

.home4 .item {
  display: block;
  color: #333;
  background: #f8f8f8;
  position: relative;
  overflow: hidden;
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
  border: 0.052vw solid transparent;
}

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

.home4 .item .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.home4 .item .info {
  position: relative;
  padding: 0.833vw 1.25vw 1.25vw;
  height: 11.458vw;
  overflow: hidden;
}

.home4 .item .ibg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 13.072vw;
  opacity: 1;
  transition: opacity .35s ease;
  pointer-events: none;
}

.home4 .item .date {
  color: #999;
  margin-bottom: 0.416vw;
}

.home4 .item .title {
  color: var(--color);
  line-height: 1.3;
  margin: 0 0 0.833vw;
  position: relative;
  z-index: 2;
}

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

.home4 .item .more {
  position: absolute;
  right: 1.25vw;
  bottom: 0.937vw;
  color: var(--color);
  text-decoration: underline;
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 3;
}

.home4 .item:hover {
  background: #fff;
  border-color: var(--color);
  box-shadow: 0 0.52vw 1.562vw rgba(231, 50, 58, .12);
}

.home4 .item:hover .pic img {
  transform: scale(1.06);
}

.home4 .item:hover .ibg {
  opacity: 0;
}

.home4 .item:hover .more {
  opacity: 1;
}

.home5 {
  background: #e82e36;
  padding: 2.604vw 0;
  color: #fff;
}

.home5 .zuo {
  width: 27.447vw;
}

.home5 .zuo .C-title {
  margin-bottom: 1.25vw;
}

.home5 .intr {
  color: rgba(255, 255, 255, .85);
  line-height: 1.5;
  margin: 0 0 1.25vw;
}

.home5 .you {
  width: 26.197vw;
  height: 26.197vw;
  border: 0.208vw solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.75vw;
}

.home5 .you .ring {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  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(1) contrast(1.05);
  transition: transform .6s ease, filter .6s ease;
}

.home5 .you:hover .circle img {
  transform: scale(1.06);
  filter: grayscale(0);
}

.pd1 {
  background: #fff;
}

.pd1 .C-title {
  margin-bottom: 1.25vw;
}

.pd1 .pd-main {
  align-items: flex-start;
  gap: 1.25vw;
  flex-wrap: nowrap;
}

.pd1 .pd-aside {
  width: 12.5vw;
  flex-shrink: 0;
  background: #F8F8F8;
  border: 0.052vw solid #ededed;
  padding: 0.677vw;
}

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

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

.pd1 .pd-aside .filter-title {
  color: #333;
  line-height: 1.875vw;
  margin: 0 0 0.416vw;
  text-transform: capitalize;
}

.pd1 .pd-aside .filter-list {
  border-top: 0.052vw solid #ededed;
  padding-top: 0.468vw;
}

.pd1 .pd-aside .filter-list-tree {
  display: block;
}

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

.pd1 .pd-aside .filter-sub-group.has-third > .filter-item-row {
  display: flex;
  align-items: center;
  gap: 0.208vw;
}

.pd1 .pd-aside .filter-sub-group.has-third .filter-item-row .filter-item {
  flex: 1;
  min-width: 0;
}

.pd1 .pd-aside .arrow-right {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25vw;
  height: 1.25vw;
  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.208vw;
}

.pd1 .pd-aside .arrow-right img {
  width: 0.5vw;
  height: 0.5vw;
  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);
}

.pd1 .pd-aside .filter-third-menu {
  display: none;
  padding: 0.104vw 0 0.208vw 0.625vw;
}

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

.pd1 .pd-aside .filter-sub-item {
  display: block;
  padding: 0.312vw 0;
  color: #666;
  line-height: 1.3;
  transition: color .3s;
}

.pd1 .pd-aside .filter-sub-item:hover,
.pd1 .pd-aside .filter-sub-item.on {
  color: var(--color);
}

.pd1 .pd-aside .filter-list-tree > .filter-item {
  display: block;
}

.pd1 .pd-aside .filter-item {
  display: block;
  padding: 0.416vw 0;
  color: #333;
  line-height: 1.093vw;
  transition: color .3s;
}

.pd1 .pd-aside .filter-item:hover,
.pd1 .pd-aside .filter-item.on {
  color: var(--color);
}

.pd1 .pd2 {
  flex: 1;
  min-width: 0;
  gap: 1.25vw;
}

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

.pd1 .pd2 .item .pic {
  position: relative;
  height: 16.666vw;
  background: #f8f8f8;
  border: 0.052vw solid #ededed;
  overflow: hidden;
  transition: border-color .35s ease;
}

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

.pd1 .pd2 .item .info {
  padding-top: 0.416vw;
}

.pd1 .pd2 .item .tag {
  color: var(--color);
  line-height: 0.937vw;
  margin: 0;
  letter-spacing: 0;
}

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

.pd1 .pd2 .item .name {
  color: #333;
  line-height: 2.5vw;
  margin: 0;
  transition: color .3s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pd1 .pd2 .item .arrow {
  display: block;
  width: 1.041vw;
  height: 1.041vw;
  flex-shrink: 0;
  margin-left: 0.52vw;
}

.pd1 .pd2 .item .arrow img {
  width: 100%;
  height: 100%;
  transition: transform .35s ease;
}

.pd1 .pd2 .item:hover .pic {
  border-color: var(--color);
}

.pd1 .pd2 .item:hover .name {
  color: var(--color);
}

.pd1 .pd2 .item:hover .pic img {
  transform: scale(1.04);
}

.pd1 .pd2 .item:hover .arrow img {
  transform: translate(0.156vw, -0.156vw);
}

.page-cable-info {
  background: #fff;
}

.page-cable-info .pd2 {
  background: #f8f8f8;
}

.page-cable-info .pd2-inner {
  align-items: flex-start;
  flex-wrap: nowrap;
  background-color: #f8f8f8;
  padding:  0 2.3438vw 0 0;
}

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

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

.page-cable-info .pd2-main .pic {
  /* height: 34.166vw; */
  height: 36.4583vw;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.page-cable-info .pd2-thumb {
  margin-top: 1.083vw;
  width: 100%;
  padding-left: 6.25vw;
}

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

.page-cable-info .pd2-thumb .thumb {
  width: 6.1458vw;
  height: 3.958vw;
  border: 0.052vw solid #ddd;
  background: #fff;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}

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

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

.page-cable-info .pd2-detail {
  flex: 1;
  min-width: 0;
  height: 34.166vw;
  max-height: 34.166vw;
  overflow-x: hidden;
  overflow-y: auto;
  padding: .5208vw 2.083vw 2.083vw 2.083vw;
  box-sizing: border-box;
  /* scrollbar-width: none; */
  /* -ms-overflow-style: none; */
  overscroll-behavior: contain;
}
/* 
.page-cable-info .pd2-detail::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
} */

.page-cable-info .pd2-detail .crumb {
  color: var(--color);
  line-height: 1.4;
  margin: 0 0 2.0833vw;
}

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

.pd2-block{
  width: 34.635vw;
}

.page-cable-info .pd2-block .sku {
  color: var(--color);
  letter-spacing: 0.072vw;
  text-transform: uppercase;
  line-height: 1.041vw;
  margin: 0 0 0.625vw;
}

.page-cable-info .pd2-block .head .title {
  color: #333;
  line-height: 2.5vw;
  margin: 0;
}

.page-cable-info .pd2-block .head .sub {
  color: #666;
  line-height: 1.145vw;
  margin: 0.625vw 0 0;
}

.page-cable-info .pd2-block .head + .pd2-opt {
  margin-top: 2.083vw;
  /* padding-top: 0.781vw; */
}

.page-cable-info .pd2-opt + .pd2-opt {
  margin-top: 2.083vw;
}

/* .page-cable-info .pd2-block .head + .pd2-opt + .pd2-opt {
  padding-top: 0.468vw;
} */

.page-cable-info .pd2-opt .opt-label {
  color: #333;
  text-transform: uppercase;
  line-height: 0.833vw;
  margin: 0 0 0.416vw;
}

.page-cable-info .spec-btns {
  gap: 0.416vw;
  flex-wrap: wrap;
}

.page-cable-info .spec-btn {
  padding: 0.364vw 0.677vw;
  border: 0.052vw solid #ddd;
  border-radius: 52.031vw;
  background: #fff;
  color: #333;
  line-height: 1;
  cursor: pointer;
  transition: background .3s, color .3s, border-color .3s;
}

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

.page-cable-info .color-list {
  gap: 0.625vw;
  flex-wrap: wrap;
}

.page-cable-info .color-item {
  width: 3.958vw;
  height: 3.958vw;
  padding: 0;
  border: 0.104vw solid transparent;
  background: transparent;
  overflow: hidden;
  cursor: pointer;
  box-sizing: border-box;
  transition: border-color .3s;
}

.page-cable-info .color-item.on,
.page-cable-info .color-item:hover {
  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.25vw;
  margin: 0;
}
.page-cable-info .pd2-opt .desc p span {
  background: none !important;
}
.page-cable-info .feat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-cable-info .feat-list li {
  gap: 0.416vw;
  align-items: flex-start;
  line-height: 0.989vw;
  color: #666;
}

.page-cable-info .feat-list li + li {
  margin-top: 0.625vw;
}

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

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

.pd3{
  background-color:#f8f8f8;
  padding-bottom: 2.083vw;
}

.page-cable-info .spec-table {
  border: 0.052vw solid #ececec;
  border-radius: 0.52vw;
  overflow: hidden;
  background: #fff;
}

.page-cable-info .spec-table .row {
  align-items: stretch;
  flex-wrap: nowrap;
  height: 3.125vw;
}

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

.page-cable-info .spec-table .cell {
  padding: 0.625vw 0.833vw;
  line-height: 0.989vw;
  box-sizing: border-box;
}

.page-cable-info .spec-table .cell.label {
  width: 34%;
  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;
}

.page-cable-info .pd4.home2,
.page-cable-info .pd5.home2 {
  background: #ececec;
  padding-bottom: 6.51vw;
  /* background-color: #f8f8f8; */
}

.page-cable-info .pd4.home2 .list,
.page-cable-info .pd5.home2 .list {
  gap: 2.604vw 0.937vw;
}
.page-cable-info .pd2 {
  padding: 0 0 2.0833vw;
}
.page-cable-info .pd5.home2 {
  padding-top: 2.0833vw;
}

.page-merch .home6 {
  position: relative;
  width: 100%;
  height: 29.791vw;
  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: 3.75vw;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.052vw;
}

.page-merch .home6 h1 .red {
  color: var(--color);
}

.page-merch .merch-sec {
  background: #fff;
  padding: 2.5vw 0 3.333vw;
}

.page-merch .merch-sec .C-title {
  margin-bottom: 0.625vw;
}

.page-merch .merch-sec .list {
  gap: 1.25vw;
}

.page-merch .merch-sec .item {
  display: block;
  color: #333;
}

.page-merch .merch-sec .item .pic {
  position: relative;
  height: 11.093vw;
  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: 0.416vw;
  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: 0.52vw;
  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(0.208vw, -0.208vw);
}

.page-artists .pd9 {
  background: #f8f8f8;
  padding: 4.166vw 0 3.333vw;
}

.page-artists .pd9-head {
  display: inline-block;
  padding-bottom: 2.083vw;
}

.page-artists .pd9-head h2 {
  color: #333;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 0.416vw;
}

.page-artists .pd9-head .line {
  display: block;
  width: 7.447vw;
  height: 0.26vw;
  background: var(--color);
  margin: 0 0 1.25vw;
}

.page-artists .pd9-head .desc {
  color: #333;
  line-height: 1.041vw;
  margin: 0;
}

.page-artists .pd9-swiper {
  width: 100%;
  overflow: hidden;
}

.page-artists .pd9-swiper .list {
  gap: 1.041vw;
}

.page-artists .pd9-swiper .item {
  position: relative;
  display: block;
  height: 16.666vw;
  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: 1.666vw 1.666vw 2.812vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.page-artists .pd9-swiper .item .name {
  color: #fff;
  line-height: 1.562vw;
  margin: 0;
}

.page-artists .pd9-swiper .item .sub {
  color: #f4f4f5;
  line-height: 1.041vw;
  margin: 0;
  opacity: 0;
  transform: translateY(0.416vw);
  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: 3.125vw;
  height: 2.604vw;
  gap: 0;
}

.page-artists .pd9-prev,
.page-artists .pd9-next {
  width: 2.604vw;
  height: 2.604vw;
  border: 0.052vw 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: 1.562vw;
  height: 1.562vw;
  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: 0.625vw;
  width: auto;
  margin: 0vw 0.625vw;
}

.page-artists .pd9-pagination .swiper-pagination-bullet {
  width: 2.604vw;
  height: 2.604vw;
  border-radius: 0;
  background: transparent;
  color: #0f0000;
  font-size: 0.937vw;
  font-family: "Inter", "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 2.187vw;
  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;
}

/* aboutus -------------------------------------------- */
.page-aboutus .home7 {
  background: #f9f9fb;
  padding: 6.666vw 0;
}

.page-aboutus .home7-grid {
  align-items: center;
  gap: 3.333vw;
  flex-wrap: nowrap;
}

.page-aboutus .home7-grid .zuo {
  flex: 1;
  min-width: 0;
}

.page-aboutus .home7-grid .zuo h1 {
  color: #333;
  letter-spacing: -0.104vw;
  line-height: 3.229vw;
  margin: 0 0 1.562vw;
}

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

.page-aboutus .home7-grid .zuo .desc {
  color: #333;
  line-height: 1.041vw;
  margin: 0 0 1.562vw;
  max-width: 26.666vw;
}

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

.page-aboutus .home7-grid .zuo .tag .bar {
  display: block;
  width: 3.333vw;
  height: 0.208vw;
  background: var(--color);
}

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

.page-aboutus .home7-grid .you {
  position: relative;
  flex: 1;
  min-width: 0;
}

.page-aboutus .home7-grid .you .pic {
  width: 100%;
  height: 30vw;
  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 {
  position: absolute;
  left: -1.666vw;
  bottom: -1.666vw;
  background: var(--color);
  color: #fffafa;
  padding: 1.666vw;
  width: 10.208vw;
  height: 7.5vw;
}

.page-aboutus .home7-grid .you .stat .num {
  line-height: 3.125vw;
  margin: 0;
}

.page-aboutus .home7-grid .you .stat .lab {
  line-height: 1.041vw;
  letter-spacing: 0.072vw;
  margin: 0.208vw 0 0;
}

.page-aboutus .home8 {
  background: #fff;
  padding: 4.166vw 0;
}

.page-aboutus .home8-grid {
  align-items: flex-start;
  gap: 7.447vw;
  flex-wrap: nowrap;
}

.page-aboutus .home8-grid .zuo {
  width: 36.302vw;
  flex-shrink: 0;
  height: 26.302vw;
  background: #eee;
  border: 0.052vw solid #eee;
  border-radius: 0.208vw;
  overflow: hidden;
  box-sizing: border-box;
}

.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 {
  flex: 1;
  min-width: 0;
}

.page-aboutus .home8-grid .you .C-title {
  margin-bottom: 1.25vw;
}

.page-aboutus .home8-grid .you .desc {
  color: #333;
  line-height: 1.041vw;
  margin: 0 0 0.833vw;
}

.page-aboutus .home9 {
  background: #fff;
  padding: 4.166vw 0;
}

.page-aboutus .home9 .C-title {
  margin-bottom: 1.666vw;
}

.page-aboutus .home9 .value-list {
  align-items: stretch;
  justify-content: space-between;
  gap: 3.125vw;
  flex-wrap: nowrap;
  height: 16.666vw;
}

.page-aboutus .home9 .card {
  flex: 1;
  min-width: 0;
  min-height: 15.104vw;
  padding: 5.885vw 1.302vw 4.427vw;
  border: 0.052vw solid #d8d8d8;
  border-radius: 0.885vw;
  background: #fff;
  text-align: center;
  position: relative;
  transition: border-color .35s ease, box-shadow .35s ease;
}

.page-aboutus .home9 .value-list .card:hover {
  border-color: var(--color);
  box-shadow: 0 0.416vw 1.25vw rgba(231, 30, 36, .1);
}

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

.page-aboutus .home9 .card .ico img {
  max-width: 2.916vw;
  max-height: 2.5vw;
  display: block;
}

.page-aboutus .home9 .card .t {
  color: #333;
  line-height: 1.875vw;
  margin: 0 0 1.197vw;
}

.page-aboutus .home9 .card .desc {
  color: #333;
  line-height: 1.041vw;
  margin: 0;
}

.signal-meter {
  display: flex;
  gap: 0.208vw;
  height: 0.625vw;
  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(1),
.signal-meter .bar:nth-child(2),
.signal-meter .bar:nth-child(3) {
  opacity: 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: 0 0 4.166vw;
}

.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: 13.9%;
  width: 11.562vw;
  height: 11.562vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.page-aboutus .home10 .map .dot .r1 {
  width: 11.562vw;
  height: 11.562vw;
  border: 0.104vw dashed rgba(231, 30, 36);
  opacity: .35;
  animation-delay: 0s;
}

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

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

.page-aboutus .home10 .map .dot .core {
  position: absolute;
  width: 0.885vw;
  height: 0.885vw;
  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: absolute;
  left: 32.8%;
  top: 45%;
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 2.916vw;
}

.page-aboutus .home10 .map .info .block h3 {
  color: #333;
  line-height: 2.812vw;
  margin: 0 0 0.833vw;
}

.page-aboutus .home10 .map .info .block p {
  color: #333;
  line-height: 1.041vw;
  margin: 0;
}

.page-aboutus .home10 .map .info .block-row {
  align-items: flex-start;
  gap: 13.645vw;
  flex-wrap: nowrap;
}

.page-aboutus .home10 .map .info .block-row .block {
  width: 12.552vw;
  flex-shrink: 0;
}

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

.page-aboutus .home11 .link {
  flex: 1;
  min-width: 0;
  height: 15.989vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625vw;
  background: #f8f8f8;
  color: #333;
  text-decoration: none;
  transition: background .3s ease;
}

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

.page-aboutus .home11 .link:hover {
  background: #ececec;
}

.page-aboutus .home11 .link .ico {
  width: 3.229vw;
  height: 3.229vw;
  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.875vw;
}

/* catalog -------------------------------------------- */
.page-catalog .ct1 {
  background: #fff;
  padding-top: 2.083vw;
  padding-bottom: 6.25vw;
}

.page-catalog .ct1 .C-title {
  margin-bottom: 1.25vw;
}

.ct-search {
  width: 100%;
  height: 3.437vw;
  padding: 0 1.25vw;
  border: 0.052vw solid rgba(0, 0, 0, .1);
  border-radius: 0.625vw;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 1.25vw;
  margin-bottom: 2.083vw;
  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 0.156vw rgba(231, 30, 36, .08);
}

.ct-search-ico {
  width: 1.25vw;
  height: 1.25vw;
  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: 3.437vw;
  padding: 0;
}

.ct-search-input::placeholder {
  color: #9ca3af;
}

.page-catalog .ct-list {
  gap: 2.083vw 3.125vw;
}

.page-catalog .ct-item {
  display: flex;
  align-items: center;
  gap: 1.041vw;
  height: 5.625vw;
  padding: 1.041vw 0vw 1.041vw 1.041vw;
  background: #fff;
  border: 0.052vw 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(-0.104vw);
  box-shadow: 0 0.416vw 1.25vw rgba(231, 30, 36, .12);
}

.page-catalog .ct-item.is-hide {
  display: none;
}

.page-catalog .ct-item .ico {
  width: 2.083vw;
  height: 2.5vw;
  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: auto;
  height: 4.687vw;
}

.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: 2.5vw;
  width: 3.541vw;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.208vw;
  transition: transform .25s ease;
  border-left: 0.052vw solid #F3F4F6;
}

.page-catalog .ct-item:hover .dl {
  transform: translateY(0.104vw);
}

.page-catalog .ct-item .dl-ico {
  width: 0.833vw;
  height: 0.833vw;
  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: 3.125vw 0;
  text-align: center;
  color: #999;
  margin: 0;
}

.ct-empty.show {
  display: block;
}

/* download ------------------------------------------- */
.page-download .dl1 {
  background: #fff;
  padding-top: 2.083vw;
}

.page-download .dl1 .C-title {
  margin-bottom: 1.25vw;
}

.page-download .dl-list {
  gap: 1.25vw;
}

.page-download .dl-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.687vw;
  padding: 1.093vw;
  background: #fff;
  border: 0.052vw solid #e5e7eb;
  border-radius: 0.208vw;
  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: 0.208vw;
  background: var(--color);
  transition: width .25s ease;
}

.page-download .dl-list .dl-item:hover {
  border-color: var(--color);
  transform: translateY(-0.104vw);
  box-shadow: 0 0.416vw 1.25vw rgba(231, 30, 36, .12);
}

.page-download .dl-list .dl-item:hover::before {
  width: 0.312vw;
}

.page-download .dl-item.is-hide {
  display: none;
}

.page-download .dl-item .dl-left {
  display: flex;
  align-items: center;
  gap: 1.041vw;
  flex: 1;
  min-width: 0;
}

.page-download .dl-item .dl-ico {
  width: 1.875vw;
  height: 2.291vw;
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 0.052vw 0.052vw 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: 0.937vw;
  margin: 0 0 0.208vw;
  letter-spacing: -.1.25vw;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.page-download .dl-item .meta .files {
  color: #99a1af;
  line-height: 0.833vw;
  margin: 0;
  letter-spacing: .14.322vw;
  text-transform: uppercase;
}

.page-download .dl-item .dl-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.312vw;
  padding-left: 0.885vw;
  border-left: 0.052vw solid #f3f4f6;
  height: 2.5vw;
  flex-shrink: 0;
  transition: transform .25s ease;
}

.page-download .dl-item:hover .dl-side {
  transform: translateY(0.104vw);
}

.page-download .dl-item .dl-side-ico {
  width: 0.937vw;
  height: 0.937vw;
  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: 0.729vw;
  letter-spacing: .0.26vw;
  white-space: nowrap;
}

/* support -------------------------------------------- */
.page-support .pd11 {
  background: #fff;
}

.page-support .pd11-main {
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 3.125vw;
}

.page-support .pd11 .zuo {
  flex: 1;
  min-width: 0;
  max-width: 48.072vw;
}

.page-support .pd11 .zuo-desc {
  color: #333;
  line-height: 1.822vw;
  margin: 1.25vw 0 3.125vw;
  width: 33.072vw;
}

.page-support .pd11 .user-center-title {
  margin-bottom: 1.25vw;
}

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

.page-support .pd11 .form-row {
  display: flex;
  flex-direction: column;
  gap: 0.781vw;
  padding-bottom: 0.781vw;
  width: 100%;
}

.page-support .pd11 .form-label {
  color: #333;
  line-height: 1.875vw;
}

.page-support .pd11 .form-input {
  width: 100%;
  height: 3.437vw;
  padding: 0 1.25vw;
  border: 0.104vw solid rgba(0, 0, 0, .1);
  border-radius: 0.625vw;
  background: #fff;
  color: #333;
  line-height: 3.229vw;
  outline: none;
  box-sizing: border-box;
  transition: border-color .25s ease;
}

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

.page-support .pd11 .form-tip {
  margin: 0;
  color: var(--color);
  line-height: 1.145vw;
  opacity: 0;
  transform: translateY(-0.208vw);
  transition: opacity .25s ease, transform .25s ease;
}

.page-support .pd11 .form-tip.show {
  opacity: 1;
  transform: translateY(0);
}

.page-support .pd11 .login-btn {
  width: 100%;
  height: 3.437vw;
  margin-top: 0.625vw;
  background: var(--color);
  color: #fff;
  border: none;
  border-radius: 0.625vw;
  text-transform: uppercase;
  line-height: 1.875vw;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}

.page-support .pd11 .login-btn:hover {
  background: #c8121a;
  transform: translateY(-0.104vw);
}

.page-support .pd11 .you {
  width: 31.041vw;
  flex-shrink: 0;
}

.page-support .pd11 .you-block {
  margin-top: 1.822vw;
}

.page-support .pd11 .you-block + .you-block {
  margin-top: 2.76vw;
}

.page-support .pd11 .you-row {
  align-items: flex-start;
  gap: 8.333vw;
  flex-wrap: nowrap;
}

.page-support .pd11 .you-t {
  color: #333;
  line-height: 1.875vw;
  margin: 0 0 0.833vw;
}

.page-support .pd11 .you-p {
  color: #333;
  line-height: 1.25vw;
  margin: 0 0 0.416vw;
}

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

.page-support .pd12 {
  padding-top: 2.083vw;
  background: #fff;
}

.page-support .pd12 .C-title {
  margin-bottom: 3.125vw;
}

.news-list {
  gap: 3.125vw 1.041vw;
}

.news-item {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 25vw;
  background: #f5f5f5;
  border: 0.052vw solid transparent;
  overflow: hidden;
  transition: border-color .35s ease, transform .35s ease, box-shadow .35s ease, background .35s ease;
}

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

.news-list:hover .news-item.active {
  border-color: transparent;
  background: #f5f5f5;
}

.news-list .news-item:hover {
  background: #fff;
  border-color: rgba(231, 50, 58, .68);
  transform: translateY(-0.208vw);
  box-shadow: 0 0.416vw 1.25vw rgba(231, 50, 58, .12);
}

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

.news-item .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.news-item:hover .pic img {
  transform: scale(1.05);
}

.news-item .info {
  flex: 1;
  padding: 0.833vw 1.25vw 2.343vw;
  display: flex;
  flex-direction: column;
  gap: 0.416vw;
  position: relative;
}

.news-item .date {
  color: #333;
  line-height: 0.781vw;
  margin: 0;
}

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

.news-item .desc {
  color: #333;
  line-height: 1.041vw;
  margin: 0;
}

.news-item .read-more {
  position: absolute;
  right: 1.25vw;
  bottom: 0.885vw;
  color: var(--color);
  line-height: 1.093vw;
  text-decoration: underline;
  text-underline-offset: 0.104vw;
  opacity: 0;
  transform: translateY(0.208vw);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}

.news-item.active .read-more,
.news-list .news-item:hover .read-more {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.news-list:hover .news-item.active .read-more {
  opacity: 0;
  transform: translateY(0.208vw);
  pointer-events: none;
}

.news-list:hover .news-item.active:hover .read-more {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* dealers -------------------------------------------- */
.page-dealers .dp10 {
  background: #fff;
  padding-bottom: 3.489vw;
}

.page-dealers .dp10 .C-title {
  margin-bottom: 1.666vw;
}

.page-dealers .dp-main {
  align-items: flex-start;
  gap: 4.166vw;
  flex-wrap: nowrap;
}

.page-dealers .dp-aside {
  width: 13.333vw;
  flex-shrink: 0;
  border: 0.052vw solid #e4e4e7;
  padding: 1.822vw 1.51vw 1.822vw 1.875vw;
  background: #fff;
  position: sticky;
  top: 5.833vw;
  box-sizing: border-box;
}

.page-dealers .dp-aside .country-list {
  display: flex;
  flex-direction: column;
  gap: 0.416vw;
}

.page-dealers .dp-aside .country-item {
  display: block;
  color: #52525c;
  line-height: 1.041vw;
  transition: color .3s ease;
}

.page-dealers .dp-aside .country-item:hover,
.page-dealers .dp-aside .country-item.on {
  color: #f06066;
}

.page-dealers .dp-aside .country-toggle {
  display: none;
}

.page-dealers .dp-grid {
  flex: 1;
  min-width: 0;
  gap: 2.083vw;
}

.page-dealers .dp-grid .card {
  display: flex;
  flex-direction: column;
  gap: 1.25vw;
  color: #333;
  transition: transform .35s ease;
}

.page-dealers .dp-grid .card:hover {
  transform: translateY(-0.208vw);
}

.page-dealers .dp-grid .card .pic {
  width: 100%;
  height: 9.427vw;
  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;
  transition: transform .5s ease;
}

.page-dealers .dp-grid .card:hover .pic img {
  transform: scale(1.04);
}

.page-dealers .dp-grid .card .info {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}

.page-dealers .dp-grid .card .name {
  color: var(--color);
  line-height: 1.197vw;
  margin: 0;
  text-transform: capitalize;
}

.page-dealers .dp-grid .card .addr p {
  color: #333;
  line-height: 1.458vw;
  margin: 0;
}

.page-connectors-info .tech-spec {
  margin-top: 2.083vw;
}

.page-connectors-info .tech-spec h2 {
  color: #333;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 0.625vw;
}

.page-connectors-info .tech-table {
  margin-bottom: 2.083vw;
}

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

.page-connectors-info .tech-table .t-head {
  background: var(--color);
  color: #fff;
  padding: 0.52vw 0.625vw;
  border-radius: 0.312vw 0.312vw 0 0;
  text-transform: uppercase;
  line-height: 0.625vw;
  letter-spacing: .0.208vw;
}

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

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

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

.page-connectors-info .tech-table .t-cell {
  padding: 0.468vw 0.625vw;
  line-height: 0.914vw;
  box-sizing: border-box;
}

.page-connectors-info .tech-table .t-cell.label {
  width: 58%;
  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: 39.427vw;
  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: 11.197vw 5.208vw 6.25vw 6.25vw;
  box-sizing: border-box;
}

.page-news .home11 .home11-inner {
  max-width: 39.062vw;
  display: flex;
  flex-direction: column;
  gap: 2.083vw;
}

.page-news .home11 .h11-title {
  color: #fff;
  text-transform: uppercase;
  line-height: 3.125vw;
  letter-spacing: -0.093vw;
  margin: 0;
}

.page-news .home11 .h11-info {
  display: flex;
  flex-direction: column;
  gap: 1.25vw;
}

.page-news .home11 .h11-info p {
  color: #fff;
  line-height: 2.5vw;
  margin: 0;
}

.page-news .home11 .h11-link {
  align-self: flex-start;
  color: #fff;
  line-height: 1.875vw;
  text-decoration: underline;
  text-underline-offset: 0.208vw;
  transition: opacity .25s ease, transform .25s ease;
}

.page-news .home11 .h11-link:hover {
  opacity: .85;
  transform: translateX(0.208vw);
}

.page-news .pd14 {
  background: #fff;
  padding-top: 6.25vw;
  padding-bottom: 8.333vw;
}

.page-news .pd14 .C-title {
  margin-bottom: 2.708vw;
}

/* é€šç”¨ï¼šgrid å­é¡¹ min-width: 0ï¼Œé¿å…å†…å®¹æŠŠåˆ—æ’‘å¤§ ---- */
.grid-x2 > *,
.grid-x3 > *,
.grid-x4 > *,
.grid-x5 > *,
.grid-x6 > * {
  min-width: 0;
}

/* é€šç”¨ï¼š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: 24.375vw;
  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, .55) 0%, rgba(0, 0, 0, .15) 65%, rgba(0, 0, 0, 0) 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 6.25vw 3.75vw;
  gap: 0.416vw;
  box-sizing: border-box;
}

.page-newsdetail .home12 .h12-title {
  color: #fff;
  line-height: 5vw;
  margin: 0;
}

.page-newsdetail .home12 .h12-date {
  color: #fff;
  line-height: 2.5vw;
  margin: 0;
}

.page-newsdetail .pd15 {
  background: #fff;
  padding: 4.166vw 0 6.25vw;
}

.page-newsdetail .pd15 .back-btn {
  display: inline-block;
  color: var(--color);
  text-decoration: underline;
  text-underline-offset: 0.156vw;
  margin-bottom: 3.125vw;
  transition: opacity .2s ease, transform .25s ease;
}

.page-newsdetail .pd15 .back-btn:hover {
  opacity: .85;
  transform: translateX(-0.208vw);
}

.page-newsdetail .pd15-main {
  align-items: flex-start;
  justify-content: space-between;
  gap: 4.166vw;
  flex-wrap: nowrap;
}

.page-newsdetail .pd15 .zuo {
  flex: 1;
  min-width: 0;
  max-width: 64.583vw;
  display: flex;
  flex-direction: column;
  gap: 1.875vw;
}

.page-newsdetail .share-bar {
  background: #f6f7f8;
  border-radius: 0.416vw;
  padding: 0.833vw 4.166vw 0.833vw 2.083vw;
  flex-wrap: wrap;
  gap: 0.625vw 1.458vw;
  align-items: center;
}

.page-newsdetail .share-btn {
  color: #333;
  line-height: 1.145vw;
  padding: 0.208vw 0.104vw;
  transition: color .25s ease, opacity .25s ease;
}

.page-newsdetail .share-btn:hover {
  background: linear-gradient(90deg, #8C3BAA 0%, #E5525C 45%, #DF426B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.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);
}

.article-body{
  line-height: 1.75;
  color: #3e3a39;
}

.article-body *{
  white-space: normal !important;
}

.page-newsdetail .article .C-title {
  margin-bottom: 1.458vw;
}

.page-newsdetail .article-body p {
  color: #333;
  line-height: 1.822vw;
}

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

.page-newsdetail .article-link {
  color: #333;
  text-decoration: underline;
  text-underline-offset: 0.156vw;
  word-break: break-all;
  transition: color .25s ease;
}

.page-newsdetail .article-link:hover {
  color: var(--color);
}

.page-newsdetail .article-body img{
  margin: 0.041vw;
  max-width: 100%;
  height: auto !important;
  display: block;
}

.page-newsdetail .pd15 .you {
  width: 14.583vw;
  flex-shrink: 0;
}

.page-newsdetail .you .C-title {
  margin-bottom: 2.291vw;
}

.page-newsdetail .more-list {
  display: flex;
  flex-direction: column;
  gap: 1.041vw;
}

.page-newsdetail .more-item {
  display: flex;
  flex-direction: column;
  width: 12.708vw;
  background: #f5f5f5;
  border: 0.052vw solid transparent;
  overflow: hidden;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.page-newsdetail .more-item:hover {
  background: #fff;
  border-color: rgba(231, 50, 58, .68);
  transform: translateY(-0.156vw);
  box-shadow: 0 0.416vw 1.25vw rgba(231, 50, 58, .12);
}

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

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

.page-newsdetail .more-item:hover .pic img {
  transform: scale(1.05);
}

.page-newsdetail .more-item .info {
  padding: 0.833vw 1.25vw;
  display: flex;
  flex-direction: column;
  gap: 0.416vw;
}

.page-newsdetail .more-item .date {
  color: #333;
  line-height: 0.781vw;
  margin: 0;
}

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

.page-newsdetail .more-item .desc {
  color: #333;
  line-height: 1.041vw;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
}

.copy-toast {
  position: fixed;
  left: 50%;
  top: 30%;
  transform: translate(-50%, -50%) scale(.95);
  padding: 0.729vw 1.458vw;
  background: rgba(0, 0, 0, .85);
  color: #fff;
  font-size: 0.729vw;
  border-radius: 0.416vw;
  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: 11.458vw; */
  background: #0f0f0f;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.page-finder .home15-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  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: 3.854vw 6.25vw 2.593vw 6.25vw;
  background: linear-gradient(105deg, #000 0%, #737373 68%, #7B585B 68%, #B60010 100%);
}

.page-finder .home15-hero h1 {
  color: #fff;
  margin: 0;
  letter-spacing: 0.052vw;
  line-height: 1.2;
}

.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.145vw;
  margin: 1.197vw 0 0;
  max-width: 87.5vw;
}

.page-finder .home15-main {
  position: relative;
  height: 18.083vw;
  /* margin-top: 1.77vw; */
}

.page-finder .home15-main .layer {
  position: absolute;
  inset: 0;
  /* width: 38.541vw; */
  height: 19.083vw;
  margin: 0vw 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: 0.854vw 0 0;
}

.page-finder .pd16 {
  padding-top: 0;
  padding-bottom: 5.104vw;
}

.page-finder .finder-progress {
  position: relative;
  height: 4.479vw;
}

.page-finder .finder-progress .back-btn {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #000;
  letter-spacing: 0.052vw;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, color .25s ease;
}

.page-finder .finder-progress .back-btn.show {
  display: flex;
  width: 5.989vw;
  height: 2.5vw;
  align-items: center;
  opacity: 1;
  pointer-events: auto;
  padding: 0.625vw 1.25vw;
  margin-left: 4.973vw;
}

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

.page-finder .finder-progress .back-btn .ico img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform .25s ease, filter .25s ease;
}

.page-finder .finder-progress .back-btn:hover {
  color: var(--color);
}

.page-finder .finder-progress .back-btn:hover .ico img {
  transform: translateX(-0.156vw);
  filter: brightness(0) saturate(100%) invert(15%) sepia(91%) saturate(7156%) hue-rotate(354deg) brightness(95%) contrast(93%);
}

.page-finder .finder-progress .step-list {
  width: 87.5vw;
  max-width: 100%;
  gap: 0;
  transition: width .35s ease, margin-left .35s ease;
}

.page-finder .finder-progress.is-active .step-list {
  width: 67.968vw;
  margin-left: 14.557vw;
  margin-right: 4.973vw;
}

.page-finder .finder-progress .step {
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  background: #e5e5e5;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color .3s ease, color .3s ease, box-shadow .3s ease;
}

.page-finder .finder-progress .step[data-step="1"],
.page-finder .finder-progress .step[data-step="2"] {
  cursor: pointer;
}

.page-finder .finder-progress .step[data-step="3"] {
  cursor: default;
}

.page-finder .finder-progress .step[data-step="3"].on {
  cursor: pointer;
}

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

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

.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: 0.104vw;
  background: #e5e5e5;
  transition: background-color .3s ease;
}

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

.page-finder .pd16 .C-title {
  /* margin-bottom: 1.27vw; */
}

.page-finder .finder-grid {
  gap: 2.5vw 2.916vw;
}

.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 .finder-grid .ft-group.is-active > .ft-item.is-revealed {
  animation: fadeInUp 0.45s ease both;
}

.page-finder .ft-item {
  display: block;
  text-align: center;
  padding: 0.833vw 0.625vw 1.041vw;
  border: 0.052vw solid transparent;
  background: #fff;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
  width: 15.104vw;
  height: 11.302vw;
}

.page-finder .ft-item:hover {
  border-color: var(--color);
  transform: translateY(-0.104vw);
  box-shadow: 0 0.416vw 1.041vw rgba(236, 29, 38, .12);
}

.page-finder .ft-item .pic {
  height: 9.968vw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.833vw;
  overflow: hidden;
}

.page-finder .ft-item .pic img {
  /* width: 8.177vw; */
  /* height: 7.968vw; */
  /* object-fit: contain; */
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.page-finder .ft-item:hover .pic img {
  transform: scale(1.05);
}

.page-finder .ft-item .name {
  color: var(--color);
  line-height: 1.4;
  margin: 0;
  letter-spacing: .0.26vw;
}

.page-finder .finder-grid.is-found {
  width: 69.687vw;
  /* height: 15.468vw; */
  gap: 4.895vw;
  /* margin: 0 auto 3.697vw; */
}

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

.page-finder .finder-grid.is-found .ft-item:hover {
  border-color: transparent;
  transform: none;
  box-shadow: none;
}

.page-finder .finder-grid.is-found .ft-item .inner {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
  width: 13.75vw;
}

.page-finder .finder-grid.is-found .ft-item .pic {
  position: relative;
  height: 13.281vw;
  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;
  transition: transform .4s ease;
}

.page-finder .finder-grid.is-found .ft-item:hover .pic img {
  transform: translateX(-50%) scale(1.04);
}

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

.page-finder .finder-grid.is-found .ft-item .name {
  color: #333;
  line-height: 1.562vw;
  letter-spacing: 0;
  margin: 0;
  transition: color .3s ease;
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-finder .finder-grid.is-found .ft-item:hover .name {
  color: var(--color);
}

.page-finder .finder-grid.is-found .ft-item .arrow {
  display: block;
  width: 1.041vw;
  height: 1.041vw;
  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%);
  transition: transform .35s ease;
}

.page-finder .finder-grid.is-found .ft-item:hover .arrow img {
  transform: translateX(0.208vw);
}

.page-finder .finder-empty,
.page-finder .finder-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: #666;
  padding: 2.083vw 0;
}

.page-finder .finder-grid.is-loading {
  opacity: 0.6;
  pointer-events: none;
}