@charset "UTF-8";
/* 重置样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background-color: #D3E6FC;
  color: #ffffff;
  line-height: 1.2;
}

a {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  text-decoration: none;
}

a:hover,
a:active {
  background: none;
  color: inherit;
}

/* 容器 */
.container {
  width: 100%;
  min-height: 100vh;
  background: url(../img/bg.png) no-repeat center center;
  background-size: 100% 100%;
}

/* 电脑端响应式 - 最大宽度750px居中 */
@media (min-width: 768px) {
  .container {
    max-width: 750px;
    margin: 0 auto;
  }
}
/* 移动端响应式设计 */
@media (max-width: 767px) {
  .container {
    width: 100%;
    background-size: cover;
  }
}
/* 头部样式 */
.header {
  text-align: center;
  padding: 15px 15px 0px 15px;
  margin-bottom: 10px;
}
.header .main-logo {
  width: 470px;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .header .main-logo {
    width: 90%;
    max-width: 350px;
    height: auto;
  }
}

.site-title {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* 公告区域 */
.notice-section {
  margin: 0 10px;
  margin-bottom: 10px;
  width: 720px;
  border-radius: 22px;
  background: linear-gradient(180deg, #e1f3ff 0%, #ebf5ff 100%);
  box-sizing: border-box;
  border: 2px solid #ffffff;
  box-shadow: inset 0px 4px 10px 0px #ffffff;
  font-size: 28px;
  font-weight: normal;
  line-height: 43px;
  padding: 15px;
  box-sizing: border-box;
  color: #041638;
  font-weight: bold;
}
@media (max-width: 767px) {
  .notice-section {
    width: calc(100% - 20px);
    margin: 0 10px;
    margin-bottom: 6px;
    padding: 10px;
    font-size: 16px;
    line-height: 22px;
    border-radius: 12px;
    border: 3px solid #ffffff;
  }
}
.notice-section .notice-title {
  width: 100%;
  font-weight: bold;
  font-size: 32px;
  line-height: 43px;
  color: #041638;
  text-align: center;
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 767px) {
  .notice-section .notice-title {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 5px;
  }
}
.notice-section .notice-item {
  margin-bottom: 0px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .notice-section .notice-item {
    margin-bottom: 0px;
  }
}
.notice-section .notice-item .notice-text {
  flex: 1;
}

.contact-info {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .contact-info {
    gap: 8px;
  }
}
.contact-info .contact-item {
  display: flex;
  align-items: center;
}
.contact-info .contact-item .contact-icon {
  display: block;
  width: 34px;
  height: 34px;
  margin-right: 5px;
}
@media (max-width: 767px) {
  .contact-info .contact-item .contact-icon {
    width: 15px;
    height: 15px;
    margin-right: 2px;
  }
}
.contact-info .contact-item .contact-text {
  font-size: 27px;
  font-weight: bold;
  line-height: 43px;
  color: #0076e4;
}
@media (max-width: 767px) {
  .contact-info .contact-item .contact-text {
    font-size: 14px;
    line-height: 20px;
  }
}

.message-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 10px;
  height: 70px;
  line-height: 70px;
  overflow: hidden;
  position: relative;
  background-image: url(../img/ggbg.png);
  background-size: 100% 100%;
}
@media (max-width: 767px) {
  .message-section {
    height: 44px;
    line-height: 44px;
    
  }
}
.message-section .message-icon {
  width: 100px;
  height: 60px;
  flex-shrink: 0;
  z-index: 4;
  background-color: #F4FAFC;
  border-radius: 14px;
}
@media (max-width: 767px) {
  .message-section .message-icon {
    width: 50px;
    height: 36px;
  }
}
.message-section .message-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.message-section .message-text {
  flex: 1;
  font-size: 27px;
  font-weight: bold;
  line-height: 43px;
  color: #4A75CC;
  white-space: nowrap;
  padding-left: 10px;
  padding-right: 10px;
  z-index: 2;
}
@media (max-width: 767px) {
  .message-section .message-text {
    font-size: 15px;
    line-height: 50px;
    padding-left: 8px;
  }
}
.message-section .message-text.scrolling {
  animation: scroll-text linear infinite;
  animation-fill-mode: forwards;
}

@keyframes scroll-text {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.public-title {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 0;
}
.public-title img {
  width: 450px;
}
@media (max-width: 767px) {
  .public-title img {
    width: 280px;
  }
}

/* 游戏卡片 */
.game-cards {
  padding: 0 15px;
}
@media (max-width: 767px) {
  .game-cards {
    padding: 0 10px;
  }
}
.game-cards .game-card {
  position: relative;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .game-cards .game-card {
    margin-bottom: 0px;
  }
}
.game-cards .game-card .card-header>div {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.3s ease;
}
.game-cards .game-card .card-header>div img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.game-cards .game-card .card-actions {
  position: absolute;
  top: 402px;
  left: 2%;
  z-index: 3;
  width: 96%;
  justify-content: center;
  display: flex;
}
@media (max-width: 767px) {
  .game-cards .game-card .card-actions {
    top: 73%;
  }
}
.game-cards .game-card .card-actions .btn {
  display: block;
  width: 48%;
  margin: 0 1%;
}
.game-cards .game-card .card-actions .btn img {
  width: 100%;
}

.bottom-contact {
  background: url(../img/wslbg_im@2x-3.png) no-repeat center center;
  background-size: 100% 100%;
  padding: 20px;
  margin: 0 15px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .bottom-contact {
    padding: 15px;
    margin: 0 10px;
  }
}
.bottom-contact .contact-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
  color: #222222;
  font-size: 26px;
  font-weight: normal;
  line-height: 60px;
  transition: transform 0.2s ease;
}
@media (max-width: 767px) {
  .bottom-contact .contact-item {
    padding: 5px 0;
    font-size: 14px;
    line-height: 20px;
  }
}
.bottom-contact .contact-item .contact-icon {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .bottom-contact .contact-item .contact-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }
}
.bottom-contact .contact-item .contact-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.bottom-contact .contact-item .contact-text {
  flex: 1;
  font-weight: bold;
}
.bottom-contact .contact-item .contact-btn {
  width: 132px;
  height: 60px;
  border-radius: 30px;
  overflow: hidden;
  background: url(../img/fzan_im@2x-2.png) no-repeat center center;
  background-size: 100% 100%;
  text-align: center;
  line-height: 60px;
  color: #ffffff;
  font-size: 26px;
  font-weight: normal;
  cursor: pointer;
  transition: all 0.2s ease;
}
@media (max-width: 767px) {
  .bottom-contact .contact-item .contact-btn {
    width: 80px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    border-radius: 20px;
  }
}

.footer-text {
  background: url(../img/down-bg.png) no-repeat center center;
  background-size: 100% 100%;
  padding: 20px;
  margin: 0 15px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .footer-text {
    padding: 15px;
    margin: 0 10px;
  }
}
.footer-text p {
  font-family: PingFang SC;
  font-size: 30px;
  font-weight: bold;
  line-height: 48px;
  color: #041638;
}
@media (max-width: 767px) {
  .footer-text p {
    font-size: 16px;
    line-height: 28px;
  }
}
.footer-text p.warning-text {
  color: #ff3636;
}

/* 复制功能相关样式 */
.copy-toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  z-index: 9999;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}
.copy-toast.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
}
@media (max-width: 767px) {
  .copy-toast {
    font-size: 14px;
    padding: 10px 16px;
  }
}

.contact-btn.copying {
  opacity: 0.7;
  transform: scale(0.95);
}
.contact-btn.copy-success {
  background-color: #4caf50 !important;
  color: #ffffff !important;
  transform: scale(1.02);
  transition: all 0.3s ease;
}
.contact-btn.copy-error {
  background-color: #f44336 !important;
  color: #ffffff !important;
  animation: shake 0.5s ease-in-out;
}
.contact-btn[data-clipboard-text] {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.2s ease;
}
.contact-btn[data-clipboard-text]:active {
  transform: scale(0.98);
}
.contact-btn[data-clipboard-text]:hover {
  opacity: 0.9;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}
footer {
  text-align: center;
  font-size: 14px;
  font-weight: normal;
  line-height: 26px;
  color: #9e9e9e;
  padding: 10px 0;
}

/* 新添加的样式 */
.info-image-container {
  padding: 0 10px;
}

.info-image-container img {
  width: 100%;
}

.dibuxx {
  margin: 8px;
}

.dibuxx img {
  width: 100%;
}/*# sourceMappingURL=style.css.map */