#main .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
#main .head .title {
  color: var(--main-theme-light-color);
}
#main .head .title h2 {
  font-size: 1.875rem;
  font-weight: bold;
  padding-left: 20px;
  position: relative;
}
#main .head .title h2::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 10px;
  height: 9px;
  background-color: var(--main-subTheme-color);
}
#main .head .title h2::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  width: 10px;
  height: 17px;
  background-color: var(--main-theme-color);
}
#main .head .title span {
  margin-bottom: 2px;
  font-size: 1rem;
}
#main .head .title span:nth-of-type(1) {
  margin-left: 5px;
  margin-right: 5px;
}
#main .head .view-more a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #666;
}



#main .head .view-more a img {
  width: 8px;
  transition:all 0.5s;
}

#main .head .view-more a:hover img {transform:translateX(5px);}

#main #index-banner .index-banner .swiper-pagination-bullet {
  background-color: #fff;
  opacity: 1;
  width: 12px;
  height: 12px;
  transition: all 0.25s linear;
  -webkit-transition: all 0.25s linear;
  -moz-transition: all 0.25s linear;
  -ms-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
}
#main #index-banner .index-banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--main-theme-light-color);
  width: 50px;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}
#main #index-banner .index-banner .swiper-slide .swiper-container {
  position: relative;
}
#main #index-banner .index-banner .swiper-slide .swiper-container .banner-content {
  position: absolute;
  inset: 0;
}
#main #index-banner .index-banner .swiper-slide .swiper-container .banner-content .container {
  position: relative;
  height: 100%;
}
#main #index-banner .index-banner .swiper-slide .swiper-container .banner-content .content-container {
  position: absolute;
  transform: translateY(-50%);
  left: 210px;
  top: 50%;
  padding: 38px 15px;
  background-color: rgba(12, 135, 199, 0.25);
}

#main #index-banner .index-banner .swiper-slide .swiper-container .banner-content .content-container img {
    -webkit-transition: all 1s linear;
    transform: scale(0);
}

#main #index-banner .index-banner .swiper-slide-active .swiper-container .banner-content .content-container img {
    transform: scale(1);
}

@media (max-width: 1199.98px) {
  #main #index-banner .index-banner .swiper-slide .swiper-container .banner-content .content-container {
    display: none;
  }
}
@media (min-width: 1200px) {
  #main #index-banner .index-banner .swiper-slide .swiper-container .banner-content .content-container {
    transform: scale(0.75) translateY(-50%);
    -webkit-transform: scale(0.75) translateY(-50%);
    -moz-transform: scale(0.75) translateY(-50%);
    -ms-transform: scale(0.75) translateY(-50%);
    -o-transform: scale(0.75) translateY(-50%);
  }
}
@media (min-width: 1330px) {
  #main #index-banner .index-banner .swiper-slide .swiper-container .banner-content .content-container {
    transform: scale(0.85) translateY(-50%);
    -webkit-transform: scale(0.85) translateY(-50%);
    -moz-transform: scale(0.85) translateY(-50%);
    -ms-transform: scale(0.85) translateY(-50%);
    -o-transform: scale(0.85) translateY(-50%);
  }
}
@media (min-width: 1560px) {
  #main #index-banner .index-banner .swiper-slide .swiper-container .banner-content .content-container {
    transform: scale(1) translateY(-50%);
    -webkit-transform: scale(1) translateY(-50%);
    -moz-transform: scale(1) translateY(-50%);
    -ms-transform: scale(1) translateY(-50%);
    -o-transform: scale(1) translateY(-50%);
  }
}
#main #index-banner .index-banner .swiper-slide .swiper-container .banner-content .content-container::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  width: 0;
  height: 0;
  border-top: 2px solid rgba(12, 135, 199, 0.5);
  border-left: 2px solid rgba(12, 135, 199, 0.5);
  transition: all 1s linear;
  -webkit-transition: all 1s linear;
  -moz-transition: all 1s linear;
  -ms-transition: all 1s linear;
  -o-transition: all 1s linear;
}
#main #index-banner .index-banner .swiper-slide .swiper-container .banner-content .content-container::after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 0;
  height: 0;
  border-bottom: 2px solid rgb(12, 135, 199);
  border-right: 2px solid rgb(12, 135, 199);
  transition: all 1s linear;
  -webkit-transition: all 1s linear;
  -moz-transition: all 1s linear;
  -ms-transition: all 1s linear;
  -o-transition: all 1s linear;
}
#main #index-banner .index-banner .swiper-slide .swiper-container .banner-content .content-container span {
  position: absolute;
  background-color: rgb(12, 135, 199);
  transition: all 1s linear;
  -webkit-transition: all 1s linear;
  -moz-transition: all 1s linear;
  -ms-transition: all 1s linear;
  -o-transition: all 1s linear;
}
#main #index-banner .index-banner .swiper-slide .swiper-container .banner-content .content-container span:nth-of-type(1) {
  top: 60%;
  left: -15px;
  width: 0;
  height: 3px;
  transform: rotate3d(1, 1, 1, 190deg);
  transform-origin: left;
}
#main #index-banner .index-banner .swiper-slide .swiper-container .banner-content .content-container span:nth-of-type(2) {
  top: 70%;
  left: -10px;
  width: 0;
  height: 3px;
  transform: rotate3d(1, 1, 1, 190deg);
  transform-origin: left;
}
#main #index-banner .index-banner .swiper-slide .swiper-container .banner-content .content-container span:nth-of-type(3) {
  top: 92%;
  left: -20px;
  width: 0;
  height: 3px;
  transform: rotate3d(1, 1, 1, 190deg);
  transform-origin: left;
}
#main #index-banner .index-banner .swiper-slide .swiper-container .banner-content .content-container span:nth-of-type(4) {
  top: -15%;
  left: 95%;
  width: 0;
  height: 3px;
  transform: rotate3d(1, 1, 1, 190deg);
  transform-origin: left;
}
#main #index-banner .index-banner .swiper-slide .swiper-container .banner-content .content-container span:nth-of-type(5) {
  top: -11%;
  left: 145%;
  width: 0;
  height: 3px;
  transform: rotate3d(1, 1, 1, 190deg);
  transform-origin: left;
}
#main #index-banner .index-banner .swiper-slide.swiper-slide-active .content-container::before {
  width: 45% !important;
  height: 60% !important;
}
#main #index-banner .index-banner .swiper-slide.swiper-slide-active .content-container::after {
  width: 45% !important;
  height: 60% !important;
}
#main #index-banner .index-banner .swiper-slide.swiper-slide-active .content-container span:nth-of-type(1) {
  width: 36px !important;
}
#main #index-banner .index-banner .swiper-slide.swiper-slide-active .content-container span:nth-of-type(2) {
  width: 150px !important;
}
#main #index-banner .index-banner .swiper-slide.swiper-slide-active .content-container span:nth-of-type(3) {
  width: 36px !important;
}
#main #index-banner .index-banner .swiper-slide.swiper-slide-active .content-container span:nth-of-type(4) {
  width: 36px !important;
}
#main #index-banner .index-banner .swiper-slide.swiper-slide-active .content-container span:nth-of-type(5) {
  width: 190px !important;
}
#main #index-news {
  background-color: #ecf1f3;
}
#main #index-news .index-news .article-list-thumb_card .thumb {
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.25);
margin-bottom:30px;
}
#main #index-news .index-news .article-list-thumb_card .thumb:hover .thumb-image img {
  transform: scale(1.125);
  -webkit-transform: scale(1.125);
  -moz-transform: scale(1.125);
  -ms-transform: scale(1.125);
  -o-transform: scale(1.125);
}
#main #index-news .index-news .article-list-thumb_card .thumb:hover .more img {
  transform: translateX(5px);
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
  -ms-transform: translateX(5px);
  -o-transform: translateX(5px);
}
#main #index-news .index-news .article-list-thumb_card .thumb .thumb-image {
  overflow: hidden;
  border-top: 4px solid var(--main-theme-color);
}
#main #index-news .index-news .article-list-thumb_card .thumb .thumb-image a {
    display: block;
    width: 100%;
    padding-top: 68.8%;
    height: 0;
    position: relative;
}
#main #index-news .index-news .article-list-thumb_card .thumb .thumb-image a img {
  width: 100%;
  height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 1s;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
}
#main #index-news .index-news .article-list-thumb_card .thumb .thumb-card .card {
  border: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  padding: 0 20px;
}
#main #index-news .index-news .article-list-thumb_card .thumb .thumb-card .card .date {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  background-color: var(--main-theme-color);
  padding: 5px 7px 10px;
  margin: -35px 0 16px 0;
}
#main #index-news .index-news .article-list-thumb_card .thumb .thumb-card .card .date .day {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}
#main #index-news .index-news .article-list-thumb_card .thumb .thumb-card .card .date .year-month {
  font-size: 0.75rem;
  color: #fff;
}
#main #index-news .index-news .article-list-thumb_card .thumb .thumb-card .card .title {
  margin-bottom: 15px;
}
#main #index-news .index-news .article-list-thumb_card .thumb .thumb-card .card .title h5 {
  font-size: 1rem;
  min-height:58px;
}
#main #index-news .index-news .article-list-thumb_card .thumb .thumb-card .card .title h5 a {
  line-height: 1.8;
}
#main #index-news .index-news .article-list-thumb_card .thumb .thumb-card .card .more {
  margin-bottom: 10px;
}
#main #index-news .index-news .article-list-thumb_card .thumb .thumb-card .card .more a {
  font-size: 0.875rem;
  color: var(--main-subTheme-color);
  display: flex;
  align-items: center;
}
#main #index-news .index-news .article-list-thumb_card .thumb .thumb-card .card .more a img {
  margin-left: 5px;
  transition: all 1s;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
}
#main #index-news .index-news .article-list-card {
  background-color: #fff;
  box-shadow: -4px -4px 8px rgba(0, 0, 0, 0.125), 4px 4px 8px rgba(0, 0, 0, 0.125);
  padding: 20px 0;
}
#main #index-news .index-news .article-list-card .thumb:hover .thumb-image img {
  transform: scale(1.125);
  -webkit-transform: scale(1.125);
  -moz-transform: scale(1.125);
  -ms-transform: scale(1.125);
  -o-transform: scale(1.125);
}
#main #index-news .index-news .article-list-card .thumb:hover .more img {
  transform: translateX(5px);
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
  -ms-transform: translateX(5px);
  -o-transform: translateX(5px);
}
#main #index-news .index-news .article-list-card .thumb .thumb-card .card {
  display: flex;
  flex-direction: row;
  align-items: center;
  border: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  padding: 0 20px;
}
#main #index-news .index-news .article-list-card .thumb .thumb-card .card .date {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
  background-color: var(--main-theme-color);
  padding: 5px 10px 10px;
  margin-right: 0.625rem;
}
#main #index-news .index-news .article-list-card .thumb .thumb-card .card .date .day {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}
#main #index-news .index-news .article-list-card .thumb .thumb-card .card .date .year-month {
  font-size: 0.75rem;
  color: #fff;
  white-space: nowrap;
}

#main #index-news .index-news .article-list-card .thumb .thumb-card .card .title {flex:1;}

#main #index-news .index-news .article-list-card .thumb .thumb-card .card .title h5 {
  font-size: 1rem;
  min-height:52px;
}
#main #index-news .index-news .article-list-card .thumb .thumb-card .card .title h5 a {
  line-height: 1.6;
}
#main #index-news .index-news .article-list-card .thumb .thumb-card .card .more a {
  font-size: 0.875rem;
  color: var(--main-subTheme-color);
  display: flex;
  align-items: center;
  justify-content: end;
}
#main #index-news .index-news .article-list-card .thumb .thumb-card .card .more a img {
  margin-left: 5px;
  transition: all 1s;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
}
#main #index-notice-teacher {
  background: url(../images/index_bg_545.png) no-repeat;
  background-size: cover;
  background-position: center;
}
#main #index-notice-teacher .index-notice {
  margin-bottom: 2.1875rem;
}
#main #index-notice-teacher .index-notice .thumb {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: -4px -4px 8px rgba(0, 0, 0, 0.125), 4px 4px 8px rgba(0, 0, 0, 0.125);
  transition:all 0.5s;
}
#main #index-notice-teacher .index-notice .thumb:hover {
transform:translateY(-15px);
}

#main #index-notice-teacher .index-notice .thumb .notice-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  margin-bottom: 0.9375rem;
  border-bottom: 1px solid #dbe7eb;
}
#main #index-notice-teacher .index-notice .thumb .notice-head .date {
  padding: 6px 12px;
  background-color: var(--main-theme-light-color);
  border-radius: 7px 0 7px 0;
  -webkit-border-radius: 7px 0 7px 0;
  -moz-border-radius: 7px 0 7px 0;
  -ms-border-radius: 7px 0 7px 0;
  -o-border-radius: 7px 0 7px 0;
}
#main #index-notice-teacher .index-notice .thumb .notice-head .date span {
  font-size: 0.875rem;
  color: #fff;
}
#main #index-notice-teacher .index-notice .thumb .notice-head .more-view a {
  font-size: 0.875rem;
}
#main #index-notice-teacher .index-notice .thumb .notice-body {
  margin-bottom: 5px;
}
#main #index-notice-teacher .index-notice .thumb .notice-body h5 {
  font-size: 1rem;
  line-height:1.6;
  min-height:53px;
}
#main #index-notice-teacher .index-teacher .thumb {
  background-color: #fff;
  box-shadow: -4px -4px 8px rgba(0, 0, 0, 0.125), 4px 4px 8px rgba(0, 0, 0, 0.125);
}
#main #index-notice-teacher .index-teacher .thumb:hover .image img {
  transform: scale(1.125);
  -webkit-transform: scale(1.125);
  -moz-transform: scale(1.125);
  -ms-transform: scale(1.125);
  -o-transform: scale(1.125);
}
#main #index-notice-teacher .index-teacher .thumb .image a {
  display: inline-block;
  width: 100%;
  height: 100%;
  overflow: hidden;
    padding-top: 68.8%;
    height: 0;
    position: relative;
}
#main #index-notice-teacher .index-teacher .thumb .image a img {
  width: 100%;
  height: 100%;
  transition: all 1s;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}
#main #index-notice-teacher .index-teacher .thumb .content {
  padding: 20px;
}
#main #index-notice-teacher .index-teacher .thumb .content .title h5 {
  font-size: 1rem;
  font-weight: bold;
}
#main #index-notice-teacher .index-teacher .thumb .content .date {
  display: flex;
  align-items: center;
  margin: 20px 0;
}
#main #index-notice-teacher .index-teacher .thumb .content .date span {
  font-size: 0.875rem;
  color: var(--main-subTheme-color);
  margin-left: 8px;
}
#main #index-notice-teacher .index-teacher .thumb .content .desc {
  margin-bottom: 2rem;
}
#main #index-notice-teacher .index-teacher .thumb .content .desc p {
  font-size: 0.875rem;
  color: #858a8c;
}
#main #index-notice-teacher .index-teacher .thumb .content .view-detail a {
  display: flex;
  margin: 0 auto;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid var(--main-theme-color);
}
#main #index-notice-teacher .index-teacher .thumb .content .view-detail a span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#main #index-notice-teacher .index-teacher .thumb .content .view-detail a span:nth-of-type(1) {
  padding: 12px 24px;
  background-color: var(--main-theme-light-color);
  color: #fff;
  display: flex;
  align-items: center;
  position:relative;
  z-index:1;
}

#main #index-notice-teacher .index-teacher .thumb .content .view-detail a:hover {
border-color:var(--main-subTheme-color);
}

#main #index-notice-teacher .index-teacher .thumb .content .view-detail a:hover  span:nth-of-type(1)::before{
width:100%;
}

#main #index-notice-teacher .index-teacher .thumb .content .view-detail a span:nth-of-type(1)::before {
content:"";
position:absolute;
left:0;
top:0;
width:0;
height:100%;
background-color:var(--main-subTheme-color);
    z-index: -1;
    transition: all 0.5s;
}

#main #index-notice-teacher .index-teacher .thumb .content .view-detail a span:nth-of-type(1) .icon-more {
  margin-left: 5px;
}
#main #index-notice-teacher .index-teacher .thumb .content .view-detail a span:nth-of-type(2) {
  padding: 10px 15px;
}
#main #index-tool {
  background-color: #ecf1f3;
}
#main #index-tool .tools-list-card .thumb {
  box-shadow: -4px -4px 8px rgba(0, 0, 0, 0.125), 4px 4px 8px rgba(0, 0, 0, 0.125);
  background-color: #fff;
}
#main #index-tool .tools-list-card .thumb a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.625rem 0;
}
#main #index-tool .tools-list-card .thumb a .icon-container {
  margin-bottom: 1.75rem;
  display:flex;
    justify-content: center;
    width: 80px;
    height: 70px;
   overflow:hidden;
}

#main #index-tool .tools-list-card .thumb a .icon-container img {
    filter: drop-shadow(0px -80px var(--main-theme-color));

    transition: all 0.5s;
}

#main #index-tool .tools-list-card .thumb:hover img {
    transform: translateY(80px);
}

#main #index-tool .tools-list-card .thumb a .icon-container .icon-image {
  display: block;
  width: 78px;
  height: 68px;
}
#main #index-tool .tools-list-card .thumb a .icon-container .icon-image path {
  fill: #909090;
}
#main #index-tool .tools-list-card .thumb a .title h5 {
  font-size: 1rem;
}
#main #index-tool .tools-list-card .thumb a:hover path {
  fill: var(--main-theme-light-color) !important;
}/*# sourceMappingURL=index.css.map */