@charset "UTF-8";
body {
  overflow-x: hidden;
}

* {
  color: #6c757d;
}

a:hover {
  color: #0F4655;
}

toggler {
  display: none;
  border-radius: 0;
  width: 60px;
  justify-content: center;
}

.logo {
  box-sizing: content-box;
  overflow: hidden;
}

.logo a img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

.More {
  display: flex;
  flex: 1;
  justify-content: center;
}

.More a {
  padding: 8px 30px;
  font-size: 1.6rem;
  background-color: #0F4655;
  color: white;
  border-radius: 40px;
}

.shadow-down {
  box-shadow: 0 5px 5px rgba(233, 236, 239, 0.3);
}

.so {
  position: fixed;
  right: 15px;
  z-index: 1000000;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
}

.so #kw {
  width: 200px;
  margin-right: 10px;
  border: 1px solid #dee2e6;
  padding: 7px 15px;
}

.so .SearchType {
  display: none;
}

.so .Margin {
  text-align: center;
}

.so input[type=submit] {
  background-color: #0F4655;
  color: white;
  border: 0;
  padding: 8px 15px;
}

.container-flush {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.top:hover {
  background-color: #fff;
}

.top .container-fluid .row {
  display: flex;
  flex: 1;
  flex-flow: row nowrap;
  justify-content: space-between;
}

.top .menu ul li.on, .top .menu ul li:hover {
  background-color: transparent;
}

.top .menu ul li a {
  padding-left: 20px;
  padding-right: 20px;
}

.top .menu ul li ul li {
  background-color: transparent !important;
}

.top .menu ul li ul li a:hover {
  font-size: 1.6rem;
  font-weight: bold;
}

.top #toggler {
  display: none;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #0F4655;
  z-index: 10000;
  padding-left: 20px;
  padding-right: 20px;
}

.top #toggler menu ul li {
  border-bottom: 1px solid rgba(248, 249, 250, 0.3);
}

.top #toggler menu ul li:last-child {
  border-bottom: 0;
}

.top #toggler menu ul li a {
  padding: 1rem 2rem;
  font-size: 1.6rem;
  color: #dee2e6;
}

.top #toggler menu ul li a:hover {
  color: white;
}

.search form {
  display: flex;
  flex: 1;
  flex-flow: row nowrap;
}

.search form #kw {
  display: flex;
  flex: 1;
  border: 1px solid rgba(15, 70, 85, 0.5);
}

.search form .SearchType {
  display: none;
}

.p-10 {
  padding: 2rem;
}

ol.carousel-indicators {
  display: flex;
  flex-flow: column wrap;
  width: 100px;
  height: 100%;
  position: absolute;
  left: auto;
  right: 0;
  top: 0;
  bottom: 0;
  justify-content: center;
  align-content: center;
  margin-bottom: 0;
}

ol.carousel-indicators li {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 0;
  margin: 8px 0;
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  border-radius: 50%;
  border: 1px solid #fff;
  top: auto;
  left: 2rem;
  bottom: 2rem;
  width: 5rem;
  height: 5rem;
  overflow: hidden;
}

.carousel-control-next {
  left: 8rem;
}

.carousel-control-prev-icon {
  display: inline-flex;
  background-image: none !important;
  justify-content: center;
  align-items: center;
}

.carousel-control-prev-icon::before {
  display: inline-flex;
  content: "\f177" !important;
  color: #fff !important;
}

.carousel-control-next-icon {
  display: inline-flex;
  background-image: none !important;
  justify-content: center;
  align-items: center;
}

.carousel-control-next-icon::before {
  display: inline-flex;
  content: "\f178" !important;
  color: #fff !important;
}

#ArticleView ul li,
#ProductView ul li {
  position: relative;
  /* 确保伪元素定位基准 */
  overflow: hidden;
  /* 防止蒙版溢出 */
  /* 淡白色蒙版 */
  /* CirclePlus 图标（强制显示） */
  /* 悬停时仅控制蒙版（图标保持显示） */
}

#ArticleView ul li img,
#ProductView ul li img {
  display: block;
  transition: transform 0.3s ease;
}

#ArticleView ul li:hover img,
#ProductView ul li:hover img {
  transform: scale(1.5);
  /* 保留图片放大效果 */
}

#ArticleView ul li::after,
#ProductView ul li::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

#ArticleView ul li::before,
#ProductView ul li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
  /* 直接显示，无需缩放动画 */
  width: 60px;
  /* 图标大小 */
  height: 60px;
  background-image: url(../images/cicleplus.svg);
  /* 确保路径正确 */
  background-size: contain;
  /* 完整显示图标 */
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  /* 避免阻挡鼠标事件 */
  z-index: 10;
  /* 确保图标在最上层 */
}

#ArticleView ul li:hover::before,
#ProductView ul li:hover::before {
  opacity: 1;
}

#ArticleView ul li:hover::after,
#ProductView ul li:hover::after {
  opacity: 1;
}

.about {
  background-image: url(../images/map.jpg);
  background-size: cover;
  text-align: center;
}

.about .profile {
  width: 100%;
}

.about .memo {
  font-size: 1.6rem;
}

.about h3 {
  font-size: 2.2rem !important;
  font-weight: 500;
}

.about .axis * {
  font-size: 1.6rem;
}

.about .axis .num {
  color: red;
  font-size: 4rem !important;
  font-weight: 900;
  font-family: 'HarmonyOS Sans TW Bold', 'Noto Sans TC', sans-serif;
}

.about .sub {
  font-size: 3rem;
  font-weight: 100;
  line-height: 1em;
  font-family: 'Times New Roman', Times, serif;
}

.about .title {
  font-size: 2.8rem;
  font-weight: 600;
  text-align: center;
}

.about .title .cn {
  padding-bottom: 1rem;
  position: relative;
  font-size: 4rem;
}

.about .title .cn::after {
  display: inline-flex;
  width: 50px;
  height: 0;
  content: "";
  border-bottom: 2px solid #0F4655;
  bottom: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.about .title .sub {
  display: none;
}

.about .card {
  margin-right: 0 !important;
  margin-bottom: 0;
  overflow: hidden;
  background: transparent;
}

.about .card img {
  border: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about .intro {
  line-height: 1.6em;
  font-size: 1.4rem;
  color: #495057;
}

.about .intro * {
  color: #495057;
}

.about .enter a {
  display: inline-flex;
  background: #0F4655;
  border-radius: 40px;
  padding: 8px 30px;
  color: white;
}

.about .enter a::after {
  display: inline-flex;
  content: "\f178";
  margin-left: 8px;
}

.about .enter a:hover {
  background-color: white;
  color: #0F4655;
}

.nav {
  display: flex;
  flex: 1;
  flex-flow: column wrap;
  text-align: center;
}

.nav .RowsTitle {
  display: flex;
  flex: 1;
  flex-flow: row wrap;
  justify-content: space-between;
}

.nav .RowsTitle .Title {
  display: flex;
  flex: 1;
  flex-flow: column wrap;
  margin-bottom: 0;
  font-size: 3rem;
  color: #0F4655;
  font-weight: 600;
  justify-content: center;
}

.nav .RowsTitle .Title .cn {
  display: flex;
  flex-flow: column wrap;
  font-size: 2.8rem;
  line-height: 1em;
  font-weight: 900;
  color: #0F4655;
  padding-bottom: 15px;
  align-items: center;
  position: relative;
}

.nav .RowsTitle .Title .cn::after {
  display: inline-flex;
  position: absolute;
  flex: 1;
  border-bottom: 2px solid #0F4655;
  width: 50px;
  height: 0px;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.nav .RowsTitle .Title .en {
  padding-top: 10px;
  font-size: 2.0rem;
  line-height: 1em;
  font-weight: 100;
  color: #6c757d;
}

.nav .RowsTitle .More {
  align-items: baseline;
}

.nav .RowsTitle .More a {
  display: inline-flex;
  background: #0F4655;
  color: #fff;
  padding: 5px 20px;
}

.nav .RowsTitle .More a::after {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  content: "\f178";
  margin-left: 10px;
}

.nav ul {
  display: flex;
  flex: 1;
  flex-flow: column wrap;
}

.nav ul li {
  display: flex;
  flex: 1;
}

.nav ul li a {
  display: flex;
  flex: 1;
  height: 100%;
  padding: 15px 20px;
  align-items: center;
}

.news {
  border-bottom: 1px solid #dee2e6;
}

.news ul {
  display: flex;
  flex-flow: column wrap;
  border: 0 !important;
}

.news ul li {
  flex-flow: column wrap;
  flex: 1;
  text-align: left;
}

.news ul li:nth-child(n+3) {
  display: none !important;
}

.news ul li .gutters {
  display: flex;
  flex-direction: column;
  padding: 15px;
  flex-grow: 1;
}

.news ul li .gutters .thumbs a {
  padding: 0;
}

.news ul li .gutters .thumbs a img {
  width: 100%;
  height: 100%;
  aspect-ratio: 2/1;
}

.news ul li .gutters .content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 15px;
  background-color: white;
}

.news ul li .gutters .content .profile {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-self: stretch;
}

.news ul li .gutters .content .profile .title a {
  padding: 10px 0;
  font-size: 1.6rem;
  font-weight: 600;
}

.news ul li .gutters .content .date {
  display: flex;
  flex-direction: column;
  color: #6c757d;
  margin-top: 15px;
}

.news ul li .gutters .content .date .LongDatePlus {
  margin-left: 1em;
}

.news ul li .gutters .content .date .fa-plus {
  position: relative;
  display: flex;
  margin-top: 30px;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  border: 1px solid #6c757d;
  font-weight: 100;
}

.news ul li .gutters .content .date .fa-plus a {
  display: inline-flex;
  overflow: hidden;
  width: 100%;
  height: 100%;
  text-indent: -5000px;
}

.news ul li .gutters .content .date .fa-plus::before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.news ul li .gutters .content .date .fa-plus:hover {
  background-color: #204D59;
  color: white;
}

.news ul li .gutters .content .date .fa-plus:hover * {
  color: white;
}

.news ul li .gutters .content .date * {
  color: #6c757d;
}

.news ul li:hover .content {
  background-color: #0F4655;
}

.news ul li:hover .content * {
  color: white;
}

.news ul li:hover .content .date * {
  color: rgba(248, 249, 250, 0.3);
}

.body .LongDatePlus {
  font-size: 1.6rem;
  color: #6c757d;
  font-weight: 400;
}

.body .LongDatePlus year,
.body .LongDatePlus mon,
.body .LongDatePlus day {
  display: inline-flex;
  font-size: 1.6rem;
  color: #6c757d;
  font-weight: 400;
}

.body .Detail h5 {
  display: none;
}

.body .Detail img {
  max-width: 100%;
}

.body .contactus {
  display: flex;
  flex-flow: column-reverse wrap;
}

.body .contactus #Telephonist {
  margin-bottom: 5rem;
}

.body #ArticleSection ul {
  display: flex;
  flex: 1;
  flex-flow: column wrap;
}

.body #ArticleSection ul li {
  display: flex;
  flex: 1;
  flex-flow: column wrap;
  padding-bottom: 30px;
  border-bottom: 1px solid #dee2e6;
  margin-bottom: 30px;
}

.body #ArticleSection ul li .content {
  display: flex;
  flex: 1;
  margin-bottom: 20px;
}

.body #ArticleSection ul li .content .date {
  display: flex;
  flex: 1 1 auto;
  flex-flow: column wrap;
  width: 120px;
  position: relative;
}

.body #ArticleSection ul li .content .date i {
  position: absolute;
  bottom: 0;
  display: inline-flex;
  color: #6c757d;
  padding: 10px;
}

.body #ArticleSection ul li .content .profile {
  width: calc(100% - 120px);
}

.body #ArticleSection ul li .content .profile .title {
  margin-bottom: 3px;
}

.body #ArticleSection ul li .content .profile .title a {
  font-size: 1.8rem;
}

.body #ArticleSection ul li .content .profile .memo {
  color: #343a40;
}

.body #ArticleSection ul li .thumbs {
  display: flex;
  flex: 1;
  overflow: hidden;
}

.body #ArticleSection ul li .thumbs a {
  display: flex;
  flex: 1;
}

.body #ArticleSection ul li .thumbs a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.body #ArticleSection ul li:hover .content .date i {
  color: white;
  background-color: #6c757d;
}

#ArticleList ul li .Article {
  justify-content: space-between;
}

#ArticleList ul li .Article .title {
  flex: 1;
}

.sbanner {
  position: relative;
}

.sbanner .carousel-caption {
  display: none;
}

.product {
  background-color: #f8f9fa;
  background-image: url(../images/bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.product .RowsTitle .Title .cn {
  color: white;
}

.product .RowsTitle .Title .cn::after {
  border-bottom: 2px solid #fff;
}

.product .Margin {
  display: flex;
  flex: 1;
  overflow: hidden;
  position: relative;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.product .Margin ul {
  display: inline-flex;
  flex: 1 0 100%;
  justify-content: start;
  flex-flow: row wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.product .Margin ul li {
  flex: 1 0 50%;
}

.product .Margin ul li box {
  padding: 15px;
}

.product .Margin ul li box .mode {
  height: 100%;
  background-color: #fff;
  padding-bottom: 30px;
}

.product .Margin ul li box .mode .thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom: 5px solid transparent;
}

.product .Margin ul li box .mode .title a {
  font-size: 2rem;
  font-weight: 600;
  justify-content: center;
  color: #212529;
  padding-left: 0;
  padding-right: 0;
}

.product .Margin ul li box .mode .title a:hover {
  color: #0F4655;
}

.product .Margin ul li box .mode .more {
  display: none;
  padding: 20px 0px 0px 0px;
  justify-content: center;
}

.product .Margin ul li box .mode .more a {
  display: inline-flex;
  flex: 0 1 auto;
  border-radius: 20px;
  border: 1px solid #6c757d;
  padding: 5px 30px;
  justify-content: center;
}

.product .Margin ul li box .mode .more a:hover {
  background-color: #0F4655;
  color: white;
  border-color: #0F4655;
}

.product .Margin ul li box:hover .thumbs img {
  border-bottom: 5px solid #ced4da;
}

.product .Margin ul li:last-child {
  display: none;
}

.guide {
  display: flex;
  flex: 1;
  flex-flow: column wrap;
  border-bottom: 1px solid #dee2e6;
  padding-bottom: .5rem;
  margin-bottom: 2rem;
}

.guide .title {
  font-size: 2.6rem !important;
  font-weight: 900;
  margin-bottom: .3rem;
}

.guide .path,
.guide .path * {
  color: #6c757d;
}

.guide .path a:hover {
  color: #204D59;
}

.sider ul {
  display: flex;
  flex-flow: row wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.sider ul li {
  padding: 10px;
  display: flex;
  flex: 0 0 50%;
}

.sider ul li a {
  display: flex;
  flex: 1;
  border: 1px solid #e9ecef;
  justify-content: center;
  font-size: 1.6rem;
  padding: 1rem 2rem;
}

.sider ul li a:hover {
  background: #0F4655;
  color: white;
}

.case .Margin {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.case .Margin #ArticleView ul li {
  flex-basis: 100%;
}

.case .Margin #ArticleView ul li:nth-child(n+4) {
  display: none;
}

.case .carousel-arrow {
  display: none;
}

.adv #ArticleSummary ul {
  display: flex;
  flex: 1;
  flex-flow: column wrap;
  margin: 0;
}

.adv #ArticleSummary ul li {
  display: flex;
  flex: 1 0 auto !important;
  flex-flow: row wrap;
  padding: 0 !important;
}

.adv #ArticleSummary ul li .top {
  display: none;
}

.adv #ArticleSummary ul li .thumbs {
  display: flex;
  flex: 1 1 calc(50% - 30px) !important;
  aspect-ratio: 4/3;
  padding-bottom: 0;
  margin-right: 30px;
}

.adv #ArticleSummary ul li .thumbs a {
  display: flex;
  flex: 1;
  justify-content: center;
  justify-items: center;
  padding: 0;
  height: 100%;
  pointer-events: none;
}

.adv #ArticleSummary ul li .thumbs a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.adv #ArticleSummary ul li .detail {
  display: flex;
  flex: 1 1 50% !important;
  flex-flow: column wrap;
  flex-shrink: 1;
  align-items: flex-start;
  justify-content: center;
}

.adv #ArticleSummary ul li .detail .title {
  display: flex;
  flex: 0 1 auto;
  background-color: transparent;
}

.adv #ArticleSummary ul li .detail .title a {
  text-align: left;
  padding: 0;
  line-height: 1.2em;
  font-size: 2.4rem;
  pointer-events: none;
}

.adv #ArticleSummary ul li .detail .intro {
  display: flex;
  flex-flow: column wrap;
  text-align: left;
  color: #6c757d;
  font-size: 1.6rem !important;
  line-height: 1.6em;
  margin-top: 1rem;
}

.adv #ArticleSummary ul li .detail .intro .enter {
  display: inline-flex !important;
  flex: 0 !important;
  margin-top: 2rem;
}

.adv #ArticleSummary ul li .detail .intro .enter a {
  display: inline-flex;
  flex: 0 !important;
  border: 1px solid #0F4655;
  padding: .5rem 3rem !important;
  border-radius: 3rem;
  white-space: nowrap;
}

.adv #ArticleSummary ul li .detail .intro .enter a:hover {
  background-color: #0F4655 !important;
  color: white !important;
}

.bottom {
  text-align: center;
}

.bottom .Logo {
  display: flex;
  flex: 1;
  margin-bottom: 3rem;
}

.bottom .Logo .dt {
  display: none;
}

.bottom .Logo .dd {
  display: flex;
  flex: 1;
  justify-content: center;
}

.bottom .Logo .dd img {
  max-width: 100%;
}

.bottom .footer {
  margin-top: 2rem;
  border-top: 1px solid #343a40;
  text-align: center;
}

.online .wechat::before {
  content: "\f1d7";
}

.online .wechat .dd {
  display: none !important;
}

.online .wechat .dd img {
  border: 1px solid #adb5bd;
}

.online .wechat:hover .dd {
  display: flex !important;
}

.partner #ArticleView ul li::before {
  display: none;
}

.partner #ArticleView ul li .title {
  display: none;
}

@media (min-width: 768px) {
  .adv #ArticleView ul li {
    flex-basis: 33.333%;
  }
  .case ul li:nth-child(n+10) {
    display: none !important;
  }
  .body #ArticleSection ul li {
    flex-flow: row nowrap;
  }
  .body #ArticleSection ul li .content {
    flex-basis: 80%;
    padding-right: 50px;
  }
  .body #ArticleSection ul li .thumbs {
    flex-basis: 20%;
  }
}

@media (min-width: 992px) {
  .w-lg-50 {
    width: 50%;
  }
  .w-lg-75 {
    width: 75%;
  }
  #ArticleView ul li,
#ProductView ul li {
    flex-basis: 33.33%;
  }
  #ArticleView ul li .qrcode img,
#ProductView ul li .qrcode img {
    border: 10px solid white;
    width: 100px !important;
    height: 100px !important;
  }
  #ArticleView ul li .thumbs,
#ProductView ul li .thumbs {
    background-color: #fff;
  }
  #ArticleView ul li .thumbs a img,
#ProductView ul li .thumbs a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #ArticleView ul li .title,
#ProductView ul li .title {
    background-color: #e9ecef;
    height: 60px;
  }
  #ArticleView ul li .title a,
#ProductView ul li .title a {
    display: flex;
    flex: 1;
    height: 100%;
    justify-content: center;
    align-items: center;
  }
  #ArticleView ul li .title:hover,
#ProductView ul li .title:hover {
    background-color: #204D59;
  }
  #ArticleView ul li .title:hover a,
#ProductView ul li .title:hover a {
    color: white;
  }
  .about .axis .num {
    font-size: 6rem !important;
  }
  .about .profile {
    position: relative;
  }
  .about .profile .ml {
    position: relative;
    z-index: 100;
    padding: 100px 80px 80px 80px !important;
  }
  .adv #ArticleSummary ul {
    flex: 1 0 100%;
    flex-flow: row nowrap;
    align-items: stretch;
  }
  .adv #ArticleSummary ul .group {
    display: flex;
    flex-direction: column;
    flex-basis: 50% !important;
  }
  .adv #ArticleSummary ul .group li:last-child {
    margin-bottom: 0;
  }
  .adv #ArticleSummary ul > li {
    position: relative;
    margin-left: 30px;
    flex-direction: column;
    flex: 1 1 calc(50% - 30px) !important;
    margin-bottom: 0;
  }
  .adv #ArticleSummary ul > li .thumbs {
    display: flex;
    flex: 1 0 100% !important;
    margin: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: inherit;
    max-width: 100% !important;
  }
  .adv #ArticleSummary ul > li .thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .adv #ArticleSummary ul > li .detail {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    z-index: 1000;
    padding: 68px 50px;
  }
  .adv #ArticleSummary ul > li .detail .title a {
    color: white !important;
    font-size: 4rem;
  }
  .adv #ArticleSummary ul > li .detail .intro {
    color: #dee2e6;
    font-size: 1.6rem;
    line-height: 1.5em;
    font-weight: 100;
    color: white;
  }
  .adv #ArticleSummary ul > li .detail .intro * {
    color: white;
  }
  .adv #ArticleSummary ul > li:hover top {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
  }
  .adv #ArticleSummary ul > li:hover top .intro {
    color: white;
  }
  .adv #ArticleSummary ul > li:hover top .intro p {
    color: white;
  }
  .product .Margin ul li {
    flex-basis: 25%;
  }
  .product .Margin ul li box .mode .more {
    display: flex;
  }
  .case .Margin {
    margin-top: 0;
    margin-bottom: 0;
  }
  .case .Margin #ArticleView ul li {
    flex-basis: auto;
  }
  .case .Margin #ArticleView ul li:nth-child(n+4) {
    display: flex;
  }
  .guidebar {
    border-bottom: 1px solid rgba(15, 70, 85, 0.3);
    margin-bottom: 6rem;
  }
  .guidebar .container {
    display: flex;
    flex: 1;
    flex-flow: row nowrap;
    justify-content: space-between;
  }
  .guidebar .container .guide {
    position: relative;
    flex: 0 1 auto;
    border-bottom: 0;
    margin-right: 50px;
    padding: 0 15px;
    margin-bottom: 0;
    background: white;
    bottom: -13px;
  }
  .guidebar .container .guide .title {
    font-size: 3rem !important;
    margin-bottom: 1rem;
  }
  .guidebar .container .guide .path {
    padding: 0;
    margin: 0 -15px;
  }
  .guidebar .container .guide .path::before, .guidebar .container .guide .path::after {
    position: relative;
    display: inline-flex;
    width: 0;
    height: 0;
    border: 7px solid #0F4655;
    border-radius: 100%;
    background-color: #0F4655;
    content: "";
    z-index: 10;
    bottom: 5px;
  }
  .guidebar .container .guide .path::before {
    left: -12px;
  }
  .guidebar .container .guide .path::after {
    right: -12px;
  }
  .guidebar .container .sider {
    align-content: end;
  }
  .guidebar .container .sider ul {
    flex-flow: row nowrap;
  }
  .guidebar .container .sider ul li {
    padding: 0;
  }
  .guidebar .container .sider ul li a {
    border: 0;
    padding: 10px 20px;
  }
  .guidebar .container .sider ul li a:hover {
    background-color: transparent;
    color: #204D59;
  }
  .news #ArticleSection ul {
    align-items: stretch;
    flex-flow: row nowrap;
  }
  .news #ArticleSection ul li {
    flex-basis: 33.33%;
  }
  .news #ArticleSection ul li:nth-child(n+3) {
    display: list-item !important;
  }
  .news #ArticleSection ul li .gutters {
    height: 100%;
  }
  .partner #ArticleView ul li {
    flex-basis: 25%;
  }
}

@media (min-width: 1200px) {
  .banner {
    position: relative;
  }
  .adv #ArticleSummary ul .intro a {
    border-color: white !important;
    color: white;
  }
  .adv #ArticleSummary ul .group .detail .intro a {
    border-color: #0F4655 !important;
    color: #0F4655 !important;
  }
  .top {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
  }
  .top.position-fixed {
    background-color: white;
  }
  .top .menu ul li a {
    font-size: 1.6rem;
    font-weight: 500;
    white-space: nowrap;
  }
  .top .menu ul li ul {
    background-color: white;
    box-shadow: 0 3px 3px rgba(248, 249, 250, 0.1);
  }
  .top .menu ul li ul li {
    border-bottom: 1px solid #e9ecef;
  }
  .top .menu ul li ul li a {
    padding: 15px 80px 15px 20px !important;
    justify-content: left !important;
    font-size: 1.4rem;
    font-weight: 100;
  }
  .top .menu ul li ul li:last-child {
    border-bottom: 0;
  }
  .top .menu ul li ul li:hover {
    background-color: #0F4655 !important;
  }
  .top .menu ul li ul li:hover a {
    color: white;
  }
  .top .menu ul li ul li:hover a::after {
    position: absolute;
    display: inline-flex;
    padding: 5px;
    content: "\f061";
    right: 5px;
  }
  .product .Margin ul li {
    flex-basis: 20%;
  }
  .product .Margin ul li:last-child {
    display: flex;
  }
  .logo a img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
  }
  i.fa-search {
    display: inline-flex;
    font-size: 2rem;
    font-weight: 100;
    cursor: pointer;
  }
  .sbanner .guide {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 100%;
    top: auto;
    bottom: 25px;
    height: auto;
  }
  .sbanner .guide .title {
    justify-content: start;
    height: auto;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(248, 249, 250, 0.5);
    position: relative;
  }
  .sbanner .guide .title::before {
    position: absolute;
    bottom: -2px;
    display: inline-flex;
    width: 6rem;
    height: 0;
    content: "";
    border-bottom: 3px solid #fff;
  }
  .sbanner .guide .path {
    display: flex;
    padding-top: 8px;
    color: rgba(248, 249, 250, 0.9);
  }
  .sbanner .guide .path * {
    color: rgba(248, 249, 250, 0.9);
    font-size: 1.6rem;
  }
  .sbanner .guide .path .pos::before {
    display: inline-flex;
    width: 22px;
    height: 16px;
    font-size: 16px;
    content: "\f015";
  }
  .sider ul {
    flex-flow: row nowrap;
  }
  .sider ul li {
    flex: 1 1 auto;
  }
  .nav .RowsTitle .Title .cn {
    font-size: 2.8rem;
  }
  .nav .RowsTitle .More a {
    border-radius: 3px;
    padding: 8px 20px;
  }
  .nav .RowsTitle .More a:hover {
    filter: brightness(0.9);
  }
  .nav .Descript {
    color: #6c757d;
    font-size: 1.6rem;
  }
  .nav ul {
    justify-content: space-between;
    margin-top: 3rem;
    flex-flow: row nowrap;
    border: 0;
  }
  .nav ul li {
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
  }
  .nav ul li a {
    color: #495057;
  }
  #ProductView ul li,
#ArticleView ul li {
    flex-basis: 33.33%;
  }
  .bottom .c1 {
    text-align: left;
    margin-right: 80px;
  }
  .bottom .c1 * {
    color: #adb5bd;
  }
  .bottom .Logo .dd {
    justify-content: start;
  }
  .bottom .Logo .dd img {
    max-width: 300px;
    filter: brightness(300%);
  }
  .bottom menu ul {
    display: flex;
    flex: 1;
    flex-flow: row nowrap;
  }
  .bottom menu ul li a {
    padding-right: 20px;
    font-size: 1.6rem;
    font-weight: 600;
    justify-content: start;
  }
  .bottom menu ul li a:hover {
    color: white;
  }
  .bottom menu ul ul {
    margin-top: 2.5rem;
    flex-flow: column wrap;
    position: relative;
    justify-content: start;
    flex: 0 1 auto;
  }
  .bottom menu ul ul li {
    flex-grow: 0;
    flex-shrink: 1;
  }
  .bottom menu ul ul li a {
    font-size: 1.4rem;
    font-weight: 100;
    white-space: nowrap;
    padding-top: .5rem;
    padding-bottom: .5rem;
    color: #adb5bd;
  }
  .bottom menu ul ul li a:hover {
    color: white;
  }
  .bottom .qrcode .dt {
    display: none;
  }
  .bottom .qrcode .dd {
    margin-top: 20px;
  }
  .bottom .qrcode .dd img {
    width: 100px;
  }
  .bottom .footer .Margin {
    display: flex;
    flex: 1;
    justify-content: center;
    flex-flow: row nowrap;
  }
  .bottom .footer .Margin .powered {
    margin-left: 15px;
    margin-right: 15px;
  }
  .bottom .footer .Margin .sitemap {
    margin-left: 15px;
  }
  .partner #ArticleView ul li {
    flex-basis: 16.666%;
  }
}

@media screen and (min-width: 1440px) {
  .container-flush {
    max-width: calc(100% - 200px);
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 992px) {
  .case .Content {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    display: flex;
    /* 使用 flex 布局 */
    flex-direction: column;
    /* 子元素垂直排列 */
    justify-content: center;
    /* 垂直居中 */
    align-items: center;
    /* 水平居中 */
  }
  .case .Content .Margin {
    height: 100%;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
  }
  .case .Content .Margin #ArticleView {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  .case .Content .Margin #ArticleView ul {
    list-style: none;
    padding: 0;
    margin: 0;
    height: 100%;
    width: 100%;
    position: relative;
    padding-left: 0;
    /* 移除默认的左侧 padding */
    margin: 0;
    /* 移除默认的 margin */
    list-style: none;
    /* 移除默认的列表符号 */
  }
  .case .Content .Margin #ArticleView ul li {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    margin: 0;
    /* 移除默认的 margin */
    padding: 0;
    /* 移除默认的 padding */
    transform-style: preserve-3d;
    transition: all 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
    transform: translate(-50%, -50%);
    will-change: transform;
    backface-visibility: hidden;
  }
  .case .Content .Margin #ArticleView ul li .gutters {
    height: 100%;
    width: 100%;
    box-sizing: border-box;
  }
  .case .Content .Margin #ArticleView ul li .gutters .thumbs {
    height: 100%;
  }
  .case .Content .Margin #ArticleView ul li .gutters .thumbs a {
    display: block;
    height: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
  }
  .case .Content .Margin #ArticleView ul li .gutters .thumbs a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transition: transform 0.3s ease;
  }
  .case .Content .Margin #ArticleView ul li .gutters .title {
    display: flex;
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .case .Content .Margin #ArticleView ul li .gutters .title a {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 16px;
    padding: 1rem 2rem;
  }
  .case .carousel-arrow {
    display: flex;
  }
  .case .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    user-select: none;
  }
  .case .carousel-arrow * {
    color: rgba(15, 70, 85, 0.3);
  }
  .case .carousel-arrow:hover * {
    color: #0F4655;
  }
  .case .carousel-arrow-left {
    left: 30px;
  }
  .case .carousel-arrow-right {
    right: 30px;
  }
}

@media (min-width: 992px) and (min-width: 1200px) {
  .carousel-arrow-left {
    left: 130px;
  }
  .carousel-arrow-right {
    right: 130px;
  }
}
