@charset "UTF-8";
header {
  background-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0px 0px 8px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
}
header * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}
header .pc {
  font-size: 14px;
}
header .pc .wrap {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
header .pc .wrap .logo {
  flex: 0 180px;
  max-width: 180px;
}
header .pc .wrap .menu ul, header .pc .wrap .menu li {
  list-style: none;
}
header .pc .wrap .menu a {
  color: #000;
}
header .pc .wrap .menu .nav-menu {
  display: flex;
  align-items: center;
}
header .pc .wrap .menu .nav-menu > li {
  position: relative;
}
header .pc .wrap .menu .nav-menu > li > a {
  position: relative;
  display: inline-block;
}
header .pc .wrap .menu .nav-menu > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #217ee8;
  transition: all 0.3s;
}
header .pc .wrap .menu .nav-menu > li.active > a, header .pc .wrap .menu .nav-menu > li:hover > a {
  color: #217ee8;
}
header .pc .wrap .menu .nav-menu > li.active > a::after, header .pc .wrap .menu .nav-menu > li:hover > a::after {
  width: 100%;
}
header .pc .wrap .menu .nav-menu > li ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  min-width: 200px;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  transform-origin: top center;
  transform: scaleY(0);
}
header .pc .wrap .menu .nav-menu > li ul.sub-menu > li {
  position: relative;
}
header .pc .wrap .menu .nav-menu > li ul.sub-menu > li > a {
  position: relative;
  display: block;
  padding: 0 20px;
  line-height: 45px;
  height: 45px;
  color: #000;
  background: #fff;
  transition: all 0.3s;
  font-size: 14px;
}
header .pc .wrap .menu .nav-menu > li ul.sub-menu > li > a::after {
  content: "";
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAAXNSR0IArs4c6QAAAYJJREFUaEPt2eFRwzAMBeCnTdgEuglMAp2EdhK6CWwi0F25y4UG41oKT6n820n0+ak9OxHc2JAb86LAW0+8Eq6EN7YC1dIbC/QHpxKuhDe2AtXS/xWoqr4AuAdwBHASkY+IWigSVtU7AO8T4B7AIQLNAn74SvdtlmgImgJs0HNLP0ejacBroanAa6DpwNFoSnAkmhYchaYGR6Dpwd7oFGBPdBqwFzoV2AOdDjyKboInx7aI09rIPe3AMR97EbFj5uL4FbywoR8pco1rn0TksPSgFvgRwOsaVTo+Yycip6vAk9+LvYlgG5da2t6U7K5uaTbhdz2qal1n3TcdTaxNbv5psaFHsOnAo9hUYA9sGrAXNgXYE0sP9sZSgyOwtOAoLCU4EksHjsZSgRdOZn/aLvbsBim2lhe+HprBHUuTsKrOvx6GYGnA52OonYAMfmy9tehp4flcipYeAfReW+DeFcs2vxLOllhvvZVw74plm18JZ0ust95KuHfFss2vhLMl1lvvJ7zDuT0xiExFAAAAAElFTkSuQmCC");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 16px;
  height: 18px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  margin-right: 5px;
  transition: all 0.3s;
}
header .pc .wrap .menu .nav-menu > li ul.sub-menu > li > a:hover {
  background: #217ee8;
  color: #fff;
}
header .pc .wrap .menu .nav-menu > li ul.sub-menu > li > a:hover::after {
  opacity: 1;
  visibility: visible;
  margin-right: 0;
}
header .pc .wrap .menu .nav-menu > li ul.sub-menu > li ul.sub-menu {
  top: 0;
  left: 100%;
}
header .pc .wrap .menu .nav-menu > li:last-child a {
  background-color: #217ee8;
  width: 160px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 999px;
  color: #fff;
  transition: all 0.3s;
}
header .pc .wrap .menu .nav-menu > li:last-child a::after {
  display: none;
}
header .pc .wrap .menu .nav-menu > li:last-child a:hover {
  opacity: 0.8;
}
header .pc .wrap .menu .nav-menu li:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}
header .pc .wrap .language {
  flex: 0 150px;
  max-width: 150px;
  position: relative;
}
header .pc .wrap .language .toggle {
  position: relative;
  cursor: pointer;
  text-align: center;
}
header .pc .wrap .language .toggle::after {
  content: "";
  display: block;
  height: 0;
  border-left: 75px solid transparent;
  border-right: 75px solid transparent;
  border-bottom: 0 solid #ebebeb;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 101;
  transition: 0.2s border-bottom ease-in;
}
header .pc .wrap .language .translates {
  transition: all 0.3s;
  transform-origin: top center;
  transform: scaleY(0);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #ebebeb;
  padding: 10px 0;
}
header .pc .wrap .language .translates a {
  display: block;
  padding: 5px 10px;
  color: #595959;
  text-align: center;
}
header .pc .wrap .language .translates a:hover {
  color: #217ee8;
  background: rgba(0, 0, 0, 0.1);
}
header .pc .wrap .language:hover .toggle::after {
  border-bottom-width: 5px;
  transition: 0.2s 0.2s border-bottom-width ease-out;
}
header .pc .wrap .language:hover .translates {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}
header .wap {
  /* 导航菜单样式 */
}
header .wap .navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  z-index: 1000;
}
header .wap .logo {
  width: 100px;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}
header .wap .menu-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  outline: none;
}
header .wap .nav-menu {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
header .wap .nav-menu.active {
  max-height: 300px;
}
header .wap .nav-menu ul {
  list-style: none;
  padding: 10px 0;
}
header .wap .nav-menu li {
  padding: 15px 20px;
  border-bottom: 1px solid #f0f0f0;
}
header .wap .nav-menu a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  display: block;
}
header .wap .nav-menu a:hover {
  color: #0066cc;
}

footer .menu li a {
  display: inline-block;
  line-height: 40px;
}
footer .menu li:last-child a {
  background-color: #217ee8;
  width: 160px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 999px;
  color: #fff;
  transition: all 0.3s;
}
footer .menu li:last-child a:hover {
  opacity: 0.8;
}

input, textarea {
  outline: 0;
}

.bg-main {
  background: #217ee8;
}

.main-color {
  fill: #217ee8;
  color: #217ee8;
}

.hover\:bg-main:hover {
  background: #217ee8;
}

.hover\:main-color:hover {
  fill: #217ee8;
  color: #217ee8;
}

.border-main {
  border-color: #217ee8;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #333333;
  line-height: 1;
}

.page-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.sub-text {
  font-size: 28px;
  line-height: 2;
}

.button a {
  background: #217ee8;
  border-radius: 999px;
  width: 180px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: #fff;
  display: inline-block;
  transition: all 0.3s;
}
.button a:hover {
  opacity: 0.8;
}

.video-cover {
  position: relative;
}
.video-cover .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.4;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.video-cover .cover svg {
  width: 80px;
  height: 80px;
  transition: all 0.3s;
}
.video-cover:hover .cover {
  opacity: 0.5;
}
.video-cover:hover .cover svg {
  transform: scale(1.4);
}

.section {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.top-pic {
  color: #61403e;
}
.top-pic .t1 {
  font-size: 70px;
}
@media (max-width: 768px) {
  .top-pic .t1 {
    font-size: 32px;
  }
}

/* 视频弹窗样式 */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 999;
  /* 在style标签内添加以下样式 */
}
.video-modal .video-wrapper {
  width: 80%;
  height: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-modal .play-btn {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  cursor: pointer;
  opacity: 0.8;
}
.video-modal .close-btn {
  /* 基础样式 */
  position: absolute;
  top: -20px; /* 位于视频框外右上角 */
  right: -10px;
  width: 40px;
  height: 40px;
  border: none;
  background: #ff4757;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  /* 叉号样式（使用伪元素实现） */
  /* 悬停效果 */
  /* 点击效果 */
  /* 文字隐藏（针对纯图标按钮） */
  font-size: 0;
  color: transparent;
}
.video-modal .close-btn::before, .video-modal .close-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: white;
}
.video-modal .close-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.video-modal .close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.video-modal .close-btn:hover {
  background: #ff6b81;
  transform: rotate(90deg);
}
.video-modal .close-btn:active {
  transform: scale(0.9);
}

.menu-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  transition: all 0.3s;
  width: 560px;
  height: 100%;
  z-index: 999;
  background-image: url(../images/menu-drawer-bg.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.menu-drawer.active {
  right: 0;
}
.menu-drawer .menu {
  width: 348px;
}
.menu-drawer .menu a {
  line-height: 48px;
}
.menu-drawer .menu a.toplink {
  line-height: 60px;
}
.menu-drawer .menu .toggle {
  transition: all 0.5s linear;
}
.menu-drawer .menu > ul li.active > div .toggle {
  transform: rotate(45deg);
}
.menu-drawer .menu > ul li.active > ul {
  max-height: 500px;
  border-bottom: 1px solid #f2f2f2;
}
.menu-drawer .menu > ul li > ul {
  padding-left: 2em;
  max-height: 0;
  transition: all 0.8s linear;
  overflow: hidden;
}
@media (max-width: 768px) {
  .menu-drawer {
    width: 260px;
    background-image: unset;
    background: #217ee8;
  }
}

.topbanner {
  width: 100%;
  min-height: 540px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.topbanner::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
}
.topbanner .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}
.topbanner .text .title {
  font-size: 46px;
}
.topbanner .text .subtitle {
  font-size: 18px;
  letter-spacing: 6px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .topbanner {
    min-height: 150px;
  }
  .topbanner .text .title {
    font-size: 26px;
  }
  .topbanner .text .subtitle {
    font-size: 14px;
  }
}

.sidebar {
  width: 100%;
  flex: 0 280px;
}
.sidebar .name {
  text-align: center;
  background: #005a8f;
  color: #fff;
  padding: 15px;
  line-height: 50px;
  font-size: 20px;
  font-weight: bolder;
}
.sidebar .menu-group {
  position: relative;
  transition: all 0.25s ease;
  background: #d5dfe5;
  /* 激活状态 */
}
.sidebar .menu-group .menu-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  color: #111;
  cursor: pointer;
  transition: all 0.2s;
  background: #d5dfe5;
  font-size: 18px;
  font-weight: 600;
  line-height: 50px;
  /* 箭头图标 */
}
.sidebar .menu-group .menu-trigger a {
  text-decoration: none;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 80%;
  display: block;
  transition: all 0.3s;
}
.sidebar .menu-group .menu-trigger:hover {
  background: #217ee8;
  color: #fff;
}
.sidebar .menu-group .menu-trigger .arrow {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 18px;
}
.sidebar .menu-group .submenu {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar .menu-group .submenu-item {
  color: #666;
  font-size: 16px;
  position: relative;
  transition: all 0.2s;
  cursor: pointer;
  display: block;
  line-height: 50px;
  padding-left: 2em;
}
.sidebar .menu-group .submenu-item:hover {
  color: #217ee8;
}
.sidebar .menu-group .submenu-item:hover::before {
  opacity: 1;
}
.sidebar .menu-group.active .menu-trigger {
  color: #fff;
  background: #217ee8;
}
.sidebar .menu-group.active .arrow {
  transform: rotate(45deg);
  color: #fff;
}
.sidebar .menu-group.active .submenu {
  max-height: 1000px;
}

.filter-list a {
  background: #e6e9ed;
  border-radius: 9999px;
  min-width: 150px;
  padding: 15px;
  text-align: center;
  transition: all 0.3s;
}
.filter-list a:hover, .filter-list a.active {
  background: #217ee8;
  color: #fff;
}
@media (max-width: 768px) {
  .filter-list a {
    min-width: 120px;
  }
}

.tags a {
  display: inline-block;
  margin: 0 10px 5px 0;
  padding: 5px 15px;
  font-size: 14px;
  line-height: 1.2;
  color: #666;
  border: 1px solid #999;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.tags a:hover {
  background: #006dad;
  color: #fff;
  border-color: #006dad;
}

.pagebar a {
  border: 1px solid #ededed;
  height: 32px;
  min-width: 32px;
  color: #3e3e3e;
  text-align: center;
  line-height: 32px;
  border-radius: 2px;
  transition: all 0.3s;
}
.pagebar a.page-num-current {
  background: #217ee8;
  color: #fff;
  border-color: #217ee8;
}
.pagebar a:hover {
  border-color: #217ee8;
}

.recommend {
  position: relative;
}
.recommend .title {
  color: #217ee8;
}
.recommend .recommend-swiper div {
  border-color: #a0a0a0;
}
.recommend .recommend-swiper div .image {
  height: 260px;
  overflow: hidden;
  display: block;
}
.recommend .recommend-swiper div .image img {
  transition: all 0.3s;
}
.recommend .recommend-swiper div .image:hover img {
  transform: scale(1.2);
}
.recommend .recommend-swiper div .time {
  color: #217ee8;
}
.recommend .recommend-swiper div .time svg {
  fill: #217ee8;
}
.recommend .recommend-swiper div .title {
  color: #000;
  height: 55px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.recommend .recommend-swiper div .title:hover {
  color: #217ee8;
  text-decoration: underline;
}
.recommend .swiper-pagination {
  position: relative;
  bottom: 0;
}
.recommend .swiper-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 4px;
  border-radius: 2px;
}

/*# sourceMappingURL=common.css.map */
