.about_content { margin-top: 20px; font-size: 16px; line-height: 200%; }

/* ----- 内页与全局断点协调：横幅、面包屑、栅格防溢出 ----- */
.business-banner .container,
.about-banner .container,
.about-banner-p .container,
.about-banner-qa .container,
.about-banner-case .container,
.about-banner-job .container,
.about-banner-contact .container,
.about-banner-csb .container {
  box-sizing: border-box;
}
.business-banner,
.about-banner,
.about-banner-p,
.about-banner-qa,
.about-banner-case,
.about-banner-job,
.about-banner-contact,
.about-banner-csb {
  min-height: clamp(200px, 32vw, 300px);
  color: #666;
  display: flex;
  align-items: center;
}

.about-banner {
  background: url("../images/ny_banner.jpg") center/cover no-repeat;
}


.business-banner {
  background: url("../images/business.jpg") center/cover no-repeat;
}

.about-banner-p {
  background: url("../images/ny_banner_pro.jpg") center/cover no-repeat;
}

.about-banner-qa {
  background: url("../images/ny_banner_qa.jpg") center/cover no-repeat;
}

.about-banner-case {
  background: url("../images/ny_banner_case.jpg") center/cover no-repeat;
}

.about-banner-job {
  background: url("../images/ny_banner_job.jpg") center/cover no-repeat;
}

.about-banner-contact {
  background: url("../images/ny_banner_contact.jpg") center/cover no-repeat;
}

.about-banner-csb {
  background: url("../images/ny_banner_csb.jpg") center/cover no-repeat;
}
.business-banner h1,
.about-banner h1,
.about-banner-p h1,
.about-banner-qa h1,
.about-banner-case h1,
.about-banner-job h1,
.about-banner-contact h1,
.about-banner-csb h1 {
  margin: 0 0 8px;
  font-size: clamp(26px, 3.2vw + 14px, 46px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.04em;
  word-break: break-word;
}
.business-banner p,
.about-banner p,
.about-banner-p p,
.about-banner-qa p,
.about-banner-case p,
.about-banner-job p,
.about-banner-contact p,
.about-banner-csb p {
  margin: 0;
  max-width: min(860px, 100%);
  font-size: clamp(15px, 0.9vw + 12px, 20px);
  line-height: 1.6;
  color: #666;
}

    .about-breadcrumb {
      background: #f6f6f6;
      border-bottom: 1px solid #e9e9e9;
    }

    .about-breadcrumb .container {
      padding: clamp(10px, 2vw, 12px) 0;
      font-size: clamp(13px, 0.5vw + 12px, 16px);
      color: #666;
      line-height: 1.55;
      word-break: break-word;
    }

    .about-main {
      padding: clamp(28px, 5vw, 40px) 0 clamp(40px, 6vw, 65px);
      background: #fff;
    }

    .about-layout {
      display: grid;
      grid-template-columns: minmax(0, 270px) minmax(0, 1fr);
      gap: clamp(20px, 3vw, 38px);
      align-items: start;
    }

    .about-layout > aside {
      min-width: 0;
    }

    .about-content {
      min-width: 0;
    }

    .about-sidebar-title {
      margin: 0 0 15px;
      font-size: clamp(22px, 1.8vw + 14px, 26px);
      color: #666;
      line-height: 1.2;
      letter-spacing: 1px;
      font-weight: 700;
	  padding-bottom:10px;
	  border-bottom:1px solid #ccc;
    }

    .about-menu {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .about-menu li + li {
      margin-top: 10px;
    }

    .about-menu a {
      display: block;
      padding: 12px 14px;
      text-align: center;
      color: #555;
      background: #ececec;
      border-radius: 4px;
      text-decoration: none;
      font-size: 16px;
      transition: 0.25s ease;
    }

    /* 仅存在二级栏目（li.has-sub）时显示右侧三角与预留空间 */
    .about-menu > li.has-sub > a {
      position: relative;
      padding-right: 36px;
    }

    .about-menu > li.has-sub > a::after {
      content: "▾";
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 20px;
      color: inherit;
      transition: transform 0.25s ease;
    }

    .about-menu > li.has-sub.sub-open > a::after {
      transform: translateY(-50%) rotate(180deg);
    }

    .about-submenu {
      list-style: none;
      margin: 0;
      padding: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.25s ease, margin 0.25s ease;
    }

    .about-menu > li.has-sub.sub-open > .about-submenu {
      margin-top: 8px;
      max-height: 260px;
    }

    .about-submenu li + li {
      margin-top: 6px;
    }

    .about-submenu a {
      padding: 8px 12px;
      text-align: center;
      font-size: 14px;
      background: #f3f6fb;
      color: #5f6f86;
    }

    .about-submenu a:hover {
      background: #2161B8;
      color: #fff;
    }

    .about-submenu a.is-active {
      background: #216188;
      color: #fff;
    }

    .about-menu a:hover,
    .about-menu a.is-active {
      background: linear-gradient(to bottom, #2F6EDC 0%, #034670 100%);
      color: #fff;
    }

    .about-content h2 {
      margin: 0;
      font-size: clamp(18px, 1.2vw + 14px, 22px);
      color: #666;
      display: flex;
      align-items: center;
      gap: 10px;
      line-height: 1.3;
      flex-wrap: wrap;
      word-break: break-word;
    }



    .about-content p {
		font-size:16px;
      color: #666;
      text-align: justify;
    }

    .about-figure {
      margin-top: 30px;
      background: linear-gradient(120deg, #eaf3ff, #d7ebff 35%, #bedfff);
      border-radius: 6px;
      min-height: 245px;
      border: 1px solid #d9e8ff;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      justify-content: flex-start;
      padding: 24px;
    }

    .about-figure::before {
      content: "";
      position: absolute;
      inset: auto -45px -110px auto;
      width: 240px;
      height: 240px;
      background: rgba(47, 110, 220, 0.12);
      border-radius: 50%;
    }

    .about-figure span {
      position: relative;
      z-index: 1;
      font-size: 14px;
      color: #4c6f9f;
      letter-spacing: 2px;
    }


/*----??????-----*/

    /* contact.php: contact cards */
    .contact-cards {
      margin-top: 28px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .contact-cards__row {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
      align-items: stretch;
    }

    .contact-card {
      margin: 0;
      padding: 28px 16px 24px;
      background: #f6f6f6;
      border-radius: 6px;
      text-align: center;
      box-sizing: border-box;
      min-height: 0;
    }

    .contact-card__icon-wrap {
      perspective: 600px;
      margin: 0 auto 10px;
    }

    .contact-card__icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100px;
      height: 100px;
      margin: 0 auto;
      border-radius: 50%;
      background: #fff;
      box-shadow: 0 5px 15px rgba(20, 50, 80, 0.35);
      transition: transform 0.65s ease;
    }

    .contact-card:hover .contact-card__icon {
      transform: rotateY(180deg);
    }

    .contact-card__icon .fa {
      font-size: 3.2em;
      color: #a3a3a3;
      line-height: 1;
    }

    .contact-card__label {
      margin: 10px 0 0;
      font-size: 18px;
      font-weight: 700;
      color: #444;
      line-height: 1.5;
    }

    .contact-card__value {
      margin: 8px 0 0;
      font-size: 14px;
      line-height: 1.75;
      color: #999;
      word-break: break-all;
    }

    .about-content .contact-card p {
      margin: 8px 0 0;
      text-align: center;
    }

    .contact-card__value a {
      color: #999;
      text-decoration: none;
    }

    .contact-card__value a:hover {
      color: #2f6edc;
      text-decoration: underline;
    }

    .contact-card--qr {
      padding-top: 24px;
      padding-bottom: 20px;
    }

    .contact-card__qr {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .contact-card__qr img {
      display: block;
      width: 140px;
      height: 140px;
      max-width: 100%;
      object-fit: contain;
      background: #fff;
      border-radius: 4px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .contact-card__qr-name {
      margin: 10px 0 0;
      font-size: 14px;
      color: #333;
      font-weight: 400;
    }

    .contact-map-wrap {
      margin-top: 28px;
      width: 100%;
      max-width: 100%;
      min-height: 420px;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid #e2e8f0;
      background: #e8eef5;
    }

    .contact-map-frame {
      display: block;
      width: 100%;
      height: 420px;
      min-height: 360px;
      border: 0;
      vertical-align: top;
      background: #dde5ef;
    }

    .contact-map-caption {
      margin: 0;
      padding: 10px 14px;
      font-size: 13px;
      color: #555;
      background: #f8fafc;
      text-align: center;
      line-height: 1.65;
    }

    .contact-map-caption a {
      color: #2f6edc;
      text-decoration: none;
    }

    .contact-map-caption a:hover {
      text-decoration: underline;
    }
	
	.dllc_all{ width:100%; overflow:hidden; background:#0B69A7; margin-bottom:30px;}
	
	
		.swhz_title_a{
		margin-top:50px;
	font-size: clamp(24px, 2.4vw + 14px, 40px);
    color: #fff;
    font-weight: 700;
    display: inline-block;
    position: relative;
    max-width: 100%;
    word-break: break-word;}


.swhz_title_en_a{
	font-size: clamp(16px, 1.6vw + 14px, 16px);
    color: #ccc;
    display: inline-block;
    position: relative;
    max-width: 100%;
    word-break: break-word;}
	
.dllc_content{ width:85%; overflow:hidden; background:#fff; margin:0px auto 50px auto;  border-radius: 30px 0 30px 0; /* 左上角圆角，右下角圆角 */}	

.dlzc_all{ width:100%; overflow:hidden; float:left;}

.dlzc_title_k{ width:100%; float:left; height:50px; line-height:50px; font-size:24px; font-weight:bold;}

.dlzc_list{ width:100%; overflow:hidden; float:left;}

.dlzc_list dl{
	width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.dlzc_list dl dt{
	margin-left:1%;
	margin-right:1%;
	width:18%;
	float:left;
	border:1px solid #fff;
	min-height:60px;
	margin-bottom:50px;
	margin-top:15px;
	text-align:center;
	/* 添加发光效果 */
	box-shadow: 0 0 10px 2px #D9D9D9;
	
	/* 新增：让 dt 内容水平和垂直居中 */
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	}
.dlzc_list_img{ width:98%; margin:1%;  display: flex;
    justify-content: center;  /* 水平居中 */
    align-items: center;      /* 垂直居中（可选） */}
.dlzc_list_text{ width:98%; margin:1%; text-align:center; font-size:16px; margin-bottom:20px;}

    @media (max-width: 1280px) {
      .swhz_all_right{ width:48%;}
	  .dlzc_list dl dt {
    margin-left: 1%;
    margin-right: 1%;
    width: 18%;
    float: left;
    border: 1px solid #fff;
    min-height: 60px;
    margin-bottom: 50px;
    margin-top: 15px;
    text-align: center;
    box-shadow: 0 0 10px 2px #D9D9D9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
	  
    }





    @media (max-width: 1024px) {
      .contact-cards__row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
	  .dlzc_list dl {
    display: flex;
    flex-wrap: wrap;      /* 允许换行 */
    justify-content: flex-start; /* 左对齐 */
    margin: 0;
    padding: 0;
    list-style: none;
}

.dlzc_list dl dt {
    /* 去掉 float: left，改为 flex 子项 */
    flex: 0 0 31%;        /* 基础宽度31% */
    margin-left: 1%;
    margin-right: 1%;
    /* 其余样式保持不变 */
    min-height: 60px;
    margin-bottom: 50px;
    margin-top: 15px;
    text-align: center;
    box-shadow: 0 0 10px 2px #D9D9D9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
    }
	
	@media (max-width: 768px) {
      .jmydl_content_img{ display:none !important;}
	  .jmydl_content_imga{ display:block !important;}
	  
	}


    @media (max-width: 576px) {
	.swhz_all_left{ width:100%;}
	.swhz_all_right{width:100%;}
      .contact-cards__row {
        grid-template-columns: 1fr;
      }
	      .dlzc_list dl dt {
        flex: 0 0 46%;
        margin-left: 1%;
        margin-right: 1%;
        min-height: 60px;
        margin-bottom: 50px;
        margin-top: 15px;
        text-align: center;
        box-shadow: 0 0 10px 2px #D9D9D9;
        display: flex
;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

      .contact-card {
        padding: 22px 14px 20px;
      }

      .contact-card__icon {
        width: 88px;
        height: 88px;
      }

      .contact-card__icon .fa {
        font-size: 2.6em;
      }

      .contact-card__qr img {
        width: 120px;
        height: 120px;
      }

      .contact-map-frame {
        height: 280px;
      }
    }

.zyjs{ width:100%; overflow:hidden; margin-top:30px;}
/* technology.php: accordion */
.zyjs-accordion {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.zyjs-item {
  border-bottom: 1px solid #e2e8f0;
}
.zyjs-item:last-child {
  border-bottom: 0;
}
.zyjs-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 14px 16px 14px 40px;
  font-size: 16px;
  font-weight: 600;
  color: #1e3a5f;
  text-align: left;
  cursor: pointer;
  border: 0;
  background: #f8fafc;
  transition: background 0.2s, color 0.2s;
  position: relative;
  box-sizing: border-box;
}
.zyjs-head::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -5px;
  border-right: 2px solid #2f6edc;
  border-bottom: 2px solid #2f6edc;
  transform: rotate(-45deg);
  transition: transform 0.25s ease;
}

.zyjs-head span{ color:#999; font-weight:400;}

.zyjs-item.is-open .zyjs-head::before {
  transform: rotate(45deg);
  margin-top: -2px;
}
.zyjs-head:hover {
  background: #eef4fc;
  color: #2f6edc;
}
.zyjs-item.is-open .zyjs-head {
  background: #eef4fc;
  color: #2f6edc;
}
.zyjs-panel-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.zyjs-item.is-open .zyjs-panel-wrap {
  grid-template-rows: 1fr;
}
.zyjs-panel-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0 16px;
  font-size: 15px;
  line-height: 1.75;
  color: #4c6f9f;
}
.zyjs-item.is-open .zyjs-panel-inner {
  padding-bottom: 16px;
  padding-top: 4px;
}

/* technology.php: 左图右文列表（响应式） */
.tech-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.tech-list-empty {
  margin: 20px 0 0;
  padding: 20px;
  text-align: center;
  color: #888;
  font-size: 16px;
  background: #f8fafc;
  border-radius: 8px;
}

.tech-list__item {
  padding: 22px 0;
  border-bottom: 1px dashed #ccc;
}

.tech-list__item:first-child {
  padding-top: 8px;
}

.tech-list__item:last-child {
  border-bottom: 0;
  padding-bottom: 8px;
}

.tech-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 22px 28px;
}

.tech-card__media {
  flex: 0 0 32%;
  max-width: 32%;
  min-width: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #e8e8e8;
  aspect-ratio: 16 / 10;
}

.tech-card__media-link {
  display: block;
  text-decoration: none;
  color: inherit;
  outline-offset: 2px;
}

.tech-card__media-link:focus-visible {
  outline: 2px solid #2161b8;
}

.tech-card__media-link:hover .tech-card__placeholder {
  filter: brightness(0.97);
}

.tech-card__media-link:hover img {
  opacity: 0.95;
}

.tech-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  vertical-align: middle;
}

.tech-card__placeholder {
  width: 100%;
  height: 100%;
  min-height: 120px;
  background: linear-gradient(160deg, #ececec 0%, #dedede 100%);
}

.tech-card__body {
  flex: 1 1 0;
  min-width: 0;
}

.tech-card__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px 16px;
}

.tech-card__title {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  line-height: 1.45;
  text-align: left;
}

.tech-card__title-link {
  color: inherit;
  text-decoration: none;
}

.tech-card__title-link:hover {
  color: #2161b8;
  text-decoration: underline;
}

.tech-card__date {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 400;
  color: #888;
}

.tech-card__rule {
  height: 1px;
  margin: 10px 0 12px;
  background: #ddd;
}

.tech-card__excerpt {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  text-align: left;
}

.tech-card__excerpt p {
  margin: 0;
}

.tech-card__excerpt-empty {
  margin: 0;
  color: #999;
  font-style: normal;
}

@media (max-width: 768px) {
  .tech-card {
    flex-direction: column;
    gap: 16px;
  }

  .tech-card__media,
  .tech-card__media-link {
    flex: none;
    max-width: 100%;
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .tech-card__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .tech-card__date {
    order: 1;
  }

  .tech-card__title {
    order: 0;
  }
}

@media (max-width: 480px) {
  .tech-list__item {
    padding: 18px 0;
  }

  .tech-card__title {
    font-size: 17px;
  }

  .tech-card__excerpt {
    font-size: 14px;
  }
}

/* job.php: job meta inline */
.zyjs-panel-inner .job-meta-board {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 0;
  margin: 10px 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e8edf4;
  font-size: 15px;
  line-height: 1.65;
  color: #4c6f9f;
}

.zyjs-panel-inner .job-meta-item {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 2px;
  max-width: 100%;
}

.zyjs-panel-inner .job-meta-item:not(:last-child)::after {
  content: "\00B7";
  margin: 0 10px;
  color: #b0c0d4;
  font-weight: 400;
  user-select: none;
}

.zyjs-panel-inner .job-meta-label {
  font-weight: 600;
  color: #1e3a5f;
  white-space: nowrap;
}

.zyjs-panel-inner .job-meta-label::after {
  content: ":";
}

.zyjs-panel-inner .job-meta-value {
  font-weight: 400;
  color: #4c6f9f;
  word-break: break-word;
}

.zyjs-panel-inner .job-meta-board + .job-desc {
  border-top: none;
  padding-top: 12px;
  margin-top: 0;
}

.zyjs-panel-inner .job-desc {
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid #e8edf4;
}

.zyjs-panel-inner .job-desc__title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: #2f6edc;
  padding-left: 10px;
  border-left: 3px solid #2f6edc;
  line-height: 1.3;
}

.zyjs-panel-inner .job-desc__body {
  font-size: 15px;
  line-height: 1.85;
  color: #4c6f9f;
}

.zyjs-panel-inner .job-desc__body p {
  margin: 0.55em 0;
}

.zyjs-panel-inner .job-desc__body p:first-child {
  margin-top: 0;
}

.zyjs-panel-inner .job-desc__body p:last-child {
  margin-bottom: 0;
}




    @media (max-width: 1024px) {
		.business-banner,
      .about-banner,
      .about-banner-p,
      .about-banner-qa,
      .about-banner-case,
      .about-banner-job,
      .about-banner-contact,
      .about-banner-csb {
        min-height: clamp(180px, 28vw, 240px);
      }

      .about-layout {
        grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
        gap: clamp(18px, 2.5vw, 24px);
      }
    }

    @media (max-width: 768px) {
      .about-main {
        padding: 24px 0 40px;
      }

      .about-layout {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .about-sidebar-title {
        margin-bottom: 12px;
        font-size: clamp(22px, 5vw, 28px);
      }

      .about-menu {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
      }

      .about-menu > li + li {
        margin-top: 0;
      }

      .about-menu li + li {
        margin-top: 0;
      }

      .about-content h2 {
        font-size: clamp(18px, 4vw, 22px);
      }

      .product-detail-title {
        font-size: clamp(14px, 3vw + 5px, 18px);
      }

      .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
      }

      .about-content p {
        margin-top: 14px;
        font-size: 15px;
        line-height: 1.85;
      }
    }
	
	.product-grid {
      margin-top: 24px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .product-card {
      background: #fff;
      border: 1px solid #d2d2d2;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 8px 18px rgba(13, 48, 93, 0.06);
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s ease;
    }

    .product-card.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .product-grid .product-card:nth-child(1) {
      transition-delay: 0.05s;
    }

    .product-grid .product-card:nth-child(2) {
      transition-delay: 0.2s;
    }

    .product-grid .product-card:nth-child(3) {
      transition-delay: 0.35s;
    }

    .product-card:hover {
      border: 0;
      box-shadow: 0 0 34px rgba(155, 155, 155, 0.42);
    }

    .product-card img {
      width: calc(100% - 28px);
      height: 180px;
      object-fit: cover;
      display: block;
      margin: 14px 14px 16px;
      border-radius: 6px;
    }

    .product-card-body {
      padding: 0 14px 16px;
    }

    .product-card h3 {
      margin: 0;
      font-size: 18px;
      color: #2a3f5f;
    }

    .product-card p {
      margin: 10px 0 0;
      font-size: 14px;
      line-height: 1.7;
      color: #5f6f86;
    }
@media (max-width: 560px) {
      .product-grid {
        grid-template-columns: 1fr;
      }

      .product-detail-title {
        font-size: clamp(12px, 3.2vw, 15px);
      }

      .product-detail-meta {
        font-size: 12px;
      }

      .product-detail-desc {
        font-size: 15px;
      }
    }
	
		/* ===== ?????? ===== */
.pagev {
  text-align: center;
  color: #666;
  clear: both;
}

.pagev span {
  line-height: 24px;
  padding: 0px 9px;
  display: inline-block;
}

.fonts {
  color: #fff;
  background-color: #FFCC19;
  border: 1px solid #FFCC19;
}

.pagev span a {
  background-color: #fff;
  color: #666;
  border: 1px solid #D9D9D9;
  line-height: 24px;
  padding: 0px 9px;
  display: inline-block;
  text-decoration: none;
  margin: 1.5em 0;
}

.pagev span a:hover {
  color: #fff;
  background-color: #FFCC19;
  border: 1px solid #FFCC19;
}

 .product-detail {
      margin-top: 22px;
    }

    .product-detail-title {
      margin: 0;
      text-align: center;
      font-size: 36px;
      line-height: 1.4;
      color: #555;
      font-weight: 500;
    }

    .product-detail-meta {
      margin-top: 22px;
      padding-top: 18px;
      border-top: 1px dashed #d7d7d7;
      text-align: center;
      font-size: 15px;
      color: #757575;
    }

    .product-detail-image {
      margin: 34px auto 0;
      max-width: 560px;
    }

    .product-detail-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    .product-detail-desc {
      margin-top: 28px;
      font-size: 16px;
      line-height: 1.95;
      color: #6a6a6a;
      text-align: justify;
      text-indent: 2em;
    }

    /* 产品详情页 proshow.php：上图下文 + 产品详情区块（响应式） */
    .product-detail-layout {
      max-width: 100%;
    }

    .product-detail-hero {
      display: grid;
      grid-template-columns: minmax(260px, 0.95fr) 1fr;
      gap: 36px 42px;
      align-items: start;
    }

    .product-detail-hero__media {
      background: #ececec;
      border-radius: 6px;
      overflow: hidden;
    }

    .product-detail-hero__media img {
      width: 100%;
      height: auto;
      display: block;
      vertical-align: middle;
    }

    .product-detail-hero__placeholder {
      min-height: 280px;
      background: linear-gradient(160deg, #f2f2f2 0%, #e6e6e6 55%, #dedede 100%);
    }

    .product-detail-hero__title {
      margin: 0;
      font-size: 30px;
      font-weight: 700;
      color: #1a1a1a;
      line-height: 1.35;
      text-align: left;
    }

    .product-detail-rule {
      height: 1px;
      margin: 16px 0;
      background: #b8d4f0;
      border: 0;
      padding: 0;
    }

    .product-detail-hero__summary {
      font-size: 16px;
      line-height: 1.9;
      color: #3a3a3a;
      text-align: left;
    }

    .product-detail-hero__summary p {
      margin: 0 0 1em;
      text-indent: 0;
    }

    .product-detail-hero__summary p:last-child {
      margin-bottom: 0;
    }

    .product-detail-hero__summary-empty {
      margin: 0;
      color: #888;
    }

    .product-detail-hero__meta {
      font-size: 14px;
      color: #666;
      line-height: 1.65;
    }

    .product-detail-body {
      margin-top: 42px;
    }

    .product-detail-body__head {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .product-detail-body__accent {
      width: 4px;
      height: 22px;
      flex-shrink: 0;
      border-radius: 2px;
      background: #2161b8;
    }

    .product-detail-body__title {
      margin: 0;
      font-size: 22px;
      font-weight: 700;
      color: #1a1a1a;
    }

    .product-detail-body__line {
      height: 1px;
      margin: 14px 0 22px;
      background: #b8d4f0;
    }

    .product-detail-body__sub {
      margin: 0 0 14px;
      font-size: 18px;
      font-weight: 700;
      color: #2a2a2a;
    }

    .product-detail-body__content {
      font-size: 16px;
      line-height: 1.95;
      color: #3a3a3a;
      text-align: left;
    }

    .product-detail-body__content p {
      margin: 0;
      text-indent: 0;
    }

    .product-detail-body__content img {
      max-width: 100%;
      height: auto;
    }

    .product-detail-body__content table {
      max-width: 100%;
    }

    @media (max-width: 900px) {
      .product-detail-hero {
        grid-template-columns: minmax(220px, 1fr) 1fr;
        gap: 28px 24px;
      }

      .product-detail-hero__title {
        font-size: 26px;
      }
    }

    @media (max-width: 768px) {
      .product-detail-hero {
        grid-template-columns: 1fr;
        gap: 22px;
      }

      .product-detail-hero__media {
        max-width: 520px;
        margin-left: auto;
        margin-right: auto;
      }

      .product-detail-hero__placeholder {
        min-height: 220px;
      }

      .product-detail-hero__title {
        font-size: 24px;
      }

      .product-detail-body {
        margin-top: 36px;
      }

      .product-detail-body__title {
        font-size: 20px;
      }
    }

    @media (max-width: 560px) {
      .product-detail-hero__title {
        font-size: 22px;
      }

      .product-detail-hero__meta {
        font-size: 13px;
      }

      .product-detail-body__sub {
        font-size: 16px;
      }

      .product-detail-body__content {
        font-size: 15px;
      }
    }

    /* csb.php ?????????????? */
    .csb-notice {
      margin: 16px 0;
      padding: 12px 16px;
      border-radius: 6px;
      font-size: 15px;
    }

    .csb-notice--ok {
      background: #ecfdf3;
      border: 1px solid #b8e6c8;
      color: #166534;
    }

    .csb-form {
      margin-top: 24px;
      max-width: 100%;
    }

    .csb-form__grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px 20px;
    }

    .csb-form__twocol {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px 20px;
      margin-top: 22px;
    }

    .csb-field {
      display: flex;
      flex-direction: column;
      gap: 8px;
      min-width: 0;
    }

    .csb-field label {
      font-size: 14px;
      font-weight: 600;
      color: #334155;
      line-height: 1.35;
    }

    .csb-field input[type="text"],
    .csb-field input[type="tel"],
    .csb-field textarea {
      width: 100%;
      box-sizing: border-box;
      padding: 10px 12px;
      font-size: 15px;
      border: 1px solid #e2e8f0;
      border-radius: 6px;
      background: #f8fafc;
      color: #1e293b;
      transition: border-color 0.2s, background 0.2s;
    }

    .csb-field input:focus,
    .csb-field textarea:focus {
      outline: none;
      border-color: #2f6edc;
      background: #fff;
    }

    .csb-field--block textarea {
      min-height: 120px;
      resize: vertical;
    }

    .csb-req {
      color: #dc2626;
      font-weight: 700;
    }

    .csb-form__footer {
      margin-top: 26px;
      padding-top: 20px;
      border-top: 1px solid #e8edf4;
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 16px;
    }

    .csb-field--yz {
      flex: 0 0 auto;
      width: 100%;
      max-width: 100%;
    }

    .csb-yz-row {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .csb-yz-row input {
      max-width: 140px;
    }

    .csb-captcha {
      display: block;
      cursor: pointer;
      border-radius: 4px;
      border: 1px solid #e2e8f0;
    }

    .csb-privacy {
      display: flex;
      align-items: center;
      gap: 8px;
      width: 100%;
      font-size: 14px;
      color: #475569;
      cursor: pointer;
      user-select: none;
    }

    .csb-submit {
      align-self: flex-start;
      width: auto;
      min-width: 220px;
      max-width: 360px;
      min-height: 44px;
      padding: 0 40px;
      font-size: 15px;
      font-weight: 600;
      color: #fff;
      background: linear-gradient(180deg, #1e3a5f 0%, #0f2744 100%);
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: opacity 0.2s;
    }

    .csb-submit:hover {
      opacity: 0.92;
    }

    @media (max-width: 900px) {
      .csb-form__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 576px) {
		.product-detail-title {
    font-size: 24px;

    font-weight: 500;
	margin-top:20px;
}
      .csb-form__grid,
      .csb-form__twocol {
        grid-template-columns: 1fr;
      }

      .csb-form__footer {
        align-items: stretch;
      }

      .csb-submit {
        min-width: 200px;
        max-width: 100%;
      }
    }
