.flex {
  display: flex;
}

.app-main {
background: #E5EEFC;
}

/* 模块1 banner */
.app-main .banner {
  position: relative;
  width: 100%;
  height: 320px;
  box-sizing: border-box;
}

.app-main .banner .bg{ 
  width: 100%;
  height: 320px;
}
.app-main .banner .tem1-info {
  position: absolute;
  top: 0;
  left: 70px;
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.app-main .banner .tem1-info .title {
  color: #fff;
  text-shadow: 0px 0px 30px rgba(0, 15, 111, 0.2);
  font-size: 40px;
  font-weight: bold;
  line-height: 40px;
  margin-bottom: 18px;
}
.app-main .banner .tem1-info .desc { 
  display: flex;
  align-items: center;
  text-shadow: 0px 0px 30px rgba(0, 15, 111, 0.2);
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
}
.app-main .banner .tem1-info .desc img {
  width: 64px;
  height: 64px;
}

/* 模块2 三大核心服务职能 */
.app-main .tem-wrap {
  width: 1200px;
  margin: 20px auto 60px;
}

.app-main .tem-title {
  text-align: center;
  margin: 0 auto 50px;
  width: 680px;
  
}

.app-main .tem-title .main-title {
  font-size: 36px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 15px;
  height: 130px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  box-sizing: border-box;
  background:url('../../images/supportServices/title-bg.png') no-repeat center top / 100% auto;

}

.app-main .tem-title .desc-title {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
}

/* 服务卡片容器 */
.app-main .service-cards {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.app-main .service-cards .service-cards-left {
  flex-basis: 50%;
}
/* 服务卡片 */
.app-main .service-card {
  position: relative;
  border-radius: 16px;
  padding: 20px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 26px;
}
.app-main .service-card:nth-child(1) {
  background: url('../../images/supportServices/card-bg1.png') no-repeat left top / 100% 100%;
}
.app-main .service-card:nth-child(2) {
  background: url('../../images/supportServices/card-bg2.png') no-repeat left top / 100% 100%;
}

.app-main .service-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

/* 卡片图标 */
.app-main .service-card .card-icon {
  position: absolute;
  top: -20px;
  width: 80px;
  height: 80px;
}

.app-main .service-card .card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 卡片标题 */
.app-main .service-card .card-title {
  font-size: 22px;
  font-weight: bold;
  color: #0E214D;
  padding-left: 100px;
  margin-bottom: 20px;
}

/* 卡片描述 */
.app-main .service-card .card-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

/* 政策卡片特殊样式 */
.app-main .service-card.policy-card {
  flex-basis: 50%;
  position: relative;
  background: url('../../images/supportServices/card-bg3.png') no-repeat left top / 100% 100%;

 
}

/* 政策链接列表 */
.app-main .policy-links {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* 政策链接项 */
.app-main .policy-link {
  display: flex;
  align-items: center;
  color: #0E214D;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s ease;
  line-height: 1.6;
}

.app-main .policy-link:hover {
  color: #04B2CD;
}

/* 链接图标 */
.app-main .policy-link .link-icon {
  width: 16px;
  height: 10px;
  margin-right: 10px;
  flex-shrink: 0;
}


/* 模块三*/
.service-cards-left60{
  flex-basis: 60%;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.6);
  box-sizing: border-box;
  padding: 16px;
}
.service-cards-left60 .service-link {
  border-radius: 4px;
  box-sizing: border-box;
}
.service-cards-left60 .service-card-left-box {
  gap: 20px;
  margin-top: 16px;

}
.service-cards-left60 .service-card-left-box .service-link { 
  flex-basis: 50%;
}
.team-advantage {
  flex: 1;
  margin-left: 25px;
  height: 572px;
  background: url('../../images/supportServices/tdbg.png') no-repeat center top / 100% 100%;
}

.team-advantage .team-advantage-title {
  line-height: 64px;
  font-size: 24px;
  font-weight: 600;
  color: #FFFFFF;
  text-indent: 24px;
}
.team-advantage .team-wraps {
  width: calc(100% - 60px);
  height: calc(572px - 64px);
  background: #F5F8FE;
  box-sizing: border-box;
  border-radius: 0 10px 0 0;
  padding: 0 24px;
  overflow-y: scroll;
  /* 滚动条隐藏 */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.team-advantage .team-wraps::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.team-advantage .team-wraps .team-wrap {
  padding-bottom: 10px;
}
.team-advantage .team-wraps .team-wrap:not(:last-child) {
  border-bottom: 1px solid #DBE1EA;
}
.team-advantage .team-wraps .team-wrap .team-title {
  height: 50px;
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  color: #0E214D;

}
.team-advantage .team-wraps .team-wrap .team-title p {
  margin-left: 10px;
}
.team-advantage .team-wraps .team-wrap .team-title img {
  width: 32px;
}
.team-advantage .team-wraps .team-wrap .tem-content {
  font-size: 16px;
  line-height: 24px;
  color: #626C81;
  margin-bottom: 8px;
}

.team-advantage .team-wraps .team-wrap .basis65 {
  flex-basis: 65%;
}
.team-advantage .team-wraps .team-wrap .tem-content-num {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 72px;
  color: #04B2CD;
  border-left: 4px solid #329DED;
  padding-left: 24px;
  background: linear-gradient(270deg, rgba(210, 236, 255, 0) 0%, #D2ECFF 100%);
	font-weight: 600;
}
.team-advantage .team-wraps .team-wrap .tem-content-num span{ 
  font-size: 24px;
}

.team-advantage .team-wraps .team-wrap .tags {
  gap: 8px;
  
}
.team-advantage .team-wraps .team-wrap .tags span {
  border-radius: 2px;
  background: #D4EDFF;
  font-size: 14px;
  line-height: 14px;
  color: #04B2CD;
  padding: 6px 8px;
}
/* 年纪组长风采 */

.tem-small-wraps {
  width: 100%;
  background: url('../../images/supportServices/bjbg.png') no-repeat center top / 100% 100%;
  padding-bottom: 60px;

}
.tem-small-wraps .tem-small-wrap {
  width: 1200px;
  margin: 0 auto;
}
.tem-small-wraps .tem-small-wrap .small-title {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  line-height: 24px;
  color: #0E214D;
  padding-left: 16px;
  margin: 40px 0;
}
.tem-small-wraps .tem-small-wrap .small-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 24px;
  background: #04B2CD;
}
.tem-small-wraps .tem-small-wrap .age-group-leader {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 50px;
  column-gap: 10px;
  margin-top: 60px;
}

.tem-small-wraps .tem-small-wrap .age-group-leader .every-leader {
  display: flex;
  height: 186px;
  background: url('/images/supportServices/zbBg.png') no-repeat center center / 100% 100%;
  transform: skewX(-3deg);
}

.tem-small-wraps .tem-small-wrap .age-group-leader .every-leader .personImg {
  position: relative;
  top: -54px;
  left: 0;
  width: 206px;
  height: 240px;
}
.tem-small-wraps .tem-small-wrap .age-group-leader .every-leader .leader-info {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  flex: 1;
  margin-left: 14px;
  padding: 20px;
  background: linear-gradient(270deg, #F5F8FE 17%, rgba(245, 248, 254, 0.2) 100%);
}
.tem-small-wraps .tem-small-wrap .age-group-leader .every-leader .leader-info .leader-name { 
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #0E214D;
}
.tem-small-wraps .tem-small-wrap .age-group-leader .every-leader .leader-info .leader-desc { 
  overflow: auto;
  font-size: 16px;
  line-height: 24px;
  color: #626C81;
}


.tem-small-wraps .tem-small-wrap .age-group-leader .every-leader .leader-info .leader-base { 
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 22px;
  color: #939BAF;
}
.tem-small-wraps .tem-small-wrap .age-group-leader .every-leader .leader-info .leader-base img{
  margin-right: 8px;
  width: 14px;
  height: 14px;

} 

/* 优秀班主任代表 */
.outstand-head-teacher {
  position: relative;
}
.outstand-head-teacher .swiperHeadTeacher-Btn-left, .outstand-head-teacher .swiperHeadTeacher-Btn-right{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  width: 32px;
  height: 62px;
 
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #93A4AF;
  border: 1px solid rgba(147, 164, 175, 0.3);
  transition: all 0.3s ease;
}

.outstand-head-teacher .swiperHeadTeacher-Btn-left:hover,
.outstand-head-teacher .swiperHeadTeacher-Btn-right:hover {
  background: rgba(4, 178, 205, 0.1);
  border-color: #04B2CD;
  color: #04B2CD;
}

.outstand-head-teacher .swiperHeadTeacher-Btn-left::before,
.outstand-head-teacher .swiperHeadTeacher-Btn-right::before {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.outstand-head-teacher .swiperHeadTeacher-Btn-left {
  left: -45px;
  background: linear-gradient(270deg, rgba(147, 164, 175, 0.2) 0%, rgba(147, 164, 175, 0) 100%);
}

.outstand-head-teacher .swiperHeadTeacher-Btn-left::before {
  transform: rotate(-135deg);
  margin-left: 2px;
}

.outstand-head-teacher .swiperHeadTeacher-Btn-right {
  right: -45px;
  background: linear-gradient(270deg, rgba(147, 164, 175, 0) 0%, rgba(147, 164, 175, 0.2) 100%);
}

.outstand-head-teacher .swiperHeadTeacher-Btn-right::before {
  transform: rotate(45deg);
  margin-right: 2px;
}
.swiperHeadTeacher-content {
  overflow: hidden;
}
.outstand-head-teacher .swiperHeadTeacher-wrap {
  display: flex;
  gap: 20px;
  transition: transform 0.3s ease;
}

.outstand-head-teacher .swiperHeadTeacher-wrap .teacher-every {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: calc((100% - 40px) / 3);
  height: 186px;
  padding: 25px 0;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  background: url('../../images/supportServices/bzrBg.png') no-repeat center center / 100%;
  /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

.outstand-head-teacher .swiperHeadTeacher-wrap .teacher-every::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 10%;
  background: url('../../images/supportServices/bzrShu.png') no-repeat left top / 100%;
}

.outstand-head-teacher .swiperHeadTeacher-wrap .teacher-every:hover {
  /* transform: translateY(-4px); */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.outstand-head-teacher .swiperHeadTeacher-wrap .teacher-every .teacher-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.outstand-head-teacher .swiperHeadTeacher-wrap .teacher-every .teacher-info .teacher-name {
  font-size: 20px;
  font-weight: 600;
  color: #0E214D;
  margin: 0 10px 0 0;
}

.outstand-head-teacher .swiperHeadTeacher-wrap .teacher-every .teacher-info .teacher-experience {
  font-size: 14px;
  color: #348CEA;
  width: 117px;
  height: 26px;
  text-align: right;
  line-height: 26px;
  background: rgba(4, 178, 205, 0.1);
  border-radius: 12px;
  background: url('../../images/supportServices/bzrjy.png') no-repeat center center / 100%;
}

.outstand-head-teacher .swiperHeadTeacher-wrap .teacher-every .teacher-desc {
  overflow: auto;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 22px;
  color: #626C81;
  margin-bottom: 16px;
}

::-webkit-scrollbar-thumb {
  background: #D9D9D9;
  border-radius: 10px;
}
::-webkit-scrollbar-track {
  background: #F5F8FE;
}
::-webkit-scrollbar-corner {
  background: #F5F8FE;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-button {
  display: none;
}
.outstand-head-teacher .swiperHeadTeacher-wrap .teacher-every .teacher-tags {
  display: flex;
  gap: 8px;
  padding: 0 5px;
}

.outstand-head-teacher .swiperHeadTeacher-wrap .teacher-every .teacher-tags span {
  font-size: 14px;
  color: #E76A85;
  background: #FCE7EF;
  padding: 6px 8px;
  border-radius: 2px;
}


/* liu */
.tem-wrap-bg {
  background: url('../../images/supportServices/zfBg.png') no-repeat left bottom / 100%;
}

.xf-process {
  display: flex;
  gap: 80px;
}
.xf-process .process-every {
  display: flex;
  flex-direction: column;
  max-height: 200px;
  position: relative;
  flex: 1;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  box-sizing: border-box;
  padding: 16px 24px;
}
.xf-process .process-every .process-every-title {
  display: flex;
  align-items: center;
  color: #04B2CD;
  font-size: 20px;
  font-weight: bold;
}
.xf-process .process-every .process-every-title img {
  margin-right: 8px;
  width: 27px;
}
.xf-process .process-every .process-every-desc {
  overflow: auto;
  color: #626C81;
  font-size: 16px;
}

.xf-process .process-every:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -56px;
  top: 30px;
  width: 32px;
  height: 32px;
  background: url('../../images/supportServices/xfJian.png') no-repeat center center / 100%;
}

.contact-infor {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  margin-top: 40px;
  padding: 32px 40px;
}

.contact-infor .small-title {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  line-height: 24px;
  color: #0E214D;
  padding-left: 16px;
}
.contact-infor .small-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 24px;
  background: #04B2CD;
}
.contact-infor .contact-infor-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 0;
  column-gap: 20px;
}

.contact-infor .contact-infor-box .contact-infor-every {
  flex: 0 0 calc((100% - 60px) / 4);
  min-width: calc((100% - 60px) / 4);
  margin-top: 40px;
}

.contact-infor .contact-infor-box .contact-infor-every .infor-title {
  color: #0E214D;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 18px;
}
.contact-infor .contact-infor-box .contact-infor-every .infor-desc {
  color: #626C81;
  margin-top: 4px;
  font-size: 14px;
}

/* 模块7 */
.tem-wrap-bg7 {
  padding: 24px 0 120px;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 100%);
}
.tem-wrap7 {
  margin-bottom: 0 !important;
}
.tem-wrap-bg7 .tem-content {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;

}
.tem-wrap-bg7 .tem-content .every-quick-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.tem-wrap-bg7 .tem-content .every-quick-contact img{ 
  width: 160px;
}
.tem-wrap-bg7 .tem-content .every-quick-contact .quick-type { 
  font-size: 18px;
  color: #0E214D;
  font-weight: 600;
}
.tem-wrap-bg7 .tem-content .every-quick-contact .quick-text { 
  color: #626C81;
  line-height: 30px;
}
.tem-wrap-bg7 .tem-content .every-quick-contact .zxBtn { 
  width: 104px;
  line-height: 26px;
  border-radius: 2px;
  text-align: center;
  color: #FFFFFF;
  font-size: 14px;
  cursor: pointer;
  background: linear-gradient(270deg, #18CED1 0%, #339DEE 100%);
	
}

/* 响应式设计 - 平板 */
@media (max-width: 1024px) {
  .app-main .service-cards {
    flex-direction: column;
    gap: 20px;
  }

  .app-main .service-card {
    width: 100%;
  }
}


/* 响应式设计 - 手机 */
@media (max-width: 768px) {
  .app-main .tem-wrap {
    padding: 40px 15px;
  }

  .app-main .tem-title .main-title {
    font-size: 28px;
  }

  .app-main .tem-title .desc-title {
    font-size: 16px;
  }

  .app-main .service-card {
    padding: 30px 20px;
  }

  .app-main .service-card .card-icon {
    width: 60px;
    height: 60px;
  }

  .app-main .service-card .card-title {
    font-size: 20px;
  }

  .app-main .service-card .card-desc {
    font-size: 14px;
  }

  .app-main .policy-link {
    font-size: 13px;
  }
}