/* 全局变量 */
/* 添加适配变量 - 基于原设计尺寸计算比例 */
/* 不使用vw/vh单位，恢复使用固定尺寸，依靠JS进行统一缩放 */
@font-face {
  font-family: YouSheBiaoTiHei;
  src: url("../font/YouSheBiaoTiHei-2.ttf");
}
@font-face {
  font-family: alimama;
  src: url("../font/Alimama_ShuHeiTi_Bold.ttf");
}
@font-face {
  font-family: DDIN;
  src: url("../font/D-DIN-Bold.woff.ttf");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: "Microsoft YaHei", sans-serif;
  color: #fff;
}
#app {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: left top;
  background-image: url(../img/bg.png);
  background-blend-mode: multiply;
  background-size: cover;
  background-repeat: no-repeat;
  /* 添加变量以保存当前缩放比例 - 供JS读取 */
  --scale-ratio: 1;
  --scale-ratio-x: 1;
  --scale-ratio-y: 1;
}
.header {
  width: 100%;
  /* 使用固定高度 */
  height: 113px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* 使用固定内边距 */
  padding: 0 18px;
  background-image: url(../img/top_bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: relative;
}
.header .dec {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border: 1px solid transparent;
  min-height: 5px;
  /* 确保最小高度 */
  min-width: 5px;
  /* 确保最小宽度 */
  transition: none;
  /* 移除过渡效果，使切换即时生效 */
}
.header .dec > div {
  width: 100%;
  height: 100%;
}
.header .title {
  /* 使用固定字体大小 */
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 2px;
}
.header .date-info {
  /* 固定字体和外边距 */
  font-size: 16px;
  margin-bottom: 50px;
}
.header .user-info {
  display: flex;
  align-items: center;
  /* 固定外边距 */
  margin-bottom: 50px;
}
.header .user-info .avatar {
  /* 固定宽高 */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  margin-right: 10px;
}
.content {
  display: flex;
  height: calc(100% - 80px);
  transform: translateY(-20px);
}
.content .left-panel,
.content .right-panel {
  width: 25%;
  height: 100%;
  /* 固定内边距 */
  padding: 15px;
  padding-top: 0;
  display: flex;
  flex-direction: column;
}
.content .center-panel {
  width: 50%;
  height: 100%;
  /* 固定内边距 */
  padding: 15px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.content .center-panel .center-logo {
  flex: 1;
}
.content .center-panel .banner-container {
  /* 固定外边距和高度 */
  margin-bottom: 40px;
  width: 100%;
  height: 180px;
  margin-top: 20px;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.content .center-panel .banner-container .swiper-slide {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.content .center-panel .banner-container .swiper-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-25deg);
  animation: slide 3s infinite;
  z-index: 1;
}
.content .center-panel .banner-container .swiper-slide img {
  transition: transform 0.5s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .center-panel .banner-container .swiper-slide:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
.content .center-panel .banner-container .swiper-slide:hover img {
  transform: scale(1.1);
}
.content .data-card {
  border-radius: 5px;
  /* 固定外边距 */
  margin-bottom: 15px;
  width: 100%;
}
.content .data-card .card-header {
  /* 固定外边距和高度 */
  margin-bottom: 15px;
  background-image: url(../img/my_title_bg.png);
  width: 60%;
  height: 45px;
  background-size: 100% 100%;
  /* 固定字体和内边距 */
  font-size: 20px;
  display: flex;
  align-items: center;
  padding-left: 20px;
  padding-bottom: 3px;
  font-family: alimama;
}
.content .data-card .year-target-chart {
  display: flex;
  width: 100%;
}
.content .data-card .year-target-chart .chart {
  width: 169px;
  height: 108px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content .data-card .year-target-chart .chart_info {
  width: 100%;
  flex: 1;
  display: flex;
  justify-content: space-around;
}
.content .data-card .year-target-chart .chart_info .chart_info_item {
  color: #675555;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.content .data-card .year-target-chart .chart_info .chart_info_item .num {
  font-size: 22px;
  font-weight: bold;
  font-family: DDIN;
}
.content .data-card .year-target-chart .chart_info .chart_info_item .title {
  font-size: 16px;
}
.content .data-card:nth-child(2) {
  display: flex;
  flex-direction: column;
}
.content .data-card:nth-child(2) .activity-list {
  height: calc(100% - 45px);
}
.content .record-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
  padding-bottom: 10px;
  box-sizing: border-box;
}
.content .record-card .card-header {
  margin-bottom: 5px;
}
.content .record-card .record-list {
  flex: 1;
  overflow: hidden;
  height: 100%;
}
.content .record-card .record-list .t_list_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ccc;
  font-size: 16px;
  color: #675555;
  font-family: DDIN;
  width: 100%;
  margin: 13px 0;
  position: relative;
}
.content .record-card .record-list .t_list_item::after {
  background-image: url(../img/jf_bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12px;
}
.content .record-card .record-list .t_list_item .num {
  width: 100px;
  text-align: center;
}
.content .record-card .record-list .t_list_item .num span {
  font-family: YouSheBiaoTiHei;
  background: linear-gradient(270deg, #FFAA0E 0%, #FFFBF5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  font-weight: bold;
}
.content .record-card .record-list .t_list_item .name {
  width: 100px;
  text-align: center;
}
.content .record-card .record-list .t_list_item .percent_wrap {
  flex: 1;
  position: relative;
}
.content .record-card .record-list .t_list_item .percent_wrap .inner {
  height: 100%;
  height: 6px;
}
.content .record-card .record-list .t_list_item .percent {
  width: 100px;
  text-align: center;
}
.content .record-card .record-list .t_list_item:nth-child(2n) .inner {
  background: linear-gradient(270deg, #FFBF3E 0%, rgba(255, 191, 62, 0) 89%);
}
.content .record-card .record-list .t_list_item:nth-child(2n-1) .inner {
  background: linear-gradient(270deg, #88AEE1 0%, rgba(136, 174, 225, 0) 90%);
}
.content .center-logo {
  position: relative;
  width: 100%;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content .center-logo #earth-container {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 50%;
  overflow: hidden;
  display: none;
}
.content .center-logo #earth-container > canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.content .center-logo .party-logo-container {
  position: relative;
  width: 750px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.content .center-logo .party-logo-container .party-big {
  width: 130%;
  height: 130%;
  object-fit: contain;
  position: absolute;
  animation: rotate-clockwise 30s linear infinite;
}
.content .center-logo .party-logo-container .party-middle {
  width: 120%;
  height: 120%;
  object-fit: contain;
  position: absolute;
  animation: rotate-counterclockwise 25s linear infinite;
}
.content .center-logo .party-logo-container .party-little {
  width: 70%;
  height: 70%;
  object-fit: contain;
  position: absolute;
  animation: rotate-clockwise 20s linear infinite;
}
.content .center-logo .party-logo-container .party-dh {
  z-index: 3;
}
.content .center-logo .party-logo-container .party_wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 4;
}
.content .center-logo .party-logo-container .party_wrap .party_inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.content .center-logo .party-logo-container .party_wrap .party_item {
  position: absolute;
  width: 132px;
  height: 148px;
  background-image: url(../img/mid_dz.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
}
.content .center-logo .party-logo-container .party_wrap .party_item .base {
  position: absolute;
  width: 90px;
  height: 60px;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: 1;
  opacity: 0.9;
  filter: blur(3px);
  animation: base-pulse 4s ease-in-out infinite;
}
.content .center-logo .party-logo-container .party_wrap .party_item .party_item_inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content .center-logo .party-logo-container .party_wrap .party_item .party_item_inner .title {
  color: white;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5), 1px 1px 2px rgba(0, 0, 0, 0.7);
  font-size: 16px;
  margin-top: 5px;
  text-align: center;
  font-weight: bold;
}
.content .center-logo .party-logo-container .party_wrap .party_item .starlight-container {
  position: absolute;
  width: 80px;
  height: 120px;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}
.content .center-logo .party-logo-container .party_wrap .party_item .star1 {
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: white;
  border-radius: 50%;
  left: 30%;
  bottom: 10%;
  filter: blur(1px);
  opacity: 0;
  box-shadow: 0 0 5px 2px rgba(255, 255, 255, 0.7);
  animation: twinkle 2s ease-in-out infinite;
}
.content .center-logo .party-logo-container .party_wrap .party_item .star2 {
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: white;
  border-radius: 50%;
  left: 70%;
  bottom: 20%;
  filter: blur(1px);
  opacity: 0;
  box-shadow: 0 0 6px 2px rgba(255, 255, 255, 0.7);
  animation: twinkle 3s ease-in-out 0.5s infinite;
}
.content .center-logo .party-logo-container .party_wrap .party_item .star3 {
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: white;
  border-radius: 50%;
  left: 40%;
  bottom: 40%;
  filter: blur(1px);
  opacity: 0;
  box-shadow: 0 0 5px 2px rgba(255, 255, 255, 0.7);
  animation: twinkle 2.5s ease-in-out 1s infinite;
}
.content .center-logo .party-logo-container .party_wrap .party_item .star4 {
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: white;
  border-radius: 50%;
  left: 60%;
  bottom: 60%;
  filter: blur(1px);
  opacity: 0;
  box-shadow: 0 0 7px 3px rgba(255, 255, 255, 0.7);
  animation: twinkle 2.8s ease-in-out 1.5s infinite;
}
.content .center-logo .party-logo-container .party_wrap .party_item .star5 {
  position: absolute;
  width: 3px;
  height: 3px;
  background-color: white;
  border-radius: 50%;
  left: 50%;
  bottom: 80%;
  filter: blur(1px);
  opacity: 0;
  box-shadow: 0 0 4px 2px rgba(255, 255, 255, 0.7);
  animation: twinkle 2.2s ease-in-out 0.8s infinite;
}
.content .center-logo .party-logo-container .party_wrap .party_item .star6 {
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: white;
  border-radius: 50%;
  left: 20%;
  bottom: 50%;
  filter: blur(1px);
  opacity: 0;
  box-shadow: 0 0 6px 2px rgba(255, 255, 255, 0.7);
  animation: twinkle 3.2s ease-in-out 1.2s infinite;
}
.content .center-logo .party-logo-container .party_wrap .party_item .star7 {
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: white;
  border-radius: 50%;
  left: 80%;
  bottom: 30%;
  filter: blur(1px);
  opacity: 0;
  box-shadow: 0 0 5px 2px rgba(255, 255, 255, 0.7);
  animation: twinkle 2.7s ease-in-out 0.3s infinite;
}
.content .center-logo .party-logo-container .party_wrap .party_item .star8 {
  position: absolute;
  width: 3px;
  height: 3px;
  background-color: white;
  border-radius: 50%;
  left: 45%;
  bottom: 70%;
  filter: blur(1px);
  opacity: 0;
  box-shadow: 0 0 4px 2px rgba(255, 255, 255, 0.7);
  animation: twinkle 3s ease-in-out 0.7s infinite;
}
.content .center-logo .party-logo-container .party_wrap .party_item .star9 {
  position: absolute;
  width: 7px;
  height: 7px;
  background-color: white;
  border-radius: 50%;
  left: 35%;
  bottom: 45%;
  filter: blur(1px);
  opacity: 0;
  box-shadow: 0 0 8px 3px rgba(255, 255, 255, 0.8);
  animation: twinkle 3.5s ease-in-out 0.2s infinite;
}
.content .center-logo .party-logo-container .party_wrap .party_item .star10 {
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  left: 65%;
  bottom: 65%;
  filter: blur(1px);
  opacity: 0;
  box-shadow: 0 0 10px 4px rgba(255, 255, 255, 0.8);
  animation: twinkle 3.8s ease-in-out 1.8s infinite;
}
.content .center-logo .party-logo-container .party_wrap .party_item .star11 {
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: white;
  border-radius: 50%;
  left: 25%;
  bottom: 75%;
  filter: blur(1px);
  opacity: 0;
  box-shadow: 0 0 6px 2px rgba(255, 255, 255, 0.7);
  animation: twinkle 2.9s ease-in-out 0.9s infinite;
}
.content .center-logo .party-logo-container .party_wrap .party_item .star12 {
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: white;
  border-radius: 50%;
  left: 75%;
  bottom: 15%;
  filter: blur(1px);
  opacity: 0;
  box-shadow: 0 0 5px 2px rgba(255, 255, 255, 0.7);
  animation: twinkle 2.4s ease-in-out 1.3s infinite;
}
.content .center-logo .party-logo-container .party_wrap .party_item .light-glow {
  position: absolute;
  width: 120px;
  height: 30px;
  background: radial-gradient(ellipse at center, rgba(255, 180, 210, 0.6) 0%, rgba(255, 180, 210, 0) 70%);
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  filter: blur(10px);
  opacity: 0.6;
  animation: glow-pulse 4s ease-in-out infinite;
  pointer-events: none;
}
.content .center-logo .party-logo-container .party_wrap .party_item .icon {
  width: 68px;
  height: 64px;
  background-size: 100% 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.content .center-logo .party-logo-container .party_wrap .party_item .icon img {
  transform: translateY(3px);
}
.content .center-logo .party-logo-container .party_wrap .party_item .icon .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../img/mid_circle.png);
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  animation: rotate-clockwise 5s linear infinite;
}
.content .center-logo .party-logo-container .party_wrap .party_item:nth-child(1) {
  left: 310px;
  top: -20px;
}
.content .center-logo .party-logo-container .party_wrap .party_item:nth-child(2) {
  left: 310px;
  bottom: -20px;
}
.content .center-logo .party-logo-container .party_wrap .party_item:nth-child(3) {
  left: -12px;
  top: calc(50% - 74px);
}
.content .center-logo .party-logo-container .party_wrap .party_item:nth-child(4) {
  right: -12px;
  top: calc(50% - 74px);
}
.content .center-logo .party-logo-container .party_wrap .party_item:nth-child(5) {
  right: 90px;
  top: 48px;
}
.content .center-logo .party-logo-container .party_wrap .party_item:nth-child(6) {
  left: 90px;
  top: 48px;
}
.content .center-logo .party-logo-container .party_wrap .party_item:nth-child(7) {
  left: 90px;
  bottom: 48px;
}
.content .center-logo .party-logo-container .party_wrap .party_item:nth-child(8) {
  right: 90px;
  bottom: 48px;
}
@keyframes rotate-clockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotate-counterclockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@keyframes glow-pulse {
  0% {
    opacity: 0.4;
    transform: translateX(-50%) scale(0.8);
  }
  20% {
    opacity: 0.9;
    transform: translateX(-50%) scale(1.2);
  }
  40% {
    opacity: 0.6;
    transform: translateX(-50%) scale(1);
  }
  60% {
    opacity: 0.8;
    transform: translateX(-50%) scale(1.1);
  }
  100% {
    opacity: 0.4;
    transform: translateX(-50%) scale(0.8);
  }
}
@keyframes base-pulse {
  0% {
    opacity: 0.7;
    transform: translateX(-50%) scale(0.95);
  }
  20% {
    opacity: 0.9;
    transform: translateX(-50%) scale(1.05);
  }
  40% {
    opacity: 0.8;
    transform: translateX(-50%) scale(1);
  }
  60% {
    opacity: 0.9;
    transform: translateX(-50%) scale(1.03);
  }
  100% {
    opacity: 0.7;
    transform: translateX(-50%) scale(0.95);
  }
}
@keyframes twinkle {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  25% {
    opacity: 1;
    transform: scale(1.3);
    box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.9);
  }
  50% {
    opacity: 0.3;
    transform: scale(1);
    box-shadow: 0 0 8px 3px rgba(255, 255, 255, 0.7);
  }
  75% {
    opacity: 0.8;
    transform: scale(1.2);
    box-shadow: 0 0 12px 4px rgba(255, 255, 255, 0.8);
  }
  100% {
    opacity: 0;
    transform: scale(0.8);
    box-shadow: 0 0 5px 2px rgba(255, 255, 255, 0.5);
  }
}
.content .center-logo .logo-bg {
  width: 300px;
  height: 300px;
  border-radius: 50%;
}
.content .center-logo .nav-items {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.content .center-logo .nav-items .nav-item {
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(255, 165, 0, 0.2);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.content .center-logo .nav-items .nav-item .icon-title {
  margin-top: 8px;
  color: #f0c838;
}
.content .progress-bar {
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  margin: 5px 0;
}
.content .progress-bar .progress {
  height: 100%;
  background: linear-gradient(to right, #3498db, #f39c12);
  border-radius: 5px;
}
.content .banner-container {
  width: 100%;
  height: 120px;
  margin-top: 20px;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  margin-bottom: 40px;
}
.content .banner-container .swiper {
  width: 100%;
  height: 100%;
}
.content .banner-container .swiper-wrapper {
  transition-timing-function: linear;
}
.content .banner-container .swiper-slide {
  border-radius: 6px;
  overflow: hidden;
}
.content .banner-container .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.content .banner-container .swiper-button-prev,
.content .banner-container .swiper-button-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s;
  z-index: 10;
}
.content .banner-container .swiper-button-prev:hover,
.content .banner-container .swiper-button-next:hover {
  background: rgba(0, 0, 0, 0.5);
}
.content .banner-container .swiper-button-prev::after,
.content .banner-container .swiper-button-next::after {
  content: '';
  display: none;
}
.content .banner-container .swiper-button-prev img,
.content .banner-container .swiper-button-next img {
  width: 40px;
  height: 40px;
  display: block;
}
.content .banner-container .swiper-button-prev {
  left: 10px;
}
.content .banner-container .swiper-button-next {
  right: 10px;
}
.content .activity-list {
  flex: 1;
  overflow: hidden;
  height: 100%;
  position: relative;
}
.content .activity-list::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 0;
  height: 100%;
  width: 1px;
  background: #8c5757;
}
.content .activity-list .activity-list {
  overflow: hidden;
  flex: 1;
}
.content .activity-list .activity-list-item {
  position: relative;
  padding: 15px 10px 20px 30px;
  margin-bottom: 10px;
  background-color: rgba(217, 200, 200, 0.4);
}
.content .activity-list .activity-list-item .date {
  display: flex;
  align-items: center;
  color: #675555;
  font-size: 16px;
  margin-bottom: 3vh;
  position: relative;
}
.content .activity-list .activity-list-item .date .dot {
  position: absolute;
  left: -19px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #8c5757;
  border: 2px solid rgba(255, 255, 255, 0.5);
  z-index: 2;
}
.content .activity-list .activity-list-item .date span {
  margin-left: 10px;
  color: #985a5a;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(255, 140, 140, 0.1);
  border-radius: 2px 2px 2px 2px;
  border: 1px solid rgba(129, 115, 115, 0.2);
  font-size: 14px;
}
.content .activity-list .activity-list-item .content {
  font-size: 14px;
  color: #675555;
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.content .activity-list .activity-list-item .pic {
  width: 98%;
  overflow: hidden;
  border-radius: 4px;
}
.content .activity-list .activity-list-item .pic img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.content .activity-list .activity-list-item .pic img:hover {
  transform: scale(1.05);
}
.activity-card {
  flex: 1;
  overflow: hidden;
  box-sizing: border-box;
  padding-bottom: 10px;
}
/* 数据项样式 */
.data-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.data-items .data-item {
  width: 48%;
  /* 固定外边距和圆角 */
  margin-bottom: 15px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  /* 固定内边距 */
  padding: 10px;
  position: relative;
  overflow: hidden;
  /* 添加图标悬停效果 */
  /* 悬停时的特定颜色效果 */
}
.data-items .data-item .icon {
  /* 固定宽高 */
  width: 40px;
  height: 40px;
  position: relative;
}
.data-items .data-item .icon img {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}
.data-items .data-item .icon .icon-glow {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  filter: blur(1px);
  opacity: 0.8;
  pointer-events: none;
  /* 确保不会干扰点击 */
  animation: flow-light 5s ease-in-out infinite;
}
.data-items .data-item:hover .icon img {
  transform: translateY(-2px);
}
.data-items .data-item:hover .icon .icon-glow {
  filter: blur(1.5px);
  opacity: 1;
  animation-duration: 3s;
}
.data-items .data-item .info {
  display: flex;
  flex-direction: column;
}
.data-items .data-item .info .item-title {
  /* 固定字体 */
  font-size: 16px;
  color: #675555;
  font-weight: normal;
  display: flex;
  justify-content: space-between;
}
.data-items .data-item .info .item-value {
  /* 固定字体 */
  font-size: 20px;
  color: #675555;
  font-family: YouSheBiaoTiHei;
}
/* 添加流光动画效果 */
@keyframes flow-light {
  0% {
    filter: blur(1px) brightness(1);
    transform: translateX(-50%) scale(1);
  }
  25% {
    filter: blur(1.5px) brightness(1.3);
    transform: translateX(-50%) scale(1.05);
  }
  50% {
    filter: blur(1px) brightness(0.9);
    transform: translateX(-50%) scale(0.95);
  }
  75% {
    filter: blur(1.5px) brightness(1.2);
    transform: translateX(-50%) scale(1.02);
  }
  100% {
    filter: blur(1px) brightness(1);
    transform: translateX(-50%) scale(1);
  }
}
/* 为不同背景色提供特定的流光效果动画 */
.line_bg_1 .icon-glow {
  animation: flow-light-pink 5s ease-in-out infinite;
}
.line_bg_2 .icon-glow {
  animation: flow-light-green 5s ease-in-out infinite;
}
.line_bg_3 .icon-glow {
  animation: flow-light-blue 5s ease-in-out infinite;
}
.line_bg_4 .icon-glow {
  animation: flow-light-lightblue 5s ease-in-out infinite;
}
/* 粉红色流光效果 */
@keyframes flow-light-pink {
  0% {
    filter: blur(1px) brightness(1);
    transform: translateX(-50%) scale(1);
  }
  25% {
    filter: blur(1.5px) brightness(1.3);
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 0 15px rgba(222, 156, 156, 0.5);
  }
  50% {
    filter: blur(1px) brightness(0.9);
    transform: translateX(-50%) scale(0.95);
  }
  75% {
    filter: blur(1.5px) brightness(1.2);
    transform: translateX(-50%) scale(1.02);
    box-shadow: 0 0 10px rgba(222, 156, 156, 0.3);
  }
  100% {
    filter: blur(1px) brightness(1);
    transform: translateX(-50%) scale(1);
  }
}
/* 绿色流光效果 */
@keyframes flow-light-green {
  0% {
    filter: blur(1px) brightness(1);
    transform: translateX(-50%) scale(1);
  }
  25% {
    filter: blur(1.5px) brightness(1.3);
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 0 15px rgba(95, 161, 100, 0.5);
  }
  50% {
    filter: blur(1px) brightness(0.9);
    transform: translateX(-50%) scale(0.95);
  }
  75% {
    filter: blur(1.5px) brightness(1.2);
    transform: translateX(-50%) scale(1.02);
    box-shadow: 0 0 10px rgba(95, 161, 100, 0.3);
  }
  100% {
    filter: blur(1px) brightness(1);
    transform: translateX(-50%) scale(1);
  }
}
/* 蓝色流光效果 */
@keyframes flow-light-blue {
  0% {
    filter: blur(1px) brightness(1);
    transform: translateX(-50%) scale(1);
  }
  25% {
    filter: blur(1.5px) brightness(1.3);
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 0 15px rgba(37, 78, 164, 0.5);
  }
  50% {
    filter: blur(1px) brightness(0.9);
    transform: translateX(-50%) scale(0.95);
  }
  75% {
    filter: blur(1.5px) brightness(1.2);
    transform: translateX(-50%) scale(1.02);
    box-shadow: 0 0 10px rgba(37, 78, 164, 0.3);
  }
  100% {
    filter: blur(1px) brightness(1);
    transform: translateX(-50%) scale(1);
  }
}
/* 浅蓝色流光效果 */
@keyframes flow-light-lightblue {
  0% {
    filter: blur(1px) brightness(1);
    transform: translateX(-50%) scale(1);
  }
  25% {
    filter: blur(1.5px) brightness(1.3);
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 0 15px rgba(117, 218, 238, 0.5);
  }
  50% {
    filter: blur(1px) brightness(0.9);
    transform: translateX(-50%) scale(0.95);
  }
  75% {
    filter: blur(1.5px) brightness(1.2);
    transform: translateX(-50%) scale(1.02);
    box-shadow: 0 0 10px rgba(117, 218, 238, 0.3);
  }
  100% {
    filter: blur(1px) brightness(1);
    transform: translateX(-50%) scale(1);
  }
}
.line_bg_1 {
  background: linear-gradient(90deg, rgba(222, 156, 156, 0) 0%, rgba(222, 156, 156, 0.2) 50%, rgba(222, 156, 156, 0) 100%);
}
.line_bg_2 {
  background: linear-gradient(270deg, rgba(95, 161, 100, 0) 0%, #a2ffaa5c 50%, rgba(95, 161, 100, 0) 100%);
}
.line_bg_3 {
  background: linear-gradient(90deg, rgba(37, 78, 164, 0) 0%, #6890e73f 49%, rgba(37, 78, 164, 0) 100%);
}
.line_bg_4 {
  background: linear-gradient(90deg, rgba(117, 218, 238, 0) 0%, #75daee44 49%, rgba(117, 218, 238, 0) 100%);
}
/* 添加轮播图初始隐藏样式 */
.banner-container.animate__slideInUp {
  opacity: 0;
  visibility: hidden;
}
.banner-container.animate__slideInUp.animate__animated {
  opacity: 1;
  visibility: visible;
}
/* 改进轮播图初始隐藏样式 */
.initially-hidden {
  transform: translateY(300px);
  opacity: 0;
  visibility: visible;
  /* 改为可见，避免动画结束后仍然隐藏 */
  z-index: 1;
  /* 恢复正常的层级 */
}
/* 容器溢出控制 */
.center-panel {
  overflow: hidden;
}
/* 动画完成后样式恢复 */
.banner-container.animate__slideInUp.animate__animated {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  transform: translateY(0);
}
@keyframes slide {
  0% {
    left: -100%;
  }
  30%,
  70% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
/* 活跃幻灯片效果 */
.swiper-slide-active {
  border: 2px solid transparent;
  box-shadow: 0 0 15px rgba(255, 180, 180, 0.8);
  animation: borderGlow 2s infinite alternate;
}
@keyframes borderGlow {
  0% {
    border-color: rgba(255, 100, 100, 0.5);
    box-shadow: 0 0 15px rgba(255, 180, 180, 0.5);
  }
  100% {
    border-color: rgba(255, 180, 255, 0.8);
    box-shadow: 0 0 25px rgba(255, 100, 255, 0.8);
  }
}
