/* 皇家蓝卡 - 手机端样式（不影响电脑端） */

/* Banner 默认：电脑端显示 iframe，隐藏手机图 */
#banner .sjba {
  display: none;
}

#banner .pcba {
  display: block;
}

/* 手机端样式（仅 max-width:750px 生效） */
@media only screen and (max-width: 750px) {

  /* ===== 全局布局 ===== */
  html,
  body {
    min-width: 0 !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  body > * {
    max-width: 100%;
  }

  .content,
  .content-s {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box;
  }

  .page-wrap,
  .page-wrap2 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .index-content {
    width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  /* 顶栏：白底显示彩色 logo，避免白 logo 看不见；logo 与菜单垂直居中对齐 */
  .page-header {
    height: 50px !important;
  }
  .page-header .page-logo {
    top: 0 !important;
    left: 15px !important;
    padding: 0 !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
  }
  .page-header .page-logo a {
    display: flex !important;
    align-items: center !important;
  }
  .page-header .page-logo img {
    height: 32px !important;
  }
  .page-header .page-logo .bai {
    display: none !important;
  }
  .page-header .page-logo .hei,
  .scrollHeader .page-header .page-logo .hei,
  .page-header:hover .page-logo .hei {
    display: block !important;
  }
  .nav_phone_btn {
    top: 0 !important;
    right: 12px !important;
    height: 50px !important;
    margin-top: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .nav_phone_btn span {
    display: block !important;
  }

  /* ===== 首页 Banner ===== */
  #banner {
    width: 100% !important;
    overflow: hidden;
  }

  #banner .bxSlide-outter {
    height: 100vh !important;
    max-height: none !important;
    width: 100% !important;
  }

  #banner .pcba {
    display: none !important;
  }

  #banner .sjba {
    display: block !important;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #111;
  }

  #banner .sjba img {
    display: none !important;
  }

  #banner .sjba-slide {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
  }

  #banner .sjba-slide.on {
    opacity: 1;
    z-index: 2;
  }

  #banner .sjba .zi {
    position: absolute;
    left: 5%;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: #fff;
    text-align: left;
  }

  #banner .sjba .zi h3 {
    margin: 0;
    font-weight: normal;
    line-height: 1.3;
  }

  #banner .sjba .zi h3 i {
    font-style: normal;
    font-size: 16px;
    display: inline-block;
    margin-bottom: 6px;
  }

  #banner .sjba .zi h3 b {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    line-height: 1.25;
  }

  #banner .sjba .zi p {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
    opacity: 0.95;
  }

  #banner .sjba-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    z-index: 3;
    text-align: center;
  }

  #banner .sjba-dots i {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
  }

  #banner .sjba-dots i.on {
    background: #fff;
  }

  /* 菜单关闭图标 */
  .nav_phone_tit .button {
    display: block !important;
    position: absolute !important;
    right: 8px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    -webkit-transform: translateY(-50%) !important;
    width: 44px !important;
    height: 44px !important;
    margin: 0 !important;
    float: none !important;
    z-index: 2;
  }
  .nav_phone_tit .button:before,
  .nav_phone_tit .button:after {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    background: #333 !important;
    border-radius: 2px !important;
    content: "" !important;
    display: block !important;
  }
  .nav_phone_tit .button:before {
    width: 18px !important;
    height: 2px !important;
    margin: 0 !important;
    transform: translate(-50%, -50%) rotate(45deg) !important;
    -webkit-transform: translate(-50%, -50%) rotate(45deg) !important;
  }
  .nav_phone_tit .button:after {
    width: 2px !important;
    height: 18px !important;
    margin: 0 !important;
    transform: translate(-50%, -50%) rotate(45deg) !important;
    -webkit-transform: translate(-50%, -50%) rotate(45deg) !important;
  }
  .nav_phone_tit span {
    right: 50px !important;
    text-align: left !important;
  }

  /* 手机导航搜索框去掉 */
  .nav_phone .phone-search {
    display: none !important;
  }

  .nav_phone_con > ul {
    top: 0.5em !important;
  }

  /* ===== 首页 wji 区块 ===== */
  .wji_about_section {
    padding: 40px 0 !important;
    background-size: cover !important;
  }

  .wji_about_wrapper {
    gap: 30px !important;
  }

  .wji_about_images {
    max-width: 100% !important;
    height: 280px !important;
    transform: none !important;
  }

  .wji_about_content {
    transform: none !important;
  }

  .wji_img_primary {
    width: 75% !important;
    height: 70% !important;
  }

  .wji_img_secondary {
    width: 55% !important;
    height: 50% !important;
    border-width: 6px !important;
  }

  .wji_about_title {
    font-size: 1.5rem !important;
    background: none !important;
  }

  .wji_about_title font {
    font-size: 20px !important;
  }

  .wji_about_desc {
    margin-bottom: 1.5rem !important;
    line-height: 24px !important;
  }

  .wji_expertise_section {
    padding: 50px 0 !important;
    background-size: cover !important;
    margin-top: 0 !important;
  }

  .wji_expertise_wrapper {
    gap: 30px !important;
  }

  .wji_expertise_intro,
  .wji_expertise_stats {
    transform: none !important;
  }

  .wji_expertise_title {
    font-size: 1.5rem !important;
    letter-spacing: 1px !important;
  }

  .wji_expertise_stats {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
  }

  .wji_stat_item h3 {
    font-size: 1.75rem !important;
  }

  .wji_stat_item p {
    padding-right: 0 !important;
    line-height: 24px !important;
    font-size: 0.875rem !important;
  }

  .animate-section {
    opacity: 1 !important;
    transform: none !important;
  }

  .wji_stat_item {
    opacity: 1 !important;
    transform: none !important;
  }

  /* ===== 产品中心 ===== */
  .cpt-1,
  .cpt-2 {
    height: auto !important;
    padding: 30px 0 40px !important;
    background-size: cover !important;
    overflow: hidden !important;
  }

  .cpt-1 h2,
  .cpt-2 h2,
  .al h2,
  .sl h2,
  .yz-1 h2,
  .lian-index-who-we-are h2 {
    padding-top: 20px !important;
  }

  .cpt-1 h2 em,
  .cpt-2 h2 em,
  .al h2 em,
  .sl h2 em,
  .yz-1 h2 em,
  .lian-index-who-we-are h2 em {
    font-size: 22px !important;
    line-height: 30px !important;
  }

  .cpt-1 h2 span,
  .cpt-2 h2 span,
  .al h2 span,
  .sl h2 span,
  .yz-1 h2 span,
  .lian-index-who-we-are h2 span {
    font-size: 14px !important;
    line-height: 22px !important;
    padding-top: 8px !important;
  }

  .cp1,
  .cp2 {
    margin-top: 15px !important;
    overflow: hidden !important;
  }

  .cp1 dl,
  .cp2 dl {
    height: auto !important;
  }

  .cp1 dl dt,
  .cp2 dl dt {
    float: none !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 0 15px !important;
  }

  .cp1 dl dt img,
  .cp2 dl dt img {
    width: 100% !important;
    height: auto !important;
  }

  .cp1 dl dd,
  .cp2 dl dd {
    float: none !important;
    width: 100% !important;
    height: auto !important;
    margin-top: 0 !important;
    padding: 0 5px 10px;
    box-sizing: border-box;
  }

  .cp1 dl dd h3,
  .cp2 dl dd h3 {
    width: 100% !important;
    height: auto !important;
    float: none !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
    overflow: visible !important;
  }

  .cp1 dl dd h3 em,
  .cp2 dl dd h3 em {
    height: auto !important;
    display: flex !important;
    align-items: center !important;
    float: none !important;
    clear: both;
  }

  .cp1 dl dd h3 em img,
  .cp2 dl dd h3 em img {
    float: none !important;
    width: 40px !important;
    height: auto !important;
    flex-shrink: 0;
  }

  .cp1 dl dd h3 em b,
  .cp2 dl dd h3 em b {
    float: none !important;
    font-size: 18px !important;
    margin: 0 0 0 10px !important;
    line-height: 1.3 !important;
  }

  .cp1 dl dd h3 span,
  .cp2 dl dd h3 span {
    float: none !important;
    width: 100% !important;
    margin-top: 12px !important;
    padding-top: 12px !important;
    border-top: 1px solid #cacaca;
    box-sizing: border-box;
    line-height: 24px !important;
    font-size: 14px !important;
  }

  .cp1 dl dd .cpt-f,
  .cp2 dl dd .cpt-f {
    width: 100% !important;
    float: none !important;
    margin-top: 10px !important;
    margin-bottom: 15px !important;
  }

  .cp1 dl dd .cpt-f a,
  .cp2 dl dd .cpt-f a {
    line-height: 36px !important;
    font-size: 14px !important;
  }

  .wji_btn_more {
    width: 100% !important;
    float: none !important;
    text-align: left;
    padding-bottom: 10px;
  }

  /* ===== 热销产品 ===== */
  .tp-c {
    height: auto !important;
    padding-bottom: 40px;
    background-size: cover !important;
    overflow: hidden !important;
  }

  .tpt {
    width: 100% !important;
    height: auto !important;
    float: none !important;
    margin-top: 30px !important;
  }

  .tpt h2,
  .tpt div.h3 {
    width: 100% !important;
    float: none !important;
    height: auto !important;
  }

  .tpt p {
    float: none !important;
    width: 100% !important;
    padding-top: 10px !important;
    font-size: 13px !important;
    line-height: 22px !important;
    overflow: visible;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 6px 10px;
  }

  .tpt p a {
    float: none !important;
    display: inline-block !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    font-size: 13px !important;
  }

  /* MORE+ 靠右，不要跑到分类最前面 */
  .tpt p i {
    float: none !important;
    display: inline-block !important;
    margin-left: auto !important;
    order: 99;
    font-size: 13px !important;
  }

  .tpt p i a {
    margin: 0 !important;
    color: #005bac !important;
    font-weight: bold;
  }

  .tpt .h3 em {
    font-size: 22px !important;
  }

  .gd_con {
    overflow: hidden !important;
    width: 100% !important;
    margin-top: 12px !important;
  }

  .gd_con .tempWrap {
    width: 100% !important;
    overflow: hidden !important;
  }

  .gd_con .tempWrap ul {
    width: 100% !important;
    left: 0 !important;
    transform: none !important;
    display: flex !important;
    flex-wrap: wrap !important;
  }

  .gd_con ul li {
    width: 48% !important;
    margin-right: 4% !important;
    height: auto !important;
    margin-bottom: 12px !important;
    padding-bottom: 10px !important;
    float: none !important;
    box-sizing: border-box;
  }

  .gd_con ul li:nth-child(2n) {
    margin-right: 0 !important;
  }

  .gd_con ul li.clone {
    display: none !important;
  }

  .gd_con ul li i {
    width: 100% !important;
    height: 0 !important;
    padding-bottom: 75% !important;
    position: relative !important;
    display: block !important;
    overflow: hidden !important;
    border: 1px solid #f2f2f2 !important;
    box-sizing: border-box !important;
  }

  .gd_con ul li i img {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
  }

  .gd_con ul li h3 {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    box-sizing: border-box;
    padding: 8px 6px 4px !important;
    margin: 0 !important;
  }

  .gd_con ul li h3 span {
    float: none !important;
    flex: 1;
    min-width: 0;
    line-height: 20px !important;
    padding: 0 6px 0 0 !important;
    font-size: 13px !important;
    height: auto !important;
    white-space: normal !important;
  }

  /* 产品卡片箭头：保持圆形，与底部分隔线拉开间距 */
  .gd_con ul li h3 em {
    float: none !important;
    flex-shrink: 0;
    width: 22px !important;
    height: 22px !important;
    margin: 0 !important;
    overflow: hidden !important;
    display: block !important;
  }

  .gd_con ul li h3 em > img {
    display: block !important;
    width: 22px !important;
    height: 22px !important;
    margin: 0 !important;
  }

  .gd_con .prev,
  .gd_con .next {
    display: none !important;
  }

  /* ===== 应用案例：一排两个 ===== */
  .al {
    height: auto !important;
    padding: 20px 0 25px !important;
    overflow: hidden !important;
  }

  .al h2 {
    padding-top: 10px !important;
    margin-bottom: 0 !important;
  }

  .al_on {
    overflow: hidden !important;
    width: 100% !important;
    margin-top: 12px !important;
  }

  .al_on .tempWrap {
    width: 100% !important;
    margin-left: 0 !important;
    overflow: hidden !important;
  }

  .al_on .tempWrap ul,
  .al_on ul {
    width: 100% !important;
    left: 0 !important;
    transform: none !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
  }

  .al_on ul li {
    width: 48.5% !important;
    margin: 0 0 12px !important;
    float: none !important;
    position: relative !important;
    overflow: hidden;
    flex: 0 0 48.5% !important;
    max-width: 48.5% !important;
  }

  .al_on ul li.clone {
    display: none !important;
  }

  .al_on ul li em {
    width: 100% !important;
    height: 110px !important;
  }

  .al_on ul li em img {
    width: 100% !important;
    height: 110px !important;
    object-fit: cover !important;
  }

  .al_on ul li p {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 8px !important;
    position: relative !important;
    bottom: auto !important;
    display: block !important;
    flex-wrap: nowrap;
  }

  .al_on ul li p i {
    width: 100% !important;
    margin: 0 0 6px !important;
    font-size: 12px !important;
    line-height: 18px !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .al_on .more {
    width: 100% !important;
    height: 28px !important;
    line-height: 28px !important;
    font-size: 12px !important;
    margin: 0 !important;
    float: none !important;
  }

  .al_on .more a {
    height: 28px !important;
  }

  .al_on .more img {
    width: 12px !important;
    margin-left: 4px !important;
  }

  .al_on .prev,
  .al_on .next {
    display: none !important;
  }

  /* ===== 型材特点 ===== */
  .yz-1 {
    height: auto !important;
    padding: 30px 0 40px !important;
    background-size: cover !important;
    overflow: hidden !important;
  }

  .yz-1 h2 {
    width: 100% !important;
    height: auto !important;
    padding-top: 10px !important;
  }

  .yz-1 h2 em {
    font-size: 20px !important;
  }

  .yz-1 h2 em img {
    height: 40px !important;
    width: auto !important;
  }

  .yz-1 h2 em::after {
    display: none !important;
  }

  .fw1 {
    margin-top: 20px !important;
  }

  .fw1 ul {
    display: block !important;
  }

  .fw1 ul li {
    width: 100% !important;
    margin: 0 0 15px !important;
    float: none !important;
    height: auto !important;
    padding-bottom: 20px;
    left: auto !important;
    right: auto !important;
    transform: none !important;
  }

  .fw1 ul li:hover {
    transform: none !important;
  }

  .fw1 ul li:nth-child(2n) {
    margin-right: 0 !important;
  }

  .fw1 ul li em {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    margin: 15px auto 10px !important;
    display: block !important;
  }

  .fw1 ul li span {
    margin-top: 10px !important;
    font-size: 16px !important;
    line-height: 22px !important;
  }

  .fw1 ul li .desc {
    font-size: 13px !important;
    line-height: 20px !important;
    padding: 10px 15px !important;
  }

  /* ===== 实力：导航提到内容上方，避免重叠 ===== */
  .sl {
    height: auto !important;
    padding-bottom: 20px !important;
    overflow: hidden !important;
  }

  .sl .content {
    display: flex !important;
    flex-direction: column !important;
  }

  .sl .content > h2 {
    order: 1;
    padding-top: 20px !important;
  }

  .sl .content > .clear {
    order: 1;
  }

  .sl .content > .sl_nav {
    order: 2;
  }

  .sl .content > .al_con {
    order: 3;
  }

  .al_con {
    overflow: hidden !important;
    width: 100% !important;
    margin-top: 10px !important;
    position: relative !important;
    z-index: 1;
  }

  .al_con .tempWrap {
    width: 100% !important;
    overflow: hidden !important;
  }

  .al_bd {
    width: 100% !important;
    left: 0 !important;
    transform: none !important;
  }

  .al_con dl,
  .al_bd dl {
    width: 100% !important;
    float: none !important;
    clear: both;
    overflow: hidden !important;
    height: auto !important;
  }

  .al_con dl.clone,
  .al_bd dl.clone {
    display: none !important;
  }

  .al_con dl dt {
    float: none !important;
    width: 100% !important;
    height: auto !important;
    margin-right: 0 !important;
  }

  .al_con dl dt img {
    height: auto !important;
    max-height: 200px;
    object-fit: cover;
  }

  .al_con dl dd {
    float: none !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 16px 15px 20px !important;
    box-sizing: border-box;
    overflow: visible !important;
    position: relative !important;
  }

  .al_con dl dd h3 {
    width: 100% !important;
    height: auto !important;
    margin: 0 0 12px !important;
    float: none !important;
  }

  .al_con dl dd h3 b {
    font-size: 32px !important;
    line-height: 1 !important;
  }

  .al_con dl dd h3 em {
    font-size: 18px !important;
    padding-top: 6px !important;
    line-height: 1.3 !important;
  }

  .al_con dl dd h3 span {
    font-size: 14px !important;
    line-height: 1.4 !important;
  }

  .al_con dl dd h3 i {
    margin-top: 8px !important;
  }

  .al_con dl dd p {
    width: 100% !important;
    float: none !important;
    margin: 0 0 8px !important;
    padding-left: 12px !important;
    font-size: 13px !important;
    line-height: 22px !important;
    height: auto !important;
    overflow: visible !important;
    max-height: none !important;
  }

  .al_con dl dd:after {
    display: none !important;
  }

  .sl_nav {
    position: relative !important;
    bottom: auto !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    height: auto !important;
    margin: 10px 0 0 !important;
    z-index: 2;
  }

  .sl_nav li {
    width: 33.333% !important;
    height: auto !important;
    padding: 8px 4px;
    box-sizing: border-box;
  }

  .sl_nav li i {
    margin-left: 0 !important;
    float: none !important;
    margin: 0 auto 4px !important;
    display: block;
    width: 32px !important;
    height: 32px !important;
  }

  .sl_nav li i img {
    width: 100% !important;
    height: auto !important;
  }

  .sl_nav li h3 {
    float: none !important;
    margin: 0 !important;
    text-align: center;
  }

  .sl_nav li h3 em {
    font-size: 12px !important;
  }

  .sl_nav li h3 span {
    display: none;
  }

  /* ===== 表单/咨询 ===== */
  .bds {
    height: auto !important;
    padding: 30px 0;
    background-size: cover !important;
  }

  .bd1 {
    padding-top: 30px !important;
  }

  .bd_l,
  .zx_r {
    float: none !important;
    width: 100% !important;
    height: auto !important;
  }

  .bd_l h2 em {
    font-size: 20px !important;
    line-height: 28px !important;
  }

  .bd_l h2 span {
    font-size: 14px !important;
  }

  .xad_s {
    margin-top: 12px !important;
    overflow: hidden;
  }

  .xad_s p {
    float: none !important;
    width: 100% !important;
    margin: 0 0 8px !important;
    padding-left: 0 !important;
    min-height: 48px;
    box-sizing: border-box;
    position: relative !important;
  }

  .xad_s p span {
    display: block !important;
    position: static !important;
  }

  .xad_s p span img {
    width: 44px !important;
    height: 44px !important;
    left: 0 !important;
    top: 2px !important;
  }

  .xad_s p strong {
    float: none !important;
    display: block !important;
    font-size: 20px !important;
    line-height: 1.25 !important;
    margin-left: 56px !important;
    padding-left: 0 !important;
  }

  .xad_s p strong i {
    padding-bottom: 4px !important;
    font-size: 12px !important;
    line-height: 1.3 !important;
  }

  .xad_s .more {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    float: none !important;
    width: 100px !important;
    height: 32px !important;
    line-height: 32px !important;
    font-size: 13px !important;
    margin-top: 8px !important;
    border-radius: 16px !important;
  }

  .xad_s .more img {
    width: 12px !important;
    margin-left: 6px !important;
  }

  /* ===== 合作伙伴：去掉固定高度空白（PC 为 height:750px） ===== */
  .lian-index-who-we-are,
  .sy-hezuo {
    height: auto !important;
    min-height: 0 !important;
    padding: 20px 0 25px !important;
    overflow: hidden !important;
    background-size: cover !important;
    background-position: center top !important;
  }

  .lian-index-who-we-are h2,
  .sy-hezuo h2 {
    padding-top: 10px !important;
    margin-bottom: 10px !important;
  }

  .indLogo,
  .indLogo_box,
  .abiUn,
  .sc-kjoXOD,
  .jpNxld,
  .dZTPhT {
    overflow: hidden !important;
    max-width: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .indLogo_box,
  .abiUn .content-wrap {
    min-height: 0 !important;
    padding-bottom: 0 !important;
  }

  .abiUn .content-wrap > div {
    margin: 8px 0 !important;
  }

  .scroll-content {
    max-width: none;
  }

  .abiUn .customer-icon,
  .sc-fAjcbJ:nth-child(1) .customer-icon,
  .sc-fAjcbJ:nth-child(2) .customer-icon,
  .sc-fAjcbJ:nth-child(4) .customer-icon,
  .sc-fAjcbJ:nth-child(5) .customer-icon {
    width: 100px !important;
    height: 56px !important;
    padding-top: 0 !important;
    margin: 4px !important;
  }

  .abiUn .customer-icon > img {
    width: 100% !important;
    height: 100% !important;
  }

  .indLogo_name .p1 {
    font-size: 22px !important;
  }

  .client-2 {
    right: 6px !important;
    bottom: 70px !important;
    width: 36px !important;
  }

  .client-2 li {
    width: 36px !important;
    height: 36px !important;
    margin-bottom: 4px !important;
    background-size: 18px auto !important;
  }

  .client-2 li.my-kefu-shouye {
    background-size: 18px !important;
  }

  .client-2 li.my-kefu-weixin {
    display: none !important;
  }

  /* ===== 新闻区块 ===== */
  .news {
    height: auto !important;
    padding: 15px 0 30px !important;
    overflow: hidden !important;
    min-height: 0 !important;
  }

  .news h2 {
    padding-top: 5px !important;
    margin-bottom: 8px !important;
  }

  .news h2 em {
    font-size: 20px !important;
    line-height: 28px !important;
  }

  .news h2 span {
    font-size: 13px !important;
    line-height: 20px !important;
    padding-top: 8px !important;
  }

  .don,
  .went {
    width: 100% !important;
    float: none !important;
    max-width: 100% !important;
    box-sizing: border-box;
    padding: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
  }

  .dt_qh,
  .dt_nr,
  .dt_a1,
  .dt_d1,
  .wt_nr {
    width: 100% !important;
    float: none !important;
    height: auto !important;
    min-height: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box;
    overflow: visible !important;
  }

  .dt_nr {
    border-right: none !important;
  }

  .dt_qh {
    padding-left: 0 !important;
  }

  .dt_qh li {
    font-size: 15px !important;
    margin-right: 12px !important;
  }

  /* 关掉新闻左右轮播：避免日期蓝块被压扁 */
  .dt_a1 .tempWrap,
  .dt_d1 .tempWrap,
  .don .tempWrap {
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    overflow: visible !important;
    position: static !important;
  }

  .dt_a1 .tempWrap ul,
  .dt_d1 ul,
  .don .tempWrap ul {
    width: 100% !important;
    height: auto !important;
    left: 0 !important;
    top: 0 !important;
    position: static !important;
    transform: none !important;
    display: block !important;
  }

  .dt_a1 .tempWrap li.clone,
  .dt_d1 li.clone,
  .don .tempWrap li.clone {
    display: none !important;
  }

  .dt_hd {
    display: none !important;
  }

  .dt_d1 li,
  .dt_a1 li {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    float: none !important;
    position: relative !important;
    padding-bottom: 12px !important;
    margin: 0 0 8px !important;
    overflow: visible !important;
  }

  .dt_d1 li i {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    overflow: hidden !important;
  }

  .dt_d1 li i img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    max-height: none !important;
  }

  /* 时间：贴在图片右上角，固定小尺寸，防止被轮播压扁 */
  .dt_d1 li span {
    position: absolute !important;
    left: auto !important;
    right: 10px !important;
    top: 10px !important;
    bottom: auto !important;
    width: auto !important;
    min-width: 52px !important;
    max-width: 72px !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    padding: 4px 8px !important;
    font-size: 11px !important;
    line-height: 1.25 !important;
    z-index: 3;
    text-align: center;
    box-sizing: border-box;
    border-radius: 2px;
    transform: none !important;
  }

  .dt_d1 li span b {
    font-size: 13px !important;
    height: auto !important;
    line-height: 1.2 !important;
    padding-bottom: 0 !important;
    display: inline !important;
    margin-right: 3px;
  }

  .dt_d1 li h4 {
    margin-top: 10px !important;
    padding-right: 0 !important;
  }

  .dt_d1 li h4 a {
    white-space: normal !important;
    height: auto !important;
    line-height: 22px !important;
    font-size: 15px !important;
  }

  .dt_d1 li p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 6px;
    height: auto !important;
  }

  .dt_d1 li em {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    clear: both;
    position: relative !important;
    z-index: 1;
  }

  .dt_d1 li em a {
    margin-top: 4px !important;
    font-size: 13px !important;
    display: inline-block !important;
  }

  .went .bt {
    height: auto !important;
    margin-top: 16px;
    overflow: hidden;
  }

  /* 关掉问答上下轮播：避免 vis:4 预留大块空白 */
  .wt_nr .tempWrap {
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    position: static !important;
    margin: 0 !important;
  }

  .wt_nr .tempWrap ul,
  .wt_nr > ul {
    height: auto !important;
    top: 0 !important;
    left: 0 !important;
    position: static !important;
    transform: none !important;
    display: block !important;
  }

  .wt_nr .tempWrap li.clone,
  .wt_nr li.clone {
    display: none !important;
  }

  .wt_nr li {
    height: auto !important;
    min-height: 0 !important;
    padding: 12px 0 !important;
    margin: 0 !important;
    overflow: hidden;
    display: flex !important;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    float: none !important;
  }

  /* 手机端问答只显示前 5 条，避免过长 */
  .wt_nr li:nth-child(n + 6) {
    display: none !important;
  }

  .wt_nr li p {
    float: none !important;
    width: auto !important;
    flex: 1;
    min-width: 0;
    padding-right: 0 !important;
  }

  .wt_nr li p a {
    white-space: normal !important;
    height: auto !important;
    line-height: 22px !important;
  }

  .wt_nr li p em {
    -webkit-line-clamp: 2;
    height: auto !important;
    max-height: 44px;
    overflow: hidden;
  }

  .wt_nr li span {
    float: none !important;
    flex-shrink: 0;
    width: 56px !important;
    text-align: center;
  }

  .wt_nr li span em {
    font-size: 15px !important;
    line-height: 20px !important;
  }

  .wt_nr li span i {
    font-size: 12px !important;
    letter-spacing: 0 !important;
  }

  .news .tempWrap {
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
  }

  .news .tempWrap ul {
    width: 100% !important;
    height: auto !important;
    left: 0 !important;
    top: 0 !important;
  }

  .news img {
    width: 100% !important;
    height: auto !important;
  }

  /* ===== 页脚：隐藏导航列，保留联系与二维码 ===== */
  .footer .f_con {
    padding-top: 40px !important;
  }

  .footer .content .lx-1 {
    display: none !important;
  }

  .gsx {
    width: 100% !important;
    float: none !important;
    clear: both;
    padding-top: 10px;
  }

  .gsx li {
    height: auto !important;
    padding-bottom: 15px;
  }

  .gsx li b {
    font-size: 20px !important;
  }

  .f_er {
    width: 100% !important;
    float: none !important;
    clear: both;
    justify-content: center !important;
    padding-top: 20px;
  }

  .f_er p {
    width: 120px !important;
  }

  .f_er p img {
    width: 100px !important;
    height: 100px !important;
  }

  .banquan {
    margin-top: 30px !important;
    line-height: 24px !important;
    padding: 15px 10px !important;
    font-size: 12px !important;
  }

  /* ===== 右侧悬浮 ===== */
  .client-2 {
    right: 5px;
    top: auto;
    bottom: 70px;
    width: 36px !important;
  }

  .client-2 li {
    width: 36px !important;
    height: 36px !important;
    line-height: 36px !important;
    margin-bottom: 6px !important;
  }

  .client-2 li.my-kefu-tel,
  .client-2 li.my-kefu-shouye,
  .client-2 li.my-kefu-weixin {
    display: none !important;
  }

  /* ===== 内页 Banner：铺满显示，去掉负 margin 裁切 ===== */
  .polaris-banner {
    height: 46vw !important;
    min-height: 200px !important;
    max-height: 280px !important;
    position: relative !important;
    overflow: hidden !important;
  }

  .polaris-banner .img {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .polaris-banner .img img,
  .polaris-banner .img .img-block,
  .polaris-banner img {
    margin: 0 !important;
    margin-top: 0 !important;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
  }

  .polaris-banner .text {
    left: 5% !important;
    width: 90% !important;
    z-index: 2;
  }

  .polaris-banner .title-1 {
    font-size: 22px !important;
  }

  .polaris-banner .text-1 {
    font-size: 14px !important;
    margin-bottom: 6px !important;
  }

  /* ===== 内页子导航：勿叠 banner；手机直接显示栏目（避免空白白条） ===== */
  .menu_location {
    margin-top: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    background: #f5f5f5 !important;
    border-bottom: 1px solid #e5e5e5 !important;
    position: relative !important;
    z-index: 10 !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  .menu_location .location {
    display: none !important;
  }

  .menu_location .menu {
    width: 100% !important;
    float: none !important;
    padding: 0 !important;
  }

  /* 空的 wapmenu 标题条隐藏，改为一排可见二级栏目 */
  .menu_location .wapmenu {
    display: none !important;
  }

  .menu_location .menu ul,
  .menu_location .menu ul.show {
    display: flex !important;
    flex-wrap: wrap !important;
    float: none !important;
    position: static !important;
    width: 100% !important;
    left: auto !important;
    box-shadow: none !important;
    background: #f5f5f5 !important;
    border-radius: 0 !important;
    border-top: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .menu_location .menu li {
    width: 50% !important;
    float: none !important;
    height: 52px !important;
    min-height: 52px !important;
    line-height: normal !important;
    margin: 0 !important;
    text-align: center !important;
    border: none !important;
    border-bottom: 1px solid #e8e8e8 !important;
    border-right: 1px solid #e8e8e8 !important;
    padding: 0 !important;
    box-sizing: border-box;
    background: #f5f5f5 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .menu_location .menu li:nth-child(2n) {
    border-right: none !important;
  }

  .menu_location .menu li a {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #333 !important;
    display: block !important;
    padding: 0 8px !important;
    line-height: 1.3 !important;
    width: 100% !important;
    text-align: center !important;
  }

  .menu_location .menu li.aon a,
  .menu_location .menu li a.aon {
    color: #21499b !important;
  }

  /* ===== 内页内容 ===== */
  .polaris-company-profile,
  .polaris-about,
  .polaris-news,
  .polaris-product {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .polaris-company-profile {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    background-attachment: scroll !important;
    background-size: cover !important;
  }

  .index_jieshao-top .title-2 {
    font-size: 22px !important;
    line-height: 30px !important;
  }

  .index_jieshao-top .title-3 {
    font-size: 14px !important;
    line-height: 24px !important;
    width: 100% !important;
  }

  .index_jieshao-top .title-3 br {
    display: none;
  }

  .company-profile-left,
  .company-profile-right {
    width: 100% !important;
    float: none !important;
  }

  .company-profile-left {
    margin-bottom: 20px !important;
  }

  /* 组织机构图等正文图片：禁止定高拉伸变形 */
  .ny_zuzhi,
  .ny_yanfa,
  .company-profile-right .text-1,
  .company-profile-right .MsoNormal {
    max-width: 100% !important;
    box-sizing: border-box;
  }

  .ny_zuzhi:not(.ny_cpxq),
  .ny_yanfa:not(.ny_cpxq) {
    overflow: hidden !important;
  }

  .ny_zuzhi.ny_cpxq,
  .ny_yanfa.ny_cpxq,
  .ny_yanfa.ny_zuzhi.ny_cpxq {
    overflow: visible !important;
    overflow-x: auto !important;
  }

  .ny_zuzhi img,
  .ny_yanfa img,
  .company-profile-right img,
  .company-profile-right .text-1 img,
  .company-profile-right .MsoNormal img,
  .polaris-company-profile img,
  .polaris-about .text-1 img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* ===== 产品列表：一行一个，图上文字下 ===== */
  .polaris-product-list {
    margin-top: 10px !important;
    overflow: hidden;
  }

  .polaris-product-item {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    margin: 0 0 24px !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    background: #fff;
    box-sizing: border-box;
  }

  .polaris-product-item .img {
    order: 1;
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    float: none !important;
    background: #fff !important;
    overflow: visible !important;
  }

  /* 仅隐藏外层装饰底图 product.png，不挡产品图 */
  .polaris-product-item .img > .img-block {
    display: none !important;
  }

  .polaris-product-item .product {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    height: auto !important;
    z-index: 2;
  }

  .polaris-product-item .product a {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    position: relative !important;
  }

  /* 修复 .img img{max-height:100%} 在父级无高度时把图压没 */
  .polaris-product-item .img img,
  .polaris-product-item .product img,
  .polaris-product-item .product .img-center {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    display: block !important;
    position: relative !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* 有产品图时，隐藏叠在上面的 products.png 装饰框 */
  .polaris-product-item .product .img-center + .img-block {
    display: none !important;
  }

  .polaris-product-item .text {
    order: 2;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 100% !important;
    padding: 10px 12px 14px !important;
    margin: 0 !important;
    box-sizing: border-box;
    text-align: center !important;
    z-index: 1;
  }

  .polaris-product-item .text-1 {
    font-size: 13px !important;
    line-height: 20px !important;
    color: #999 !important;
  }

  .polaris-product-item .title-2 {
    font-size: 16px !important;
    line-height: 24px !important;
    margin-top: 6px !important;
    color: #333 !important;
  }

  .polaris-product-item .more-1 {
    margin-top: 12px !important;
  }

  .polaris-product-item .more-1 a {
    margin: 0 auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* ===== 产品详情 ===== */
  .proda_left,
  .product-detail-text,
  .pro_nr,
  .ny_prodaz {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
  }

  .product-detail-text .title h2 {
    font-size: 22px !important;
    margin-top: 15px !important;
  }

  .polaris-product-detail {
    padding-top: 0 !important;
  }

  .polaris-product-detail::before {
    display: none;
  }

  .polaris-product-detail-1 .toptext-1,
  .polaris-product-detail-2 .toptext-1,
  .polaris-product-detail-2 .righttext-3,
  .polaris-product-detail-2 .lefttext-2,
  .polaris-product-detail-2 .centertext-4,
  .polaris-product-detail-2 .cbottomtext-5 {
    position: relative !important;
    width: 100% !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    padding: 15px;
    box-sizing: border-box;
  }

  .polaris-product-detail-1 .right-product-3 {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
  }

  /* ===== 新闻列表 ===== */
  .news-content-item {
    width: 100% !important;
    float: none !important;
  }

  .ny_con_r {
    display: block !important;
  }

  .ny_con_r_list {
    width: 100% !important;
    margin-bottom: 15px !important;
  }

  /* ===== 产品筛选 ===== */
  .product_case_sort#ProSort {
    margin-top: 0 !important;
    padding: 15px !important;
  }

  .product_case_sort dd {
    padding-left: 0 !important;
    height: auto !important;
  }

  .product_case_sort dt {
    position: relative !important;
    padding-bottom: 5px;
  }

  .product_case_sort ul {
    padding-left: 0 !important;
  }

  .product_case_sort ul li {
    width: auto !important;
    float: none !important;
    display: inline-block;
  }

  .pro_list {
    width: 100% !important;
  }

  /* ===== 数字统计 ===== */
  .digital ul {
    width: 100% !important;
    height: auto !important;
    overflow: hidden;
  }

  .digital li {
    width: 50% !important;
    margin-right: 0 !important;
    margin-bottom: 15px;
    float: left !important;
  }

  .digital li::after {
    display: none !important;
  }

  .digital li em b {
    font-size: 24px !important;
  }

  .digital li h3 {
    font-size: 13px !important;
  }

  /* ===== 下载卡片 ===== */
  .wj_card {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 15px !important;
  }

  .wj_download_btn {
    margin-top: 10px;
    align-self: flex-start !important;
  }

  /* ===== 表格内容 ===== */
  .edit_con_original table,
  .ny_prodaz .text_js table {
    width: 100% !important;
    display: block;
    overflow-x: auto;
  }

  .ny_prodaz .text_js table tr,
  .ny_prodaz .text_js table tr td {
    width: 100% !important;
    float: none !important;
    display: block !important;
    height: auto !important;
    word-break: break-all;
  }

  /* ===== 荣誉资质轮播 ===== */
  .ny_about_3 {
    padding: 36px 0 40px !important;
  }

  .ny_about_3 h3,
  .ny_about_3 .m h3 {
    font-size: 22px !important;
    line-height: 32px !important;
    padding: 0 15px 12px !important;
  }

  .wj_index_honor_con .swiper-container {
    width: 78% !important;
    padding-bottom: 16px !important;
  }

  .wj_index_honor_con .tta,
  .hezuo_ww .tta {
    height: 170px !important;
  }

  .wj_index_honor_con .swiper-button-next,
  .wj_index_honor_con .swiper-button-prev,
  .hezuo_ww .swiper-button-next,
  .hezuo_ww .swiper-button-prev {
    width: 28px !important;
    height: 28px !important;
    margin-top: -14px !important;
    top: 50% !important;
    background-size: 10px auto !important;
    background-color: #fff !important;
  }

  .hezuo_ww .swiper-button-prev {
    left: 4px !important;
  }

  .hezuo_ww .swiper-button-next {
    right: 4px !important;
  }

  /* ===== 企业文化：去固定高度空白，缩小 logo，文字完整显示 ===== */
  .index_about_qiye,
  .ny_wenhuaz {
    height: auto !important;
    min-height: 0 !important;
    padding: 36px 0 !important;
    margin: 0 !important;
    display: block !important;
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center top !important;
    overflow: hidden !important;
  }

  .index_about_qiye .nftk-content,
  .ny_wenhua {
    height: auto !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    padding: 28px 18px !important;
    width: 90% !important;
    max-width: 100% !important;
    border-radius: 28px !important;
    box-sizing: border-box;
    overflow: visible !important;
  }

  .about_logo,
  .ny_wenhua .about_logo,
  .index_about_qiye .about_logo {
    height: 44px !important;
    width: auto !important;
    max-width: 120px !important;
    margin: 0 auto 12px !important;
    display: block !important;
  }

  .ny_wenhua,
  .ny_wenhua p,
  .ny_wenhua div,
  .ny_wenhua span,
  .index_about_qiye .nftk-content,
  .index_about_qiye .nftk-content p,
  .index_about_qiye .nftk-content div {
    font-size: 13px !important;
    line-height: 22px !important;
  }

  .ny_wenhua strong,
  .index_about_qiye .nftk-content strong {
    font-size: 15px !important;
    line-height: 24px !important;
  }

  .Box .Box_con .conbox ul li {
    width: 50% !important;
  }

  .Box .Box_con .btnl,
  .Box .Box_con .btnr {
    display: none;
  }

  .Box h2 {
    padding-top: 40px !important;
  }

  /* ===== 分页 ===== */
  .newspage {
    margin-top: 20px !important;
    height: auto !important;
  }

  /* ===== 联系我们 ===== */
  .Hnylxz,
  .index-content .ny_lxwm {
    display: block !important;
    margin: 20px 0 !important;
    grid-template-columns: none !important;
  }

  .Hlxnr,
  .index-content .ny_lxwm .Hlxnr {
    padding: 20px 15px 20px 70px !important;
    font-size: 14px !important;
    line-height: 24px !important;
    background-position: 15px center !important;
    background-size: 40px auto !important;
    text-align: left !important;
    margin-bottom: 10px;
  }

  /* ===== 产品/新闻详情：去掉 PC 大顶距造成的白条 ===== */
  .polaris-news-detail,
  .polaris-product-detail {
    padding-top: 0 !important;
    overflow: hidden !important;
  }

  .polaris-news-detail::before,
  .polaris-product-detail::before {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: 42vw !important;
    min-height: 180px !important;
    max-height: 240px !important;
    background-size: cover !important;
    background-position: center center !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  .polaris-news-detail > .menu_location,
  .polaris-product-detail > .menu_location {
    margin-top: 0 !important;
  }

  .polaris-news-detail .index-content,
  .polaris-news-detail-top,
  .polaris-news-detail-bottom {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .polaris-news-detail-top {
    margin-top: 10px !important;
    padding: 12px 0 !important;
  }

  .polaris-news-detail-top .title-1 {
    width: 100% !important;
    font-size: 20px !important;
    line-height: 28px !important;
  }

  .polaris-news-detail-left,
  .polaris-news-detail-right {
    width: 100% !important;
    float: none !important;
  }

  /* ===== 工程业绩表格：表头压矮，三列完整显示 ===== */
  .ny_cpxq,
  .ny_yanfa.ny_cpxq,
  .ny_zuzhi.ny_cpxq,
  .ny_yanfa.ny_zuzhi.ny_cpxq {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 10px 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px !important;
    box-sizing: border-box;
  }

  .ny_cpxq table,
  .ny_yanfa table,
  .ny_yanfa.ny_cpxq table {
    /* 固定宽度保证四列都在，手机可左右滑 */
    width: 680px !important;
    min-width: 680px !important;
    max-width: none !important;
    table-layout: fixed !important;
    border-collapse: collapse !important;
    height: auto !important;
    display: table !important;
    border-radius: 0 !important;
    overflow: visible !important;
    margin: 0 !important;
  }

  .ny_cpxq table tr,
  .ny_yanfa table tr,
  .ny_yanfa.ny_cpxq table tr {
    display: table-row !important;
    transform: none !important;
    height: auto !important;
    max-height: none !important;
    line-height: normal !important;
    padding: 0 !important;
  }

  .ny_cpxq table tr:hover,
  .ny_yanfa table tr:hover,
  .ny_yanfa.ny_cpxq table tr:hover {
    transform: none !important;
  }

  .ny_cpxq table tr:nth-child(1),
  .ny_yanfa table tr:nth-child(1),
  .ny_yanfa.ny_cpxq table tr:nth-child(1) {
    height: auto !important;
    max-height: none !important;
    line-height: 1.25 !important;
    padding: 0 !important;
  }

  .ny_cpxq table tr td,
  .ny_cpxq table tr th,
  .ny_yanfa table tr td,
  .ny_yanfa.ny_cpxq table tr td,
  .ny_cpxq table tr td[width],
  .ny_yanfa.ny_cpxq table tr td[width] {
    display: table-cell !important;
    float: none !important;
    height: auto !important;
    max-height: none !important;
    font-size: 12px !important;
    line-height: 18px !important;
    padding: 8px 6px !important;
    vertical-align: middle !important;
    text-align: center !important;
    word-break: break-word !important;
    white-space: normal !important;
    writing-mode: horizontal-tb !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow: visible !important;
    box-sizing: border-box !important;
  }

  .ny_cpxq table tr:nth-child(1) td,
  .ny_cpxq table tr:nth-child(1) th,
  .ny_yanfa table tr:nth-child(1) td,
  .ny_yanfa.ny_cpxq table tr:nth-child(1) td {
    color: #fff !important;
    font-size: 11px !important;
    line-height: 15px !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    padding: 8px 4px !important;
  }

  /* 四列固定宽，禁止第4列被挤成 0（否则表头长字会撑到 200px+） */
  .ny_cpxq table tr td:nth-child(1),
  .ny_cpxq table tr th:nth-child(1),
  .ny_cpxq table tr td[width="97"],
  .ny_yanfa.ny_cpxq table tr td:nth-child(1),
  .ny_yanfa.ny_cpxq table tr td[width="97"] {
    width: 90px !important;
    min-width: 90px !important;
    max-width: 90px !important;
    font-weight: 700 !important;
  }

  .ny_cpxq table tr td:nth-child(2),
  .ny_cpxq table tr th:nth-child(2),
  .ny_cpxq table tr td[width="322"],
  .ny_yanfa.ny_cpxq table tr td:nth-child(2),
  .ny_yanfa.ny_cpxq table tr td[width="322"] {
    width: 260px !important;
    min-width: 260px !important;
    max-width: 260px !important;
  }

  .ny_cpxq table tr td:nth-child(3),
  .ny_cpxq table tr th:nth-child(3),
  .ny_cpxq table tr td[width="209"],
  .ny_yanfa.ny_cpxq table tr td:nth-child(3),
  .ny_yanfa.ny_cpxq table tr td[width="209"] {
    width: 140px !important;
    min-width: 140px !important;
    max-width: 140px !important;
  }

  .ny_cpxq table tr td:nth-child(4),
  .ny_cpxq table tr th:nth-child(4),
  .ny_cpxq table tr td[width="133"],
  .ny_yanfa.ny_cpxq table tr td:nth-child(4),
  .ny_yanfa.ny_cpxq table tr td[width="133"] {
    width: 160px !important;
    min-width: 160px !important;
    max-width: 160px !important;
  }

  .company-profile-right,
  .company-profile-right .text-1,
  .company-profile-right .MsoNormal {
    overflow: visible !important;
    max-width: 100% !important;
  }

  /* ===== 合作客户：一行两个，图标放大，去掉多余空白 ===== */
  .ny_hezuo {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    width: 100% !important;
    padding: 0 !important;
  }

  .ny_hezuo .tutu {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 1 / 1 !important;
    border: 1px solid #eee !important;
    box-sizing: border-box;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 8px !important;
    background: #fff !important;
  }

  .ny_hezuo .tutu img {
    width: 88% !important;
    height: 88% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    display: block !important;
  }

  /* ===== 人才招聘：去灰底错位，展开内容行高收紧 ===== */
  .polaris-joinus-bottom,
  .joinus-recruit-bottom {
    padding: 0 !important;
  }

  .join-us-item {
    background: #fff !important;
    margin: 0 0 10px !important;
    border: 1px solid #eee !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    box-shadow: none !important;
  }

  .join-us-item .title {
    position: relative !important;
    padding: 14px 48px 14px 14px !important;
    background: #fff !important;
    border-bottom: none !important;
    overflow: visible !important;
    display: flex !important;
    align-items: center !important;
    min-height: 48px !important;
    box-sizing: border-box;
  }

  .join-us-item .title div {
    float: none !important;
    width: auto !important;
  }

  .join-us-item .title .item-2,
  .join-us-item .title .item-3,
  .join-us-item .title .item-4 {
    display: none !important;
  }

  .join-us-item .title-1 {
    width: auto !important;
    max-width: 100% !important;
    margin: 0 !important;
    float: none !important;
    display: flex !important;
    align-items: center !important;
    font-size: 15px !important;
    line-height: 22px !important;
    color: #333 !important;
  }

  .join-us-item .title-1 i {
    flex-shrink: 0;
    width: 28px !important;
    height: 28px !important;
    line-height: 28px !important;
    font-size: 14px !important;
    margin-right: 8px !important;
  }

  .join-us-item div.jia-1 {
    width: 28px !important;
    height: 28px !important;
    right: 12px !important;
    background: #e8e8e8 !important;
    border-radius: 50% !important;
  }

  .join-us-item .title.cur div.jia-1 {
    background: #21499b !important;
  }

  .join-us-text {
    width: 100% !important;
    padding: 0 14px 14px !important;
    box-sizing: border-box;
    background: #fff !important;
  }

  .join-us-text .text-3,
  .join-us-text .text-3 p,
  .join-us-text .text-3 div,
  .join-us-text .font14,
  .join-us-text .flh28 {
    font-size: 13px !important;
    line-height: 20px !important;
  }

  .join-us-text .text-3 .font16,
  .join-us-text strong.font16 {
    font-size: 14px !important;
    line-height: 22px !important;
  }

  .join-us-text br {
    line-height: 8px !important;
  }

  /* ===== 视频弹窗 ===== */
  .video_con {
    width: 95% !important;
    height: 50vw !important;
  }

}

/* 平板过渡 751px - 1024px 仅做轻量适配，不影响电脑端主布局 */
@media only screen and (min-width: 751px) and (max-width: 1024px) {
  .content,
  .content-s {
    width: 96% !important;
    min-width: 0 !important;
  }

  .polaris-product-item {
    width: 46% !important;
  }
}
