@keyframes scroll {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-960px);
  }
}
header {
  position: fixed;
  width: 100%;
  color: #393939;
  z-index: 999;
  top: 0;
}
header .logo {
  width: 60px;
  height: 60px;
  margin-right: 15px;
}
header .logo img {
  width: 100%;
}
header h1 {
  font-size: 19px;
}
header .container {
  display: flex;
  align-items: center;
  height: 80px;
}
header ul {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 18px;
}
header.active {
  color: #fff;
}
header.active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
  backdrop-filter: blur(10px);
}
body {
  background-image: url(https://game.chizhoushengnuo.cn/dll/images/images/body-background-image.png);
  background-size: contain;
  background-repeat: no-repeat;
  padding-top: 80px;
}
.home {
  color: #373737;
  position: relative;
  margin-top: 100px;
}
.home .container .top_container {
  display: flex;
}
.home .container .top_container .left {
  width: 50%;
}
.home .container .top_container .left dl {
  font-family: MicrosoftYaHei;
  font-weight: bold;
}
.home .container .top_container .left dl dt {
  font-size: 41px;
  margin-bottom: 25px;
  position: relative;
  width: fit-content;
}
.home .container .top_container .left dl dt::after {
  content: "2025全新版";
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(100%, -100%);
  background-image: linear-gradient(90deg, #b48fff 0%, #9929ea 100%), linear-gradient(#fccd41, #fccd41);
  border-radius: 15px 0px 15px 0px;
  font-size: 18px;
  color: white;
  font-weight: normal;
  padding: 5px 10px;
}
.home .container .top_container .left dl dt span {
  color: #3191e5;
}
.home .container .top_container .left dl dd {
  font-size: 19px;
  margin-bottom: 20px;
  color: #373737;
}
.home .container .top_container .left dl dd svg {
  width: 26px;
  height: 26px;
  vertical-align: middle;
  margin-right: 10px;
}
.home .container .top_container .left dl dd span {
  vertical-align: middle;
}
.home .container .top_container .left .exeinfo {
  display: flex;
  width: 330px;
  justify-content: space-evenly;
  margin: 15px 0;
}
.home .container .top_container .left .exeinfo .item svg {
  width: 26px;
  height: 26px;
  vertical-align: middle;
}
.home .container .top_container .left .exeinfo .item span {
  vertical-align: middle;
}
.home .container .top_container .left p {
  margin-bottom: 10px;
  font-size: 17px;
}
.home .container .top_container .left #download_button {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  width: 332px;
  height: 84px;
  background-image: linear-gradient(90deg, #71bdff 0%, #1c95ff 100%, #64b0f7 100%, #accbee 100%), linear-gradient(#000000, #000000);
  background-blend-mode: normal,
                        normal;
  border-radius: 12px;
}
.home .container .top_container .left #download_button svg {
  width: 40px;
  height: 40px;
  vertical-align: middle;
}
.home .container .top_container .left #download_button span {
  font-size: 22px;
  color: white;
  vertical-align: middle;
}
.home .container .top_container .right {
  width: 50%;
}
.home .container .bottom_container .des {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background-image: linear-gradient(90deg, #41a5ff 0%, #9929ea 100%);
  font-size: 26px;
  width: fit-content;
  margin: 0 auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.home .container .bottom_container ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
}
.home .container .bottom_container ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home .container .bottom_container ul li img {
  width: 77px;
  height: 77px;
}
.home .container .bottom_container ul li p {
  color: #000000;
  margin-top: 10px;
  font-weight: bold;
}
.introduction {
  margin-top: 100px;
  color: #393939;
}
.introduction .container .title {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}
.introduction .container .title span {
  font-weight: normal;
}
.introduction .container > ul {
  width: 1000px;
  margin: 80px auto 0;
}
.introduction .container > ul > li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 100px;
}
.introduction .container > ul > li .image_box {
  position: relative;
  transition: all 1s linear;
}
.introduction .container > ul > li .image_box .box {
  width: 400px;
  height: 400px;
  background-color: #F7FCFF;
  border-radius: 50%;
}
.introduction .container > ul > li .image_box .box::before {
  content: '';
  position: absolute;
  border-radius: 50%;
  background-color: #E1F4FF;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
}
.introduction .container > ul > li .image_box .box::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background-image: linear-gradient(to bottom, #fff, transparent 10%, transparent 90%, #fff);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.introduction .container > ul > li .image_box img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
}
.introduction .container > ul > li .content {
  width: fit-content;
  max-width: 550px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  transition: all 1s linear;
}
.introduction .container > ul > li .content .item_title {
  font-size: 30px;
  font-weight: bold;
}
.introduction .container > ul > li .content .item_title span {
  color: #2887df;
}
.introduction .container > ul > li .content .text {
  margin-top: 20px;
}
.introduction .container > ul > li .content .text li {
  margin-top: 10px;
  font-family: MicrosoftYaHei-Bold;
  font-size: 23px;
  font-weight: normal;
  letter-spacing: 0px;
  color: #4a4c4c;
}
.introduction .container > ul > li .content .text li span {
  font-family: MicrosoftYaHei;
  font-size: 23px;
  font-weight: bold;
  letter-spacing: 0px;
  color: #4a4c4c;
}
.introduction .container > ul > li .content #download_button {
  margin-top: 25px;
  width: 282px;
  height: 69px;
  background-image: linear-gradient(0deg, #accbee 0%, #64b0f7 0%, #1c95ff 0%, #71bdff 100%), linear-gradient(#ffffff, #ffffff);
  background-blend-mode: normal,
                            normal;
  border-radius: 8px;
}
.introduction .container > ul > li .content #download_button svg {
  width: 40px;
  height: 40px;
  vertical-align: middle;
}
.introduction .container > ul > li .content #download_button span {
  font-size: 22px;
  color: white;
  vertical-align: middle;
  font-weight: bold;
}
.introduction .container > ul > li #left {
  transform: translateX(-400px);
  opacity: 0;
}
.introduction .container > ul > li #left.show {
  transform: translateX(0);
  opacity: 1;
}
.introduction .container > ul > li #right {
  transform: translateX(400px);
}
.introduction .container > ul > li #right.show {
  transform: translateX(0);
  opacity: 1;
}
section.bottom .container .title {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}
section.bottom .container .title span {
  font-weight: normal;
}
section.bottom .container .comment {
  width: 800px;
  margin: 80px auto 0;
  height: 500px;
  overflow: hidden;
  position: relative;
}
section.bottom .container .comment::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(to bottom, #fff, transparent 10%, transparent 90%, #fff);
  z-index: 1;
}
section.bottom .container .comment ul {
  animation: scroll 20s linear infinite;
}
section.bottom .container .comment ul li {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  justify-content: space-between;
  border: 2px solid #20B3FD;
  border-radius: 10px;
  padding: 0 10px;
  background-image: linear-gradient(to right, #A4E2FE, #BDB6F8);
  height: 100px;
  box-sizing: border-box;
}
section.bottom .container .comment ul li img {
  height: 25px;
}
section.bottom .container .comment ul li .user_info {
  display: flex;
  align-items: center;
  gap: 15px;
}
section.bottom .container .comment ul li .user_info .avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #F7FCFF;
  background-image: url(https://game.chizhoushengnuo.cn/dll/images/images/avatar.png);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: 0 0;
}
section.bottom .container .comment ul li .user_info .name {
  width: 100px;
}
section.bottom .container .comment ul li .content {
  width: 350px;
  font-size: 14px;
}
section.bottom .bottom_des {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 100px 0 160px;
  position: relative;
  background-image: linear-gradient(to bottom, transparent, #ecebfd);
}
section.bottom .bottom_des h1 {
  font-size: 50px;
  position: relative;
  width: fit-content;
}
section.bottom .bottom_des h1::after {
  content: "全新升级版";
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(100%, -100%);
  background-image: linear-gradient(90deg, #b48fff 0%, #9929ea 100%), linear-gradient(#fccd41, #fccd41);
  border-radius: 15px 0px 15px 0px;
  font-size: 18px;
  color: white;
  font-weight: normal;
  padding: 5px 10px;
}
section.bottom .bottom_des .subtitle {
  font-size: 30px;
  margin-top: 18px;
}
section.bottom .bottom_des .platform {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}
section.bottom .bottom_des .platform .item {
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 20px;
  border-radius: 7px;
}
section.bottom .bottom_des .platform .item img {
  width: 35px;
  height: 35px;
}
section.bottom .bottom_des .platform .item span {
  font-weight: bold;
  font-size: 18px;
}
section.bottom .bottom_des #download_button {
  background-image: linear-gradient(180deg, #09bbfe 0%, #5a42ec 100%);
  width: 300px;
  height: 60px;
  border-radius: 7px;
  margin-top: 40px;
}
section.bottom .bottom_des #download_button svg {
  width: 40px;
  height: 40px;
  vertical-align: middle;
}
section.bottom .bottom_des #download_button span {
  font-size: 22px;
  color: white;
  vertical-align: middle;
  font-weight: bold;
}
section.bottom .bottom_des .background_image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  z-index: -1;
  border-radius: 50%;
  overflow: hidden;
  filter: blur(50px);
}
section.bottom .bottom_des .background_image .left {
  width: 300px;
  height: 350px;
  background-color: #8fd8fa;
}
section.bottom .bottom_des .background_image .right {
  width: 300px;
  height: 350px;
  background-color: #8880ce;
}
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #FFF;
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  z-index: 999;
}
footer .container {
  display: flex;
  align-items: center;
}
footer .container .logo {
  width: 60px;
  height: 60px;
  margin-right: 15px;
}
footer .container .logo img {
  width: 100%;
  height: 100%;
}
footer .container h1 {
  padding: 0;
  margin: 0;
  font-size: 26px;
}
footer .container #download_button {
  background-image: linear-gradient(180deg, #09bbfe 0%, #5a42ec 100%);
  width: 200px;
  height: 50px;
  border-radius: 7px;
  margin-left: auto;
}
footer .container #download_button svg {
  width: 35px;
  height: 35px;
  vertical-align: middle;
}
footer .container #download_button span {
  font-size: 22px;
  color: white;
  vertical-align: middle;
  font-weight: bold;
}
.options {
  position: fixed;
  bottom: 50%;
  right: 30px;
}
.options .item {
  background-image: linear-gradient(to right, #08B8F8, #5643E8);
  padding: 10px 20px;
  margin-bottom: 10px;
  width: 140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 100px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
}
.options .item svg,
.options .item img {
  width: 30px;
  height: 30px;
  vertical-align: middle;
  fill: #fff;
}
.options .item span {
  vertical-align: middle;
}
#back_top {
  position: fixed;
  bottom: 30%;
  right: 30px;
  padding: 15px;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  background-image: linear-gradient(to right, #08B8F8, #5643E8);
}
#back_top:hover .box {
  display: block;
}
#back_top svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
#back_top .box {
  display: none;
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  width: 100px;
  text-align: center;
  padding: 12px 0;
  border-radius: 10px;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
  font-size: 14px;
  color: #333;
}
#back_top .box::after {
  content: '';
  position: absolute;
  bottom: 3px;
  right: 0;
  transform: translateX(50%);
  width: 20px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
}
