 html, body {
    height: 100%; /* 使body高度为100% */
    margin: 0; /* 移除默认的margin */
    display: flex; /* 启用Flexbox布局 */
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
    background-color: rgb(255, 255, 255);
    overflow-x:hidden;
    /* font-family: Arial, Helvetica, sans-serif; */
    color: #202124;
    font-family: "Google Sans Display", Roboto, Arial, sans-serif;
  }
  .main-nav{
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    background-color: rgb(255, 255, 255);
  }
 .game_div{
    display: flex;
    background-color: rgb(255, 255, 255);
    /* display: -webkit-flex; */
    /* display: flex; */
    /* justify-content: center; 
    align-items: center;      */
    height: 100vh;           /*或根据需要设置具体高度 */
    width: 100%;
    margin: 0 auto;
    min-height: 100vh;
    overflow-x:hidden;
    overflow-y: scroll;
    transform-origin: top;
    padding-right: 20px; /*为滚动条留出空间 */
    /* margin-right: -30px; 使用负边距隐藏滚动条 */
    /* transform: scale(0.5); */
}
.game_top{
    width: 400px;
    display: -webkit-flex; /* Safari */
    display: flex;
    padding: 10px;
}
.circle-mask{
    position: relative;
    width: 80px;
    height: 80px;
    overflow: hidden;
    /* border-radius: 34%; */
    font-size: 14px;
}
.circle-mask img {
    width:80px;
    height: 80px;
    /* object-fit: cover; */
    z-index: 2;
    display: block;
}
.circle-big{
    display: none;
    /* position: relative; */
    width: 180px;
    height: 180px;
    /* right: 30px; */
    overflow: hidden;
    /* border-radius: 34%; */
    /* box-shadow: 0px 15px 20px rgba(109, 65, 150, 0.5); */
}
.circle-big img{
    width: 180px;
    height: 180px;
}
@media (min-width: 850px) {
    .circle-mask{
        display: none;
    }
    .circle-big{
        display: block;
    }
}
.top-title{
    width: 250px;
    /* line-height: 44px; */
}
.top-tip1{
    color: #01875f;
    font-size: 16px;
    margin-top: 6px;
}
.top-tip2{
    color: #525252;
    font-size: 12px;
}
.text-big{
    font-size: 24px;
}
@media (min-width:600px){
    .text-big{
        font-size: 44px;
    }
}

.top-Introduction{
    width: 100%;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    margin-top: 25px;
}
.t-introd{
    font-size: 13px;
    width: 126px;
    text-align: center;
}

.t-download{
    background-color: #01875f;
    color: white;
    width: 100%;
    height: 40px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
    outline: none;
}

/* 
.tf-banner {
  overflow: hidden;
  width: 375px; 
  position: relative;
  margin-top: 25px;
}
 
.tf-slides {
  display: flex;
  width: 1005px; 
  animation: tf-slide 4s linear infinite; 
}
 
.tf-slide {
  width: 325px; 
  flex-shrink: 0; 
  margin-left: 10px;
} */
 
/*@keyframes tf-slide {
  0% { transform: translateX(0); }
  30% { transform: translateX(0); }
  35% { transform: translateX(-670px); } // 移动到第二张图片
  65% { transform: translateX(-670px); } // 停留 
  70% { transform: translateX(-1340px); } // 移动到第三张图片 
  100% { transform: translateX(-1340px); } // 回到原点 
}
  */

.banner-container {
    width: 100%;
    /* max-width: 960px; */
    /* width: 300px; */
    position: relative;
    /* border-radius: 15px; */
    overflow-x: scroll;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
}
.banner-container::-webkit-scrollbar {
    display: none; /* 隐藏滚动条 */
}

.banner {
    /* overflow: hidden */
    display: flex;
    animation: scroll 5s linear infinite; /* 应用动画 */
    /* width: 100%; 让容器宽度根据父元素宽度来设置 */
    width: max-content;
    height: 40%;
    /* overflow-x: auto; 允许水平滚动 */
    white-space: nowrap; /* 防止内容换行 */
    scroll-behavior: smooth; /* 平滑滚动 */
    margin-right: 10px;
}
.banner > * {
  display: inline-block; /* 使内容横向排列 */
}

.slide {
    width: 120px;
    /* min-width: 110px; */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* padding: 40px; */
    color: white;
    text-align: center;
    margin-left: 10px;
    padding-bottom: 20px;
    
}
/* 媒体查询，当视口宽度大于或等于600px时应用以下样式 */
@media (min-width: 1100px) {
    .slide {
        width: 160px;
    }
    .banner-container{
        margin-top: 30px;
    }
    .circle-big{
        display: block;
        width: 240px;
        height: 240px;
    }
    .circle-big img{
        width: 240px;
        height: 240px;
    }
    .text-big{
        font-size: 64px;
    }
}

 /* 导航按钮 */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 30px;
}
/* 响应式设计 */
@media (max-width: 300px) {
    .slide h2 {
        font-size: 2rem;
    }
    
    .slide p {
        font-size: 1rem;
    }
    
    .banner {
        height: 150px;
    }
    
    .nav-btn {
        width: 20px;
        height: 20px;
        font-size: 1.2rem;
    }
}

@media (max-width: 240px) {
    .slide h2 {
        font-size: 1.5rem;
    }
    
    .slide p {
        font-size: 0.9rem;
    }
    
    .banner {
        height: 125px;
    }
}

.round-tips{
    width: 100%;
    /* display: flex; */
    /* align-items: center; */
    margin-top: 20px;
    font-size: 14px;
}
.round-item{
    line-height: 24px;
    padding: 3px 15px;
    border: 1px solid #acacac; /* 边框宽度、样式和颜色 */
    border-radius: 20px; /* 圆角大小 */
    background-color: #ffffff; /* 背景颜色，可选 */
    display: inline-block;
    white-space:nowrap;
    color: #5f6368;
    margin-left: 10px;
    margin-top: 15px;
}

.shareCon{
    width: 94%;
    border: 1px solid rgb(218, 220, 224); /* 边框宽度、样式和颜色 */
    border-radius: 7px; /* 圆角大小 */
    /* padding: 20px; */
    margin-left: 10px;
    margin-top: 30px;
}

.shareCon-item{
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    margin: 20px;
}

.score-con{
    width: 95%;
    display: flex;
    align-items: center;
    margin: 30px 10px;
}

.star-bar-con{
    width: 100%;
    margin-left: 20px;
}
.star-bar-item{
    width: 100%;
    display: flex;
    align-items: center;
}
.star-bar-bg{
    width: 100%;
    height: 10px;
    background: #e8eaed;
    border-radius: 5px;
    margin-left: 20px;
}
.star-bar5{
    width: 80%;
    height: 10px;
    background: #01875f;
    border-radius: 5px;
}
.star-bar4{
    width: 40%;
    height: 10px;
    background: #01875f;
    border-radius: 5px;
}
.star-bar3{
    width: 60%;
    height: 10px;
    background: #01875f;
    border-radius: 5px;
}
.star-bar2{
    width: 30%;
    height: 10px;
    background: #01875f;
    border-radius: 5px;
}
.star-bar1{
    width: 10%;
    height: 10px;
    background: #01875f;
    border-radius: 5px;
}