@media screen and (min-width: 769px) {
  :root {
    --pc-ink: #182033;
    --pc-muted: #687085;
    --pc-line: var(--site-border-color, #111111);
    --pc-panel: #ffffff;
    --pc-soft: #f4f7fb;
    --pc-navy: var(--site-border-color, #111111);
    --pc-blue: var(--site-border-color, #111111);
    --pc-red: #d71920;
    --pc-gold: #d8a84f;
    --pc-shadow: 0 18px 45px rgba(17, 17, 17, .11);
  }

  html {
    background: #f5f7fb;
  }

  body {
    min-width: 1200px;
    background: linear-gradient(180deg, #f7f9fd 0, #fff 420px);
    color: var(--pc-ink);
    font-family: "Microsoft YaHei", Arial, Helvetica, sans-serif;
  }

  a {
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  }

  .container {
    width: 1200px;
  }

  .rep-header {
    background: #fff;
    box-shadow: 0 8px 28px rgba(17, 17, 17, .06);
    position: relative;
    z-index: 30;
  }

  .rep-header .top {
    height: 38px;
    line-height: 38px;
    background: var(--site-accent-color, #111111);
    color: rgba(255, 255, 255, .78);
    border: 0;
  }

  .rep-header .top .welcome {
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
    letter-spacing: .2px;
  }

  .rep-header .top .href {
    color: rgba(255, 255, 255, .32);
  }

  .rep-header .top .href a {
    margin: 0 8px;
    color: rgba(255, 255, 255, .82);
  }

  .rep-header .top .href a:hover {
    background: transparent !important;
    color: #fff !important;
  }

  .rep-head-main {
    height: 104px;
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .rep-header .logo {
    width: auto;
    min-width: 230px;
  }

  .rep-header .logo img {
    height: 72px;
    max-width: 245px;
  }

  .rep-header .logoinfo {
    float: none;
    width: auto;
    flex: 1;
    margin: 0;
    padding-left: 24px;
    border-left: 1px solid var(--pc-line);
  }

  .rep-header .logoinfo .bold {
    color: var(--pc-ink);
    font-size: 24px;
    line-height: 1.35;
    letter-spacing: .5px;
  }

  .rep-header .logoinfo p {
    margin-top: 8px;
    color: var(--pc-muted);
    font-size: 14px;
    letter-spacing: .2px;
  }

  .rep-header .tel {
    width: 280px;
    min-height: 64px;
    margin: 0;
    padding: 13px 18px 12px 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, #f7f9fd, #eef3fb);
    box-sizing: border-box;
    position: relative;
  }

  .rep-header .tel .iconfont {
    position: absolute;
    left: 18px;
    top: 15px;
    color: var(--pc-red);
    font-size: 34px;
  }

  .rep-header .tel p {
    margin: 0 0 4px;
    color: var(--pc-muted);
    font-size: 13px;
    line-height: 1.2;
  }

  .rep-header .tel b {
    max-width: 190px;
    color: var(--pc-navy);
    font-size: 20px;
    line-height: 1.15;
  }

  .rep-nav {
    height: 58px;
    background: linear-gradient(90deg, var(--site-accent-color, #111111) 0, #000 100%);
    box-shadow: 0 12px 30px rgba(17, 17, 17, .18);
  }

  .rep-nav ul {
    display: flex;
    align-items: stretch;
  }

  .rep-nav ul li {
    float: none;
    flex: 1;
    height: 58px;
    line-height: 58px;
    position: relative;
  }

  .rep-nav ul li > a {
    height: 58px;
    color: rgba(255, 255, 255, .9);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .2px;
    position: relative;
  }

  .rep-nav ul li > a:after {
    content: "";
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: 0;
    height: 3px;
    background: var(--site-border-color, #111111);
    transition: left .22s ease, right .22s ease;
  }

  .rep-nav ul li.on > a,
  .rep-nav ul li:hover > a {
    background: rgba(255, 255, 255, .08) !important;
    color: #fff !important;
  }

  .rep-nav ul li.on > a:after,
  .rep-nav ul li:hover > a:after {
    left: 22%;
    right: 22%;
  }

  .rep-nav .sub {
    top: 58px;
    min-width: 178px;
    padding: 10px;
    border-radius: 0 0 14px 14px;
    background: rgba(17, 17, 17, .97);
    box-shadow: 0 18px 36px rgba(17, 17, 17, .22);
  }

  .rep-nav .sub a {
    height: 38px;
    line-height: 38px;
    border-radius: 8px;
    color: rgba(255, 255, 255, .86);
  }

  .rep-nav .sub a:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff;
  }

  .banner {
    height: 520px;
    background: #101c33;
    overflow: hidden;
  }

  .banner .swiper-slide a {
    height: 520px;
    position: relative;
  }

  .banner .swiper-slide a:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(9, 20, 42, .5), rgba(9, 20, 42, .16) 52%, rgba(9, 20, 42, .08));
  }

  .banner_next,
  .banner_prev {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(8px);
  }

  .banner_next:hover,
  .banner_prev:hover {
    background: var(--pc-red);
  }

  .search {
    margin-top: 20px;
    background: transparent;
    position: relative;
    z-index: 5;
  }

  .replica-home .search {
    margin-top: -31px;
  }

  .search .container {
    min-height: 62px;
    padding: 0 18px 0 26px;
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--pc-shadow);
    box-sizing: border-box;
  }

  .search .key {
    height: 62px;
    line-height: 62px;
    color: var(--pc-muted);
  }

  .search .key dt {
    color: var(--pc-ink);
    font-weight: bold;
  }

  .search .key dd a {
    color: var(--pc-muted);
  }

  .search .key dd a:hover {
    color: var(--pc-red);
  }

  .search .box {
    margin-top: 11px;
  }

  .search input[type="text"] {
    height: 40px;
    border: 1px solid var(--pc-line);
    border-right: 0;
    border-radius: 20px 0 0 20px;
    background: #f8fafc;
    box-sizing: border-box;
  }

  .search input[type="submit"] {
    height: 40px;
    border-radius: 0 20px 20px 0;
    background: var(--pc-red);
    font-weight: bold;
  }

  .in_tit span,
  .pagebt {
    color: var(--pc-ink);
    letter-spacing: .5px;
  }

  .in_tit em {
    color: rgba(17, 17, 17, .12);
    font-weight: 800;
    letter-spacing: 2px;
  }

  .in_tit p {
    color: var(--pc-muted);
  }

  .in_pro {
    padding: 78px 0 62px;
    background: linear-gradient(180deg, #fff 0, #f5f8fc 100%);
  }

  .in_pro .container {
    display: flex;
    gap: 46px;
  }

  .in_pro .cate {
    float: none;
    width: 270px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--pc-shadow);
  }

  .in_pro .cate .tit {
    background: linear-gradient(135deg, var(--site-accent-color, #111111), #000);
  }

  .in_pro .cate .tit span,
  .in_pro .cate .tit em {
    color: #fff !important;
  }

  .in_pro .cate .procate {
    background: #fff;
  }

  .in_pro .cate .procate li a {
    color: var(--pc-ink);
  }

  .in_pro .cate .procate li a:hover {
    color: var(--pc-red);
    padding-left: 18px;
  }

  .in_pro .cate .tel {
    background: #f8fafc;
  }

  .in_pro .box {
    float: none;
    flex: 1;
    width: auto;
  }

  .in_pro .box .tab {
    border-radius: 18px 18px 0 0;
    background: #fff;
    box-shadow: 0 12px 28px rgba(17, 17, 17, .07);
    overflow: hidden;
  }

  .in_pro .box .tab li a {
    color: var(--pc-ink);
    font-weight: bold;
  }

  .in_pro .box .xun {
    padding: 20px;
    border-radius: 0 0 22px 22px;
    background: #fff;
    box-shadow: var(--pc-shadow);
  }

  .replica-home .in_pro .box .xun ul li,
  .replica-product .prolist li {
    border: 1px solid var(--pc-line);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(17, 17, 17, .07);
  }

  .replica-home .in_pro .box .xun ul li:hover,
  .replica-product .prolist li:hover {
    border-color: var(--site-border-color, #111111);
    box-shadow: 0 22px 42px rgba(17, 17, 17, .14);
  }

  .replica-home .in_pro .box .xun ul li .bt,
  .replica-product .prolist li .bt {
    color: var(--pc-ink);
  }

  .replica-home .in_pro .box .xun ul li .cs a,
  .replica-product .prolist li .more a,
  .product-table .inquiry-cart-add,
  .inquiry-cart-entry,
  .rep-cta,
  .home-cta-btn {
    border-radius: 999px;
  }

  .replica-home .in_pro .box .xun ul li .cs a:first-child,
  .replica-product .prolist li .more a:first-child,
  .product-table .inquiry-cart-add,
  .inquiry-cart-entry {
    background: var(--pc-red) !important;
    color: #fff !important;
  }

  .replica-home .in_pro .box .xun ul li .cs a:hover,
  .replica-product .prolist li .more a:hover,
  .product-table .inquiry-cart-add:hover {
    background: var(--pc-blue) !important;
    color: #fff !important;
  }

  .in_heng {
    height: 220px;
    background: linear-gradient(110deg, #111 0, var(--site-accent-color, #111111) 62%, #d71920 100%) !important;
    overflow: hidden;
    position: relative;
  }

  .in_heng:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 78% 20%, rgba(255, 255, 255, .18), transparent 28%);
  }

  .in_heng .container {
    position: relative;
  }

  .in_heng .left .bt,
  .in_heng .left p,
  .in_heng .right p,
  .in_heng .right .tel {
    color: #fff;
  }

  .in_heng .right a {
    border-radius: 999px;
    background: #fff;
    color: var(--pc-red) !important;
    font-weight: bold;
  }

  .in_heng .right a:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .18);
  }

  .in_sida {
    background: #f5f8fc;
  }

  .in_sida dl dd {
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(17, 17, 17, .08);
  }

  .in_sida dl dd .xh {
    background: var(--pc-red);
  }

  .in_sida dl dd .bt strong {
    color: var(--pc-ink);
  }

  .in_sida dl dd .info {
    color: var(--pc-muted);
  }

  .in_about {
    background: linear-gradient(180deg, #fff 0, #f8fafc 100%) !important;
  }

  .in_about .video img {
    border-radius: 22px;
    box-shadow: var(--pc-shadow);
  }

  .in_about .box {
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--pc-shadow);
  }

  .in_about .box .more {
    border-radius: 999px;
    background: var(--pc-blue);
  }

  .in_news .boxbig,
  .in_news .boxsm,
  .main_bor {
    border: 1px solid var(--pc-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--pc-shadow);
    overflow: hidden;
  }

  .main {
    padding: 44px 0 68px;
    background: #f6f8fc;
  }

  .main_big,
  .main_da {
    width: 880px;
  }

  .main_xiao {
    width: 270px;
  }

  .position {
    color: var(--pc-muted);
    background: #fff;
  }

  .position a {
    color: var(--pc-blue);
  }

  .btit,
  .ktit,
  .main_xiao .btit,
  .main_xiao .ktit,
  .main .main_xiao .main_bor .btit,
  .main .main_xiao .main_bort .ktit {
    border-bottom: 0 !important;
    background: linear-gradient(135deg, #111, var(--site-accent-color, #111111)) !important;
    color: #fff !important;
    font-weight: bold;
  }

  .main_xiao .procate li {
    border-bottom: 1px solid var(--pc-line);
  }

  .main_xiao .procate li a {
    color: var(--pc-ink);
  }

  .main_xiao .procate li.on a,
  .main_xiao .procate li a.on,
  .main_xiao .procate li a:hover {
    color: var(--pc-red) !important;
    background: #fff5f5;
  }

  .replica-product .main_xiao .procate li.on a {
    background: transparent;
    color: var(--pc-ink) !important;
  }

  .replica-product .main_xiao .procate li.on a:hover {
    background: #fff5f5;
    color: var(--pc-red) !important;
  }

  .main_pd {
    color: var(--pc-muted);
  }

  .pagebody,
  .rep-content {
    color: var(--pc-muted);
    font-size: 15px;
    line-height: 2;
  }

  .replica-product .prolist {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    overflow: visible;
  }

  .replica-product .prolist li {
    float: none;
    width: auto !important;
    margin: 0 !important;
    padding-bottom: 16px;
  }

  .replica-product .prolist li .pic {
    border-radius: 0;
    background: #f8fafc;
  }

  .replica-product .prolist li p {
    padding: 0 14px;
  }

  .replica-product .prolist li .more {
    padding: 0 12px;
  }

  .replica-product .product-table {
    border-collapse: separate !important;
    border-spacing: 0;
    border: 1px solid var(--pc-line);
    border-radius: 16px;
    overflow: hidden;
  }

  .replica-product .product-table th {
    padding: 14px 10px;
    background: #111;
    color: #fff;
    font-weight: bold;
  }

  .replica-product .product-table td {
    padding: 13px 10px;
    border-color: var(--pc-line) !important;
    color: var(--pc-ink);
  }

  .replica-product .product-table tr:nth-child(even) td {
    background: #f8fafc;
  }

  .price-login-link {
    border-color: rgba(215, 25, 32, .35) !important;
    color: var(--pc-red) !important;
    background: #fff7f7 !important;
  }

  .price-login-link:hover {
    background: var(--pc-red) !important;
    color: #fff !important;
  }

  .rep-news-page .newslist li {
    border-bottom-color: var(--pc-line) !important;
  }

  .rep-news-page .newslist .date {
    border-radius: 16px;
    background: linear-gradient(135deg, #111, var(--site-accent-color, #111111)) !important;
  }

  .rep-news-page .newslist .bt {
    color: var(--pc-ink) !important;
  }

  .rep-news-page .newslist .bt:hover,
  .rep-news-page .newslist .more {
    color: var(--pc-red) !important;
  }

  .rep-lead-form input,
  .rep-lead-form select,
  .rep-lead-form textarea {
    border-color: var(--pc-line);
    border-radius: 12px;
    background: #f8fafc;
  }

  .rep-lead-form input:focus,
  .rep-lead-form select:focus,
  .rep-lead-form textarea:focus {
    border-color: var(--site-border-color, #111111);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(17, 17, 17, .08);
  }

  .rep-lead-form button {
    border-radius: 999px;
    background: var(--pc-red);
    font-weight: bold;
  }

  .rep-lead-form button:hover {
    background: var(--pc-blue) !important;
  }

  .footnav {
    background: var(--site-accent-color, #111111);
  }

  .footnav ul li,
  .footnav ul li a {
    color: rgba(255, 255, 255, .76);
  }

  .footnav ul li a:hover {
    color: #fff;
  }

  .rep-footer {
    background: linear-gradient(135deg, var(--site-accent-color, #111111), #000);
    color: rgba(255, 255, 255, .72);
  }

  .rep-footer .container {
    text-align: center;
  }

  .rep-footer .footer-logo {
    float: none;
    width: 100%;
    height: auto;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    overflow: visible;
  }

  .rep-footer .footer-logo:before,
  .rep-footer .footer-logo:after {
    content: "";
    display: block;
    width: min(220px, 24vw);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .46));
  }

  .rep-footer .footer-logo:after {
    background: linear-gradient(90deg, rgba(255, 255, 255, .46), transparent);
  }

  .rep-footer .footer-logo img {
    width: auto;
    height: auto;
    max-width: 260px;
    max-height: 92px;
    object-fit: contain;
    filter: brightness(1.08) contrast(1.12) saturate(1.16) drop-shadow(0 10px 24px rgba(0, 0, 0, .34));
  }

  .rep-footer .footer-logo:before {
    position: static;
    top: auto;
    right: auto;
    bottom: auto;
  }

  .rep-footer .footer-legal {
    float: none;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: center;
    color: rgba(255, 255, 255, .78);
  }

  .rep-footer .footer-legal li {
    margin: 0;
  }

  .rep-footer .footer-copyright {
    font-size: 15px;
    letter-spacing: .02em;
  }

  .rep-footer .footer-slogan {
    margin-top: 4px !important;
    color: rgba(255, 255, 255, .96) !important;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .08em;
  }

  .rep-footer .footer-legal .icp {
    margin-top: 8px;
  }

  .rep-footer .copy li,
  .rep-footer .copy a,
  .rep-footer .ewm p {
    color: rgba(255, 255, 255, .72);
  }

  .rep-footer .onetext {
    color: rgba(255, 255, 255, .92);
  }

  .site-float-tools .online-chat-button {
    box-shadow: 0 16px 34px rgba(17, 17, 17, .22);
  }

  .rep-header .top .container {
    display: block;
    overflow: hidden;
  }

  .rep-header .top .welcome {
    float: left;
    display: block;
    max-width: 680px;
    margin: 0;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
  }

  .rep-header .top .href {
    float: right;
    display: block;
    white-space: nowrap;
  }

  .rep-head-main {
    display: block;
    position: relative;
    height: auto;
    padding: 15px 0;
    overflow: visible;
  }

  .rep-head-main:after {
    content: "";
    display: block;
    clear: both;
  }

  .rep-header .logo {
    float: left;
    width: auto;
    min-width: 0;
  }

  .rep-header .logo img {
    height: 80px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
  }

  .rep-header .logoinfo {
    float: left;
    width: auto;
    height: 80px;
    flex: none;
    margin: 0 0 0 20px;
    padding: 0 0 0 20px;
    border-left: 0;
    background: url(template/pc/style/images/head_line.png) left center no-repeat;
    font-size: 16px;
  }

  .rep-header .logoinfo .bold {
    padding: 12px 0 10px 0;
    color: inherit;
    font-size: 22px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0;
  }

  .rep-header .logoinfo p {
    margin: 0;
    color: inherit;
    font-size: inherit;
    letter-spacing: 0;
  }

  .rep-header .tel {
    float: right;
    position: relative;
    width: auto;
    min-height: 0;
    margin: 18px 0 0 0;
    padding: 0 0 0 55px;
    border-radius: 0;
    background: none;
    line-height: 1.3;
    box-sizing: content-box;
  }

  .rep-header .tel .iconfont {
    position: absolute;
    left: 0;
    top: -5px;
    color: var(--sll-accent);
    font-size: 46px;
  }

  .rep-header .tel p {
    margin: 0;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
  }

  .rep-header .tel b {
    display: block;
    max-width: 260px;
    overflow: hidden;
    color: #c01f31;
    font-size: 24px;
    line-height: inherit;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .in_pro {
    position: relative;
    padding: 42px 0 56px 0;
    background: #fff;
  }

  .replica-home .in_pro:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 42px;
    bottom: 56px;
    z-index: 0;
    width: 100vw;
    background: #fff;
    border-top: 1px solid rgba(17, 17, 17, .08);
    border-bottom: 1px solid rgba(17, 17, 17, .08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
    box-sizing: border-box;
    transform: translateX(-50%);
  }

  .in_pro .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border: 0;
    background: transparent;
    box-shadow: none;
    box-sizing: border-box;
  }

  .in_pro .cate {
    float: none;
    display: flex;
    flex-direction: column;
    width: 265px;
    min-height: 0;
    border-right: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    overflow: hidden;
  }

  .in_pro .cate .tit {
    position: relative;
    display: block;
    padding: 28px 18px 26px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--site-accent-color, #111111), #000);
    text-align: center;
  }

  .in_pro .cate .tit:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(circle at 18% 22%, rgba(255, 255, 255, .18), transparent 28%), linear-gradient(120deg, transparent 0, rgba(255, 255, 255, .08) 48%, transparent 72%);
    opacity: .9;
  }

  .in_pro .cate .tit:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 13px;
    z-index: 1;
    width: 48px;
    height: 3px;
    border-radius: 999px;
    background: #d71920;
    transform: translateX(-50%);
  }

  .in_pro .cate .tit span {
    position: relative;
    z-index: 1;
    display: block;
    padding: 0 0 6px 0;
    color: #fff !important;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: .12em;
  }

  .in_pro .cate .tit em {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, .72) !important;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .32em;
    text-transform: uppercase;
  }

  .in_pro .cate .procate li a {
    position: relative;
    line-height: 48px;
    padding: 0 34px 0 20px;
    background: #fff;
    border-bottom: 1px solid #eef0f4;
    color: #333;
    font-size: 14px;
    box-sizing: border-box;
  }

  .in_pro .cate .procate li a:after {
    content: ">";
    position: absolute;
    right: 18px;
    top: 0;
    color: #bbb;
    font-family: Arial, sans-serif;
    font-size: 14px;
  }

  .in_pro .cate .procate li a:hover {
    padding-left: 24px;
    background: var(--site-accent-color, #111111);
    color: #fff;
  }

  .in_pro .cate .procate li a:hover:after {
    color: #fff;
  }

  .in_pro .cate .procate {
    flex: 1;
    background: #fff;
  }

  .in_pro .cate .tel {
    display: none;
  }

  .in_pro .box {
    float: none;
    flex: 1;
    width: auto;
    margin-left: 0;
    padding: 0 0 0 22px;
    box-sizing: border-box;
  }

  .in_pro .box .tab {
    height: 44px;
    line-height: 44px;
    margin-bottom: 18px;
    border: 1px solid rgba(17, 17, 17, .08);
    border-radius: 0;
    background: #f8f9fb;
    box-shadow: none;
    overflow: hidden;
  }

  .in_pro .box .xun {
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .in_pro .box .xun ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin: 0;
    overflow: visible;
  }

  .replica-home .in_pro .box .xun ul li {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    padding: 14px;
    border: 1px solid rgba(17, 17, 17, .08);
    border-radius: 18px;
    background: #fff;
    text-align: center;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
    overflow: hidden;
  }

  .replica-home .in_pro .box .xun ul li:hover {
    border-color: var(--site-accent-soft, rgba(17, 17, 17, .18));
    box-shadow: 0 16px 34px rgba(0, 0, 0, .12);
    transform: translateY(-4px);
  }

  .replica-home .in_pro .box .xun ul li .home-product-card {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    overflow: hidden;
  }

  .replica-home .in_pro .box .xun ul li .pic {
    display: block;
    height: 240px;
    margin: 0;
    border: 1px solid rgba(17, 17, 17, .08);
    border-radius: 14px;
    background: #f7f9fc;
    box-sizing: border-box;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .55);
  }

  .replica-home .in_pro .box .xun ul li .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .replica-home .in_pro .box .xun ul li .home-product-title {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 8px 12px;
    background: rgba(17, 17, 17, .78);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .24s ease, transform .24s ease;
    box-sizing: border-box;
  }

  .replica-home .in_pro .box .xun ul li .home-product-title:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--site-accent-color, #111111);
  }

  .replica-home .in_pro .box .xun ul li:hover .home-product-title {
    opacity: 1;
    transform: translateY(0);
  }

  .replica-home .in_pro .box .xun ul li .bt {
    margin-top: 15px;
    padding: 0 10px;
  }

  .replica-home .in_pro .box .xun ul li .cs {
    padding: 12px 0 17px;
  }
}

@media screen and (min-width: 769px) {
  .rep-header .top-actions {
    float: none;
    position: absolute;
    top: 50%;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    width: auto;
    max-width: none;
    height: auto;
    margin-right: 0;
    transform: translateY(-50%);
    pointer-events: none;
  }

  .rep-header .top-actions .tel {
    flex: 0 0 auto;
    width: 252px;
    min-height: 62px;
    margin: 0;
    padding: 10px 16px 10px 62px;
    border: 1px solid rgba(17, 17, 17, .08);
    border-radius: 18px;
    background: linear-gradient(135deg, #fff, #f7f9fc);
    box-shadow: 0 10px 24px rgba(17, 17, 17, .08);
    box-sizing: border-box;
    position: relative;
    pointer-events: auto;
  }

  .rep-header .top-actions .tel .iconfont {
    position: absolute;
    left: 16px;
    top: 50%;
    color: var(--site-accent-color, #111111);
    font-size: 38px;
    transform: translateY(-50%);
  }

  .rep-header .top-actions .tel p {
    margin: 0 0 4px;
    color: #6b7280;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.15;
  }

  .rep-header .top-actions .tel b {
    display: block;
    max-width: 174px;
    overflow: hidden;
    color: #d71920;
    font-size: 23px;
    font-weight: 800;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .rep-header .top-qrcode {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 80px;
  }

  .rep-header .top-qrcode img {
    display: block;
    width: 78px;
    height: 78px;
    border: 1px solid rgba(17, 17, 17, .12);
    border-radius: 8px;
    background: #fff;
    object-fit: cover;
  }

  .rep-header .top-qrcode p {
    display: none;
  }

  .rep-header .top-inquiry-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 158px;
    height: 62px;
    padding: 0 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff533a, #d71920);
    color: #fff !important;
    font-size: 19px;
    font-weight: 700;
    line-height: 62px;
    box-shadow: 0 16px 32px rgba(215, 25, 32, .28);
    box-sizing: border-box;
    white-space: nowrap;
    animation: topCartBounce 1.5s ease-in-out infinite;
    pointer-events: auto;
  }

  .rep-header .top-inquiry-cart:hover {
    animation-play-state: paused;
    background: var(--site-accent-color, #111111);
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 17px 34px rgba(17, 17, 17, .2);
  }

  .rep-header .top-cart-icon,
  .rep-header .top-cart-text {
    display: inline-flex;
    align-items: center;
  }

  .rep-header .top-cart-icon img {
    display: block;
    width: 32px;
    height: 32px;
    object-fit: contain;
  }

  .rep-header .top-cart-count {
    position: absolute;
    top: -10px;
    right: -8px;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    border-radius: 999px;
    background: #fff;
    color: #d71920;
    font-size: 13px;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
    box-shadow: 0 5px 12px rgba(0, 0, 0, .12);
    box-sizing: border-box;
  }

  @keyframes topCartBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
  }

  .replica-home .in_pro .container {
    display: flex !important;
    align-items: stretch !important;
    gap: 0 !important;
    overflow: hidden !important;
  }

  .replica-home .in_pro .container:before {
    content: "";
    position: absolute;
    left: calc(18px + 265px);
    top: 18px;
    bottom: 18px;
    z-index: 2;
    width: 1px;
    background: rgba(17, 17, 17, .08);
  }

  .replica-home .in_pro .container:after {
    content: "" !important;
    position: absolute;
    left: 18px;
    top: 18px;
    bottom: 18px;
    z-index: 2;
    display: block !important;
    width: 1px;
    background: rgba(17, 17, 17, .08);
  }

  .replica-home .in_pro .cate {
    align-self: stretch !important;
    flex: 0 0 265px !important;
    width: 265px !important;
    min-height: 0 !important;
  }

  .replica-home .in_pro .box {
    flex: 1 1 auto !important;
    width: auto !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    padding-left: 22px !important;
    box-sizing: border-box !important;
  }

  .replica-home .in_pro .box .xun ul {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 20px !important;
    margin: 0 !important;
    overflow: hidden !important;
  }

  .replica-home .in_pro .box .xun ul li {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
  }

  .replica-home .in_pro .box .xun ul + ul {
    display: none !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 1229px) {
  .rep-header .top-actions {
    gap: 10px;
  }

  .rep-header .top-actions .tel {
    width: 220px;
    min-height: 56px;
    padding: 9px 14px 9px 54px;
  }

  .rep-header .top-actions .tel .iconfont {
    left: 14px;
    font-size: 34px;
  }

  .rep-header .top-actions .tel b {
    max-width: 152px;
    font-size: 20px;
  }

  .rep-header .top-inquiry-cart {
    min-width: 136px;
    height: 56px;
    padding: 0 18px;
    font-size: 17px;
    line-height: 56px;
  }

  .rep-header .top-cart-icon img {
    width: 28px;
    height: 28px;
  }
}
