* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul,li {
  list-style: none;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
  "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background: #f5f7fa;
  color: #333;
}



/* 页面核心优势css */
.banner {
  height:420px;
  width:100%;
  background:url('../images/quzhou/advantage-banner.png') no-repeat center center;
  background-size:100% 100%;
  position: relative;
  z-index: 0;
}
.banner-inner {
  position: absolute;
  top: 50%;
  left:250px;
  transform: translateY(-50%);
  color:#fff;
  z-index: 1;
}
.title-main {
  font-size: 48px;
}
.title-sub {
  font-size: 24px;
  margin-top: 16px;
}
.subtitle-block {
  font-size:16px;
  color:#003EDF;
  margin:20px 0 40px 0;
}
.container { padding:0 250px;text-align: center; }
.container-title {
  margin: 60px 0 40px 0;
}
.pillars { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.pillar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  color:#999999;
}
.pillar:hover {
  cursor: pointer;
  /* transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1); */
}
.pillar.active {
  color: #000;
}
.pillar::after {
  content: '';
  color:#000;
  position:relative;
  left: 4%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 26px;
  height:4px;
  background: transparent;
}
.pillar.active::after {
  background: #003EDF;
}
.pillar h3 { margin: 0 0 8px; font-size: 20px; }
.pillar p { margin: 0; font-size: 14px; color: #666; }
.pillar.active p { color: #e0f0ff; }
.pillar span {
  font-size: 20px;
  margin-top:16px;
}
.content-area {
  display: flex;
  height:530px;
  /* overflow: hidden; */
  background: url('../images/quzhou/group-bg1.png') no-repeat center center;
  background-size:100% 100%;
  position: relative;
  margin-top:104px;
  z-index: 1;
}
.left-part {
  width:320px;
  height:530px;
  position: absolute;
  left:60px;
  top:-60px;
  z-index: 2;
}
.left-part img {
  width:100%;
  height:100%;
}
.right-part {
  width: 60%;
  height: 530px;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* justify-content: center; */
  position:absolute;
  left:438px;
  z-index: 1;
}
.right-part h3 {
  font-size:26px;
  color:#000;
}
.right-part p {
  font-size:16px;
  margin-top:30px;
  color:#333;
  letter-spacing: 0em;
}
/* 文字动画：从左到右 + 淡入 */
.fade-in-left {
  text-align: left;
  /* animation: fadeInLeft 0.6s ease forwards; */
  /* 从右到左 + 淡入 */
  animation: fadeInRight 0.6s ease forwards;
}
.highlight-title {
  margin-top:50px;
  font-size:18px;
}
.right-part .list {
  line-height: 30px;
  list-style: disc;
  margin-top:16px;
  font-size:14px;
  color:#666666;
  /* grid布局 两行两列 */
  display: grid;
  grid-template-columns: .3fr 1fr;
  grid-gap: 20px;
  /* 居左显示 */
  justify-items: left;
}
.right-part .list li {
  list-style: square;
  margin-left: 20px;
  width: 80%;
}
.right-part button {
  font-size: 16px;
  color:#3D3D3D;
  border:1px solid #3D3D3D;
  padding: 8px 26px;
  background: transparent;
  margin-top:48px;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.container-title {
  font-size:30px;
  color:#3D3D3D;
}
/* 立即预约 */
.book-now {
  background-image: url('../images/quzhou/appointment-bg.png');
  background-size:100% 100%;
  background-repeat: no-repeat;
  background-color:rgb(15, 93, 209);
  margin-top:40px;
  position: relative;
}
.book-now-inner {
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.book-now-title {
  font-size:42px;
  color:#FFFFFF;
}
.book-now-desc {
  font-size:20px;
  color:#FFFFFF;
  margin-top:20px;
}
.book-now-inner button {
  font-size: 16px;
  color:#FFFFFF;
  border:1px solid #FFFFFF;
  padding: 8px 26px;
  background: transparent;
  margin-top:31px;
}