@font-face {
  font-family: 'HarmonyB';
  src: url('../fonts/HarmonyOS_Sans_SC_Bold.eot');
  src: url('../fonts/HarmonyOS_Sans_SC_Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/HarmonyOS_Sans_SC_Bold.woff2') format('woff2'),
    url('../fonts/HarmonyOS_Sans_SC_Bold.woff') format('woff'),
    url('../fonts/HarmonyOS_Sans_SC_Bold.svg#HarmonyOS_Sans_SC_Bold') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'HarmonyBl';
  src: url('../fonts/HarmonyOS_Sans_SC_Black.eot');
  src: url('../fonts/HarmonyOS_Sans_SC_Black.eot?#iefix') format('embedded-opentype'),
    url('../fonts/HarmonyOS_Sans_SC_Black.woff2') format('woff2'),
    url('../fonts/HarmonyOS_Sans_SC_Black.woff') format('woff'),
    url('../fonts/HarmonyOS_Sans_SC_Black.svg#HarmonyOS_Sans_SC_Black') format('svg');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'HarmonyM';
  src: url('../fonts/HarmonyOS_Sans_SC_Medium.eot');
  src: url('../fonts/HarmonyOS_Sans_SC_Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/HarmonyOS_Sans_SC_Medium.woff2') format('woff2'),
    url('../fonts/HarmonyOS_Sans_SC_Medium.woff') format('woff'),
    url('../fonts/HarmonyOS_Sans_SC_Medium.svg#HarmonyOS_Sans_SC_Medium') format('svg');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'HarmonyR';
  src: url('../fonts/HarmonyOS_Sans_SC.eot');
  src: url('../fonts/HarmonyOS_Sans_SC.eot?#iefix') format('embedded-opentype'),
    url('../fonts/HarmonyOS_Sans_SC.woff2') format('woff2'),
    url('../fonts/HarmonyOS_Sans_SC.woff') format('woff'),
    url('../fonts/HarmonyOS_Sans_SC.svg#HarmonyOS_Sans_SC') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'HarmonyS';
  src: url('../fonts/HarmonyOS_Sans_SC_Semibold.eot');
  src: url('../fonts/HarmonyOS_Sans_SC_Semibold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/HarmonyOS_Sans_SC_Semibold.woff2') format('woff2'),
    url('../fonts/HarmonyOS_Sans_SC_Semibold.woff') format('woff'),
    url('../fonts/HarmonyOS_Sans_SC_Semibold.svg#HarmonyOS_Sans_SC_Semibold') format('svg');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}


/* 公共二级页面样式 */
.sub-container {
  padding-top: 9rem;
}

.sub-container .banner {
  position: relative;
}

.sub-container .banner .gp-img {
  position: relative;
  padding-bottom: 29.16%;
}

.sub-container .banner .gp-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(3px);
  /* 兼容性渐变背景 */
  background: #000000;
  background: -webkit-linear-gradient(225deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.4) 100%);
  background: -moz-linear-gradient(225deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.4) 100%);
  background: linear-gradient(225deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.4) 100%);
}

.sub-container .banner .title-box {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.sub-container .banner .title-box .title-text {
  display: block;
  font-family: 'HarmonyS';
  margin-bottom: 2rem;
}

.sub-container .banner .gp-bread {
  display: flex;
  align-items: center;
}

.sub-container .banner .gp-bread .icon {
  display: inline-block;
  width: 2.6rem;
  height: 2.6rem;
  background: url('../images/home_icon.png') no-repeat center/100% 100%;
}

.sub-container .banner .gp-bread a {
  color: #fff;
  margin: 0 1rem;
  font-family: 'HarmonyR';
}

.sub-container .banner .gp-bread span {
  color: #fff;
}

.sub-container aside {
  padding: 1.6rem 0 0 0;
  background: rgba(7, 80, 86, 0.1);
}

.sub-container aside .menu {
  display: flex;
  flex-wrap: wrap;
}

.sub-container aside li {
  margin-bottom: 1.6rem;
}

.sub-container aside li a {
  position: relative;
  display: inline-block;
  color: #333;
  font-family: 'HarmonyM';
  padding: 2rem 3rem;
  border-radius: 0px 50rem 50rem 0px;
  transition: all 0.3s ease-in-out;
}

.sub-container aside li a span {
  position: relative;
  z-index: 5;
}

.sub-container aside li a::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 0;
  height: 100%;
  background: rgba(7, 80, 86, 1);
  border-radius: 0px 50rem 50rem 0px;
  transition: all 0.3s ease-in-out;
}

.sub-container aside li.on a,
.sub-container aside li:hover a {
  color: #fff;
}

.sub-container aside li.on a::after,
.sub-container aside li:hover a::after {
  width: 100%;
}

@media screen and (max-width: 480px) {
  .sub-container .banner {
    height: 30rem;
  }

  .sub-container .banner .gp-img {
    position: relative;
    padding-bottom: 0%;
    height: 100%;
  }

  .sub-container .banner .gp-img img {
    height: 100%;
    object-fit: cover;
  }

}

/* 学校介绍 */
.xxjs .centain1 {
  padding-bottom: 5rem;
  background: url('../images/xxjs_bg1.png') no-repeat center top/cover;
}

.xxjs .centain1 .top {
  position: relative;
  margin-bottom: 5rem;
}

.xxjs .centain1 .top .about {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 64.3%;
  padding: 5rem;
  box-sizing: border-box;
  border-right: 3px solid rgba(7, 80, 86, 1);
  box-shadow: 0px 0px 3rem 0px rgba(0, 0, 0, 0.1);
  background: url('../images/xxjs_text_bg.png') no-repeat 95% 5%/36.4rem 11.7rem,
    rgba(255, 255, 255, 1);
}

.xxjs .centain1 .top>.img {
  margin-left: -21rem;
  width: 60%;
}

.xxjs .centain1 .img .gp-img {
  padding-bottom: 53.44%;
}

.xxjs .centain1 .top .about .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.xxjs .centain1 .top .about .title .img {
  width: 37rem;
}

.xxjs .centain1 .top .about .title .img .gp-img {
  padding-bottom: 12.43%;
}

/* .xxjs .centain1 .top .about .title .text {
    font-size: 10rem;
    color: rgba(0, 0, 0, 0.04);
    font-family: 'HarmonyBl';
} */

.xxjs .centain1 .top .about .info {
  color: #333;
  line-height: 1.5;
  font-family: 'HarmonyR';
  text-indent: 2em;
}

.xxjs .article-item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}

.xxjs .article-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.3rem;
  height: 6.3rem;
  margin-right: 4px;
  flex-shrink: 0;
  background: rgba(7, 80, 86, 1);
}

.xxjs .article-item .icon img {
  width: 3rem;
  height: 3rem;
}

.xxjs .article-item .title {
  padding: 2rem 3rem;
  font-family: 'HarmonyM';
  border-radius: 0px 50rem 50rem 0px;
  background: rgba(7, 80, 86, 1);
}

.xxjs .article {
  font-family: 'HarmonyR';
  line-height: 1.5;
  color: #333;
  text-indent: 2em;
}

.xxjs .centain2 {
  padding-bottom: 5rem;
  background: #f6f6f6;
  background: -webkit-linear-gradient(top,
      rgba(246, 246, 246, 0) 0%,
      rgba(246, 246, 246, 1) 100%);
  background: -moz-linear-gradient(top,
      rgba(246, 246, 246, 0) 0%,
      rgba(246, 246, 246, 1) 100%);
  background: linear-gradient(180deg,
      rgba(246, 246, 246, 0) 0%,
      rgba(246, 246, 246, 1) 100%);
}

.xxjs .centain2 .article-item {
  margin-top: 5rem;
}

.xxjs .centain3 {
  padding-top: 5rem;
  padding-bottom: 8rem;
  background-color: #fff;
}

.xxjs .centain3 .gp-container {
  display: flex;
  background: rgba(7, 80, 86, 1);
}

.xxjs .centain3 .img {
  position: relative;
  width: 40%;
  padding: 3rem 0;
}

.xxjs .centain3 .img::after {
  content: '';
  display: block;
  position: absolute;
  left: -2px;
  top: -2px;
  z-index: 1;
  width: 20rem;
  height: 102%;
  background-color: #fff;
}

.xxjs .centain3 .img .gp-img {
  padding-bottom: 56.33%;
  z-index: 5;
}

.xxjs .centain3 .info {
  flex: 1;
  padding: 5rem;
  padding-bottom: 0;
}

.xxjs .centain3 .info .title {
  display: block;
  padding-left: 1rem;
  font-family: 'HarmonyB';
  margin-bottom: 2rem;
  border-left: 4px solid rgba(255, 105, 0, 1);
}

.xxjs .centain3 .info .s-text {
  display: flex;
  align-items: center;
  font-family: 'HarmonyR';
  margin-bottom: 5rem;
}

.xxjs .centain3 .info .s-text span {
  /* Ellipse 13 */
  width: 4px;
  height: 4px;
  border-radius: 50%;
  margin: 0 2rem;
  background: rgba(255, 255, 255, 1);
}

.xxjs .centain3 .info .text {
  text-indent: 2em;
  font-family: 'HarmonyR';
  line-height: 1.5;
  margin-bottom: 3.6rem;
}

.xxjs .centain3 .info .bot-text {
  display: flex;
  justify-content: space-between;
}

.xxjs .centain3 .info .bot-text span {
  display: inline-block;
  font-size: 8rem;
  font-family: 'HarmonyR';
  color: rgba(255, 255, 255, 0.1);
}

.xxjs .centain3 .info .bot-text span:last-child {
  margin-right: 0;
}

@media screen and (max-width: 1780px) {
  .xxjs .centain1 .top>.img {
    margin-left: -14rem;
  }
}

@media screen and (max-width: 1480px) {
  .xxjs .centain3 .info .bot-text span {
    font-size: 6rem;
  }

  .xxjs .centain1 .top .about {
    background: url('../images/xxjs_text_bg.png') no-repeat 95% 5%/30.4rem 8.7rem,
      rgba(255, 255, 255, 1);
  }
}

@media screen and (max-width: 1380px) {
  /* .xxjs .centain1 .top>.img {
    margin-left: -5rem;
  } */
}

@media screen and (max-width: 1280px) {}

@media screen and (max-width: 996px) {
  .xxjs .centain3 .gp-container {
    flex-direction: column;
  }

  .xxjs .centain3 .img::after {
    display: none;
  }

  .xxjs .centain3 .img {
    width: 60%;
    margin: 0 auto;
  }

  .xxjs .centain1 .top .about {
    position: static;
    right: 0;
    top: 0%;
    transform: translateY(0%);
    width: 100%;
    margin-top: 2rem;
  }

  .xxjs .centain1 .top>.img {
    width: 100%;
    margin-top: 3rem;
  }

  .xxjs .article-item .title {
    line-height: 1.5;
  }

  .xxjs .article-item .icon {
    width: 8.3rem;
    height: 8.3rem;
  }

  .xxjs .centain3 .info .bot-text span {
    font-size: 8rem;
  }

  .xxjs .centain1 .top>.img {
    margin-left: 0rem;
  }
}

@media screen and (max-width: 480px) {
  .xxjs .centain3 .img {
    width: 100%;
  }

  .xxjs .centain3 .info {
    padding: 2rem;
  }
}

/* 现任领导 */
.xrld {
  padding: 5rem 0 8rem;
  background-color: #fff;
}

.xrld li {
  margin-bottom: 3rem;
}

.xrld li a {
  position: relative;
  padding: 3rem 5rem 3rem 4.7rem;
  display: block;
  box-sizing: border-box;
  border-left: 3px solid rgba(7, 80, 86, 1);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 1);
  transition: all 0.3s ease-in-out;
}

.xrld li a::after {
  content: '';
  display: block;
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(7, 80, 86, 1);
  transition: all 0.5s ease-in-out;
}

.xrld li a:hover::after {
  width: 100%;
}

.xrld li a:hover {
  transform: translateX(15px);
}

.xrld li a .title {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: #333;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.xrld li a .title .icon {
  display: block;
  width: 3rem;
  height: 3rem;
  margin-right: 1rem;
  background: url('../images/rw_icon.png') no-repeat center;
  background-size: 100%;
  margin-bottom: 3rem;
  transition: all 0.3s ease-in-out;
}

.xrld li a .title .name {
  display: block;
  font-family: 'HarmonyB';
  padding-right: 2rem;
  margin-bottom: 3rem;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.xrld li a .title .zw {
  display: block;
  font-family: 'HarmonyR';
  margin-left: 2rem;
  margin-bottom: 3rem;
}

.xrld li a .text {
  position: relative;
  z-index: 2;
  font-family: 'HarmonyR';
  line-height: 2.6rem;
  color: #333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  word-break: break-all;
  transition: all 0.3s ease-in-out;
}

.xrld li a:hover .text,
.xrld li a:hover .title {
  color: #fff;
}

.xrld li a:hover .icon {
  background: url('../images/rw_active_icon.png') no-repeat center;
}

/* 大事记 */
.dsj {
  padding-top: 5rem;
  background-color: #fff;
}

.dsj .top-menu img {
  height: 100%;
  object-fit: contain;
}

.dsj .top-menu {
  position: relative;
  width: 100%;
}

.dsj .top-menu .img {
  position: absolute;
  top: 0;
  right: 0;
  width: 27.8rem;
  height: 100%;
  object-fit: contain;
}

.dsj .top-menu .tab-box {
  position: relative;
  width: 100%;
  padding: 5rem 0 5rem 5.2rem;
  box-sizing: border-box;
  background: url('../images/dsj_bg.png') no-repeat right center/cover;
}

.dsj .top-menu .tab-box .box {
  width: 84%;
  overflow: hidden;
}

.dsj .top-menu .tab-box::after {
  content: '';
  display: block;
  width: 17.8rem;
  height: 100%;
  position: absolute;
  right: 18rem;
  top: 0;
   /* 渐变背景兼容性写法 */
  background: -webkit-linear-gradient(-72.65deg, rgba(0, 107, 109, 1), rgba(0, 107, 109, 0) 100%); /* Safari 5.1-6.0 */
  background: -o-linear-gradient(-72.65deg, rgba(0, 107, 109, 1), rgba(0, 107, 109, 0) 100%); /* Opera 11.1-12.0 */
  background: -moz-linear-gradient(-72.65deg, rgba(0, 107, 109, 1), rgba(0, 107, 109, 0) 100%); /* Firefox 3.6-15 */
  background: linear-gradient(-72.65deg, rgba(0, 107, 109, 1), rgba(0, 107, 109, 0) 100%); /* 标准语法 */
  /* 对称斜切效果 */
  clip-path: polygon(60% 0%, 100% 0%, 40% 100%, 0% 100%);
}

.dsj .top-menu .tab-title-list {
  align-items: center;
  width: 100%;
  position: relative;
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.dsj .top-menu .tab-title-list>li {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.dsj .top-menu .tab-title-list>li span,
.dsj .top-menu .tab-title-list>li a {
  display: block;
  color: #fff;
  font-family: 'HarmonyB';
}

.dsj .top-menu .tab-title-list>li .line {
  width: 2rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 2.7rem;
}

.dsj .top-menu .tab-title-list>li .text {
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.dsj .top-menu .tab-title-list>li:last-child .line {
  display: none;
}

.dsj .top-menu .tab-title-list>li.on .text,
.dsj .top-menu .tab-title-list>li a:hover.text {
  font-size: 3rem;
  color: rgba(255, 105, 0, 1);
}

.dsj .top-menu .target-but {
  display: flex;
  align-items: center;
  margin-top: 5rem;
}

.dsj .top-menu .target-but .but {
  cursor: pointer;
  position: relative;
  width: 5rem;
  height: 5rem;
  color: #fff;
  border-radius: 50%;
  margin: 0 5px;
  text-align: center;
  line-height: 5rem;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease-in-out;
}

.dsj .top-menu .target-but .but:hover {
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 1);
  background: rgba(255, 255, 255, 1);
}

.dsj .top-menu .target-but .but .arrow.next-arrow {
  position: absolute;
  top: 50%;
  left: 45%;
  width: 1.2rem;
  height: 1.2rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.3s ease-in-out;
}

.dsj .top-menu .target-but .but .arrow.prve-arrow {
  position: absolute;
  top: 50%;
  left: 55%;
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.3s ease-in-out;
}

.dsj .top-menu .target-but .but:hover .arrow {
  border-color: #006b6d;
}

.dsj .tab-content-box li {
  padding-left: 5.2rem;
}

.dsj .tab-content-box li.on {
  display: block;
}

.dsj .tab-content-box li dd {
  padding: 3rem 0 0 2.5rem;
  color: rgba(51, 51, 51, 1);
  border-left: 1px solid #075056;
}

.dsj .tab-content-box li dd:last-child {
  padding-bottom: 8rem;
}

.dsj .tab-content-box li dd .time {
  display: flex;
  align-items: center;
  font-weight: 700;
  margin-bottom: 1rem;
}

.dsj .tab-content-box li dd .text {
  display: block;
  transition: all 0.3s ease-in-out;
  line-height: 1.5;
}

.dsj .tab-content-box li dd .text:hover {
  transform: translateX(15px);
}

.dsj .tab-content-box li dd .time::before {
  content: '';
  width: 1rem;
  height: 1rem;
  margin-left: -3rem;
  margin-right: 2rem;
  border-radius: 50%;
  background: rgba(7, 80, 86, 1);
}

@media screen and (max-width: 1680px) {
  .dsj .top-menu .tab-box .box {
    width: 80%;
    overflow: hidden;
  }
}

@media screen and (max-width: 1280px) {
  .dsj .top-menu .tab-box::after {
    right: 20rem;
  }
}

@media screen and (max-width: 996px) {
  .dsj .top-menu .tab-title-list>li.on .text {
    font-size: 28px;
  }

  .dsj .top-menu .tab-box {
    padding: 3rem;
    background: rgba(0, 107, 109, 1);
  }

  .dsj .top-menu .tab-box::after {
    display: none;
  }

  .dsj .top-menu .tab-box .box {
    width: 100%;
    overflow: hidden;
  }
}

@media screen and (max-width: 767px) {
  .dsj .top-menu .tab-title-list>li.on .text {
    font-size: 24px;
  }
}

/* 康大文化 */
.kdwh {
  padding-bottom: 8rem;
  background-color: #fff;
}

.kdwh .mode1 {
  padding: 5rem 0 8rem;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.kdwh .mode1 .con {
  position: relative;
  padding-bottom: 9.6rem;
}

.kdwh .mode1 .con .top {
  padding-top: 5rem;
  padding-bottom: 10rem;
  width: 100%;
  background: rgba(246, 246, 246, 0.96);
}

.kdwh .item-title {
  padding: 3rem 6rem 3rem 5rem;
  font-family: 'HarmonyB';
  color: #fff;
  display: inline-block;
  border-radius: 0px 5rem 5rem 0px;
  background: rgba(7, 80, 86, 1);
}

.kdwh .more {
  display: flex;
  align-items: center;
  font-family: 'HarmonyM';
  color: #ff6900;
  margin-left: 5rem;
  transition: all 0.3s ease-in-out;
}

.kdwh .more2 {
  display: none;
}

.kdwh .more:hover {
  transform: translateX(15px);
}

.kdwh .more::after {
  content: '';
  display: block;
  width: 2rem;
  height: 2rem;
  margin-left: 1rem;
  background: url('../images/right_active_arrow.png') no-repeat;
  background-size: 100%;
}

.kdwh .mode1 .con .item-title {
  margin-bottom: 12.8rem;
}

.kdwh .mode1 .con .swiper-box {
  position: absolute;
  top: 5rem;
  right: 0rem;
  width: 60%;
  display: flex;
}

.kdwh .mode1 .con .swiper-box .box {
  width: 100%;
  overflow: hidden;
}

.kdwh .mode1 .con .swiper-slide a {
  position: relative;
  display: block;
}

.kdwh .mode1 .con .swiper-slide a .play-but {
  position: relative;
  display: block;
  width: 10rem;
  height: 10rem;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.8);
}

.kdwh .mode1 .con .swiper-slide a .play-but::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6rem;
  height: 6rem;
  background: url('../images/move_icon2.png') no-repeat center/100% 100%;
}

.kdwh .mode1 .con .swiper-slide a:hover .play-but::after {
  animation: rotateDigitalSchool 5s linear infinite;
}

.kdwh .mode1 .con .swiper-slide a .img {
  position: relative;
}

.kdwh .mode1 .con .swiper-slide a .img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.kdwh .mode1 .con .swiper-slide a .gp-img {
  padding-bottom: 56.22%;
}

.kdwh .mode1 .con .swiper-box .swiper-pagination {
  position: static;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 3rem;
  padding-right: 5rem;
}

.kdwh .mode1 .con .swiper-box .swiper-pagination-bullet {
  position: relative;
  width: 2rem;
  height: 2rem;
  background: rgba(0, 0, 0, 0.1);
  opacity: 1;
  margin: 1rem 0;
}

.kdwh .mode1 .con .swiper-box .swiper-pagination-bullet::after {
  content: '';
  display: block;
  width: 1rem;
  height: 1rem;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.kdwh .mode1 .con .swiper-box .swiper-pagination-bullet-active {
  background: rgba(255, 105, 0, 1);
}

.kdwh .mode2 {
  padding-left: calc((100% - 150rem) / 2);
}

.kdwh .mode2 .item {
  display: flex;
  padding-top: 8rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.kdwh .mode2 .item .left {
  flex: 1;
}

.kdwh .mode2 .item .text {
  display: block;
  margin: 5rem;
  color: #333;
  font-family: 'HarmonyR';
  line-height: 2;
  text-indent: 2em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  word-break: break-word;
}

.kdwh .mode2 .item .img {
  width: 41%;
  flex-shrink: 0;
}

.kdwh .mode2 .item .img .gp-img {
  padding-bottom: 66.71%;
}

.kdwh .mode3 {
  padding-right: calc((100% - 150rem) / 2);
  background: rgba(246, 246, 246, 1);
}

.kdwh .mode3 .item {
  display: flex;
  padding: 8rem 0;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.kdwh .mode3 .item .img {
  width: 41%;
  flex-shrink: 0;
}

.kdwh .mode3 .item .img .gp-img {
  padding-bottom: 66.71%;
}

.kdwh .mode3 .item .right {
  flex: 1;
  text-align: right;
}

.kdwh .mode3 .item .right .item-title {
  padding: 3rem 5rem 3rem 6rem;
  border-radius: 5rem 0px 0px 5rem;
  background: rgba(7, 80, 86, 1);
}

.kdwh .mode3 .item .text {
  display: block;
  margin: 5rem;
  color: #333;
  font-family: 'HarmonyR';
  line-height: 2;
  text-align: left;
  text-indent: 2em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  word-break: break-word;
}

.kdwh .mode4 .item {
  border-top: none;
}

@media screen and (max-width: 1680px) {
  .kdwh .mode2 {
    padding-left: calc((100% - 135rem) / 2);
  }

  .kdwh .mode3 {
    padding-right: calc((100% - 135rem) / 2);
  }
}

@media screen and (max-width: 1480px) {
  .kdwh .mode1 .con {
    padding-bottom: 5rem;
  }

  .kdwh .mode2 {
    padding-left: calc((100% - 120rem) / 2);
  }

  .kdwh .mode3 {
    padding-right: calc((100% - 120rem) / 2);
  }
}

@media screen and (max-width: 996px) {
  .kdwh .mode1 {
    padding: 5rem 0 0rem;
  }

  .kdwh .mode1 .con {
    display: flex;
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: rgba(246, 246, 246, 0.96);
  }

  .kdwh .mode1 .con .top {
    padding-top: 0rem;
    padding-bottom: 0rem;
    width: 100%;
  }

  .kdwh .mode1 .con .swiper-box {
    position: static;
    width: 70%;
  }

  .kdwh .mode2 {
    padding-left: 20px;
  }

  .kdwh .mode3 {
    padding-right: 20px;
  }

  .kdwh .mode2 .item {
    flex-direction: column;
    padding-bottom: 3rem;
  }

  .kdwh .mode3 .item {
    flex-direction: column;
  }

  .kdwh .mode2 .item .img {
    margin: 0 auto;
    margin-top: 2rem;
  }

  .kdwh .mode3 .item .img {
    margin: 0 auto;
    margin-top: 2rem;
  }

  .kdwh .mode3 .item .img {
    order: 1;
  }

  .kdwh .mode3 .item .right {
    order: 0;
  }
}

@media screen and (max-width: 680px) {
  .kdwh .mode2 .item .img {
    width: 60%;
  }

  .kdwh .mode3 .item .img {
    width: 60%;
  }
}

@media screen and (max-width: 600px) {
  .kdwh .mode1 .con {
    flex-direction: column;
  }

  .kdwh .mode1 .con .swiper-box {
    position: static;
    width: 100%;
  }

  .kdwh .mode1 .con .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .kdwh .mode1 .more {
    display: none;
  }

  .kdwh .mode1 .more2 {
    display: flex;
    margin-top: 3rem;
  }

  .kdwh .mode1 .con .item-title {
    margin-bottom: 3rem;
  }
}

@media screen and (max-width: 480px) {
  .kdwh .mode2 .item .img {
    width: 95%;
  }

  .kdwh .mode3 .item .img {
    width: 95%;
  }
}

/* 通知公告 */
.tzgg {
  padding-top: 5rem;
}

.tzgg .item {
  margin-bottom: 2rem;
}

.tzgg .item:last-child {
  margin-bottom: 0;
}

.tzgg .item a {
  padding: 2.4rem 3rem;
  display: flex;
  align-items: center;
  background: url('../images/tzgg_item_bg.png') no-repeat center/100% 100%;
  transition: all 0.3s ease-in-out;
}

.tzgg .item a:hover {
  transform: translateX(15px);
  background: url('../images/tzgg_item_active_bg.png') no-repeat center/100% 100%;
}

.tzgg .item a .text {
  padding-left: 3rem;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  color: #333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  word-break: break-all;
  transition: all 0.3s ease-in-out;
}

.tzgg .item a:hover .text {
  color: #fff;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.tzgg .item a .date {
  margin-right: 3rem;
  flex-shrink: 0;
  color: rgba(7, 80, 86, 1);
}

.tzgg .item a:hover .date {
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.tzgg .item a .date .day {
  display: block;
  font-family: 'HarmonyB';
  margin-bottom: 4px;
}

.tzgg .item a .date .year {
  display: block;
  font-family: 'HarmonyM';
}

@media screen and (max-width: 680px) {
  .tzgg .item a {
    background: rgba(246, 246, 246, 1);
  }

  .tzgg .item a:hover {
    background: #075056;
  }
}

/* 学在康大 */
.xzkd {
  padding: 5rem 0 8rem;
}

.xzkd .top-box {
  display: flex;
  padding: 5rem;
  background: rgba(246, 246, 246, 1);
  margin-bottom: 3rem;
}

.xzkd .top-box .text {
  flex: 1;
  margin-right: 10rem;
  color: #333;
  font-family: 'HarmonyR';
  text-indent: 2em;
  line-height: 2.6rem;
}

.xzkd .top-box .img {
  width: 43%;
}

.xzkd .top-box .img .gp-img {
  padding-bottom: 66.66%;
}

.xzkd .img-list {
  display: flex;
  /* justify-content: space-between; */
  flex-wrap: wrap;
}

.xzkd .img-list li {
  width: 33%;
  box-sizing: border-box;
  padding: 0 1.5rem;
}

.xzkd .img-list .img .gp-img {
  padding-bottom: 66.66%;
}

@media screen and (max-width: 996px) {
  .xzkd .top-box {
    flex-direction: column;
  }

  .xzkd .top-box .text {
    line-height: 1.5;
    margin-right: 0;
  }

  .xzkd .top-box .img {
    width: 100%;
    margin-top: 2rem;
  }
}

@media screen and (max-width: 680px) {
  .xzkd .img-list li {
    width: 50%;
    margin-bottom: 3rem;
  }
}

@media screen and (max-width: 480px) {
  .xzkd .img-list li {
    width: 100%;
    padding: 0;
  }
}

/* 学校章程 */
.xxzc {
  padding: 5rem 0 8rem;
  font-family: 'HarmonyR';
}

.xxzc .title {
  text-align: center;
  font-family: 'HarmonyB';
  margin-bottom: 2rem;
}

.xxzc .article-content-text {
  text-indent: 2em;
}

.xxzc .article-title {
  margin-top: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  font-family: 'HarmonyB';
}

/* 机构设置 */
.jgsz {
  padding: 5rem 0 8rem;
}

.jgsz .item {
  margin-bottom: 5rem;
}

.jgsz .item:last-child {
  margin-bottom: 0rem;
}

.jgsz .item .title {
  padding: 3rem;
  margin-bottom: 3rem;
  border-radius: 0px 5rem 5rem 0px;
  background: url('../images/jgsz_title_bg.png') no-repeat center top/cover,
    rgba(7, 80, 86, 1);
}

.jgsz .item .title .text {
  display: block;
  align-items: center;
  font-family: 'HarmonyB';
  color: #fff;
  padding-left: 1rem;
  border-left: 4px solid rgba(255, 105, 0, 1);
}

.jgsz .item .item-list {
  display: flex;
  /* justify-content: space-between; */
  flex-wrap: wrap;
}

.jgsz .item .item-list li {
  width: 20%;
  box-sizing: border-box;
  padding: 0 1.5rem;
  margin-bottom: 3rem;
}

.jgsz .item .item-list li a {
  position: relative;
  display: block;
  font-family: 'HarmonyM';
  color: #333;
  width: 100%;
  text-align: center;
  padding: 3rem 0;
  border-radius: 0px 5rem 5rem 0px;
  background: rgba(246, 246, 246, 1);
  transition: all 0.3s ease-in-out;
}

.jgsz .item .item-list li a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
  width: 0px;
  height: 90%;
  background: rgba(255, 105, 0, 1);
  transition: all 0.3s ease-in-out;
}

.jgsz .item .item-list li a:hover {
  background: url('../images/jgsz_item_bg.png') no-repeat 95% bottom,
    rgba(7, 80, 86, 1);
  color: #fff;
}

.jgsz .item .item-list li a:hover::after {
  width: 4px;
}

@media screen and (max-width: 996px) {
  .jgsz .item .item-list li {
    width: 25%;
  }
}

@media screen and (max-width: 680px) {
  .jgsz .item .item-list li {
    width: 33%;
  }
}

@media screen and (max-width: 420px) {
  .jgsz .item .item-list li {
    width: 50%;
  }
}

@media screen and (max-width: 300px) {
  .jgsz .item .item-list li {
    width: 100%;
    padding: 0;
  }
}

/* 康大影像 */
.kdyx {
  padding: 5rem 0 8rem;
}

.kdyx ul {
  display: flex;
  /* justify-content: space-between; */
  flex-wrap: wrap;
}

.kdyx .item {
  width: 50%;
  box-sizing: border-box;
  padding: 0 2.5rem;
}

.kdyx .item a {
  position: relative;
  display: block;
}

.kdyx .item a .img {
  width: 100%;
  position: relative;
}

.kdyx .item a .img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.kdyx .item a .title {
  display: block;
  color: #333;
  padding: 2rem 0;
  font-family: 'HarmonyM';
}

.kdyx .item a .play-but {
  display: block;
  width: 10rem;
  height: 10rem;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.8);
}

.kdyx .item a .play-but::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6rem;
  height: 6rem;
  background: url('../images/move_icon2.png') no-repeat center/100% 100%;
}

.kdyx .item a:hover .play-but::after {
  animation: rotateDigitalSchool 5s linear infinite;
}

/* 定义更平滑的旋转动画 */
@keyframes rotateDigitalSchool {
  0% {
    transform: translate(-50%, -50%) rotate(-40deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(320deg);
  }
}

@media screen and (max-width: 680px) {
  .kdyx .item {
    width: 100%;
    padding: 0;
    margin-bottom: 5rem;
  }
}

/* 文章页 */
.article-content {
  padding: 5rem 0 8rem;
}

.article-content .article-title {
  color: #333;
  font-family: 'HarmonyB';
  text-align: center;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.article-content .article-title .time {
  color: rgba(153, 153, 153, 1);
  font-family: 'HarmonyR';
  margin-top: 2.3rem;
  margin-bottom: 3rem;
}

.article-content .article-content-text {
  text-indent: 2em;
  font-family: 'HarmonyR';
  line-height: 2.6rem;
}

.article-content .article-content-text .title {
  font-family: 'HarmonyB';
  text-indent: 0em;
}

.article-content .article-content-text .article-img {
  width: 45%;
  margin: 3rem auto;
}

.article-content .article-content-text .article-img .gp-img {
  padding-bottom: 60.45%;
}

.article-content .link-list {
  padding: 3rem;
  margin-top: 5rem;
  background: rgba(246, 246, 246, 1);
}

.article-content .link-list .title {
  color: rgba(7, 80, 86, 1);
  font-weight: 700;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.article-content .link-list .title span {
  padding-left: 1rem;
  border-left: 4px solid rgba(7, 80, 86, 1);
}

.article-content .link-list .item {
  margin-bottom: 1rem;
}

.article-content .link-list .item:last-child {
  margin-bottom: 0;
}

.article-content .link-list .item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  background: rgba(255, 255, 255, 1);
  color: #333;
  transition: all 0.3s ease-in-out;
}

.article-content .link-list .item a .arrow {
  width: 1rem;
  height: 1rem;
  border-top: 2px solid #075056;
  border-right: 2px solid #075056;
  transform: rotate(45deg);
  margin-left: 1rem;
  flex-shrink: 0;
}

.article-content .link-list .item a:hover {
  transform: translateX(15px);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 680px) {
  .article-content .article-content-text .article-img {
    width: 80%;
  }
}

@media screen and (max-width: 480px) {
  .article-content .article-content-text .article-img {
    width: 100%;
  }
}

/* 师资风采 */
.szfc {
  padding: 5rem 0 0rem;
}

.szfc .list {
  display: flex;
  /* justify-content: space-between; */
  flex-wrap: wrap;
}

.szfc .list .item {
  width: 20%;
  box-sizing: border-box;
  padding: 0 1.5rem;
  margin-bottom: 3rem;
}

.szfc .list .item a {
  display: block;
}

.szfc .list .item .img {
  width: 100%;
}

.szfc .list .item .img .gp-img {
  padding-bottom: 133.33%;
}

.szfc .list .item a .name {
  display: block;
  color: #333;
  font-weight: 700;
  padding: 2rem 3rem;
  background: url('../images/szfc_item_bg.png') no-repeat center/100% 100%;
  transition: all 0.3s ease-in-out;
}

.szfc .list .item a:hover .name {
  background: url('../images/szfc_item_active_bg.png') no-repeat center/100% 100%;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .szfc .list .item {
    width: 25%;
  }
}

@media screen and (max-width: 680px) {
  .szfc .list .item {
    width: 33%;
  }
}

@media screen and (max-width: 480px) {
  .szfc .list .item {
    width: 50%;
  }
}

@media screen and (max-width: 340px) {
  .szfc .list .item {
    width: 100%;
    padding: 0;
  }
}

/* 师资风采详情 */
.szfc-info {
  padding: 5rem 0 8rem;
}

.szfc-info .gp-container {
  display: flex;
}

.szfc-info .img {
  width: 18.5%;
}

.szfc-info .img .gp-img {
  padding-bottom: 133.33%;
}

.szfc-info .info {
  flex: 1;
  padding-top: 3rem;
}

.szfc-info .info .name {
  display: block;
  color: #fff;
  font-weight: 700;
  padding: 3rem 5rem;
  max-width: 30rem;
  margin-bottom: 3rem;
  background: rgba(7, 80, 86, 1);
}

.szfc-info .info .info-text {
  padding-left: 5rem;
  color: #333;
}

.szfc-info .info .info-text .zw {
  display: block;
  margin-bottom: 3rem;
}

.szfc-info .info .info-text .text {
  line-height: 3rem;
  text-indent: 2em;
}

@media screen and (max-width: 996px) {
  .szfc-info .info .info-text .text {
    line-height: 1.5;
  }
}

@media screen and (max-width: 768px) {
  .szfc-info .gp-container {
    flex-direction: column;
  }

  .szfc-info .img {
    width: 25.5%;
    margin: 0 auto;
    margin-bottom: 3rem;
  }

  .szfc-info .info .info-text {
    padding-left: 0rem;
    color: #333;
  }
}

@media screen and (max-width: 680px) {
  .szfc-info .img {
    width: 50%;
  }
}
