body,
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  margin: 0 auto;
  position: relative;
  background: #ffffff;
  overflow-x: hidden;
  font-family: 'Microsoft YaHei', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p {
  margin: 0;
  padding: 0;
}

ul,
li {
  list-style: none;
}

img {
  border: 0;
  max-width: 100%;
}

.c-b,
.clear {
  clear: both;
}

a {
  text-decoration: none;
  color: #404040;
}

.hide {
  display: none !important;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

/* 头部导航 */
.head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: fixed;
  z-index: 10;
}

.head.act {
  background: #00478f;
  opacity: 0.91;

  /* background-image: url(/skins/cn/images/bottom.png);
    background-size: cover;
  background-position: center center; */
}

.menu-toggle {
  display: none;
}

.act {
  color: #1f77b2 !important;
  cursor: pointer;
}

.switchMenu {
  cursor: pointer;
}

.switchBox {
  display: none;
}

.head_logo {
  width: 26%;
  padding: 10px 0 10px 3.5%;
  /* background-color: #ffffff; */
}

.head_logo img {
  width: 100;
  height: auto;
}

.head_nav_box {
  display: flex;
  align-items: center;
  justify-content: end;
  width: 70%;
  padding-right: 5%;
}

.head_nav {
  width: 90%;
  padding-right: 3%;
}

.head_nav ul {
  display: flex;
  justify-content: space-between;
}

.head_nav ul li {
  display: flex;
  width: 12.5%;
  justify-content: center;
  position: relative;
  /* 为了使二级菜单定位 */
}

/* 一级菜单链接样式 */
.head_nav li a {
  font-size: 16px;
  letter-spacing: 1px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.head_nav li a:hover {
  /* color: #4bc0fa; */
}

/* 隐藏二级菜单 */
.head_nav ul li ul {
  display: none;
  position: absolute;
  top: 110%;
  /* 增加与一级菜单的间距 */
  left: 0;
  background: linear-gradient(
    to bottom,
    rgba(31, 119, 178, 0.9),
    rgba(31, 119, 178, 0.8)
  );
  /* 渐变背景色 */
  width: 100%;
  padding: 10px 0;
  border-radius: 8px;
  /* 圆角 */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px) scale(1);
  /* 保持原始尺寸，微微提升 */
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  /* 设置下左和下右为圆角 */
  /* 更精致的阴影效果 */
  z-index: 9;
  /* 确保二级菜单在其他元素之上 */
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

/* 鼠标悬停一级菜单时显示二级菜单 */
.head_nav ul li:hover > ul {
  display: block;
  opacity: 1;
  /* 添加渐显效果 */
}

/* 二级菜单项的样式 */
.head_nav ul li ul li {
  width: 100%;
  text-align: center;
  padding: 10px 0;
}

.head_nav ul li ul li a {
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.head_nav ul li ul li a:hover {
  /* color: #4bc0fa; */
  /* text-decoration: underline; */
  /* 鼠标悬停时加下划线 */
}

/* 右侧特殊项 */
.special_li {
  display: flex;
  align-items: center;
  margin-left: -2%;
}

.special_li a {
  cursor: pointer;
}

.first_special_a {
  margin-right: 20px;
  color: #ffffff;
  cursor: pointer;
}

.special_a i {
  font-size: 15px;
  color: #ffffff;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
}

/* 动画效果（如果需要） */
.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.animate-on-scroll.visible {
  opacity: 1;
}

/* @media screen and (max-width: 768px) {
    .ImageSwiper img {
      width: 50%;
    }

    .head_nav ul li {
      flex-wrap: wrap;
      display: flex;
    }

    .head_nav ul li ul {
      display: none;
      position: sticky;
      padding: 0px;
      background: #0168a8;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 12px rgba(0, 0, 0, 0.06);
      transform: translateY(-2px) scale(1);
      border-bottom-left-radius: 5px;
      border-bottom-right-radius: 5px;
      z-index: 9;
      opacity: 0;
      transition: opacity 0.3s ease-in-out;
    }

    .head_nav ul li ul li {
      width: 100%;
      text-align: center;
      padding: 0px;
    }

    .head_nav li a:after {
      bottom: 0px;
    }
  } */

/* banner */
.banner {
  max-height: 100vh;
  min-width: 100%;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.banner img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.slide_down {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 10px 0;
}

.slide_down {
  height: 100px;
  text-align: center;
  color: #ffffff;
  font-size: 14px;
}

.banner_swiper {
  width: 100%;
  height: 100%;
}

/* .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
} */

/* .swiper-slide img {
  display: block;
  width: 100%;
  min-height: 100vh;
  height: auto;
  object-fit: cover;
} */

.bannerSwiper .swiper-button-next,
.bannerSwiper .swiper-button-prev {
  color: #ffffff;
}

.bannerSwiper > .swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 18%;
  left: 40%;
  width: 100%;
  font-size: 22px;
  color: #ffffff;
}

/* 校长寄语 */
.message {
  padding: 80px 0;
  background: url(/skins/cn/images/message.png) no-repeat center center;
  background-size: cover;
}

.message_box {
  display: flex;
  justify-content: space-between;
}

.message_box_left {
  width: 56%;
}

.message_box_right {
  width: 38%;
}

.message_name {
  margin-bottom: 52px;
  font-family: NotoSerifSC-Bold;
  width: 30%;
  position: relative;
  font-size: 54px;
  color: #e0eaf6;
  line-height: 1;
}

.message_name > .message_title {
  font-family: NotoSerifSC-Bold;
  z-index: 1;
  font-weight: bold;
  top: 50%;
  left: 0;
  transform: translate(0%, -50%);
  position: absolute;
  font-size: 36px;
  color: #004e9e;
}

.zh_box {
  display: flex;
}

.message_zh {
  margin-bottom: 37px;
  font-size: 18px;
  font-weight: normal;
  font-style: italic;
  font-stretch: normal;
  line-height: 30px;
  letter-spacing: 0px;
  color: #004e9e;
  position: relative;
}

.zh_box_message {
  padding-left: 40px;
}

.zh_box_font {
  position: relative;
}

.message_zh_top {
  position: absolute;
  left: -44px;
  top: -15px;
}

.message_zh_top,
.message_zh_bottom {
  font-family: NotoSerifSC-Regular;
  font-size: 72px;
  color: #0d55a2;
  line-height: 1;
}

.message_zh_bottom {
  position: absolute;
  right: -38px;
  top: 73px;
}

.message_en {
  font-size: 14px;
  font-weight: normal;
  font-style: italic;
  font-stretch: normal;
  line-height: 24px;
  letter-spacing: 0px;
  color: #8ea3b7;
  opacity: 0.8;
}

.signature {
  display: flex;
  justify-content: end;
}

.signature_box {
  display: flex;
  align-items: center;
}

.signature_hand {
  font-size: 18px;
  color: #004e9e;
  font-weight: bold;
  margin-right: 20px;
}

/* news */

.news {
  background: url(/skins/cn/images/news.png) no-repeat center center;
  background-size: cover;
  padding: 80px 0;
}

.news_box_top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  text-align: center;
}

.news_box_top > .message_name {
  margin-top: 0;
  font-size: 80px;
}

.news_box_top > .message_name > .message_title {
  font-size: 36px;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.news_more_a {
  color: #004e9e;
}

.new_box {
  width: 100%;
}

.newbox_text {
  text-align: left;
}

.newbox_img {
  width: 100%;
  max-height: 283px;
  overflow: hidden;
}

.newbox_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newbox_text {
  padding: 30px;
}

.new_box_a:hover .newbox_title {
  color: #2462a8;
}

.newbox_title {
  font-size: 18px;
  font-weight: bold;
}

.newbox_content {
  margin: 50px 0;
  font-size: 16px;
  color: #999999;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.newbox_date {
  color: #004e9e;
}

.newsSwiper .swiper-slide {
  background-color: #ffffff;
}

/* grad */
.grad {
  display: flex;
}

.grad_left {
  width: 57%;
  background: url(/skins/cn/images/gradleft.png) no-repeat center center;
  background-size: cover;

  padding: 100px 0;
  padding-right: 6%;
}

.grad_left_content {
  width: 100%;
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
}

.grad_right {
  width: 43%;
  background: url(/skins/cn/images/gradright.png) no-repeat center center;
  background-size: cover;
  padding: 120px 0;
  padding-left: 4%;
}

.grad_left_box {
  width: calc(1280px * 0.6);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.grad_right_box {
  width: calc(1280px * 0.4);
}

.grad_left_box .grad_left_title {
  font-size: 36px;
  color: #ffffff;
  font-weight: bold;
  margin-top: 30px;
}

.grad_left_box .message_name {
  color: #e1eafc;
  margin: 0;
}

.grad_right_box .message_name {
  color: #3c6fb1;
}

.grad_right_box .message_title {
  color: #ffffff;
}

.grad_left_more a {
  color: #014f9e;
}

.swiper_box {
  width: calc(1280px * 0.6);
  margin-top: 30px;
}

.swiper_content {
  /* width: 100%; */
}

.gradSwiper .swiper-slide {
  width: 30.8%;

  cursor: pointer;
}

.gradSwiper .swiper-slide a {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px dashed #88aed4;
  overflow: hidden;
}

.gradSwiper .swiper-slide a:hover {
  border: 8px solid #0855a7;
  transition: all 0.3s ease;
}

.gradSwiper .swiper-slide a {
  width: 100%;
  max-height: 100%;
}

.gradSwiper .swiper-slide .gradSwiper_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stuName {
  text-align: center;
  font-size: 18px;
  letter-spacing: 2px;
  padding: 15px 0;
}

.stuGrad {
  text-align: center;
  font-size: 16px;
  color: #004e9e;
  letter-spacing: 2px;
}

.gradSwiper_tool {
  width: 100%;
  margin-top: 50px;
  /* position: relative; */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gradSwiper_tool_btn {
  width: 22%;
}

.grad_pagination {
  position: unset;
  width: 78% !important;
  height: 1px !important;
  background-color: #004e9e !important;
}

.swiper-pagination-progressbar {
  background-color: #8a8a8a !important;
}

.tool_btn_left,
.tool_btn_right {
  margin-right: 15px;
  text-align: center;
  line-height: 57px;
  cursor: pointer;
  font-size: 20px;
  color: #6094c9;
  border-radius: 50%;
  width: 57px;
  height: 57px;
  background-color: #ffffff;
  border: solid 1px #0165c9;
  /* opacity: 0.6; */
}

.tool_btn_left:hover {
  color: #ffffff;
  background-color: #014991;
  transition: all 0.3s ease;
}

.tool_btn_right:hover {
  color: #ffffff;
  background-color: #014991;
  transition: all 0.3s ease;
}

.grad_right_text p {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 27px;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.grad_right_text_p {
  margin: 30px 0 15px 0;
}

.grad_right_more {
  margin-top: 80px;
  width: 155px;
  height: 50px;
  border-radius: 25px;
  border: solid 1px #82a9d1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

/* course */
.course {
  position: relative;
}

.coutse_list {
  position: absolute;
  bottom: 20px;
  z-index: 999999;
}

.multiele {
  background: url(/skins/cn/images/course.png) no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.multieleone {
  background: url(/skins/cn/images/course.png) no-repeat center center;
  background-size: cover;
}

.multieletwo {
  background: url(/skins/cn/images/couseimg1.png) no-repeat center center;
  background-size: cover;
}

.multielethree {
  background: url(/skins/cn/images/couseimg2.png) no-repeat center center;
  background-size: cover;
}

.multielefour {
  background: url(/skins/cn/images/couseimg3.png) no-repeat center center;
  background-size: cover;
}

.multielefive {
  background: url(/skins/cn/images/couseimg4.png) no-repeat center center;
  background-size: cover;
}

.multiele .message_name {
  padding: 140px 0;
  color: #ffffff63;
  margin-bottom: 0;
  text-align: center;
}

.multiele .message_title {
  color: #ffffff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.courseSwiper_title {
  font-size: 26px;
  color: #ffffff;
  font-weight: bold;
}

.courseSwiper_intro {
  color: #ffffff;
  padding: 40px 0 80px 0;
}

.multiele .grad_right_more {
  border: 1px solid #a2a5a5;
  margin-top: 0;
  margin-bottom: 250px;
}

.coutse_list {
  width: 100%;
  padding-bottom: 35px;
}

.coutse_list .container {
  display: flex;
  width: 100%;

  /* justify-content: space-between; */
}

.coutse_list_item {
  width: 20%;
  color: #bab9b3;
  padding-top: 20px;
  border-top: 1px solid #bab9b3;
}

.coutse_list_item:hover {
  color: #ffffff;
  font-weight: bold;
  cursor: pointer;
  border-top: 2px solid #ffffff;
}

.couse_center_item {
  text-align: center;
}

.couse_last_item {
  text-align: end;
}

.actt {
  color: #ffffff !important;
  font-weight: bold !important;
  border-top: 2px solid #ffffff !important;
}

.multiele > .container {
  text-align: center;
}

.grad_right_more {
  cursor: pointer;
}

.grad_right_more a {
  color: white;
}

.grad_right_more .fa {
  margin-left: 10px;
  font-size: small !important;
}

/* platform */

.platform .container {
  padding: 100px 0;
  width: 100%;
  justify-content: space-around;
  display: flex;
  /* flex-wrap: nowrap; */
}

.platform_item {
  width: 100px;
  cursor: pointer;
}

.platform_item:hover .platform_name {
  color: #004e9e;
}

.platform_item:hover .platform_item_box {
  background-color: #004e9e;
}

.platform_item:hover .platform_item_box img {
  filter: grayscale(1000%) brightness(1000%);
}

.platform_item_box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px dashed #014e9e;
}

.platform_name {
  text-align: center;
  margin-top: 20px;
}

/* footer */
.footer {
  background: url(/skins/cn/images/bottom.png) no-repeat center center;
  background-size: cover;
}

.footer_address {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 0;
}

/* .footer_address>div{
width: 21%;
} */

.footer_logo {
  width: 21%;
}

.footer_logo img {
  width: 100%;
  height: auto;
}

.footer_second p,
.footer_third p {
  line-height: 43px;
  color: #fff;
  font-size: 13px;
}

.footer_second {
  width: 24%;
}

.footer_third {
  width: 21%;
}

.footer_share {
  width: 17%;
  display: flex;
  justify-content: space-between;
}

.footer_share > div {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #033a72;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px;
}

.footer_share > .footer_share_dy {
  padding: 17px;
}

.footer_share > div > img {
  width: 100%;
}

.footer_copyright {
  text-align: center;
  padding: 10px 0;
  border-top: 1px solid #1761a6;
  color: #afbcd0;
  font-size: 12px;
}

/*  */

.footer_share > div {
  position: relative;
  display: inline-block;
  margin-right: 15px;
  cursor: pointer;
}

.tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  /* 气泡在图标上方 */
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 12px;
  background-color: #ffffff;
  color: #999999;
  font-size: 14px;
  border-radius: 4px;
  min-width: 150px;
  max-width: 300px;
  /* 最大宽度限制 */
  white-space: normal;
  /* 允许文本换行 */
  word-wrap: break-word;
  /* 长单词自动换行 */
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  /* 添加轻微阴影 */
  border: 1px solid #c3dbf1;
}

/* 气泡箭头 */
.tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
}

/* 鼠标悬停时显示气泡 */
.footer_share > div:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

.wx_box {
  display: flex;
  flex-wrap: nowrap;
}

.wx_box > div {
  width: 150px;
  text-align: center;
}

.wx_box > div p {
  margin-top: 5px;
}

/* 关于学校 */
.inside_banner {
  max-height: 100vh;
  min-width: 100%;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.inside_banner_box {
  width: 100%;
  line-height: 0;

  
}

.inside_banner_box img {
  width: 100%;
  height: auto;
}

.navigation {
  position: absolute;
  bottom: 0;
  width: 100%;
      background: linear-gradient(to bottom, #ffffff00 0%, #1f77b285 100%);
    background-size: cover;
    background-repeat: no-repeat;
}

.navigation > .container {
  display: flex;
  justify-content: space-between;
}

.inside_Name {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 21%;
  padding: 26px 0;
  color: #ffffff;
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 2px;
  background: url(/skins/cn/images/inside_Name.png) no-repeat center center;
  background-size: cover;
}

.inside_Nav {
  display: flex;
  align-items: center;
  color: #ffffff;
}

.inside_Nav > i {
  font-size: 18px;
}

.inside_Nav_base {
  padding-left: 10px;
}

.inside_Nav_center {
  padding: 0 10px;
}

.main {
  width: 100%;
  background: url(/skins/cn/images/pubbanner.png) no-repeat center center;
  background-size: cover;
}

.main > .container {
  display: flex;
}

.main_menu {
  width: 21%;
}

.main_content {
  width: 79%;
  /* padding-top: 20px; */
}

.left_nav {
  background-color: #f1f8ff;
  padding: 0 15px;
  padding-bottom: 80px;
  background: url(/skins/cn/images/leftnav.png) no-repeat center center;
  background-size: cover;
}

.left_nav_item {
  padding: 30px 15px;
  border-bottom: 1px solid #d0e7fe;
  cursor: pointer;
}

.left_nav_item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left_nav_item > a > .left_nav_item_icon > i {
  display: none;
}

.left_nav_item:hover .left_nav_item_icon > i {
  display: block;
}

.left_nav_item_icon i {
  color: #004e9e;
}

.left_nav_title {
  font-size: 18px;
  color: #666666;
}

.left_nav_item:hover .left_nav_title {
  color: #333333;
  font-weight: bold;
}

.main_content {
  padding-left: 50px;
}

.main_head {
  font-size: 22px;
  color: #333333;
  padding: 20px 0;
  border-bottom: 1px solid #cae4ff;
}

.main_show {
  padding-top: 10px;
}

/* 学校简介 */

.about_title {
  width: 100%;
  padding: 40px;
  text-align: center;
  font-size: 24px;
  color: #004e9e;
  font-weight: bold;
}

.about_content {
  width: 100%;
}

.about_content p {
  color: #333333;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.about_img {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 60px;
}

.about_img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* 校长团队 */
.principal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.principal_item {
  width: 48%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 35px;
}

.principal_img {
  line-height: 0;
  width: 38%;
}

.principal_img img {
  width: 100%;
  height: 100%;
  /* height: auto; */
  object-fit: cover;
}

.principal_intro {
  width: 55%;
  border-bottom: 1px solid #d4e3ef;
}

.principal_intro > .name_box {
  display: flex;
  align-items: center;
  margin-top: 13px;
  margin-bottom: 23px;
}

.principal_intro > .name_box > .name {
  font-size: 22px;
  font-weight: bold;
  color: #0350a3;
}

.principal_intro > .name_box > .job {
  margin-left: 16px;
  font-size: 15px;
  color: #6a6a6a;
  font-weight: bold;
}

.principal_intro > .intro {
  font-size: 14px;
  line-height: 26px;
  color: #666666;
}

.openDialog {
  display: flex;
  justify-content: end;
  cursor: pointer;
}

.openDialog_icon {
  font-size: 24px;
  color: #145da9;
}

/* 弹窗样式 */
.dialog_decoration {
  width: 100%;
  height: 9px;
  background-color: #004c99;
}

.dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.dialog-overlay.active {
  opacity: 1;
  visibility: visible;
}

.dialog-content {
  background-color: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  max-width: 900px;
  width: 90%;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.dialog-overlay.active .dialog-content {
  transform: translateY(0);
}

.dialog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 10px;
}

.dialog-close {
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  color: #175ea9;
  transition: color 0.2s ease;
}

.dialog-close:hover {
  color: #333;
}

.dialog_body {
  display: flex;
  justify-content: space-between;
  padding: 0 50px 40px 50px;
}

.dialog_img {
  width: 25%;
}

.dialog_img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.dialog_content {
  width: 71%;
}

.dialog_content > .name_box {
  display: flex;
  align-items: center;
  margin-top: 13px;
  padding-bottom: 13px;
  border-bottom: 1px solid #c8e1fc;
}

.dialog_content > .name_box > .name {
  font-size: 22px;
  font-weight: bold;
  color: #0350a3;
}

.dialog_content > .name_box > .job {
  margin-left: 16px;
  font-size: 15px;
  color: #6a6a6a;
  font-weight: bold;
}

.dialog_content > .intro {
  padding-top: 13px;
  font-size: 14px;
  line-height: 26px;
  color: #666666;
}

/* 弹窗样式 */

/* 课程设置 */
.courseSet {
  width: 100%;
  padding-bottom: 100px;
}

.courseSet_intro {
  width: 100%;
  font-size: 18px;
  background-color: #f0f7ff;
  padding: 25px;
  letter-spacing: 2px;
  color: #727272;
}

.courseSet_content_title {
  font-size: 22px;
  letter-spacing: 1px;
  color: #004e9f;
  padding: 30px 0;
  font-weight: bold;
}

.courseSet_content_text {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 1px;
  color: #666666;
  margin-bottom: 10px;
}

.courseSet_content_text p {
  margin-bottom: 10px;
}

.achievement_intro p {
  color: #666666;
  letter-spacing: 1px;
}

.achievement_intro p {
  margin-bottom: 10px;
}

.bold_p {
  font-weight: bold;
  font-size: 17px;
  color: #333333 !important;
}

.achievement_statistics {
  margin-top: 50px;
  width: 100%;
  position: relative;
}

.statistics_content {
  position: relative;
  padding: 70px 70px 0 70px;
  z-index: 1;
}

.statistics_img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  /* z-index: 0; */
}

.statistics_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.achievement {
  padding-bottom: 60px;
}

.statistics_content .top {
  font-weight: bold;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 1px;
  color: #ffffff;
}

.statistics_content .bottom {
  display: flex;
  flex-wrap: wrap;
  margin-top: 70px;
}

.statistics_item {
  width: 33%;
  margin-bottom: 60px;
  padding-left: 10px;
  /* border-left: 1px solid #dddddd; */
}

.statistics_item_num {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 17px;
  color: #ffffff;
}

.statistics_item_name {
  width: 80%;
  color: #ffffff;
}

.library {
  padding-bottom: 70px;
}

.library_top {
  display: flex;
  justify-content: space-between;
}

.libraryTop_box {
  width: 48%;
}

.libraryTop_box .title {
  font-size: 24px;
  color: #00478f;
  font-weight: bold;
  padding-bottom: 20px;
}

.libraryTop_box .intro {
  color: #666666;
  letter-spacing: 1px;
  padding-bottom: 20px;
}

.libraryTop_img {
  width: 48%;
}

.libraryTop_img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.library_center {
  margin-top: 40px;
}

.library_center_title {
  font-size: 24px;
  color: #00478f;
  font-weight: bold;
  padding-bottom: 20px;
}

.library_center_title {
}

.library_center_img {
  background: url(/skins/cn/images/library_center.png) no-repeat center center;
  background-size: cover;
  padding: 60px;
  margin-top: 50px;
}

.library_center_intro p {
  color: #666666;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.library_center_img_title {
  font-size: 20px;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 30px;
}

.library_center_img_intro p {
  margin-bottom: 10px;
  color: #ffffff;
}

.library_bottom {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}

.library_bottom_left {
  width: 30%;
  background-color: palegoldenrod;
}

.library_bottom_left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.library_bottom_right {
  width: 64%;
  padding: 58px 0;
}

.library_bottom_right_title {
  font-size: 24px;
  color: #00478f;
  font-weight: bold;
  padding-bottom: 20px;
}

.library_bottom_right_intro {
  letter-spacing: 1px;
  color: #666666;
}

.library_bottom_right_intro p {
  margin-bottom: 10px;
}

/* 师资团队 */

.teacher {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.teacher_item {
  width: 48%;
  position: relative;
  margin-bottom: 50px;
  cursor: pointer;
}

.teacher_img {
  width: 100%;
  max-height: 295px;
  line-height: 0;
}

.teacher_img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.teacher_occupy {
  width: 100%;
  height: 50px;
}

.teacher_title{
  position: absolute;
  bottom: 0;
  width: 80%;
  padding: 25px;
  /* background-color: #08509a; */
  background: url(/skins/cn/images/teacher_title.png) no-repeat center center;
  background-size: cover;

}

.teacher_item_name{
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: bold;
}

.teacher_item_intro{
  color: #ffffff;
}

/*page*/
.Pager {
  /* padding: 50px 20px; */
  padding: 50px 0;
}

.Pager:after {
  content: "";
  clear: both;
  display: block;
}

.Pager a,
.Pager span {
  display: inline-block;
  border: 1px solid #ddd;
  /* border-radius: 3px; */
  margin: 3px 3px;
  line-height: 40px;
  color: #333;
  text-align: center;
}

.Pager a {
  width: 40px;
  height: 40px;
  /* border-radius: 20px; */
}

.Pager span {
  padding: 0 10px;
}

.Pager a.fa {
  padding: 0 10px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  /* border-radius: 20px; */
}

.Pager a.act {
  background: #e8ecf8;
  color: #0f3e96;
  font-weight: bold;
}

.Pager a:hover {
  color: #0f3e96;
  background: #e8ecf7;
}

.Pager a.act:hover {
  background: #e8ecf7;
  color: #fff;
  cursor: text;
}

.Pager a.fa.lcok {
  color: #ccc;
  background: #fff;
  cursor: text;
}

/* 文章列表 */

.article_item{
  display: flex;
  flex-wrap: nowrap;
  padding: 30px 0;
  border-bottom: 1px solid #e0efff;
  cursor: pointer;
}

.article_item_date{
  width: 15%;
  padding: 0 10px;
  border-right: 1px solid #b5d9ff;
}

.article_item_title{
width: 85%;
padding-left: 4%;
/* 超出宽度省略号 */
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}

/* 详情页 */

.article_detail_title{
  margin-top: 10px;
	font-size: 24px;
	color: #00478f;
  text-align: center;
  font-weight: bold;
}

.article_detail_date{
	color: #999999;
  padding: 20px 0 30px 0;
  text-align: center;
}

.article_detail_main{
color: #666666;
  letter-spacing: 1px;
}
.article_detail_main p{
margin-bottom: 10px;
}

/* 图片新闻列表 */

.pic_list{
width: 100%;
}

.pic_top_item{
width: 100%;
display: flex;
padding: 50px 0;
}

.pic_list_img{
  width: 47%;
  max-height: 333px;
  overflow: hidden;
}

.pic_list_img img{
  width: 100%;
  height:100%;
  object-fit: cover;
}

.pic_list_intro{
  width: 53%;
  padding: 30px;
    background-color: #f1f8ff;

}


.pic_intro_date{
	color: #004e9e;
}

.pic_intro_title{
  /* 超出宽度省略号 */
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-size: 20px;
color: #0050a3;
padding: 25px 0 50px 0;
font-weight: bold;
}

.pic_intro_content{
color: #676666;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;

}


.pic_bottom_item{
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}

.pic_bottom_box{
  width: 32%;
  margin-bottom: 20px;
}

.pic_bottom_img{
  width: 100%;
  height: 200px;
  overflow: hidden;
  line-height: 0;
}
.pic_bottom_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pic_bottom_intro{
padding: 20px 15px;
background-color: #ffffff;
}

.pic_bottom_intro_title{
color: #333333;
font-weight: bold;
margin-bottom: 20px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}

.pic_bottom_intro_date{
color: #004e9e;
}





























/* 公共样式和媒体查询 */

/* 公共样式和媒体查询 */

/* 动画效果 */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(30px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* 应用动画效果 */
.about-title {
  animation: slideInLeft 0.8s ease-out;
}

.about-content {
  animation: fadeIn 1s ease-out;
}

.about-stats {
  animation: slideInRight 0.8s ease-out;
}

.news_top_title {
  animation: slideInLeft 0.8s ease-out;
}

.news_list_item {
  animation: scaleIn 0.5s ease-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news_list_item:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
}

.brand_left_head_title {
  animation: slideInLeft 0.8s ease-out;
}

.brand_left_list_item_box {
  transition: transform 0.3s ease;
}

.brand_left_list_item_box:hover {
  transform: translateY(-5px);
}

.brand_right_item {
  transition: all 0.3s ease;
}

.exchange_member {
  animation: slideInLeft 0.8s ease-out;
}

.exchange_law {
  animation: slideInRight 0.8s ease-out;
}

.notice-item {
  transition: all 0.3s ease;
}

.notice-item:hover {
  transform: translateX(10px);
  /* background-color: rgba(31, 119, 178, 0.05); */
}

.medium_top_title {
  animation: slideInLeft 0.8s ease-out;
}

.medium_swiper_box_item {
  transition: transform 0.3s ease;
}

.medium_swiper_box_item:hover {
  transform: translateY(-5px);
}

.demeanour_title {
  animation: slideInUp 0.8s ease-out;
}

@media screen and (max-width: 1380px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* 响应式设计 - 平板设备 */
@media screen and (max-width: 1280px) {
  .head_nav ul li {
    border-right: 0;
  }

  .inside_detail .container {
    flex-direction: column;
  }

  .detail_left {
    width: 100% !important;
  }

  .detail_right {
    width: 100% !important;
    height: auto !important;
    padding: 40px 40px 20px 40px !important;
  }

  .inside_detail_right_date {
    width: 6% !important;
  }

  .detail_right_list_item {
    padding: 20px 0 !important;
  }

  .container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .head_logo {
    width: 30%;
  }

  .head_nav_box {
    width: 100%;
  }

  .head_nav ul li {
    width: 14.28%;
  }

  .grad {
    flex-direction: column;
  }

  .grad_left {
    width: 100%;
    padding: 35px 3%;
  }

  .grad_right {
    width: 100%;
    padding: 0 3%;
    padding: 35px 3%;
  }

  .grad_left_box {
    width: 100%;
  }

  .swiper_box {
    width: 100%;
  }

  .zh_box_font {
    display: none;
  }

  .message_zh_bottom {
    display: none;
  }

  .zh_box_message {
    padding-left: 0px;
  }

  .grad_right_box {
    width: 100%;
  }

  .grad_left_more {
    display: none;
  }

  .gradSwiper_tool {
    display: none;
  }

  .grad_right_more {
    margin-top: 35px;
  }

  .multiele .message_name {
    padding: 45px 0;
  }

  .courseSwiper_intro {
    padding: 35px 0 35px 0;
  }

  .multiele .grad_right_more {
    margin-bottom: 40px;
  }

  .coutse_list {
    display: none;
  }

  .multiele > .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .platform_item_box {
    width: 60px;
    height: 60px;
    padding: 15px;
  }

  .platform_item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .platform_name {
    font-size: 11px;
  }

  .platform .container {
    padding: 35px 0;
  }

  .footer_address {
    align-items: center;
  }

  .footer_logo {
    margin-bottom: 10px;
  }

  .footer_address {
    padding: 20px;
  }

  /* .footer_address {
    flex-direction: column;
  } */

  .footer_logo {
    width: 80%;
  }

  .footer_second,
  .footer_third {
    width: 80%;
  }

  .footer_share {
    margin-top: 10px;
    width: 80%;
  }

  /* .footer_second p{
  text-align: center;
}

.footer_third p{
text-align: center;
} */

  .footer .container {
    width: 100%;
    padding: 0;
  }

  .wx_box {
    flex-wrap: wrap;
  }

  .wx_box > div {
    padding: 7px 0;
  }

  .tooltip {
    padding: 8px 0px;
  }

  /* 公共页脚 */
.footer_logo img {
    width: 70%;
}

}

@media screen and (max-width: 1150px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
  
      .footer_address {
        flex-direction: column;
    }

        .footer_logo img {
        width: 36%; 
    }

        .footer_logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }
        .footer_share {
        margin-top: 10px;
        width: 30%;
    }

    .footer_share > div {
    margin-right: 0px;
}

    .footer_second, .footer_third {
        width: 80%;
        text-align: center;
    }

}

@media screen and (max-width: 1130px) {
}

@media screen and (max-width: 1048px) {
}

@media screen and (max-width: 975px) {
  .head_nav_box {
    padding-right: 1%;
  }

  .head_nav ul li {
    border: 0;
  }

  .head_nav ul li a {
    font-size: 14px;
  }

  .first_special_a {
    margin-right: 4px;
  }
}

@media screen and (max-width: 834px) {
}

@media screen and (max-width: 1150px) {
}

/* 响应式设计 - 手机设备 */
@media screen and (max-width: 768px) {
  .Pager {
    padding: 30px 0 !important;
  }

  .head {
    flex-direction: column;
    position: fixed;
    padding: 0;
  }

  .head_logo {
    width: 100%;
    padding: 10px 0;
    text-align: center;
    background-color: #004e9eeb;
    position: relative;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: start;
    padding-left: 20px;
  }

  .banner,
  .inside_banner {
    margin-top: 60px;
  }

  .head_logo img {
    width: 260px;
  }

  .head_nav_box {
    width: 100%;
    flex-direction: column;
    padding: 0;
    background-color: rgba(31, 119, 178, 0.9);
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    transition: all 0.3s ease;
  }

  .head_nav_box.active {
    display: block;
  }

  .head_nav {
    width: 100%;
    padding: 0;
  }

  .head_nav ul {
    flex-direction: column;
    width: 100%;
  }

  .head_nav ul li {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    text-align: center;
  }

  .head_nav ul li a {
    display: block;
    padding: 15px 0;
    font-size: 16px;
  }

  .special_li {
    margin: 0;
    justify-content: center;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
  }

  .first_special_a {
    margin-right: 20px;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 100;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 10px;
  }

  .menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 5px 0;
    transition: all 0.3s ease;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  /*page*/
  .Pager {
    /* padding: 50px 20px; */
    padding: 50px 0;
    text-align: center;
  }

  .Pager:after {
    content: '';
    clear: both;
    display: block;
  }

  .Pager a,
  .Pager span {
    display: inline-block;
    border: 1px solid #ddd;
    /* border-radius: 3px; */
    margin: 3px 3px;
    line-height: 40px;
    color: #333;
    text-align: center;
  }

  .Pager a {
    width: 40px;
    height: 40px;
    /* border-radius: 20px; */
  }

  .Pager span {
    padding: 0 10px;
  }

  .Pager a.fa {
    padding: 0 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    /* border-radius: 20px; */
  }

  .Pager a.act {
    background: #e8ecf8;
    color: #0f3e96;
    font-weight: bold;
  }

  .Pager a:hover {
    color: #0f3e96;
    background: #e8ecf7;
  }

  .Pager a.act:hover {
    background: #e8ecf7;
    color: #fff;
    cursor: text;
  }

  .Pager a.fa.lcok {
    color: #ccc;
    background: #fff;
    cursor: text;
  }

  .message_box {
    flex-direction: column;
  }

  .message_name {
    width: 100%;
    font-size: 40px;
    margin-bottom: 35px;
  }

  .message_name > .message_title {
    font-size: 28px;
  }

  .message {
    padding: 35px 0;
  }

  .message_box_left {
    width: 100%;
  }

  .signature_box img {
    width: 22%;
  }

  .signature_hand {
    font-size: 16px;
  }

  .signature {
    margin: 35px 0;
  }

  .signature_box {
    justify-content: end;
  }

  .message_box_right {
    width: 100%;
  }

  .news {
    padding: 0 0 35px 0;
  }

  .news_more {
    display: none;
  }

  .news_box_top > .message_name > .message_title {
    font-size: 28px;
  }

  .news_box_top > .message_name {
    margin-top: 0;
    font-size: 50px;
  }

  /* 公共头 */
  .main_menu {
    display: none;
}
.main_content{
  width: 100%;
  padding-left: 0px;
}

    .footer_logo {
        margin-bottom: 15px;
    }

    .footer_logo img {
        width: 80%;
    }
        .footer_address {
        padding-left: 0px;
    }

        .footer_second, .footer_third {
        width: 80%;
        text-align: left;
    }
        .footer_share {
        width: 60%;
    }

        .footer_logo {
        justify-content: start;
    }

        .footer_share {
        width: 82%;
        /* justify-content: start; */
    }
        .footer_share > div {
        margin-right: 20px;
    }

      .inside_Name{
        width: 40%; 
        background: none;
        justify-content: start;
        font-size: 23px;
      }

      .inside_Nav > i {
    font-size: 14px;
}
.inside_Nav_center {
    padding: 0 5px;
}

.inside_Nav > span{
  font-size: 15px;
}

.inside_Nav{
  display: none;
}

/* 关于学校 */
.about_title{
  font-size: 20px;
  padding: 24px 0;
  text-align: left;
}

.about_img {
    margin-bottom: 40px;
}

/* 课程设置 */
.courseSet_intro {
    font-size: 17px;
    padding: 17px;
    letter-spacing: 1px;
}

.courseSet_content_title {
    font-size: 20px;
}

.courseSet {
    padding-bottom: 40px;
}

/* 升学成果 */

.statistics_content {
    padding: 20px;
}

.statistics_item {
    width: 100%;
        margin-bottom: 40px;
    padding-left: 0px;
}

.statistics_item_name {
    width: 100%;
}

.statistics_item_num {
    font-size: 32px;
}

    .statistics_item_num {
              text-align: center;
    }

    .statistics_item_name {
        text-align: center;
    }

.statistics_content .top {
    font-size: 17px;
}

.statistics_content .bottom {
    margin-top: 40px;
}

.achievement {
    padding-bottom: 40px;
}

/* 师资团队 */
.teacher_item {
    width: 100%;
}

.teacher_title {
    width: 100%;
        position: unset;
        padding: 15px;

}

.teacher_occupy {
    display: none;
}

.teacher_item_name {
    font-size: 19px;
}

/* 图片新闻列表 */

.pic_top_item {
    flex-direction: column;
}

.pic_list_img {
    width: 100%;
}

.pic_list_intro{
  width: 100%;
}

.pic_top_item {
    padding: 28px 0;
}

.pic_intro_title {
    padding: 25px 0 25px 0;
    font-size: 18px;
}

.pic_list_intro {
    padding: 20px;
}

.pic_bottom_box {
    width: 100%;
    margin-bottom: 20px;
}

    .pic_bottom_box {
        margin-bottom: 30px;
    }

/* 图书馆 */
.library_top {
    flex-wrap: wrap;
    justify-content: left;
}

.libraryTop_box {
    width: 100%;
}

.libraryTop_img {
  width: 100%;
}

.library_center_img {
    padding: 15px;
}

.library_bottom {
flex-wrap: wrap-reverse;
    justify-content: start;
}

.library_bottom_left {
  width: 100%;
}

.library_bottom_right{
  width: 100%;
}

.library_bottom_right{
  padding-top: 0px;
}

.library_bottom_right {
    padding: 40px 0;
}

.library {
    padding-bottom: 40px;
}

.article_item_date {
    width: 42%;
}

.article_item {
    padding: 25px 0;
}

.article_detail_title {
    font-size: 22px;
}

.article_detail_main p {
    margin-bottom: 30px;
}

.principal_item {
    width: 100%;
}

.dialog_body {
    max-height: 70vh;
    overflow-y: auto;
            flex-wrap: wrap;
            padding: 25px;
}

.dialog_content {
    width: 100%;
}

.dialog_img {
    width: 90%;
}























}

/* 响应式设计 - 小屏手机设备 */
@media screen and (max-width: 480px) {
}

/* 滚动动画效果 */
.scroll-animation {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.scroll-animation.active {
  opacity: 1;
  transform: translateY(0);
}

/* 图片悬停效果 */
.img-hover-zoom {
  overflow: hidden;
  /* height: 450px; */
}

.swiper-slide .img-hover-zoom {
  width: 100%;
  /* height: 416px; */
  height: 444px;
}

.swiper-slide .img-hover-zoom .swiper_img {
  height: 100%;
  width: 100%;
}

.img-hover-zoom img {
  transition: transform 0.5s ease;
}

.img-hover-zoom:hover img {
  transform: scale(1.1);
}

/* 按钮悬停效果 */
.btn-hover-effect {
  position: relative;
  overflow: hidden;
}

.btn-hover-effect:after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.btn-hover-effect:hover:after {
  left: 100%;
}

/* 视口触发动画效果 */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

/* 从左滑入效果 */
.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.active {
  opacity: 1;
  transform: translateX(0);
}

/* 从右滑入效果 */
.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* 缩放效果 */
.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.active {
  opacity: 1;
  transform: scale(1);
}

/* 旋转效果 */
.rotate-in {
  opacity: 0;
  transform: rotate(-10deg);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.rotate-in.active {
  opacity: 1;
  transform: rotate(0);
}

/* 淡入效果 */
.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.fade-in.active {
  opacity: 1;
}

/* 弹跳效果 */
.bounce-in {
  opacity: 0;
  transform: scale(0.3);
  transition: opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.bounce-in.active {
  opacity: 1;
  transform: scale(1);
}

/* 闪烁效果 */
.flash {
  animation: flash 1s ease;
}

@keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0.5;
  }
}

/* 脉冲效果 */
.pulse {
  animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

/* 悬停效果增强 */
.news_list_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px) scale(1);
  /* 保持原始尺寸，微微提升 */
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  /* 设置下左和下右为圆角 */
}

.brand_left_list_item_box:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px) scale(1);
  /* 保持原始尺寸，微微提升 */
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  /* 设置下左和下右为圆角 */
}

.notice-item:hover {
  transform: translateX(10px);
  background-color: rgba(31, 119, 178, 0.05);
}

.medium_swiper_box_item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px) scale(1);
  /* 保持原始尺寸，微微提升 */
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  /* 设置下左和下右为圆角 */
}

/* 图片悬停效果增强 */
.img-hover-zoom img {
  transition: transform 0.8s ease;
}

.img-hover-zoom:hover img {
  transform: scale(1.15);
}

/* 按钮悬停效果增强 */
.btn-hover-effect:after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.5s ease;
}

.btn-hover-effect:hover:after {
  left: 100%;
}

/* 导航菜单悬停效果增强 */
.head_nav li a {
  position: relative;
  /* transition: all 0.3s ease; */
}

.head_nav li a:after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px !important;
  height: 7px;
  background-color: #9e1c24;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.head_nav li a:hover:after {
  width: 100%;
  opacity: 1;
}

/* 数字计数动画 */
.count-animation {
  transition: all 0.5s ease;
}

/* 滚动进度条 */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(to right, #9e1c24, #fc2e3c);
  z-index: 1000;
  transition: width 0.3s ease;
}

/* 页面加载动画 */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.page-loader.active {
  opacity: 1;
}

.page-loader.fade-out {
  opacity: 0;
}

.loader {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #1f77b2;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* 响应式动画调整 */
@media screen and (max-width: 768px) {
  .animate-on-scroll,
  .slide-in-left,
  .slide-in-right,
  .scale-in,
  .rotate-in,
  .fade-in,
  .bounce-in {
    transition-duration: 0.5s;
  }
}

/* qwert */
@media screen and (max-width: 876px) {
  .inside_notice_list_item {
    width: 100%;
  }
}
