html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.container {
  position: relative;
  width: 1920px;
  height: 1200px;
  min-height: 100vh;
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
}

.header {
  width: 100%;
  height: 100%;
}

.header-bg {
  width: 100%;
  height: 100%;
}

.header-bg-wap {
  display: none;
}

.header-bg img {
  width: 100%;
  display: block;
}

.header-title {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  width: 80%;
  opacity: 0;
  animation: titleBounceIn 1.2s ease-out forwards;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.header-title img {
  width: 100%;
  display: block;
}

/* 标题弹跳入场动画 */
@keyframes titleBounceIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -150%) scale(0.3);
    filter: blur(10px);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -40%) scale(1.05);
    filter: blur(0);
  }
  70% {
    transform: translate(-50%, -55%) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    filter: blur(0);
  }
}

/* 标题光晕脉冲效果 */
.header-title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse,
    rgba(255, 215, 100, 0.3) 0%,
    transparent 70%
  );
  animation: titleGlow 3s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes titleGlow {
  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.header-yezi-right {
  position: absolute;
  top: -6%;
  right: -1%;
  width: 25%;
  z-index: 4;
  transform-origin: right top;
  animation: swayRight 4s ease-in-out infinite;
}
.header-yezi-right img {
  width: 100%;
  display: block;
}

.header-yezi-left {
  position: absolute;
  top: -20%;
  left: -8%;
  width: 40%;
  z-index: 4;
  transform: rotate(-20deg);
  transform-origin: left top;
  animation: swayLeft 4s ease-in-out infinite;
}
.header-yezi-left img {
  width: 100%;
  display: block;
}

/* 树叶晃动动画 */
@keyframes swayLeft {
  0%,
  100% {
    transform: rotate(-20deg);
  }
  50% {
    transform: rotate(-15deg);
  }
}

@keyframes swayRight {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(5deg);
  }
}

.header-yun-left {
  position: absolute;
  top: 5%;
  left: 8%;
  width: 20%;
  z-index: 3;
  animation: floatLeft 8s ease-in-out infinite;
}
.header-yun-left img {
  width: 100%;
  display: block;
}

.header-yun-right {
  position: absolute;
  top: 5%;
  right: 8%;
  width: 20%;
  z-index: 3;
  animation: floatRight 10s ease-in-out infinite;
}
.header-yun-right img {
  width: 100%;
  display: block;
}

/* 云彩飘动动画 */
@keyframes floatLeft {
  0%,
  100% {
    transform: translateX(0) scale(1);
    opacity: 0.9;
  }
  50% {
    transform: translateX(50px) scale(1.02);
    opacity: 1;
  }
}

@keyframes floatRight {
  0%,
  100% {
    transform: translateX(0) scale(1);
    opacity: 0.85;
  }
  50% {
    transform: translateX(-50px) scale(1.03);
    opacity: 1;
  }
}

.content {
  position: absolute;
  top: 30%;
  width: 100%;
  z-index: 5;
  display: flex;
  opacity: 0;
  transform: translateY(60px);
  animation: contentSlideIn 1s ease-out 0.8s forwards;
}

@keyframes contentSlideIn {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.left {
  width: 65%;
  position: relative;
}
.left-header-img {
  position: absolute;
  top: -18%;
  left: 5%;
  display: block;
}
.left-bg {
  width: 100%;
  position: relative;
}
.left-bg img {
  width: 100%;
  display: block;
}

.left-map {
  position: absolute;
  top: 48.5%;
  left: 50%;
  width: 88%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}

.left-map img {
  width: 100%;
  display: block;
}

/* 提示文字样式优化 */
.tip {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  font-weight: 700;
  color: #5074a9;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
  animation: tipPulse 2s ease-in-out infinite;
  letter-spacing: 1px;
}

@keyframes tipPulse {
  0%,
  100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.map-1 {
  position: absolute;
  top: 133px;
  left: 8px;
  width: 35%;
}

.map-1 img,
.map-1-titleGray img,
.map-2 img,
.map-2-titleGray img,
.map-3 img,
.map-3-titleGray img,
.map-4 img,
.map-4-titleGray img,
.map-5 img,
.map-5-titleGray img {
  width: 100%;
  display: block;
}
.map-1-titleGray {
  position: absolute;
  top: 87px;
  left: 84px;
  width: 18%;
}
.map-2 {
  position: absolute;
  top: 355px;
  left: 22px;
  width: 35%;
}
.map-2-titleGray {
  position: absolute;
  top: 333px;
  left: 22px;
  width: 16%;
}

.map-3 {
  position: absolute;
  top: 390px;
  left: 524px;
  width: 35%;
}
.map-3-titleGray {
  position: absolute;
  top: 352px;
  left: 494px;
  width: 30%;
}

.map-4 {
  position: absolute;
  top: 128px;
  left: 648px;
  width: 35%;
}
.map-4-titleGray {
  position: absolute;
  top: 87px;
  left: 773px;
  width: 18%;
}

.map-5 {
  position: absolute;
  top: 43px;
  left: 377px;
  width: 25%;
}

.map-5-titleGray {
  position: absolute;
  top: 31px;
  left: 533px;
  width: 25%;
}

.map-1-titleColorful {
  position: absolute;
  top: 87px;
  left: 84px;
  width: 18%;
  display: none;
}

.map-2-titleColorful {
  position: absolute;
  top: 333px;
  left: 22px;
  width: 16%;
  display: none;
}

.map-3-titleColorful {
  position: absolute;
  top: 352px;
  left: 494px;
  width: 30%;
  display: none;
}

.map-4-titleColorful {
  position: absolute;
  top: 87px;
  left: 773px;
  width: 18%;
  display: none;
}

.map-5-titleColorful {
  position: absolute;
  top: 31px;
  left: 533px;
  width: 25%;
  display: none;
}

.right {
  width: 35%;
  margin-right: 40px;
  margin-top: 20px;
  position: relative;
}

/* 重新开始按钮样式优化 */
.right-again {
  position: absolute;
  top: -70px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  background-color: #fff;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.right-again:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.right-again:active {
  transform: translateY(0);
}

.right-again-inner {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: linear-gradient(135deg, #1d8ae5 0%, #1565c0 100%);
  border-radius: 17px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.right-again:hover .right-again-inner {
  background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.right-again-icon {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  display: block;
  transition: transform 0.5s ease;
}

.right-again:hover .right-again-icon {
  transform: rotate(360deg);
}

.right-again-text {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}

.right-content {
  height: 94%;
  background: linear-gradient(145deg, #faf4e2 0%, #f5e6c8 100%);
  border-radius: 20px;
  padding: 20px;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.right-title {
  display: flex;
  flex-direction: column;
  font-size: 24px;
}

.title-left {
  flex: 1;
  display: flex;
  align-items: center;
}

/* 进度条样式优化 */
.progress-bar {
  width: 100%;
  height: 60px;
  background: url("../images/progressBar.png") no-repeat left center;
  background-size: cover;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  position: absolute;
  top: 29px;
  height: 20px;
  margin-left: 50px;
  background: linear-gradient(90deg, #ffffff, #fffacd);
  width: 0%;
  max-width: 75%;
  transition: width 0.3s ease;
  border-radius: 10px;
  box-shadow:
    0 0 8px rgba(0, 0, 0, 0.8),
    inset 0 0 4px rgba(0, 0, 0, 0.3);
}

.achievement-count {
  position: absolute;
  top: 22px;
  right: 28px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-shadow:
    -1px -1px 0 #8d6730,
    1px -1px 0 #8d6730,
    -1px 1px 0 #8d6730,
    1px 1px 0 #8d6730,
    0 0 4px rgba(141, 103, 48, 0.8);
}

.title-right {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.achievement-text {
  font-size: 32px;
  color: #e9aa13;
  font-weight: 800;
  margin-bottom: -20px;
  font-style: italic;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  animation: achievementTextGlow 2s ease-in-out infinite;
}

@keyframes achievementTextGlow {
  0%,
  100% {
    text-shadow:
      2px 2px 4px rgba(0, 0, 0, 0.1),
      0 0 10px rgba(233, 170, 19, 0.3);
  }
  50% {
    text-shadow:
      2px 2px 4px rgba(0, 0, 0, 0.1),
      0 0 20px rgba(233, 170, 19, 0.6);
  }
}

.right-img {
  margin-top: 50px;
  position: relative;
}
.right-desc {
  margin-top: 20px;
  /* position: absolute;
  top: 15%;
  left: 10%; */
}
.right-transform {
  margin-top: 20px;
  background-color: #f5e6b9;
  border-radius: 20px;
  padding: 20px 40px;
  height: 320px;
  overflow-y: auto;
  overflow-x: hidden;
}
.right-transform p {
  font-size: 16px;
  color: #88622b;
}
.transform-item {
  font-size: 20px !important;
  font-weight: bold;
  line-height: 1.5;
  color: #fff !important;
  text-shadow:
    -2px -1px 0 #8d6730,
    2px -1px 0 #8d6730,
    -2px 1px 0 #8d6730,
    2px 1px 0 #8d6730,
    0 0 6px rgba(141, 103, 48, 0.8);
}

.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.footer img {
  max-width: 100%;
  height: auto;
  display: block;
}

.footer-content {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  padding: 0 20px;
  text-align: center;
  z-index: 2;
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
}

.footer-content p {
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* 地图区域样式优化 */
.map-1,
.map-2,
.map-3,
.map-4,
.map-5 {
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* 地图区域悬停效果 */
.map-1:hover,
.map-2:hover,
.map-3:hover,
.map-4:hover,
.map-5:hover {
  opacity: 1 !important;
  transform: scale(1.08);
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
  z-index: 10;
}

/* 地图区域脉冲光晕效果 */
.map-1::before,
.map-2::before,
.map-3::before,
.map-4::before,
.map-5::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse,
    rgba(255, 215, 100, 0.4) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: -1;
}

.map-1:hover::before,
.map-2:hover::before,
.map-3:hover::before,
.map-4:hover::before,
.map-5:hover::before {
  opacity: 1;
  animation: mapPulse 1.5s ease-in-out infinite;
}

@keyframes mapPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.3;
  }
}

/* 地图内容切换动画 */
.map-content {
  width: 100%;
  opacity: 1;
  filter: alpha(opacity=100);
}

.map-content[style*="display: block"] {
  animation: contentFadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes contentFadeInUp {
  from {
    opacity: 0;
    filter: alpha(opacity=0);
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    filter: alpha(opacity=100);
    transform: translateY(0);
  }
}

.achievement-text {
  margin-right: 8px;
}

/* 成就列表项样式优化 */
.transform-li {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0;
  padding-left: 15px;
  border-left: 4px solid #88622b;
}

.transform-li a {
  flex: 1;
  margin-right: 12px;
  transition: all 0.3s ease;
}

.transform-li:hover a {
  transform: translateX(5px);
}

/* 成就徽章按钮样式 */
.achievement-btn {
  width: 40px;
  height: 50px;
  cursor: pointer;
  float: right;
  *display: inline;
  *zoom: 1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.achievement-btn:hover {
  transform: scale(1.1) rotate(5deg);
}

.achievement-btn.witnessed {
  cursor: default;
  animation: medalUnlock 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 成就解锁庆祝动画 */
@keyframes medalUnlock {
  0% {
    transform: scale(1) rotate(0);
  }
  25% {
    transform: scale(1.3) rotate(-10deg);
  }
  50% {
    transform: scale(1.2) rotate(10deg);
  }
  75% {
    transform: scale(1.1) rotate(-5deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

/* 成就解锁光晕效果 */
.achievement-btn.witnessed::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.6) 0%,
    transparent 70%
  );
  animation: medalGlow 1s ease-out forwards;
  pointer-events: none;
}

@keyframes medalGlow {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2);
  }
}

/* 胜利结算界面样式 */
.victory-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: rgba(0, 0, 0, 0.85);
}

.victory-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.victory-img {
  max-width: 80%;
  max-height: 70vh;
  display: block;
  margin: 0 auto 30px;
  animation: victoryBounceIn 0.8s ease-out;
}

/* 胜利结算界面的重新开始按钮 */
.victory-content .right-again {
  position: absolute;
  top: 305px;
  right: 43%;
  display: inline-flex;
  margin-top: 30px;
  animation: victoryButtonFadeIn 0.6s ease-out 0.4s both;
}

@keyframes victoryBounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes victoryButtonFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-dibiao {
  display: none;
}

.right-btn-wap {
  display: none;
}
/* 移动端样式 - 平板/大手机 */
@media screen and (max-width: 768px) {
  .right-btn-wap {
    display: block;
  }
  .victory-screen {
    background: rgba(0, 0, 0, 0.85);
  }
  .victory-content {
    width: 90%;
  }
  .victory-content .right-again {
    top: 67%;
    left: 40%;
    right: auto;
    margin-top: 20px;
  }
  .header-yezi-right,
  .header-yezi-left,
  .header-yun-right,
  .header-yun-left,
  .header-title,
  .btn-dibiao {
    display: none;
  }
  .container {
    width: 100%;
    height: auto;
    min-height: 100vh;
    position: relative;
  }

  .header {
    height: auto;
    position: relative;
  }

  .header-bg {
    display: none;
  }

  .header-bg-wap {
    display: block;
    width: 100%;
  }

  .header-bg-wap img {
    width: 100%;
    height: auto;
    display: block;
  }

  .header-title {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 80%;
    margin: 20px auto;
    z-index: 2;
  }

  .header-title img {
    width: 100%;
    height: auto;
  }

  .content {
    position: relative;
    bottom: auto;
    flex-direction: column;
    padding: 15px;
    width: 100%;
    box-sizing: border-box;
    animation-delay: 0s;
  }

  .left {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
  }

  .left-header-img {
    position: relative;
    top: auto;
    left: auto;
    width: 60%;
    margin: 0;
  }

  .left-header-img img {
    width: 100%;
    height: auto;
  }

  .left-bg {
    display: none;
  }

  .aaaa {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .left-map {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    transform: none;
  }

  .left-map img {
    width: 100%;
    height: auto;
  }

  .map-1,
  .map-2,
  .map-3,
  .map-4,
  .map-5 {
    position: absolute;
    transform: scale(0.7);
  }

  .map-1:hover,
  .map-2:hover,
  .map-3:hover,
  .map-4:hover,
  .map-5:hover {
    transform: scale(0.75);
  }

  .map-1 {
    top: 20%;
    left: -9%;
    width: 55%;
  }

  .map-1-titleGray {
    top: 17%;
    left: 7%;
    width: 22%;
  }

  .map-1-titleColorful {
    top: 17%;
    left: 7%;
    width: 22%;
  }

  .map-2 {
    top: 56%;
    left: -6%;
    width: 55%;
  }

  .map-2-titleGray {
    top: 59%;
    left: 1%;
    width: 20%;
  }

  .map-2-titleColorful {
    top: 59%;
    left: 1%;
    width: 20%;
  }

  .map-3 {
    top: 57%;
    left: 43%;
    width: 50%;
  }

  .map-3-titleGray {
    top: 58%;
    left: 46%;
    width: 35%;
  }

  .map-3-titleColorful {
    top: 58%;
    left: 46%;
    width: 35%;
  }

  .map-4 {
    top: 17%;
    left: 58%;
    width: 50%;
  }

  .map-4-titleGray {
    top: 15%;
    left: 74%;
    width: 22%;
  }

  .map-4-titleColorful {
    top: 15%;
    left: 74%;
    width: 22%;
  }

  .map-5 {
    top: 1%;
    left: 35%;
    width: 38%;
  }

  .map-5-titleGray {
    top: 2%;
    left: 52%;
    width: 30%;
  }

  .map-5-titleColorful {
    top: 2%;
    left: 52%;
    width: 30%;
  }

  .right {
    width: 100%;
    margin-right: 0;
    margin-top: 0px;
    position: relative;
  }

  .right-again {
    position: relative;
    top: auto;
    left: 70%;
    text-align: center;
    display: inline-block;
    margin-bottom: 15px;
    font-size: 18px;
  }

  .right-content {
    height: auto;
    min-height: 500px;
    padding: 15px;
    border-radius: 15px;
  }

  .right-title {
    flex-direction: column;
    align-items: flex-start;
    font-size: 18px;
    margin-bottom: 0px;
  }

  .title-left {
    margin-bottom: 10px;
    width: 100%;
  }

  .progress-bar {
    width: 100%;
    height: 50px;
    /* background-size: contain; */
  }

  .progress-fill {
    top: 25px;
    height: 25%;
    margin-left: 45px;
  }

  .achievement-count {
    top: 18px;
    right: 20px;
    font-size: 18px;
  }

  .title-right {
    width: 100%;
    justify-content: space-between;
  }

  .achievement-text {
    font-size: 20px;
  }

  .achievement-count {
    font-size: 20px;
  }

  .map-main {
    width: 100%;
  }

  .right-img {
    margin-top: 20px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .right-img img {
    width: 100%;
    height: auto;
  }

  .right-desc {
    position: relative;
    top: auto;
    left: auto;
    margin-top: 0px;
    margin-bottom: 15px;
    text-align: center;
  }

  .right-desc h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .right-desc span {
    font-size: 14px;
  }

  .right-transform {
    height: 400px;
    padding: 15px 20px;
    margin-top: 15px;
    border-radius: 15px;
  }

  .transform-item {
    font-size: 16px;
    line-height: 2;
  }

  .transform-li {
    flex-direction: row;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .transform-li:last-child {
    border-bottom: none;
  }

  .transform-li a {
    flex: 1;
    margin-right: 12px;
    margin-bottom: 0;
  }

  .achievement-btn {
    width: 55px;
    height: 65px;
    padding: 0;
    font-size: 14px;
    flex-shrink: 0;
  }

  .tip {
    position: static;
    transform: none;
    animation: none;
    text-align: center;
  }

  .btn-dibiao {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    margin-top: 15px;
  }

  .btn-dibiao p {
    background: linear-gradient(135deg, #e9aa13 0%, #d4950d 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    width: 100%;
    font-weight: 600;
    cursor: pointer;
    box-shadow:
      0 4px 8px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    text-align: center;
    margin: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
  }

  .btn-dibiao p:hover {
    background: linear-gradient(135deg, #f5b820 0%, #e5a010 100%);
    transform: translateY(-2px);
    box-shadow:
      0 6px 12px rgba(0, 0, 0, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }

  .btn-dibiao p:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  .footer {
    position: relative;
    bottom: auto;
  }

  .footer img {
    width: 100%;
    height: auto;
  }

  .right-again-wap {
    display: none;
  }
}
@media screen and (max-width: 540px) {
  .victory-content .right-again {
    left: 37%;
  }
}
/* 手机端样式 - 小屏幕 */
@media screen and (max-width: 480px) {
  .victory-content .right-again {
    top: 67%;
    left: 34%;
    right: auto;
    margin-top: 15px;
  }
  .container {
    width: 100%;
    min-height: 100vh;
  }

  .header-title {
    width: 90%;
    margin: 15px auto;
  }

  .content {
    padding: 10px;
    animation-delay: 0s;
  }

  .left {
    margin-bottom: 15px;
  }

  .left-header-img {
    width: 80%;
    margin: 0px;
  }

  .left-header-img img {
    width: 100%;
  }

  .right-again {
    font-size: 16px;
    margin-bottom: 10px;
    left: 65%;
    display: inline-block;
  }

  .right-content {
    padding: 12px;
    min-height: 450px;
    border-radius: 12px;
  }

  .right-title {
    font-size: 16px;
  }

  .achievement-count {
    font-size: 18px;
  }

  .right-img {
    width: 90%;
  }

  .right-desc h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .right-desc span {
    font-size: 13px;
  }

  .right-transform {
    padding: 12px 15px;
    border-radius: 12px;
    margin-top: 12px;
  }

  .transform-item {
    line-height: 1.3;
  }
  .progress-bar {
    width: 100%;
    height: 50px;
    background-size: contain;
  }
  .progress-fill {
    margin-left: 30px;
    height: 20%;
  }

  .transform-li {
    margin-bottom: 12px;
    padding-bottom: 8px;
  }

  .achievement-btn {
    padding: 8px;
  }

  .map-content {
    animation: none;
  }

  .right-again-wap {
    display: none;
  }
}
