﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "宋体", sans-serif;
}
body {
  font: 12px/1.5 "宋体", arial, simsun, sans-serif;
  margin: 0 auto;
  padding: 0;
  overflow-x: hidden;
  color: #000;
  background: #f5f5f5;
}
a {
  text-decoration: none;
  color: #333;
}
ul,
li,
ol {
  list-style: none;
  padding: 0;
}
.clear {
  clear: both;
}
button {
  outline: none;
}
.container {
  max-width: 1240px;
  width: 95%;
  margin: 0 auto;
}
.container2 {
  max-width: 1400px;
  width: 95%;
  margin: 0 auto;
  padding: 0 15px;
}
/* 头部导航容器 */
header {
  position: relative;
  background: #fff;
  z-index: 10;
}
/* 右上角梯形背景 */
.trapezoid-decor {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 100%;
  background: #0ac7c9;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}
/* 头部内栏 */
.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}
/* logo区域 */
.logo {
  display: flex;
  align-items: center;
  height: 100%;
}
.logo img {
  height: 80%;
}
/* PC端导航栏 */
.pc-nav {
  display: flex;
  align-items: center;
  gap: 48px;
}
.pc-nav>li {
  position: relative;
  height: 90px;
  display: flex;
  align-items: center;
  z-index: 10;
}
a,
.button {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.pc-nav>li>a {
  font-size: 18px;
  color: #000000;
  font-family: "黑体";
  text-transform: uppercase;
  position: relative;
  background: -webkit-linear-gradient(left, #0ac7c9, #0ac7c9 50%, #000 50%);
  background: linear-gradient(to right, #0ac7c9, #0ac7c9 50%, #000 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: 100%;
}
.pc-nav>li>a:hover {
  color: #0ac7c9;
  background-position: 0 100%;
  border-color: #0ac7c9;
}
/* 二级下拉菜单 */
.level2-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 240px;
  background: #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
  display: none;
  border-top: 2px solid #ff8822;
  ;
}
.level2-menu li {
  position: relative;
}
.level2-menu li a {
  display: block;
  padding: 14px 24px;
  font-size: 17px;
  color: #333;
  transition: 0.2s;
  ;
  font-family: '黑体';
}
.level2-menu li a.active {
  background: #ff8822;
  color: #fff;
}
.level2-menu li:hover>a {
  background: #ff8822;
  color: #fff;
}
/* 三级下拉菜单 */
.level3-menu {
  position: absolute;
  top: 0;
  left: 100%;
  width: 180px;
  background: #f3f3f3;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
  display: none;
}
/* hover显示下拉 */
.has-level2:hover>.level2-menu {
  display: block;
}
.has-level3:hover>.level3-menu {
  display: block;
}
.has-level3 .level3-menu a {
  font-size: 17px;
  ;
  font-family: '黑体';
}
/* 移动端汉堡按钮 */
.mobile-menu-btn {
  display: none;
  font-size: 32px;
  color: #222;
  background: transparent;
  border: none;
  cursor: pointer;
}
/* 移动端侧滑导航 */
.mobile-nav-wrap {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 340px;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  transition: right 0.3s ease;
  overflow-y: auto;
}
.mobile-nav-wrap.active {
  right: 0;
}
.mobile-nav-head {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid #eee;
}
.mobile-close {
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-nav-list li a {
  display: block;
  padding: 16px 20px;
  font-size: 20px;
  color: #333;
  border-bottom: 1px solid #f2f2f2;
}
.mobile-nav-list li a.active {
  background: #fff0e3;
  color: #ff8822;
}
.mobile-group-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 20px;
  border-bottom: 1px solid #f2f2f2;
  cursor: pointer;
}
.nav-level1 span{
  font-size: 20px !important;
}
.nav-level2 span{
  font-size: 18px !important;
}
.mobile-sub2,
.mobile-sub3 {
  display: none;
  padding-left: 20px;
}
.mobile-sub3 a{
  font-size: 16px !important;
}
.mobile-nav-list {
  background: #fff;
}
.mobile-nav-list>li {
  border-bottom: 1px solid #eee;
}
.mobile-nav-list a {
  display: block;
  padding: 14px 16px;
  color: #333;
  font-size: 15px;
}
.mobile-nav-list a.active {
  color: #f40;
}
.mobile-group-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  font-size: 15px;
  color: #333;
  cursor: pointer;
}
.mobile-sub2 {
  display: none;
  background: #f8f8f8;
}
.mobile-sub3 {
  display: none;
  background: #efefef;
  padding-left: 12px;
}
/* 遮罩层 */
.mask {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9998;
  display: none;
}
.mask.active {
  display: block;
}
/* 主体内容区域 */
main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 16px;
}
#productSwiper {
  width: 100%;
  height: 800px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 80px;
}
#productSwiper .swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#productSwiper .swiper-slide::after {
  content: '';
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
#productSwiper .swiper-slide .box {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
}
#productSwiper .swiper-slide .container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
}
/* 轮播图片样式 */
#productSwiper .slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
#productSwiper .slide-text {
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 10;
  opacity: 0;
  transform: translateY(-50%) translateY(50px);
  transition: all 0.8s ease;
  right: 0;
  text-align: center;
}
#productSwiper .slide-text.active {
  opacity: 1;
  transform: translateY(-50%) translateY(0);
}
#productSwiper .swiper-pagination {
  bottom: 45px;
}
#productSwiper .swiper-pagination-bullet {
  width: 40px;
  height: 4px;
  background: none;
  border: 1px solid #b5b8bb;
  background: #b5b8bb;
  opacity: 1;
  margin: 0 7.5px !important;
  border-radius: 0px;
  transition: all 0.6s;
}
#productSwiper .swiper-pagination span.swiper-pagination-bullet-active {
  background: #ffffff;
  border-color: #ffffff;
}
.main-title {
  font-size: 80px;
  font-weight: bold;
  margin-bottom: 40px;
  line-height: 1.2;
  text-align: center;
  font-family: '黑体';
}
.sub-title {
  font-size: 40px;
  margin-bottom: 40px;
  color: #ffffff;
  text-align: center;
  font-family: '黑体';
}
.line-text-container {
  text-align: center;
  margin-bottom: 40px;
}
.line-text {
  display: inline-flex;
  align-items: center;
  font-size: 30px;
  color: #ffffff;
  letter-spacing: 1px;
  margin: 0 auto;
  text-align: center;
  font-family: '黑体';
}
.line-text::before,
.line-text::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #f39c12;
  margin: 0 15px;
  min-width: 100px;
}
#productSwiper .slide-text a {
  display: inline-block;
  font-size: 23px;
  color: #ffffff;
  font-family: '微软雅黑';
  background: #e77c2d;
  border-radius: 100px;
  padding: 8px 45px;
}
.cheng {
  margin-bottom: 130px;
}
.cheng .title-section {
  text-align: center;
  margin-bottom: 40px;
}
.cheng .title-tag {
  display: inline-block;
  background-color: #e67e22;
  /* 橙色标签背景 */
  color: #fff;
  padding: 2px 40px;
  font-size: 32px;
  border-radius: 4px 4px 4px 4px;
  margin-right: 10px;
  font-family: '黑体';
  letter-spacing: 5px;
}
.cheng .title-text {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
  font-family: '黑体';
}
.cheng .subtitle-text {
  font-size: 24px;
  color: #989898;
  margin-top: 20px;
  margin-bottom: 100px;
}
/* 卡片网格布局：响应式，自动换行 */
.cheng .card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 2fr));
  gap: 20px;
}
/* 卡片基础样式 */
.cheng .card {
  position: relative;
  background-color: #fff;
  border-top: 3px solid #0ac7c9;
  padding: 30px 20px;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 340px;
  overflow: hidden;
}
.cheng .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e67e22;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease-in-out;
  z-index: 0;
}
.cheng .card:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.cheng .card:hover {
  border-top: 3px solid #e67e22;
}
.cheng .card-content-wrap {
  position: relative;
  z-index: 10;
  transition: color 0.2s ease-out 0.1s;
  /* 文字颜色延迟变化，跟随背景滑入 */
}
/* 卡片图标样式 */
.cheng .card-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: invert(0);
}
/* 移入时图标变白色 */
.cheng .card:hover .card-icon {
  filter: invert(1);
  /* 图标反转为白色 */
}
/* 卡片标题 */
.cheng .card-title {
  font-size: 24px;
  margin-bottom: 45px;
  font-family: '黑体';
}
/* 卡片内容文本 */
.cheng .card-content {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}
.cheng .card:hover .card-title  a{
  color: #fff;
  transition: color 0s 400ms;
}
.cheng .card:hover .card-content a {
  color: #fff;
  transition: color 0s 400ms;
}
.cheng .card:hover .card-title  {
  color: #fff;
  transition: color 0s 400ms;
}
.cheng .card:hover .card-content  {
  color: #fff;
  transition: color 0s 400ms;
}
/* 第一个卡片默认高亮（和移入样式一致） */
.cheng .card:nth-child(1) .card-icon {
  background-image: url(../images/ico_1.png);
}
.cheng .card:nth-child(2) .card-icon {
  background-image: url(../images/ico_2.png);
}
.cheng .card:nth-child(3) .card-icon {
  background-image: url(../images/ico_3.png);
}
.cheng .card:nth-child(4) .card-icon {
  background-image: url(../images/ico_4.png);
}
.cheng .card:nth-child(5) .card-icon {
  background-image: url(../images/ico_5.png);
}
.cheng .card:nth-child(6) .card-icon {
  background-image: url(../images/ico_6.png);
}
.cheng .card:nth-child(7) .card-icon {
  background-image: url(../images/ico_7.png);
}
.cheng .card:nth-child(8) .card-icon {
  background-image: url(../images/ico_8.png);
}
.cheng .card.active .card-content {
  color: #fff;
}
.adbg {
  background-color: #0ac7c9;
  margin-bottom: 100px;
}
.ad-container {
  max-width: 1400px;
  margin: 0 auto;
  background-color: #0ac7c9;
  padding: 30px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
/* 文字内容区域 */
.banner-text {
  color: #ffffff;
  /* 白色文字 */
}
/* 主标题样式 */
.banner-title {
  font-size: 60px;
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.2;
  font-family: '黑体';
}
/* 副标题样式 */
.banner-subtitle {
  font-size: 36px;
  line-height: 1.4;
  font-family: '黑体';
}
/* 预约按钮样式 */
.banner-btn {
  display: inline-block;
  background-color: #e77c2d;
  color: #ffffff;
  font-size: 32px;
  padding: 5px 35px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  white-space: nowrap;
  letter-spacing: 6px;
  margin-right: 50px;
}
.banner-btn:hover {
  background-color: #e67e22;
}
.science-container {
  margin-bottom: 100px;
}
.science-container .science-header {
  text-align: center;
  margin-bottom: 50px;
}
.science-container .main-title {
  font-size: 32px;
  color: #333;
  margin-bottom: 40px;
  font-family: '黑体';
}
.science-container .sub-title {
  font-size: 23px;
  color: #989898;
  line-height: 1.5;
}
.science-container .tag-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.science-container .tag-item.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  /* 箭头向下偏移，在按钮外底部 */
  transform: translate(-50%, 100%);
  -webkit-transform: translate(-50%, 100%);
  width: 0;
  height: 0;
  /* 三角绘制：上边框为橙色，左右下透明 */
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #ff7f24;
}
.science-container .tag-item.active {
  background: #ff7f24;
}
.science-container .tag-item {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 4px;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.3s ease;
  background-color: #0ac7c9;
  position: relative;
}
.science-container .tag-item:hover {
  opacity: 0.9;
}
.science-container .card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 24px;
}
.science-container .science-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.science-container .science-card:hover {
  transform: translateY(-5px);
}
.science-container .science-card:hover .card-img::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .2);
  z-index: 1;
}
.science-container .science-card:hover .card-img::before {
  content: '';
  position: absolute;
  background: #ffffff;
  z-index: 2;
  background-image: url(../images/eye.png);
  width: 32px;
  height: 32px;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 5px;
  background-size: 60% auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
.science-container .science-card:hover .card-title {
  color: #E67C2D;
}
.science-container .science-card:hover .card-content {
  color: #E67C2D;
}
.science-container .card-grid .card-img {
  width: 100%;
  height: 200px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
}
.science-container .card-grid .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 保持图片比例，填充容器 */
}
.science-container .card-date {
  font-size: 18px;
  color: #999;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.science-container .card-date::before {
  content: "";
  background-image: url(../images/ico_date.png);
  background-repeat: no-repeat;
  width: 22px;
  height: 22px;
  background-size: contain;
  margin-right: 5px;
}
.science-container .card-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.4;
  font-family: '黑体';
}
/* 卡片正文 */
.science-container .card-content {
  font-size: 16px;
  color: #666;
  line-height: 2;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.science-container .card-grid .more-btn {
  text-align: center;
}
.science-container .card-grid .more-btn a {
  font-size: 14px;
  color: #00c8b8;
  text-decoration: none;
  transition: color 0.3s ease;
}
.science-container .card-grid .more-btn a:hover {
  color: #00b9e8;
}
.cardbox {
  display: none
}
.cardbox.on {
  display: block
}
.healingbg {
  background: #ffffff;
  padding: 50px 0px;
  padding-bottom: 150px;
}
.healing-container {
  padding: 40px 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.healing-img-box {
  width: 45%;
  position: relative;
  background: green;
}
.healing-main-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}
.float-tag {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #00c8b8;
  color: #fff;
  font-size: 38px;
  padding: 20px 30px;
  line-height: 1.5;
  border-radius: 8px;
  transform: translate(50%, 50%);
  text-align: center;
  font-family: '黑体';
}
.healing-content {
  width: 49%;
}
.healing-title {
  font-size: 63px;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.2;
  font-family: '黑体';
}
.guide-tag {
  display: inline-block;
  background-color: #e77c2d;
  color: #fff;
  font-size: 22px;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 50px;
  font-family: '黑体';
}
.question-list {
  list-style: none;
  margin-bottom: 30px;
}
.question-item {
  font-size: 20px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: '黑体';
}
.question-item::before {
  content: "";
  font-size: 18px;
  margin-top: 5px;
  background-image: url(../images/ico_dui.png);
  background-repeat: no-repeat;
  background-size: 15px auto;
  width: 20px;
  height: 25px;
  background-position: center center;
}
.btn-group {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.primary-btn {
  display: inline-block;
  background-color: #e77c2d;
  color: #fff;
  font-size: 21px;
  padding: 2px 24px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  border: 2px solid #e77c2d;
  letter-spacing: 3px;
}
.secondary-btn {
  display: inline-block;
  background-color: #fff;
  letter-spacing: 3px;
  color: #f39c12;
  font-size: 21px;
  padding: 2px 24px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #f39c12;
}
.primary-btn:hover {
  background-color: #e67e22;
  border-color: #e67e22;
}
.secondary-btn:hover {
  background-color: #fef0e6;
}
footer {
  background-color: #666666;
  color: #ffffff;
  padding: 30px 20px;
}
.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  flex: 0 0 auto;
}
.footer-logo img {
  width: 110px;
  height: auto;
  display: block;
}
.footer-info {
  min-width: 280px;
  font-size: 14px;
  line-height: 1.8;
}
.footer-nav {
  margin-bottom: 10px;
}
.footer-nav a {
  color: #ffffff;
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.3s ease;
  font-size: 18px;
  font-family: '黑体';
}
.footer-nav a:first-child {
  margin-left: 0;
}
.footer-nav a:hover {
  color: #f39c12;
}
.footer-nav span {
  color: #ffffff;
}
.footer-detail {
  color: #f0f0f0;
  font-size: 18px;
  font-family: '黑体';
}
.footer-qrcode {
  flex: 0 0 auto;
  position: relative;
}
.qrcode-box {
  width: 100px;
  height: 100px;
  background-color: #e0e0e0;
  border: 1px solid #ccc;
}
.qrcode-box img {
  width: 100%;
  display: block;
}
.qrcode-text {
  position: absolute;
  right: -18px;
  top: 0%;
  font-size: 12px;
  color: #000;
  writing-mode: vertical-rl;
  background: #ffffff;
  border-radius: 0 5px 5px 0;
  height: 50px;
  padding-top: 5px;
}
.form-container {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 8px;
  margin-bottom: 100px;
}
.form-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 28px;
  color: #333;
  font-family: '黑体';
}
.form-subtitle {
  text-align: center;
  font-size: 24px;
  color: #999;
  margin-bottom: 90px;
}
.bgw {
  background: #ffffff;
  padding: 40px;
  margin-bottom: 25px;
  border-radius: 10px;
}
.form-container .form-tips {
  border-radius: 6px;
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 1.6;
}
.form-container .tips-title {
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 24px;
  color: #333;
}
.form-tips .desc {
  font-size: 18px;
  line-height: 2;
}
.form-container .form-section-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
  color: #333;
}
.form-row {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.form-row.on {
  display: block
}
.form-row.on .form-label {
  margin-bottom: 15px;
  display: block;
  width: 100%;
}
.form-container .form-label {
  width: 150px;
  flex: 0 0 auto;
  font-size: 18px;
  color: #666;
}
.form-container .form-control {
  flex: 1;
  min-width: 200px;
}
.form-container .form-control .input {
  width: 200px;
}
.form-container input[type="text"],
.form-container textarea {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}
.form-container input[type="text"]:focus,
textarea:focus {
  border-color: #f39c12;
}
.form-container .checkbox-group,
.form-container .radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}
.form-container .checkbox-item,
.form-container .radio-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 18px;
}
.form-container textarea {
  min-height: 80px;
  resize: vertical;
  line-height: 1.6;
}
.form-container .submit-btn {
  display: block;
  width: 120px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #e77c2d;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin: 40px auto 0;
  transition: background-color 0.3s ease;
}
.form-container .submit-btn:hover {
  background-color: #e67e22;
}
.banner-wrap {
  width: 100%;
  min-height: 500px;
  background-image: url(../images/banner2.png);
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  margin-bottom: 100px;
}
.banner-text-box {
  max-width: 1240px;
  width: 100%;
}
.banner-main-title {
  font-size: 81px;
  color: #e67e22;
  font-weight: 100;
  margin-bottom: 16px;
  line-height: 1.2;
  position: relative;
  padding-left: 80px;
  display: inline-block;
  margin-bottom: 50px;
  font-family: '黑体';
}
.banner-main-title::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  width: 80px;
  background-color: #e67e22;
}
.banner-sub-title {
  font-size: 33px;
  color: #666;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 12px;
  position: relative;
  padding-left: 80px;
  font-family: '黑体';
}
.banner-sub-title::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  width: 80px;
  background-color: #0ac7c9;
}
.banner-sub-title span {
  color: #00c8b8;
  font-size: 16px;
}
/* 联系信息区域 */
.contactbox .contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}
.contactbox .info-card {
  border: 1px solid #e09f3e;
  border-radius: 4px;
  padding: 30px 20px;
  text-align: center;
}
.contactbox .info-card h3 {
  color: #353535;
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
  font-family: '黑体';
}
.contact-info .ico {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 35px;
  margin-bottom: 10px;
}
.contact-info .info-card .ico {
  background-image: url(../images/ico_tel.png);
}
.contact-info .addr-card .ico {
  background-image: url(../images/ico_ip.png);
}
.contact-info .wx-card .ico {
  background-image: url(../images/ico_vx.png);
}
.contactbox .info-card p {
  font-size: 20px;
  color: #353535;
  margin: 8px 0;
  font-family: '黑体';
}
.contactbox .wx-qrcode {
  width: 100px;
  height: 100px;
  background-color: #ddd;
  margin: 0 auto;
}
.contactbox .wx-qrcode img {
  width: 100%;
}
/* 预约流程区域 */
.contactbox .process-section {
  text-align: center;
  margin-bottom: 60px;
}
.contactbox .process-title {
  font-size: 36px;
  color: #333;
  margin-bottom: 70px;
  font-family: '黑体';
}
.contactbox .process-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.contactbox .step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contactbox .step-circle {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background-color: #e77c2d;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.contactbox .step-icon {
  margin-bottom: 8px;
}
.contactbox .step-icon img {
  max-width: 100%;
}
.contactbox .step-text {
  font-size: 24px;
  font-weight: 500;
  font-family: '黑体';
}
.contactbox .arrow {
  margin: 0 10px;
  background-image: url(../images/ico_pre.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
  width: 66px;
  height: 33px;
}
/* 预约表单区域 */
.contactbox .form-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  align-items: center;
  margin-bottom: 100px;
}
.contactbox .form-img img {
  width: 100%;
  height: auto;
  display: block;
}
.contactbox .reserve-form {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.contactbox .form-group {
  margin-bottom: 20px;
}
.contactbox .form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-size: 18px;
}
.contactbox .form-group label span {
  color: red;
}
.contactbox .form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}
.contactbox .form-control:focus {
  border-color: #e09f3e;
}
.contactbox .radio-group {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}
.contactbox .radio-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.contactbox .verify-code {
  display: flex;
  gap: 10px;
}
.contactbox .code-img {
  width: 100px;
  height: 44px;
  background-color: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  letter-spacing: 2px;
  color: #666;
}
.contactbox .submit-btn {
  width: 100%;
  padding: 14px;
  background-color: #e77c2d;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.contactbox .submit-btn:hover {
  background-color: #d18b29;
}
.map img {
  display: block;
  width: 100%;
}
.zhuanjia {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  margin-bottom: 100px;
}
.left-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.newtit {
  font-size: 20px;
  margin-bottom: 50px;
  text-align: center;
}
.expert-banner img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.expert-info {
  padding: 0 10px;
}
.expert-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #222;
}
.expert-info p {
  margin-bottom: 15px;
  color: #555;
  font-size: 18px;
  text-align: justify;
  line-height: 2;
}
.newspage {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}
.newspage a {
  font-size: 18px;
}
.recommend-experts {
  padding: 0 10px;
  margin-bottom: 100px;
  margin-top: 100px;
}
.recommend-experts h4 {
  font-size: 24px;
  margin-bottom: 30px;
  color: #222;
}
.recommend-experts h4 span {
  position: relative;
  left: 0;
  right: 0;
  padding-left: 30px;
  color: #ffffff;
  padding-top: 3px;
  padding-bottom: 3px;
}
.recommend-experts h4 span::after {
  content: '';
  background: #e77c2d;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.experts-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.expert-card {
  text-align: center;
}
.expert-card .img {
  width: 100%;
  height: 215px;
  border-radius: 4px;
  margin-bottom: 8px;
  overflow: hidden;
}
.expert-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.expert-card p {
  font-size: 18px;
  color: #555;
}
/* 右侧内容区 */
.right-section {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.search-box {
  background-color: #fff;
  padding: 0 15px;
  border-radius: 10px;
  padding-bottom: 15px;
}
.search-box h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #222;
  padding-bottom: 8px;
  border-top: 4px solid #0ac7c9;
  display: inline-block;
  padding-top: 10px;
}
.search-input {
  display: flex;
  align-items: center;
}
.search-input input {
  flex: 1;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #ddd;
  border-radius: 4px 0 0 4px;
  outline: none;
  font-size: 14px;
}
.search-input button {
  width: 40px;
  height: 36px;
  background-color: #e67e22;
  border: none;
  border-radius: 0 4px 4px 0;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hot-cases {
  background-color: #fff;
  padding: 0 15px;
  border-radius: 4px;
  padding-bottom: 15px;
}
.hot-cases h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #222;
  padding-bottom: 8px;
  display: inline-block;
  position: relative;
  padding-top: 10px;
}
.hot-cases h3::after {
  content: '';
  background: #0ac7c9;
  height: 4px;
  width: 55px;
  position: absolute;
  left: 0;
  top: 0;
}
.case-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.case-list .case-item {
  border-bottom: 1px solid #c8c8c8;
  padding: 10px 0;
}
.case-item h4 {
  font-size: 18px;
  color: #353535;
  margin-bottom: 8px;
  cursor: pointer;
}
.case-item p {
  font-size: 18px;
  color: #666;
  line-height: 1.5;
  padding: 10px 10px;
  display: block;
}
.hot-tags {
  background-color: #fff;
  padding: 0 15px;
  border-radius: 4px;
  padding-bottom: 15px;
}
.hot-tags h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #222;
  padding-bottom: 8px;
  display: inline-block;
  position: relative;
  padding-top: 10px;
}
.hot-tags h3::after {
  content: '';
  background: #0ac7c9;
  height: 4px;
  width: 55px;
  position: absolute;
  left: 0;
  top: 0;
}
.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag {
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 13px;
  color: #fff;
  cursor: pointer;
}
/* 不同标签样式 */
.tag-yanxue {
  background-color: #fdcb6e;
}
.tag-kaoqian {
  background-color: #e67e22;
}
.tag-chengren {
  background-color: #74b9ff;
}
.tag-yiyu {
  background-color: #b2bec3;
}
.tag-qinzi {
  background-color: #a29bfe;
}
.tag-nidao {
  background-color: #e17055;
}
.tag-zishang {
  background-color: #dfe6e9;
  color: #666;
}
.tag-shimian {
  background-color: #dfe6e9;
  color: #666;
}
.tag-qingxu {
  background-color: #fab1a0;
}
/* 标签导航栏样式 */
.casebox .tag-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.casebox .tag-nav .tag {
  padding: 6px 16px;
  border-radius: 5px;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  position: relative;
}
.casebox .tag-nav .tag.active {
  background-color: #ff7f24;
  /* 青少年标签橙色 */
}
.casebox .tag-nav .tag.normal {
  background-color: #0ac7c9;
}
.casebox .tag.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
  -webkit-transform: translate(-50%, 100%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #ff7f24;
}
.casebox .case-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 25px;
}
.casebox .case-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-top: 3px solid #0ac7c9;
}
.casebox .card-tag {
  text-align: center;
  margin-bottom: 20px;
}
.casebox .card-tag span {
  background-color: #0ac7c9;
  color: white;
  text-align: center;
  padding: 3px 20px;
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  margin: 0 auto;
  border-radius: 0 0 3px 3px;
}
/* 卡片内容区域 */
.casebox .card-content {
  padding: 18px;
  height: 240px;
}
.casebox .card-title {
  text-align: center;
  font-size: 18px;
  margin-bottom: 22px;
  color: #333;
}
.casebox .card-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  text-align: justify;
  font-family: 宋体;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
/* 卡片图片区域 */
.casebox .card-img {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}
.casebox .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 保持图片比例，填充容器 */
}
/* 更多按钮 */
.casebox .more-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  background-color: #0ac7c9;
  color: white;
  border: none;
  padding: 6px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  display: none;
  align-items: center;
  gap: 5px;
  z-index: 10;
}
.casebox .case-card:hover .card-img::after {
  content: '';
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.casebox .case-card:hover .card-img .more-btn {
  display: flex;
}
/* 分页样式 */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.pagination-btn {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  border: 1px solid #ddd;
  background-color: white;
  color: #666;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}
.pagination-btn.active {
  background-color: #0ac7c9;
  color: white;
  border-color: #0ac7c9;
}
.pagination-btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
/* 关于我们模块样式 */
.about-section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}
.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 80px;
  font-weight: normal;
  font-family: '黑体';
}
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}
.about-text {
  flex: 1;
  min-width: 300px;
  font-size: 17px;
  text-align: justify;
  line-height: 2;
}
.about-text p {
  margin-bottom: 15px;
}
.about-text ul {
  margin-left: 20px;
  margin-bottom: 15px;
}
.about-text li {
  margin-bottom: 8px;
  list-style-type: disc;
}
/* 左图右文环绕 */
.img-left {
  float: right;
  margin: 20px;
  max-width: 80%;
  border-radius: 4px;
}
/* 清除浮动（防止父盒子高度塌陷） */
.article::after {
  content: "";
  display: block;
  clear: both;
}
/* 发展历程模块样式 */
.history-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  background-image: url(../images/bg2.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.history-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}
.history-img {
  max-width: 510px;
}
.history-img img {
  width: 100%;
  height: auto;
  display: block;
}
.history-timeline {
  flex: 1;
  max-width: 700px;
  font-size: 14px;
}
.timeline-item {
  margin-bottom: 12px;
  text-align: justify;
  font-size: 17px;
}
.timeline-year {
  font-weight: bold;
  display: inline-block;
  min-width: 60px;
}
.team-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 40px 3%;
  padding: 20px 0;
  margin-bottom: 100px;
}
.teacher-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.avatar-wrapper {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
.avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.avatar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 13px;
  padding: 20px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.teacher-name {
  font-size: 16px;
  color: #333;
  transition: color 0.3s ease;
}
.teacher-card:hover .avatar-overlay {
  opacity: 1;
}
.teacher-card:hover .teacher-name {
  color: #0ac7c9;
}
/* 顶部标签导航 */
.tag-nav2 {
  max-width: 1200px;
  margin: 0 auto 40px;
  text-align: center;
}
.tag-nav2 a {
  display: inline-block;
  margin: 0 15px;
  text-decoration: none;
  color: #363636;
  font-size: 18px;
  padding-bottom: 5px;
  position: relative;
}
/* 激活态标签（抑郁） */
.tag-nav2 a.active {
  color: #333;
  font-weight: 500;
}
.tag-nav2 a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #0ac7c9;
}
.article-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 30px;
}
.article-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.article-img {
  width: 100%;
  height: 200px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 15px;
}
.article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.article-date {
  font-size: 18px;
  color: #353535;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.article-date::before {
  content: "";
  background-image: url(../images/ico_date.png);
  background-repeat: no-repeat;
  width: 22px;
  height: 22px;
  background-size: contain;
  margin-right: 5px;
}
.article-title {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: '黑体';
}
.article-desc {
  font-size: 16px;
  color: #666;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-card .more-btn {
  text-align: center;
}
.article-card .more-btn a {
  color: #0ac7c9;
  text-decoration: none;
  font-size: 16px;
}
/* 响应式适配 */
@media (max-width: 992px) {
  .article-container {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
  }
  .article-img {
    height: 180px;
  }
  .tag-nav2 a {
    margin: 0 10px;
    font-size: 15px;
  }
  .avatar-wrapper {
    width: 150px;
    height: 150px;
  }
  .team-container {
    gap: 30px 3%;
  }
  .avatar-overlay {
    font-size: 11px;
    padding: 15px 10px;
  }
  .about-content,
  .history-content {
    flex-direction: column;
  }
  .about-img,
  .history-img {
    flex: 0 0 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .zhuanjia {
    grid-template-columns: 1fr;
  }
  .experts-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1200px) {
  .healing-title {
    font-size: 43px;
  }
  .float-tag {
    font-size: 26px;
    padding: 10px 10px;
  }
}
@media screen and (max-width:768px) {
  .pc-nav {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
    z-index: 10;
  }
  .header-wrap {
    height: 70px;
  }
  .banner-title {
    font-size: 22px;
  }
  .banner-subtitle {
    font-size: 16px;
  }
  .banner-btn {
    font-size: 16px;
    padding: 10px 24px;
    width: 100%;
    text-align: center;
  }
  .ad-container {
    justify-content: center;
    text-align: center;
  }
  .trapezoid-decor {
    width: 40%;
  }
  .cheng .title-tag,
  .title-text {
    font-size: 16px;
  }
  .cheng .subtitle-text {
    font-size: 12px;
  }
  .cheng .card {
    padding: 20px 15px;
  }
  .cheng .card-title {
    font-size: 20px;
  }
  .cheng .card-content {
    font-size: 18px;
  }
  .science-container .main-title {
    font-size: 26px;
  }
  .science-container .sub-title {
    font-size: 14px;
  }
  .science-container .card-grid .card-img {
    height: 180px;
  }
  .footer-container {
    justify-content: center;
    text-align: center;
  }
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .qrcode-text {
    writing-mode: horizontal-tb;
    position: static;
    transform: none;
    margin-top: 5px;
    text-align: center;
    display: none;
  }
  .footer-qrcode {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .healing-container {
    display: flex;
  }
  .healing-img-box {
    width: 100%;
  }
  .healing-content {
    width: 100%;
    margin-top: 30px;
  }
  .healing-title {
    font-size: 26px;
  }
  .question-item {
    font-size: 16px;
  }
  .float-tag {
    font-size: 18px;
    padding: 15px 20px;
    left: 0;
    right: auto;
  }
  .healing-container {
    padding: 30px 15px;
    gap: 20px;
  }
  .casebox .tag-nav {
    gap: 6px;
    margin-bottom: 25px;
  }
  .casebox .tag-nav .tag {
    padding: 4px 12px;
    font-size: 12px;
  }
  /* 移动端缩小箭头尺寸 */
  .casebox .tag.active::after {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #ff7f24;
  }
  .casebox .case-container {
    gap: 15px;
  }
  .casebox .card-content {
    padding: 12px;
  }
  .casebox .card-img {
    height: 160px;
  }
  .pagination-btn {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  .contactbox .process-steps {
    flex-direction: column;
  }
  .contactbox .arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }
  .contactbox .step-circle {
    width: 200px;
    height: 200px;
  }
  .contactbox .contact-info {
    grid-template-columns: 1fr;
  }
  .banner-main-title {
    font-size: 36px;
    margin-bottom: 12px;
    padding-left: 50px;
  }
  .banner-main-title::before {
    width: 50px;
  }
  .banner-sub-title {
    font-size: 16px;
    flex-wrap: wrap;
    padding-left: 50px;
  }
  .banner-sub-title::before {
    width: 50px;
  }
  .banner-wrap {
    min-height: 180px;
    padding: 30px 15px;
  }
  .form-container .form-section-title {
    font-size: 18px;
  }
  .form-container {
    padding: 30px 20px;
  }
  .form-title {
    font-size: 22px;
  }
  .form-container .form-label {
    width: 80px;
    font-size: 13px;
  }
  .form-container .checkbox-group,
  .radio-group {
    gap: 10px;
  }
  .about-section,
  .history-section {
    padding: 40px 0;
  }
  .section-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .about-text,
  .history-timeline {
    font-size: 13px;
  }
  .about-content,
  .history-content {
    gap: 20px;
  }
  .main-title {
    font-size: 40px;
  }
  .sub-title {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .line-text-container {
    margin-bottom: 20px;
  }
  .line-text {
    font-size: 16px;
  }
  .line-text::before,
  .line-text::after {
    min-width: 50px;
  }
  #productSwiper .slide-text a {
    font-size: 15px
  }
  .cheng .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 2fr));
    gap: 20px;
  }
  .banner-btn {
    margin-right: 0;
    width: auto;
    display: inline-block;
  }
  .tag-nav2 {
    margin-bottom: 25px;
  }
  .tag-nav2 a {
    margin: 0 8px;
    font-size: 14px;
  }
  .article-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .article-img {
    height: 160px;
  }
  .article-card {
    padding: 15px;
  }
  .article-desc {
    -webkit-line-clamp: 3;
  }
  .avatar-wrapper {
    width: 120px;
    height: 120px;
  }
  .team-container {
    gap: 25px 3%;
  }
  .teacher-name {
    font-size: 14px;
  }
  .avatar-overlay {
    font-size: 10px;
    padding: 10px 8px;
  }
}
@media (max-width: 576px) {
  .experts-list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .form-container {
    padding: 20px 15px;
  }
  .form-container .form-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .form-container .form-label {
    width: 100%;
  }
  .form-container .form-control {
    min-width: 100%;
  }
  .form-container .submit-btn {
    width: 100%;
  }
  .banner-title {
    font-size: 18px;
  }
  .banner-subtitle {
    font-size: 14px;
  }
  .ad-container {
    padding: 20px 15px;
  }
  .science-container .main-title {
    font-size: 22px;
  }
  .science-container .tag-item {
    padding: 5px 14px;
    font-size: 13px;
  }
  .science-container .card-grid .card-img {
    height: 160px;
  }
  .science-container .card-grid .card-content {
    -webkit-line-clamp: 3;
  }
  .healing-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .question-item {
    font-size: 14px;
  }
  .float-tag {
    font-size: 16px;
    padding: 12px 16px;
  }
  .primary-btn,
  .secondary-btn {
    width: 100%;
    text-align: center;
  }
  .footer-info {
    font-size: 12px;
  }
  .footer-logo img {
    width: 60px;
  }
  .qrcode-box {
    width: 80px;
    height: 80px;
  }
  footer {
    padding: 20px 15px;
  }
  .banner-main-title {
    font-size: 28px;
    margin-bottom: 12px;
  }
  .banner-main-title::before {}
  .banner-sub-title {
    font-size: 14px;
    gap: 8px;
  }
  .banner-wrap {
    min-height: 150px;
    padding: 20px 10px;
  }
  .newspage {
    grid-template-columns: 1fr;
  }
  .contactbox .step-icon {
    font-size: 24px;
  }
  .contactbox .reserve-form {
    padding: 20px;
  }
  .about-text ul {
    margin-left: 15px;
  }
  .timeline-year {
    display: block;
    margin-bottom: 2px;
  }
  .avatar-wrapper {
    width: 100px;
    height: 100px;
  }
  .team-container {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 20px 2%;
  }
  .tag-nav2 {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
    text-align: left;
  }
  .tag-nav2 a {
    margin: 0 6px;
    display: inline-block;
  }
  .article-img {
    height: 140px;
  }
}


/*自己增加*/
.footer-detail a{  color: #ffffff;}
.tags-list .tag a{  color: #ffffff;}
.tags-list .tag:nth-child(1){    background-color: #fdcb6e;}
.tags-list .tag:nth-child(2){     background-color: #e67e22;   }
.tags-list .tag:nth-child(3){     background-color: #74b9ff;   }
.tags-list .tag:nth-child(4){  background-color: #b2bec3;  }
.tags-list .tag:nth-child(5){   background-color: #a29bfe; }
.tags-list .tag:nth-child(6){  background-color: #e17055;  }
.tags-list .tag:nth-child(7){   background-color: #dfe6e9;
    color: #666; }
.tags-list .tag:nth-child(8)	
	{    background-color: #dfe6e9;
    color: #666;}
	
	.tags-list .tag:nth-child(9){    background-color: #fab1a0;}
	.tags-list .tag:nth-child(10){     background-color: #74b9ff;   }
	
	.casebox .tag-nav .tag {
    background-color: #0ac7c9;
}

.article-title a  {
   font-weight: 500;
  color: #333;font-family: '黑体';
 
}
.science-container .card-title  a{
 
  color: #333;
 
  font-family: '黑体';
}

.science-container .card-content a{  color: #666;}

.pcmap{}
.wapmap{ display:none}

@media screen and (max-width:768px) {
.pcmap{ display:none}
.wapmap{ display:block}	
}