
/*  页面重置样式  */
body,p,h1,h2,h3,h4,h5,li,span,i,ul,img,a,strong,input,button,textarea,select,dd,dl,dt,ol{
	margin:0;
	padding:0;
	word-wrap:break-word;
}
h1,h2,h3,h4,h5,h6{
	font-weight: normal;
}
body{
	font-family:"Arial","microsoft yahei";
	font-size:14px;
	line-height: 1;
	color:#333;
}
*{
	-webkit-tap-highlight-color:rgba(0,0,0,0);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
li{
	list-style-type:none;
	float:left;
}
table{
	border-collapse:collapse;
	border-spacing:0;
}
a,area{
	text-decoration:none;
	outline:none;
	color: #000;
}
img{
	border:none;
	vertical-align:middle;
}
i,var,em{
	font-style:normal;
}
button{
	font-family:"Arial","microsoft yahei";
	font-size: 14px;
	outline:none;
	cursor: pointer;
	border: none;
	line-height: 1;
}
input[type="submit"]{
	border: none;
}
iframe{
	border: none;
}
input,select,textarea{
	outline:none;
	font-family:"Arial","microsoft yahei";font-size: 14px;
}
textarea{
	resize:none;
	overflow-y:auto;
}
.at{
	margin:0 auto;
}
.fl{
	float: left;
}
.fr{
	float: right;
}
.clear{
	clear:both;
}
.dt{
	display: table;
	width: 100%;
}
.fl-w{
	float: left;
	width: 100%;
}
.hide{
	display: none;
}
.ver-container{
	display: table;
	width: 100%;
	text-align: center;
}
.ver-container > * {
	vertical-align: middle;
	display: table-cell;
}

.swiper-button-disabled{
	cursor: no-drop !important;
	opacity: .5;
}

[class*=icon]{
	font-family:"iconfont" !important;
	font-size:16px;
	font-style:normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

[class*=ico]{
	vertical-align: middle;
	display: inline-block;
}
.wid {
  width: 1200px;
  margin: 0 auto;
}
body,
html {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
}
.pageCont {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  overflow-x: visible;
  position: absolute;
  left: 50%;
  top: 50%;
  overflow: hidden;
  transform: translate(-50%, -50%);
}
.pageCont:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  background: rgba(0,0,0,0.6);
}
.pageCont .pageList {
  width: 260px;
  height: 1000px;
  min-width: 260px;
  float: left;
}
.pageCont .pageList ul {
  width: 100%;
  transition-timing-function: linear;
}
.pageCont .pageList ul li {
  width: 100%;
  background-color: #fff;
  padding: 10px 12px;
  height: auto;
  float: left;
  transform: translate3d(0, 0, 0);
}
.pageCont .pageList ul li .box {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  float: left;
  border-radius: 30px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  padding: 10px;
}
.pageCont .pageList ul li .box img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  float: left;
}
.container {
  width: 100%;
  position: relative;
  z-index: 99;
  display: block;
  padding: 20px 15px 200px;
}
.container .logo {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 10px;
  position: relative;
}

.container .about-us-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  color: white;
  border: none;
  border-radius: 25px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(238, 90, 111, 0.6);
  transition: all 0.3s ease;
  z-index: 100;
}

.container .about-us-btn:first-of-type {
  left: 20px;
}

.container .about-us-btn:last-of-type {
  right: 20px;
}

.container .about-us-btn:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 6px 20px rgba(238, 90, 111, 0.8);
}

/* 关于我们弹窗样式 */
.about-us-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  backdrop-filter: blur(5px);
}

.about-us-modal .modal-content {
  position: fixed;
  top: 10%;
  left: 5%;
  right: 5%;
  transform: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 220, 0.98));
  border-radius: 20px;
  padding: 25px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border: 3px solid #ffd700;
  margin: 0;
  width: 90%;
}

.about-us-modal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #ffd700;
}

.about-us-modal .modal-header h3 {
  font-size: 24px;
  font-weight: bold;
  color: #ff6b6b;
  margin: 0;
}

.about-us-modal .close-btn {
  background: none;
  border: none;
  font-size: 30px;
  font-weight: bold;
  color: #ff6b6b;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.about-us-modal .close-btn:hover {
  background: rgba(255, 107, 107, 0.1);
  transform: rotate(90deg);
}

.about-us-modal .modal-body {
  color: #333;
}

.about-us-modal .modal-body p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333;
  background: none;
  padding: 0;
  border: none;
}

.about-us-modal .feature-list {
  gap: 15px;
}

.about-us-modal .feature-item {
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  padding: 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.about-us-modal .feature-item:hover {
  background: rgba(255, 107, 107, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.2);
}

.about-us-modal .feature-text strong {
  color: #ff6b6b;
  font-size: 16px;
}

.about-us-modal .feature-text span {
  color: #666;
  font-size: 14px;
}
.container .logo .top-banner {
  max-width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  border-radius: 10px;
}

/* 技术介绍样式 */
.container .tech-intro {
  margin: 30px 0;
  padding: 25px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 220, 0.9));
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid #ffd700;
}

.container .tech-intro .tech-title {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 3px solid #ff6b6b;
}

.container .tech-intro .tech-title h2 {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin: 0 0 8px 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: relative;
  padding-left: 15px;
}

.container .tech-intro .tech-title h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 80%;
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  border-radius: 3px;
}

.container .tech-intro .tech-title span {
  font-size: 14px;
  color: #ff6b6b;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.container .tech-intro .tech-description {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  font-weight: 500;
  margin: 0;
  text-align: justify;
}

/* 手机端技术介绍样式 */
@media screen and (max-width: 768px) {
  .container .tech-intro {
    margin: 20px 0;
    padding: 20px 15px;
  }
  .container .tech-intro .tech-title h2 {
    font-size: 22px;
  }
  .container .tech-intro .tech-title span {
    font-size: 12px;
  }
  .container .tech-intro .tech-description {
    font-size: 15px;
  }
}

.webs {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ccc;
  font-size: 16px;
  position: relative;
  margin-top: -20px;
}
.container .webs em {
  margin: 0 5px;
}
.container .button {
  width: 100%;
  text-align: center;
  padding: 10px 0;
}
.container .game-intro {
  width: 100%;
  padding: 20px 15px;
  color: white;
  text-align: center;
}
.container .game-intro h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  color: #ffd700;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: glow 2s ease-in-out infinite alternate;
}
.container .game-intro p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  color: #ffffff;
  font-weight: 500;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(238, 90, 111, 0.2));
  padding: 15px 20px;
  border-radius: 10px;
  border-left: 4px solid #ff6b6b;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.container .game-intro .feature-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.container .game-intro .feature-item {
  display: flex;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  padding: 16px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  text-align: left;
  border: 1px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.container .game-intro .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
  border-color: #ff6b6b;
}
.container .game-intro .feature-icon {
  font-size: 32px;
  margin-right: 15px;
  flex-shrink: 0;
  animation: bounce 1s ease-in-out infinite;
}
.container .game-intro .feature-text {
  flex: 1;
}
.container .game-intro .feature-text strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
  color: #ffd700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.container .game-intro .feature-text span {
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@keyframes glow {
  from {
    text-shadow: 0 0 10px #ffd700, 0 0 20px #ffd700, 0 0 30px #ff6b6b;
  }
  to {
    text-shadow: 0 0 20px #ffd700, 0 0 30px #ff6b6b, 0 0 40px #ee5a6f;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}
.container .join-group-btn {
  width: 100%;
  padding: 15px;
  text-align: center;
}
.container .join-group-btn button {
  width: 100%;
  max-width: 350px;
  background: linear-gradient(135deg, #FF6B6B, #EE5A6F);
  border: none;
  border-radius: 50px;
  padding: 18px 30px;
  color: white;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(238, 90, 111, 0.6);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 0 auto;
}
.container .join-group-btn button .btn-title {
  font-size: 22px;
}
.container .join-group-btn button .btn-subtitle {
  font-size: 14px;
  font-weight: normal;
  opacity: 0.95;
}
.container .join-group-btn button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(238, 90, 111, 0.8);
}
.container .button button {
  width: 375px;
  height: 120px;
  background: url("../image/btn.png") center no-repeat;
  background-size: 100% 100%;
  transform: scale(0.9);
}

@media screen and (max-width: 1200px) {
  .pageCont .pageList {
    width: 200px;
    min-width: 200px;
    height: 1000px;
  }
}
@media screen and (max-width: 993px) {
  .pageCont .pageList {
    width: 160px;
    min-width: 160px;
    height: 900px;
  }
}
@media screen and (max-width: 768px) {
  .wid {
    padding-left: 3%;
    padding-right: 3%;
  }
  .pageCont .pageList {
    width: 120px;
    height: 100vh;
  }
  .pageCont .pageList ul li .box img {
    height: auto;
  }
  .pageCont .pageList ul li {
    padding: 5px 6px;
  }
  .container .logo {
    padding: 15px 10px;
  }
  .container .logo .top-banner {
    max-height: 420px;
  }
  .container .about-us-btn {
    padding: 8px 16px;
    font-size: 12px;
    background: linear-gradient(135deg, #FF6B6B, #EE5A6F);
    box-shadow: 0 6px 20px rgba(238, 90, 111, 0.8);
    animation: pulse 2s infinite;
  }
  
  .container .about-us-btn:first-of-type {
    left: 10px;
  }
  
  .container .about-us-btn:last-of-type {
    right: 10px;
  }
  
  @keyframes pulse {
    0% {
      box-shadow: 0 6px 20px rgba(238, 90, 111, 0.8);
      transform: translateY(-50%) scale(1);
    }
    50% {
      box-shadow: 0 8px 25px rgba(238, 90, 111, 1);
      transform: translateY(-50%) scale(1.05);
    }
    100% {
      box-shadow: 0 6px 20px rgba(238, 90, 111, 0.8);
      transform: translateY(-50%) scale(1);
    }
  }
  
  .container .about-us-btn:hover {
    animation: none;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(238, 90, 111, 1);
  }
  .about-us-modal .modal-content {
    top: 5%;
    left: 3%;
    right: 3%;
    width: 94%;
    padding: 20px 16px;
  }
  .about-us-modal .modal-header h3 {
    font-size: 20px;
  }
  .about-us-modal .modal-body p {
    font-size: 15px;
  }
  .about-us-modal .feature-item {
    padding: 15px;
  }
  .about-us-modal .feature-text strong {
    font-size: 16px;
  }
  .about-us-modal .feature-text span {
    font-size: 14px;
  }
  .container .game-intro {
    padding: 15px 12px;
  }
  .container .game-intro h3 {
    font-size: 20px;
    margin-bottom: 12px;
    letter-spacing: 1px;
  }
  .container .game-intro p {
    font-size: 18px;
    margin-bottom: 15px;
    padding: 15px 18px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.9);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #ffffff;
    background: rgba(0,0,0,0.3);
  }
  .container .game-intro .feature-item {
    padding: 15px;
    background: rgba(0,0,0,0.4);
    border: 2px solid rgba(255, 215, 0, 0.5);
  }
  .container .game-intro .feature-icon {
    font-size: 28px;
    margin-right: 12px;
  }
  .container .game-intro .feature-text strong {
    font-size: 20px;
    font-weight: 800;
    text-shadow: 0 3px 6px rgba(0,0,0,0.9);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #ffd700;
  }
  .container .game-intro .feature-text span {
    font-size: 16px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.9);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #ffffff;
  }
  .container .join-group-btn {
    padding: 12px;
  }
  .container .join-group-btn button {
    padding: 15px 25px;
    max-width: 300px;
  }
  .container .join-group-btn button .btn-title {
    font-size: 18px;
  }
  .container .join-group-btn button .btn-subtitle {
    font-size: 12px;
  }
  .floating-support-btn {
    right: 10px;
  }
  
  .floating-support-btn button {
    min-width: 90px;
    padding: 8px 12px;
    font-size: 12px;
  }
  
  .floating-support-btn button .floating-btn-title {
    font-size: 12px;
  }
  
  .floating-group-btn a {
    min-width: 280px;
    padding: 18px 28px;
  }
  .floating-group-btn a .floating-btn-title {
    font-size: 20px;
  }
  .floating-group-btn a .floating-btn-subtitle {
    font-size: 13px;
  }
  .container .webs {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .container .webs .lines {
    padding: 10px 0;
  }
  .container .button button {
    transform: scale(0.6);
  }
  body,
  html {
    overflow: auto;
  }
  .pageCont {
    overflow: hidden;
  }
}

/* 悬浮联系客服按钮样式 */
.floating-support-btn {
  position: absolute;
  top: 40px;
  right: 20px;
  transform: translateY(0);
  z-index: 1000;
  animation: bounce 2s infinite;
}

.floating-support-btn button {
  min-width: 100px;
  background: linear-gradient(135deg, #4CAF50, #45a049);
  border: none;
  border-radius: 50px;
  padding: 10px 15px;
  color: white;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.6);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.floating-support-btn button .floating-btn-title {
  font-size: 14px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.floating-support-btn button:hover {
  animation: none;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.8);
  background: linear-gradient(135deg, #45a049, #3d8b40);
}

/* 悬浮进群按钮样式 */
.floating-group-btn {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  animation: bounce 2s infinite;
}

.floating-group-btn a {
  min-width: 320px;
  background: linear-gradient(135deg, #FF6B6B, #EE5A6F);
  border: none;
  border-radius: 50px;
  padding: 20px 32px;
  color: white;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(238, 90, 111, 0.8);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.floating-group-btn a .floating-btn-title {
  font-size: 22px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.floating-group-btn a .floating-btn-subtitle {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.95;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.floating-group-btn a:hover {
  animation: none;
  transform: none;
  box-shadow: 0 12px 35px rgba(238, 90, 111, 0.9);
  background: linear-gradient(135deg, #FF8E8E, #FF6B6B);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
