@charset "UTF-8";
/* CSS变量定义 - 主题色和常用值 */
:root {
  --primary-color: rgba(36, 67, 155, 1);
  --secondary-color: rgba(65, 190, 177, 1);
  --text-black: #000000;
  --text-gray: #666666;
  --text-light-gray: #999999;
  --border-color: #d9d9d9;
  --bg-gray: #f1f1f1;
  --white: #ffffff;
  --gradient-primary: linear-gradient(to right, #0061c9, #004ea2);
  --gradient-bg: linear-gradient(to bottom, #ffffff, #cfd9e0);
  --gradient-radial: radial-gradient(#ffffff, #cfd9e0);
  --font-primary: "HarmonyOS_Sans_SC_Medium";
  --font-bold: "HarmonyOS_Sans_SC_Bold";
  --font-en: "Hanken Grotesk";
  --transition-fast: 0.5s;
  --transition-normal: 0.4s;
  --transition-slow: 0.6s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 0.16rem;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 78%;
  margin: 0 auto;
}

.clearfix {
  zoom: 1;
}
.clearfix:after {
  content: " ";
  display: block;
  font-size: 0;
  height: 0;
  clear: both;
  visibility: hidden;
}

.marginauto {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
}

.linenowrap {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.flexAuto {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flexCetween {
  display: flex;
  display: -moz-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}

.flexAlign {
  display: flex;
  display: -moz-flex;
  align-items: center;
  -webkit-align-items: center;
}

/* 顶部通知栏 */
.top-bar {
  background-color: #fff;
  font-size: 0.16rem;
  color: rgb(122, 135, 153);
  height: 0.5rem;
}
.top-bar .container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar .top-bar-left span {
  font-weight: 500;
}
.top-bar .top-bar-right {
  display: flex;
  align-items: center;
}
.top-bar .top-bar-right .contact-icon {
  margin-right: 0.13rem;
}
.top-bar .top-bar-right .contact-icon img {
  height: 0.15rem;
}
.top-bar .top-bar-right .separator {
  color: rgb(122, 135, 153);
}
.top-bar .top-bar-right .top-bar-right-links {
  margin-left: 0.32rem;
}
.top-bar .top-bar-right .top-bar-right-links a {
  color: rgb(122, 135, 153);
  text-decoration: none;
}
.top-bar .top-bar-right .top-bar-right-links a:hover {
  color: var(--primary-color);
}

/* Logo和搜索区域 */
.header {
  background: #ecf3f9 url("../images/header-bg.png");
  background-size: cover;
  background-position: center center;
  height: 1.77rem;
  position: relative;
  overflow: hidden;
}
.header .container {
  height: 100%;
}
.header .logo-section {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}
.header .logo {
  display: flex;
  align-items: center;
}
.header .logo img {
  height: 0.91rem;
}
.header .search-section {
  display: flex;
  align-items: center;
  height: 0.54rem;
  background-color: #fff;
  position: relative;
  border-radius: 0.08rem;
  overflow: hidden;
  box-sizing: border-box;
}
.header .search-section .search-input {
  position: relative;
  border: 1px solid rgb(36, 67, 155);
  width: 5.56rem;
  height: 100%;
  padding: 0 1.1rem 0 0.64rem;
  border: none;
  font-size: 0.16rem;
  outline: none;
  transition: border-color 0.3s;
}
.header .search-section .search-input:focus {
  border-color: var(--primary-color);
}
.header .search-section .search-input::-moz-placeholder {
  color: #333;
}
.header .search-section .search-input::placeholder {
  color: #333;
}
.header .search-section .icon {
  position: absolute;
  left: 0.29rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.21rem;
  height: 0.21rem;
  display: block;
  z-index: 1;
}
.header .search-section .search-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 1.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 1px;
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  font-size: 0.2rem;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
}
.header .search-section .search-btn:hover {
  background-color: var(--secondary-color);
}

/* 导航菜单 */
.nav-menu {
  background: var(--primary-color);
}
.nav-menu ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  height: 0.64rem;
}
.nav-menu li {
  position: relative;
  width: 2.05rem;
  height: 100%;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
.nav-menu li:last-child::after {
  display: none;
}
.nav-menu li::after {
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 1px;
  height: 0.15rem;
  background: rgba(217, 217, 217, 0.35);
  transition: opacity 0.3s;
}
.nav-menu li:hover {
  background: rgba(255, 255, 255, 0.15);
}
.nav-menu li:hover::after {
  opacity: 0;
}
.nav-menu a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  text-decoration: none;
  font-size: 0.18rem;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
}
.nav-menu a.active {
  background: var(--secondary-color);
}

/* 主横幅区域 - Swiper轮播 */
.banner {
  position: relative;
  height: 7.1rem;
  min-height: 400px;
  overflow: hidden;
}
.banner .banner__swiper {
  width: 100%;
  height: 100%;
}
.banner .banner-slide {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.banner .banner-slide a {
  display: block;
  width: 100%;
  height: 100%;
}
.banner .banner-slide figure {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
  line-height: 1;
  margin: 0;
}
.banner .banner-slide figure img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner {
  /* 轮播激活时的动画效果 */
}
.banner .banner-slide.swiper-slide-active .banner__content .banner__title,
.banner .banner-slide.swiper-slide-active .banner__content .banner__subtitle {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.banner .banner-slide.swiper-slide-active .banner__content .banner__title {
  transition-delay: 0.5s;
}
.banner .banner-slide.swiper-slide-active .banner__content .banner__subtitle {
  transition-delay: 0.6s;
}
.banner .banner__content {
  position: absolute;
  left: 11%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 5.3rem;
}
.banner .banner__content .banner__title {
  color: #fff;
  font-size: 0.48rem;
  font-weight: 700;
  font-family: "HarmonyOS_Sans_SC_Medium";
  line-height: 1.3;
  letter-spacing: 0.1em;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.3rem);
  transition: all 0.8s ease;
  text-shadow: 0 0.02rem 0.1rem rgba(0, 0, 0, 0.3);
}
.banner {
  /* swiper 分页器 */
}
.banner .swiper-pagination {
  padding-left: 11%;
  text-align: left;
  bottom: 0.5rem;
  height: 50px;
  display: flex;
  align-items: flex-end;
}
.banner .swiper-pagination-bullet {
  width: 5px;
  height: 16px;
  background: rgb(255, 255, 255);
  border-radius: 0;
  transition: width 0.3s ease, background 0.3s ease;
  cursor: pointer;
  margin: 0 !important;
  margin-right: 10px !important;
  display: inline-block;
  transition: all 0.5s ease;
}
.banner .swiper-pagination-bullet-active {
  height: 30px;
  background: #fff;
}
.banner {
  /* 左右切换箭头 */
}
.banner .banner__prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0.5rem;
  height: 0.5rem;
  border: 0.01rem solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner .banner__prev:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}
.banner .banner__prev::before {
  content: "";
  width: 0.12rem;
  height: 0.12rem;
  border-left: 0.02rem solid #fff;
  border-bottom: 0.02rem solid #fff;
}
.banner .banner__prev.prev {
  left: 0.8rem;
}
.banner .banner__prev.prev::before {
  transform: rotate(45deg);
  margin-left: 0.03rem;
}
.banner .banner__prev.next {
  right: 0.8rem;
}
.banner .banner__prev.next::before {
  transform: rotate(-135deg);
  margin-right: 0.03rem;
}
.banner {
  /* 装饰元素 */
}
.banner .banner-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}
.banner .banner-decoration .molecule {
  position: absolute;
  opacity: 0.3;
}
.banner .banner-decoration .molecule::before {
  content: "";
  position: absolute;
  border: 0.01rem solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}
.banner .banner-decoration .molecule::after {
  content: "";
  position: absolute;
  width: 0.04rem;
  height: 0.04rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
}
.banner .banner-decoration .molecule-1 {
  width: 2rem;
  height: 1.5rem;
  top: 20%;
  left: 5%;
}
.banner .banner-decoration .molecule-2 {
  width: 1.5rem;
  height: 1.2rem;
  top: 40%;
  right: 15%;
}
.banner .banner-decoration .molecule-3 {
  width: 1.8rem;
  height: 1.4rem;
  bottom: 20%;
  right: 5%;
}
.banner .banner-decoration .leaf-icon {
  position: absolute;
  right: 20%;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2rem;
  height: 1.2rem;
}
.banner .banner-decoration .leaf-icon::before {
  content: "🌿";
  font-size: 0.8rem;
  opacity: 0.6;
  filter: drop-shadow(0 0 0.2rem rgba(144, 238, 144, 0.5));
}
.banner {
  /* 鼠标滚动提示 */
}
.banner .mouses {
  position: absolute;
  left: 50%;
  bottom: 0.6rem;
  transform: translateX(-50%);
  z-index: 10;
  animation: mouseScroll 2s ease-in-out infinite;
}
.banner .mouses .boxs {
  width: 0.3rem;
  height: 0.5rem;
  border: 0.02rem solid rgba(255, 255, 255, 0.5);
  border-radius: 0.25rem;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.1rem;
}
.banner .mouses .boxs i {
  width: 0.06rem;
  height: 0.06rem;
  background: #fff;
  border-radius: 50%;
  animation: mouseWheel 1.5s ease-in-out infinite;
}

@keyframes mouseScroll {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(0.1rem);
  }
}
@keyframes mouseWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(0.25rem);
    opacity: 0;
  }
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.36rem;
  position: relative;
  z-index: 1;
}
.section-header h3 {
  font-size: 0.34rem;
  font-weight: 700;
  font-family: "HarmonyOS_Sans_SC_Medium";
  color: #333;
  display: flex;
  align-items: center;
  line-height: 1;
}
.section-header h3 .en {
  font-size: 0.22rem;
  color: rgba(102, 102, 102, 0.3);
  margin-left: 0.14rem;
  font-family: "HarmonyOSSans";
  display: flex;
  align-items: center;
}
.section-header h3 .en:before {
  content: "";
  width: 0.1rem;
  height: 0.1rem;
  border-radius: 50%;
  background: var(--secondary-color);
  margin-right: 0.14rem;
}
.section-header .view-more {
  background: transparent;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.16rem;
  text-decoration: none;
  cursor: pointer;
  border: 0.01rem solid rgba(102, 102, 102, 0.3);
  border-radius: 0.25rem;
  outline: none;
  overflow: hidden;
  color: rgba(102, 102, 102, 0.7);
  transition: color 0.3s 0.1s ease-out;
  text-align: center;
  box-sizing: border-box;
  width: 1.3rem;
  height: 0.5rem;
}
.section-header .view-more::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  content: "";
  border-radius: 50%;
  display: block;
  width: 2rem;
  height: 2rem;
  left: -0.5rem;
  text-align: center;
  transition: box-shadow 0.5s ease-out;
  z-index: -1;
}
.section-header .view-more .img {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: 0.24rem;
  height: 0.24rem;
  margin-left: 0.03rem;
}
.section-header .view-more .img .img-boxs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.5s ease-out;
}
.section-header .view-more .img .img-boxs img {
  width: 100%;
}
.section-header .view-more:hover {
  color: #fff;
  border-color: var(--primary-color);
}
.section-header .view-more:hover .img .img-boxs {
  transform: translateX(-0.24rem);
}
.section-header .view-more:hover::before {
  box-shadow: inset 0 0 0 1rem var(--primary-color);
}

/* 新闻中心 */
.news-center {
  padding: 0.5rem 0;
  background: #ecf3f9;
  position: relative;
  overflow: hidden;
}
.news-center .news-content {
  display: flex;
  gap: 0.25rem;
  position: relative;
  z-index: 1;
  align-items: stretch;
}
.news-center .news-main {
  width: 8.5rem;
  flex-shrink: 0;
}
.news-center .news-main .news-main-image {
  position: relative;
  border-radius: 0.08rem;
  overflow: hidden;
  background: #f5f5f5;
  z-index: 1;
}
.news-center .news-main .news-main-image .news-main-image-inner {
  width: 100%;
  padding-top: 65%;
  position: relative;
}
.news-center .news-main .news-main-image .news-main-image-inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.news-center .news-main .news-main-image::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  margin: auto;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.83) 100%);
  width: 100%;
  height: 3.4rem;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
}
.news-center .news-main .news-main-image .news-main-caption {
  position: absolute;
  bottom: 0.3rem;
  left: 0;
  right: 0;
  padding: 0 0.36rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  color: #fff;
  font-size: 0.22rem;
  font-weight: 500;
  line-height: 1.5;
  z-index: 3;
}
.news-center .news-main:hover .news-main-image img {
  transform: scale(1.03);
}
.news-center .news-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
}
.news-center .news-list .news-item:nth-child(1) {
  animation-delay: 0.2s !important;
}
.news-center .news-list .news-item:nth-child(2) {
  animation-delay: 0.3s !important;
}
.news-center .news-list .news-item:nth-child(3) {
  animation-delay: 0.4s !important;
}
.news-center .news-list .news-item:nth-child(4) {
  animation-delay: 0.5s !important;
}
.news-center .news-list .news-item:nth-child(5) {
  animation-delay: 0.6s !important;
}
.news-center .news-item {
  display: flex;
  padding: 0;
  background: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  transition: transform 0.5s ease;
}
.news-center .news-item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 1px;
  background: rgba(102, 102, 102, 0.3);
}
.news-center .news-item:last-child::before {
  display: none;
}
.news-center .news-item .news-item-image {
  width: 2.2rem;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0.06rem 0 0 0.06rem;
}
.news-center .news-item .news-item-image .news-item-image-inner {
  width: 100%;
  padding-top: 72.7%;
  position: relative;
}
.news-center .news-item .news-item-image .news-item-image-inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-center .news-item .news-item-content {
  display: flex;
  flex-direction: column;
  padding: 0.2rem 0.42rem 0.2rem 0.32rem;
  border-radius: 0 0.06rem 0.06rem 0;
  overflow: hidden;
}
.news-center .news-item .news-item-content h4 {
  font-size: 0.18rem;
  color: #000;
  font-family: "HarmonyOS_Sans_SC_Medium";
  font-weight: 500;
  margin-bottom: 0.14rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.5s ease;
}
.news-center .news-item .news-item-content p {
  font-size: 0.17rem;
  color: #666;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-center .news-item:hover {
  box-shadow: 0 0.04rem 0.15rem rgba(0, 0, 0, 0.1);
  transform: translateY(-0.05rem);
}
.news-center .news-item:hover .news-item-content h4 {
  color: var(--primary-color);
}

/* 最新公告 */
.notice-section {
  padding: 0.5rem 0;
  background: #ecf3f9;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.notice-grid .notice-item:nth-child(odd) {
  animation-delay: 0.15s !important;
}
.notice-grid .notice-item:nth-child(even) {
  animation-delay: 0.25s !important;
}
.notice-grid .notice-item:nth-child(3n+1) {
  animation-delay: 0.15s !important;
}
.notice-grid .notice-item:nth-child(3n+2) {
  animation-delay: 0.25s !important;
}
.notice-grid .notice-item:nth-child(3n+3) {
  animation-delay: 0.35s !important;
}
.notice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.15rem;
}

.notice-item {
  display: flex;
  gap: 0;
  padding: 0.2rem;
  background: #fff;
  border-radius: 0.08rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  border: 0.01rem solid transparent;
}
.notice-item .line {
  background: rgba(102, 102, 102, 0.3);
  width: 1px;
  height: 100%;
  margin: 0 0.16rem;
}
.notice-item:hover {
  background: #fff;
  box-shadow: 0 0.04rem 0.15rem rgba(0, 0, 0, 0.1);
  transform: translateY(-0.03rem);
  border-color: var(--primary-color);
}
.notice-item:hover .notice-content h4 {
  color: var(--primary-color);
}
.notice-item .notice-date {
  width: 0.68rem;
  height: 0.68rem;
  background: var(--primary-color);
  border-radius: 0.08rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  flex-shrink: 0;
}
.notice-item .notice-date .date-day {
  font-size: 0.34rem;
  line-height: 1;
  font-family: "Hanken Grotesk";
}
.notice-item .notice-date .date-month {
  font-size: 0.12rem;
  line-height: 1;
}
.notice-item .notice-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.notice-item .notice-content h4 {
  font-size: 0.18rem;
  color: #000;
  font-family: "HarmonyOS_Sans_SC_Medium";
  font-weight: 500;
  margin-bottom: 0.02rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}
.notice-item .notice-content p {
  font-size: 0.16rem;
  color: rgb(162, 162, 162);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 关于我们 */
.about-us {
  padding: 1.4rem 0 0.6rem 0;
  background: rgba(0, 108, 183, 0.06) url("../images/about-bg.png") no-repeat right center;
  position: relative;
  overflow: hidden;
  z-index: 5;
}
.about-us::before {
  content: "";
  position: absolute;
  top: -1.3rem;
  right: 0;
  width: 100%;
  height: 2.65rem;
  background: url("../images/about-bg2.png") no-repeat right center;
  background-size: contain;
}
.about-us .about-content {
  display: flex;
  gap: 0.57rem;
  position: relative;
  z-index: 1;
}
.about-us .about-image {
  width: 7.3rem;
  height: 5rem;
  border-radius: 0.08rem;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.about-us .about-image video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.about-us .about-image .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.44rem;
  height: 1.44rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 10;
}
.about-us .about-image .play-button::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  animation: video-pulse 5s linear infinite;
  background: url("../images/video-btn.png") no-repeat center center;
  background-size: contain;
  border-radius: 50%;
}
.about-us .about-image .play-button:hover {
  transform: translate(-50%, -50%) scale(1.03);
  border-color: #fff;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}
.about-us .about-image .play-button:hover .play-text {
  color: #fff;
}
.about-us .about-image .play-button .play-text {
  font-size: 0.18rem;
  color: rgb(255, 255, 255);
  letter-spacing: 0.04rem;
  font-weight: 500;
  transition: color 0.3s ease;
}
@keyframes video-pulse {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.about-us .about-image .video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.about-us .about-image .video-modal.active {
  display: flex;
}
.about-us .about-image .video-modal .video-container {
  width: 90%;
  max-width: 800px;
  position: relative;
}
.about-us .about-image .video-modal .video-container video {
  width: 100%;
  height: auto;
  border-radius: 0.1rem;
}
.about-us .about-image .video-modal .video-container .close-btn {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.2rem;
  color: #666;
  transition: all 0.3s;
}
.about-us .about-image .video-modal .video-container .close-btn:hover {
  background: #fff;
  color: #333;
  transform: rotate(90deg);
}
.about-us .about-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  justify-content: center;
}
.about-us .about-text h4 {
  font-size: 0.32rem;
  font-family: "HarmonyOS_Sans_SC_Medium";
  color: #000;
  font-weight: 500;
  line-height: 1;
  padding-bottom: 0.2rem;
  border-bottom: 0.01rem solid rgba(102, 102, 102, 0.3);
}
.about-us .about-text .about-desc {
  font-size: 0.18rem;
  color: rgb(102, 102, 102);
  line-height: 1.8;
  text-align: justify;
}
.about-us .about-text .about-desc .read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}
.about-us .about-text .about-desc .read-more:hover {
  text-decoration: underline;
}

/* 友情链接 */
.friend-links {
  padding: 0.12rem 0 0.22rem 0;
  background: #fff;
  border-top: 0.01rem solid #e8e8e8;
  border-bottom: 0.01rem solid #e8e8e8;
}
.friend-links .container {
  display: flex;
}
.friend-links h4 {
  font-size: 0.2rem;
  font-family: "HarmonyOS_Sans_SC_Medium";
  font-weight: 600;
  letter-spacing: 4px;
  color: rgb(35, 76, 107);
  margin-right: 0.24rem;
  width: 1rem;
  margin-top: 0.12rem;
}
.friend-links .links-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex: 1;
}
.friend-links .links-list a {
  font-size: 0.16rem;
  color: rgb(34, 34, 34);
  text-decoration: none;
  padding: 0 0.36rem;
  margin-top: 0.15rem;
  position: relative;
}
.friend-links .links-list a:after {
  content: "";
  background: rgba(146, 146, 146, 0.35);
  width: 1px;
  height: 0.15rem;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 10;
}
.friend-links .links-list a:last-child:after {
  display: none;
}
.friend-links .links-list a:hover {
  color: var(--primary-color);
}

/* 关于我们 Banner */
.about-banner {
  position: relative;
  height: 5.6rem;
  overflow: hidden;
}
.about-banner .about-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about-banner .about-banner-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, rgba(35, 76, 107, 0.95), rgba(35, 76, 107, 0.8));
  z-index: 1;
  display: none;
}
.about-banner .about-banner-content {
  position: relative;
  z-index: 2;
  padding-left: 11%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-banner .about-banner-content h2 {
  font-size: 0.48rem;
  color: #fff;
  font-family: "HarmonyOS_Sans_SC_Medium";
  font-weight: 600;
  margin-bottom: 0.2rem;
  line-height: 1;
}
.about-banner .about-banner-content .about-banner-en {
  line-height: 1;
  font-size: 0.36rem;
  font-family: "HarmonyOS_Sans_SC_Medium";
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.17);
}

/* 关于我们子导航 */
.about-subnav {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12.8px);
  z-index: 9;
}
.about-subnav ul {
  display: flex;
  align-items: center;
}
.about-subnav li {
  position: relative;
}
.about-subnav li a {
  display: block;
  padding: 0.19rem 0.35rem;
  font-size: 0.16rem;
  color: rgb(255, 255, 255);
  text-decoration: none;
  transition: all 0.3s ease;
}
.about-subnav li a:hover {
  color: var(--secondary-color);
}
.about-subnav li a.active {
  color: #fff;
  background: var(--secondary-color);
}

/* 机构设置内容 */
.org-section {
  padding: 0.6rem 0 1rem 0;
  background: #ecf3f9;
}
.org-section .org-header {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.3rem;
  border-bottom: 0.02rem solid var(--primary-color);
  position: relative;
}
.org-section .org-header::before {
  content: "";
  position: absolute;
  bottom: -0.02rem;
  left: 0;
  width: 0.5rem;
  height: 0.02rem;
  background: var(--primary-color);
}
.org-section .org-header .org-title {
  font-size: 0.24rem;
  color: #333;
  font-weight: 600;
}
.org-section .org-header .org-en {
  font-size: 0.14rem;
  color: #999;
  letter-spacing: 0.02rem;
}
.org-section .org-department .dept-title {
  font-size: 0.24rem;
  color: var(--primary-color);
  font-weight: 500;
  line-height: 1;
  font-family: "HarmonyOS_Sans_SC_Medium";
  margin-bottom: 0.3rem;
  padding-bottom: 0.16rem;
  border-bottom: 2px solid var(--primary-color);
}
.org-section .org-department .dept-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.18rem;
  padding-bottom: 0.2rem;
}
.org-section .org-department .dept-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.22rem 0.15rem;
  text-align: center;
  font-size: 0.18rem;
  color: #333;
  background: #fff;
  border-radius: 0.08rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 0.01rem solid #e8e8e8;
  box-shadow: 0 0.02rem 0.08rem rgba(0, 0, 0, 0.04);
}
.org-section .org-department .dept-item:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-0.04rem) scale(1.01);
  box-shadow: 0 0.08rem 0.2rem rgba(35, 76, 107, 0.15);
}

.mt10 {
  padding-top: 0.12rem;
}

/* 主要业务页面 */
.business-content {
  background: #fff;
  border-radius: 0.12rem;
  padding: 0.4rem 0.5rem 0.6rem 0.5rem;
}
.business-content .business-title {
  font-size: 0.24rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 0.25rem;
  line-height: 1;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid rgba(102, 102, 102, 0.3);
}
.business-content p {
  font-size: 0.16rem;
  color: rgb(70, 76, 85);
  line-height: 1.9;
  text-indent: 2em;
  margin-bottom: 0.25rem;
}
.business-content p:last-child {
  margin-bottom: 0;
}

/* 人才队伍页面 */
.rencai {
  background: #fff;
  border-radius: 0.12rem;
  padding: 0.5rem;
}
.rencai .team-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
}
.rencai .team-card {
  background: #fff;
  border-radius: 0.1rem;
  padding: 0.18rem 0.2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 0.01rem solid #e8e8e8;
  position: relative;
  text-decoration: none;
  overflow: hidden;
}
.rencai .team-card:hover {
  transform: translateY(-0.04rem) scale(1.01);
  box-shadow: 0 0.1rem 0.25rem rgba(35, 76, 107, 0.15);
  border-color: var(--primary-color);
}
.rencai .team-card .team-avatar {
  width: 100%;
  padding-top: 128%;
  position: relative;
  border-radius: 0.05rem;
  overflow: hidden;
  margin-bottom: 0.16rem;
}
.rencai .team-card .team-avatar img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.rencai .team-card .team-name {
  font-size: 0.2rem;
  color: #000;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 0.06rem;
}
.rencai .team-card .team-title {
  line-height: 1.2;
  font-size: 0.14rem;
  color: var(--secondary-color);
}

.jd-boxs {
  margin-top: 0.6rem;
}

/* 基地介绍轮播图 */
.base-carousel .base-main-swiper {
  position: relative;
  border-radius: 0.12rem;
  overflow: hidden;
  z-index: 8;
}
.base-carousel .base-main-swiper::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 71.4%;
  background-image: url("../images/park-bg.svg");
  background-size: cover;
  z-index: 6;
}
.base-carousel .base-main-swiper .swiper-wrapper {
  position: relative;
  z-index: 1;
}
.base-carousel .base-main-swiper .swiper-slide img {
  width: 100%;
  height: 7rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.base-carousel .base-main-swiper {
  /* 底部控制栏 */
}
.base-carousel .base-main-swiper .base-carousel-controls {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.1rem;
  padding: 0.1rem 0.1rem 0.1rem 0.25rem;
  background: rgba(0, 0, 0, 0.31);
  border-radius: 0.1rem;
  margin-bottom: 0.2rem;
  z-index: 9;
}
.base-carousel .base-main-swiper .base-carousel-controls .base-carousel-title {
  color: #fff;
  font-size: 0.2rem;
  padding-right: 1.1rem;
}
.base-carousel .base-main-swiper .base-carousel-controls .base-carousel-prev,
.base-carousel .base-main-swiper .base-carousel-controls .base-carousel-next {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 0.1rem;
  border: 0.01rem solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.base-carousel .base-main-swiper .base-carousel-controls .base-carousel-prev:hover,
.base-carousel .base-main-swiper .base-carousel-controls .base-carousel-next:hover {
  background: rgba(255, 255, 255, 0.4);
}
.base-carousel .base-main-swiper .base-carousel-controls .base-carousel-prev img,
.base-carousel .base-main-swiper .base-carousel-controls .base-carousel-next img {
  width: 0.16rem;
  height: 0.16rem;
  filter: brightness(0) invert(1);
}
.base-carousel .base-main-swiper .base-carousel-controls .base-carousel-next img {
  transform: rotate(180deg);
}
.base-carousel .base-main-swiper .base-carousel-controls .base-thumbs-wrapper {
  width: 2.7rem;
}
.base-carousel .base-main-swiper .base-carousel-controls .base-thumbs-wrapper .base-thumbs-swiper {
  width: 100%;
}
.base-carousel .base-main-swiper .base-carousel-controls .base-thumbs-wrapper .base-thumbs-swiper .swiper-slide {
  width: auto;
  height: 0.6rem;
  aspect-ratio: 1/1;
  border-radius: 0.08rem;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 0.03rem solid transparent;
}
.base-carousel .base-main-swiper .base-carousel-controls .base-thumbs-wrapper .base-thumbs-swiper .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--secondary-color);
}
.base-carousel .base-main-swiper .base-carousel-controls .base-thumbs-wrapper .base-thumbs-swiper .swiper-slide:hover {
  opacity: 0.9;
}
.base-carousel .base-main-swiper .base-carousel-controls .base-thumbs-wrapper .base-thumbs-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 新闻详情页 */
.news-xq {
  padding: 0.5rem 0 1rem 0;
  background: #ecf3f9;
}
.news-xq .news-xq-content {
  padding: 0.2rem 0.5rem 0.6rem 0.5rem;
  background: #fff;
  margin-top: -5rem;
  position: relative;
  z-index: 9;
  border-radius: 0.1rem;
  overflow: hidden;
}
.news-xq .breadcrumb {
  display: flex;
  align-items: center;
  font-size: 0.16rem;
  color: rgb(102, 102, 102);
  margin-bottom: 0.85rem;
}
.news-xq .breadcrumb .breadcrumb-label {
  color: var(--primary-color);
}
.news-xq .breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
.news-xq .breadcrumb a:hover {
  color: var(--secondary-color);
}
.news-xq .breadcrumb .breadcrumb-arrow {
  margin: 0 0.08rem;
  color: #ccc;
}
.news-xq .news-title {
  font-size: 0.3rem;
  color: #333;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 0.24rem;
}
.news-xq .news-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.26rem;
  margin-bottom: 0.4rem;
  padding-bottom: 0.16rem;
  border-bottom: 0.01rem dashed rgba(102, 102, 102, 0.3);
}
.news-xq .news-meta .meta-item {
  display: flex;
  align-items: center;
  font-size: 0.14rem;
  color: #999;
}
.news-xq .news-meta .meta-item .meta-label {
  margin-right: 0.08rem;
}
.news-xq .news-meta .meta-item .meta-value {
  color: #666;
}
.news-xq .news-content {
  font-size: 0.18rem;
  color: rgb(102, 102, 102);
  line-height: 1.9;
}
.news-xq .news-content p {
  margin-bottom: 0.3rem;
  text-indent: 0.34rem;
}
.news-xq .news-content img {
  margin: 0.4rem auto;
  display: block;
  max-width: 100% !important;
  height: auto !important;
}
.news-xq .news-nav {
  margin-top: 0.5rem;
  padding-top: 0.3rem;
  border-top: 0.01rem dashed rgba(102, 102, 102, 0.3);
}
.news-xq .news-nav ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.news-xq .news-nav ul li {
  position: relative;
  padding-left: 0.22rem;
  margin-bottom: 0.15rem;
  font-size: 0.16rem;
  line-height: 1.6;
}
.news-xq .news-nav ul li:last-child {
  margin-bottom: 0;
}
.news-xq .news-nav ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.04rem;
  height: 0.04rem;
  background: #333;
  border-radius: 50%;
}
.news-xq .news-nav ul li .nav-label {
  color: #666;
  margin-right: 0.05rem;
}
.news-xq .news-nav ul li a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.news-xq .news-nav ul li a:hover {
  color: var(--primary-color);
}

/* 科研成果页面 */
.chengguo {
  margin: 0 0 0.7rem 0;
}
.chengguo .chengguo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.25rem;
}
.chengguo .chengguo-grid .chengguo-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 0.21rem 0.28rem 0.4rem 0.28rem;
  border-radius: 0.08rem;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 0.02rem 0.08rem rgba(0, 0, 0, 0.04);
}
.chengguo .chengguo-grid .chengguo-item:hover {
  transform: translateY(-0.04rem);
  box-shadow: 0 0.08rem 0.25rem rgba(35, 76, 107, 0.15);
}
.chengguo .chengguo-grid .chengguo-item .chengguo-image {
  width: 100%;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}
.chengguo .chengguo-grid .chengguo-item .chengguo-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.chengguo .chengguo-grid .chengguo-item:hover .chengguo-image img {
  transform: scale(1.05);
}
.chengguo .chengguo-grid .chengguo-item .chengguo-name {
  font-size: 0.22rem;
  color: #333;
  margin-top: 0.6rem;
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
  transition: color 0.3s ease;
}
.chengguo .chengguo-grid .chengguo-item:hover .chengguo-name {
  color: var(--primary-color);
}

/* 新闻中心页面 */
.newsCenter-list .news-item-link {
  display: block;
  text-decoration: none;
  margin-bottom: 0.2rem;
}
.newsCenter-list .news-item-link .news-item-card {
  display: flex;
  background: #fff;
  border-radius: 0.12rem;
  padding: 0.16rem 0.14rem;
  transition: all 0.3s ease;
  border: 0.01rem solid #f0f0f0;
  position: relative;
  overflow: hidden;
}
.newsCenter-list .news-item-link:hover .news-item-card {
  box-shadow: 0 0.08rem 0.25rem rgba(35, 76, 107, 0.12);
  transform: translateY(-0.02rem);
  border-color: var(--primary-color);
}
.newsCenter-list .news-item-link .news-card-image {
  width: 3.5rem;
  flex-shrink: 0;
  border-radius: 0.08rem;
  overflow: hidden;
  margin-right: 0.5rem;
}
.newsCenter-list .news-item-link .news-card-image .news-card-image-inner {
  width: 100%;
  padding-top: 61.64%;
  position: relative;
}
.newsCenter-list .news-item-link .news-card-image .news-card-image-inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.newsCenter-list .news-item-link:hover .news-card-image-inner img {
  transform: scale(1.08);
}
.newsCenter-list .news-item-link .news-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.05rem 1.3rem 0.05rem 0;
}
.newsCenter-list .news-item-link .news-card-content .news-card-title {
  font-size: 0.25rem;
  color: #000;
  font-weight: 500;
  font-family: "HarmonyOS_Sans_SC_Medium";
  line-height: 1.5;
  margin-bottom: 0.12rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}
.newsCenter-list .news-item-link .news-card-content:hover .news-card-title {
  color: var(--primary-color);
}
.newsCenter-list .news-item-link .news-card-content .news-card-desc {
  font-size: 0.18rem;
  color: rgb(102, 102, 102);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.2rem;
}
.newsCenter-list .news-item-link .news-card-content .news-card-date {
  font-size: 0.18rem;
  color: rgb(102, 102, 102);
}
.newsCenter-list .news-item-link .news-card-arrow {
  position: absolute;
  right: 0.2rem;
  bottom: 0.22rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: all 0.3s ease;
}
.newsCenter-list .news-item-link .news-card-arrow img {
  height: 0.43rem;
}
.newsCenter-list .news-item-link:hover .news-card-arrow {
  right: 0.25rem;
}

.org-section .notice-grid {
  grid-template-columns: repeat(1, 1fr);
  gap: 0.2rem;
}
.org-section .notice-grid .notice-item .notice-content {
  padding-right: 0.3rem;
  box-sizing: border-box;
}

/* 分页器 */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  padding-top: 0.4rem;
  margin-top: 0.2rem;
  border-top: 0.01rem solid #f0f0f0;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.pagination .pagination-prev,
.pagination .pagination-next {
  width: 0.42rem;
  height: 0.42rem;
  background: var(--primary-color);
  border-radius: 0.06rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.pagination .pagination-prev img,
.pagination .pagination-next img {
  width: 0.16rem;
  height: 0.16rem;
  filter: brightness(0) invert(1);
}
.pagination .pagination-prev:hover,
.pagination .pagination-next:hover {
  background: rgb(25, 56, 82);
  transform: scale(1.1);
}
.pagination .pagination-next img {
  transform: rotate(180deg);
}
.pagination .pagination-list {
  display: flex;
  align-items: center;
  gap: 0.08rem;
}
.pagination .pagination-list li {
  margin: 0 0.04rem;
}
.pagination .pagination-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 0.06rem;
  font-size: 0.15rem;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
  background: #fff;
}
.pagination .pagination-list li a:hover {
  background: rgba(35, 76, 107, 0.1);
  color: var(--primary-color);
}
.pagination .pagination-list li a.active {
  background: var(--primary-color);
  color: #fff;
}
.pagination .pagination-list .pagination-ellipsis {
  padding: 0 0.1rem;
  color: #ccc;
  font-size: 0.14rem;
}

.kp-list .news-item-link .news-card-content {
  justify-content: space-around;
}

.pagination .pagination-list li {
  margin: 0 0.04rem;
}
.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 0.06rem;
  font-size: 0.15rem;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
  background: #fff;
}
.pagination a:hover {
  background: rgba(35, 76, 107, 0.1);
  color: var(--primary-color);
}
.pagination a.act {
  background: var(--primary-color);
  color: #fff;
}


.news-xq .news-content table {
  border-collapse: collapse; /* 合并边框，消除间隙 */
  width: 100%; /* 可选，铺满容器 */
}
.news-xq .news-content table th, table td {
  border: 1px solid #ccc; /* 边框粗细、样式、颜色 */
  padding: 8px 12px; /* 单元格内边距，不加文字贴边框 */
}
.news-xq .news-content table th {
  background: #f5f5f5; /* 表头背景区分 */
}

/* 底部 Footer */
.footer {
  background: rgb(35, 76, 107);
  color: #fff;
  padding: 0.7rem 0 0rem 0;
  border-top: 0.02rem solid rgba(255, 255, 255, 0.15);
}
.footer .footer-content {
  display: flex;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: space-between;
  align-items: stretch;
  padding-bottom: 0.7rem;
  border-bottom: 0.01rem solid rgba(255, 255, 255, 0.1);
}
.footer .footer-logo img {
  width: 1.24rem;
  height: 1.24rem;
  border-radius: 50%;
  background: #fff;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer .footer-info {
  padding-left: 1.24rem;
  border-left: 0.01rem solid rgba(255, 255, 255, 0.15);
  font-size: 0.16rem;
  font-weight: 500;
  line-height: 1.5;
}
.footer .footer-info p {
  margin-bottom: 0.12rem;
}
.footer .footer-contact {
  padding-left: 1.2rem;
  border-left: 0.01rem solid rgba(255, 255, 255, 0.15);
}
.footer .footer-contact p {
  font-size: 0.16rem;
  font-weight: 500;
  margin-bottom: 0.12rem;
  line-height: 1.5;
}
.footer .footer-qrcode {
  text-align: center;
  padding-left: 1.2rem;
  border-left: 0.01rem solid rgba(255, 255, 255, 0.15);
}
.footer .footer-qrcode img {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 0.06rem;
  background: #fff;
  padding: 0.01rem;
  margin-bottom: 0.02rem;
}
.footer .footer-qrcode p {
  font-size: 0.16rem;
  color: rgb(255, 255, 255);
}
.footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 0;
}
.footer .footer-bottom p {
  font-size: 0.15rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
}
.footer .footer-bottom p a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s;
  margin-left: 0.14rem;
}
.footer .footer-bottom p a:hover {
  color: rgb(255, 255, 255);
}
.footer .footer-bottom .back-top {
  display: flex;
  align-items: center;
  gap: 0.05rem;
  font-size: 0.15rem;
  color: rgba(255, 255, 255, 0.5);
  border-radius: 0.2rem;
  transition: all 0.3s;
  line-height: 1;
  font-weight: 400;
  position: relative;
}
.footer .footer-bottom .back-top:hover {
  color: #fff;
}
.footer .footer-bottom .back-top::before {
  content: "";
  height: 0.15rem;
  width: 0.16rem;
  font-size: 0.14rem;
  background: url("../images/public-icon3.svg") no-repeat center center;
  background-size: 100% 100%;
  position: absolute;
  top: 0%;
  left: -0.22rem;
}/*# sourceMappingURL=style.css.map */

