* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -welist-style: none;
  text-decoration: none;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
  transition: all 0.2s ease;
  font-size: 16px;
}
:root {
  --nav-height: 80px;
  --nav-filter: blur(10px);
  --nav-bg-color: #ffffff9a;
  --nav-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  --notice-bg-color: #cecece6e;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "微软雅黑";
}
.icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  overflow: hidden;
}
::-webkit-scrollbar {
  display: none;
}
.nav {
  height: var(--nav-height);
  backdrop-filter: var(--nav-filter);
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: var(--nav-bg-color);
  box-shadow: var(--nav-shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
.nav-left {
  height: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
}
.logo {
  height: 100%;
}
.logo img {
  width: auto;
  height: 100%;
  margin-right: 10px;
}
.title h2 {
  color: #000000;
  font-size: 23px;
  font-weight: bold;
}
.title p {
  font-size: 16px;
  color: #252525;
}
.nav-right {
  height: 100%;
}
.nav-list {
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-list li {
  margin: 0 15px;
}
.nav-list li a {
  color: #000000;
}
.nav-list li a:hover {
  font-weight: bold;
  color: rgb(255, 0, 0);
}
.notice {
  margin: auto;
  width: 70%;
  margin-top: 10px;
  padding: 5px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  background-color: var(--notice-bg-color);
  border-radius: 10px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  backdrop-filter: var(--nav-filter);
  color: #ffffff;
}
.notice svg {
  width: 20px;
  height: 20px;
  margin: 0 10px;
}
.banner {
  width: 100%;
  height: calc(100vh - var(--nav-height));
}
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.float-left {
  position: fixed;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  z-index: 999;
  width: 170px;
  background: url(../images/10010.png) no-repeat center center;
  background-size: 100% 100%;
}
#zhankai,
#guanbi {
  position: absolute;
  top: 60px;
  right: -13px;
  cursor: pointer;
}
#guanbi {
  display: none;
}
.float-left-top {
  text-align: center;
  width: 100%;
  height: 100px;
  margin-top: 60px;
  padding: 0 10px;
  padding-right: 13px;
}
.float-left-top h2 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 5px;
}
.float-left-top p {
  color: #e5cd87;
  font-weight: 400;
}
.float-left-top img {
  margin-top: 5px;
  width: 80%;
}
.float-left-middle {
  text-align: center;
  position: relative;
  padding-right: 3px;
}
.float-left-middle {
  margin: auto;
  width: 90%;
}
.float-left-middle img {
  width: 80%;
}
.float-left-middle p {
  font-size: 12px;
  color: #ffffff;
}
#saomiao {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.7;
  animation: saomiaodonghua 2s linear infinite;
}
@keyframes saomiaodonghua {
  from {
    top: 0;
  }

  to {
    top: 110px;
  }
}
.float-left-bottom {
  padding-right: 3px;
  margin-bottom: 90px;
}
.float-left-bottom div {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 80%;
  padding: 8px 0;
  margin: 10px auto;
  background: url(../images/10013.png) no-repeat;
  background-size: 100% 100%;
}
.float-left-bottom div a {
  color: #ffffff;
  font-size: 14px;
}
.float-left-bottom div a:hover {
  color: #e5cd87;
}
.float-right {
  position: fixed;
  right: 10px;
  bottom: 50px;
  z-index: 99;
}
.float-right ul li {
  color: #000000;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 10px auto;
  padding: 10px;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
}
.float-right ul li div {
  padding: 10px;
  display: none;
}
.float-right ul li div h2 {
  margin-bottom: 10px;
}
.float-right ul li div img {
  width: 70%;
  height: 70%;
}
.float-right ul li:hover div {
  display: block;
  animation: fangda 0.2s ease-in-out forwards;
}
@keyframes fangda {
  from {
    opacity: 0;
    right: 0;
  }
  to {
    opacity: 1;
    right: 90px;
  }
}
.float-right ul li > svg {
  width: 35px;
  height: 35px;
  margin-bottom: 5px;
}
.float-right ul li > p {
  font-size: 13px;
  font-weight: bold;
}
.kefurexianqu,
.zaixiankefuqu,
.zhidingqu {
  position: absolute;
  right: 90px;
  width: 150px;
  border-radius: 10px;
  background-color: #ffffff;
  text-align: center;
}
.kefurexianqu::after,
.zaixiankefuqu::after,
.zhidingqu::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid #ffffff;
  border-right: 10px solid transparent;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
#zhiding {
  display: none;
}
.download {
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 200px;
  background: url(../images/10002.png) no-repeat center center;
  background-size: 100% 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 10px 0;
}
.download-1,
.download-2,
.download-3,
.download-4 {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.download-2 img {
  height: 90%;
}
.download-4 {
  height: 85%;
  aspect-ratio: 1/1;
  background: url(../images/10008.png) no-repeat center center;
  background-size: 100% 100%;
}
.download-4 h2 {
  font-size: 20px;
  color: #dd5d11;
  margin-bottom: 5px;
}
.download-4 p {
  text-align: center;
  color: #977000;
  font-weight: 400;
}
.download-1 {
  height: 85%;
  background: url(../images/10003.png) no-repeat center center;
  background-size: 100% 100%;
  aspect-ratio: 1/1;
}
.download-1 img:nth-child(1) {
  height: 90%;
}
#saomiao2 {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.7;
  animation: saomiaodonghua2 2s linear infinite;
}
@keyframes saomiaodonghua2 {
  from {
    top: 20px;
  }

  to {
    top: 150px;
  }
}
.fengetu {
  text-align: center;
  width: 100%;
  height: 80px;
  overflow: hidden;
  margin-top: -70px;
}
.fengetu img {
  width: 100%;
  height: 100%;
}
.newsqu {
  padding-bottom: 100px;
  background: url(../images/section1-c56b4351b0.webp) no-repeat center center;
  background-size: 100% 100%;
}
.titlemk {
  margin: 50px auto;
  width: 400px;
  text-align: center;
}
.titlemk img {
  width: 100%;
}
.newsmain {
  margin: auto;
  width: 70%;
  height: max-content;
  display: flex;
  justify-content: center;
}
.newslist {
  width: 40%;
  height: 420px;
  background: url(../images/415c4b29-8ebc-4301-8f9f-624adbbda132.png) no-repeat
    center center;
  background-size: 100% 100%;
}
.newslist-top {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
}
/* 轮播图 */
.carousel {
  width: 60%;
  height: 100%;
}
.carousel-container {
  width: 100%;
  overflow: hidden;
}
#carousel-list {
  display: flex;
  position: relative;
  transition: transform 1s ease-in-out;
  height: 100%;
}
#carousel-list li {
  min-width: 100%;
  height: 100%;
}
#carousel-list li img {
  width: 100%;
  height: 414px;
}
/* 新闻列表 */
.newslist-top ul {
  display: flex;
  height: 100%;
  color: #ffffff;
}
.newslist-top ul li {
  font-size: 20px;
  height: 100%;
  margin: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.active {
  color: #f5d58d;
  border-bottom: 0.05rem solid #f5d58d;
  font-weight: 700;
}
.newslist-bottom {
  display: flex;
  width: 100%;
  padding-bottom: 7px;
  height: 350px;
  overflow: hidden;
}
.newslist-bottom ul {
  width: 100%;
  padding: 0 10px;
  border-top: 1px dashed #cbd6f334;
}
#newslist2,
#newslist3 {
  display: none;
}
.newslist-bottom ul li > a {
  width: 100%;
  vertical-align: middle;
  display: flex;
  align-items: center;
  position: relative;
  color: #cbd6f3;
}
.newslist-bottom ul li a span:nth-child(1) {
  display: flex;
  align-items: center;
}
.newslist-bottom ul li a span:nth-child(2) {
  width: max-content;
}
.newslist-bottom ul li a span:nth-child(3) {
  margin: 0 5px;
  flex: 1;
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.newslist-bottom ul li a span:nth-child(4) {
  width: max-content;
  margin-left: 10px;
  font-size: 14px;
}
.newslist-bottom ul li em {
  font-style: normal;
  font-size: 14px;
}
.newslist-bottom ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding-top: 10px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #cbd6f338;
}
.newslist-bottom ul li a:hover {
  background-color: #ffffff50;
}
.newslist-bottom ul li svg {
  width: 10px;
  height: 10px;
  margin-right: 5px;
}
.gametese,
.gameplayvideoa {
  width: 100%;
  padding: 20px 0;
  height: max-content;
  background: url(../images/section3-83176633c6.webp) no-repeat center center;
  background-size: 100% 100%;
}
.floatvideo {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: calc(100vh - var(--nav-height));
  z-index: 999;
  background-color: #00000073;
  backdrop-filter: blur(5px);
  display: none;
}
.floatvideo-content {
  position: relative;
  width: 80%;
}
.floatvideo-content video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.floatvideo a {
  position: absolute;
  right: -45px;
  top: 0;
}
.floatvideo a img {
  width: 40px;
  height: 40px;
}
.gamerole {
  margin: 20px auto;
  width: 60%;
  height: max-content;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  background-color: #ffffff5e;
}
.gamerole-left {
  flex: 1;
  height: 100%;
  padding: 20px;
}
.gamerole-left span {
  white-space: wrap;
  color: #252525;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gamerole-left h2,
.gamerole-left h3 {
  font-size: 25px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.gamerole-left ol li {
  margin: 20px 0;
  list-style: decimal;
  margin-left: 40px;
  color: #0d68b3;
  font-size: 27px;
  font-weight: bold;
}
.gamerole-left h2 span {
  color: #0d68b3;
  font-size: 27px;
}
.gamerole-right {
  text-align: center;
  width: 190px;
  height: max-content;
  overflow: hidden;
}
.gamerole-right h2 {
  font-size: 30px;
  margin: 20px 0;
}
.gamerole-right img {
  width: 100%;
  height: auto;
}
.videolist {
  margin: auto;
  width: 60%;
}
.videolist ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.videolist ul li {
  position: relative;
  width: 20%;
  aspect-ratio: 16/9;
  margin: 10px;
}
.videolist ul li > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.play {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #0000007c;
  border-radius: 10px;
}
.play img {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.play svg {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.footer {
  padding: 10px;
  color: #ffffff;
  background-color: #252525;
}
.footer-top {
  display: flex;
  padding: 20px 40px;
}
.footer-left {
  width: 30%;
}
.footer-left-shuoming {
  display: flex;
}
.footer-left-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.footer-left-title h2 {
  margin-bottom: 5px;
  font-size: 20px;
}
.footer-left-title h3 {
  font-size: 16px;
  color: #d8d8d8;
}
.footer-left img {
  height: 80px;
  margin-right: 10px;
}
.footer-left p {
  margin: 10px 0;
  color: #cacaca;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.footer-center {
  width: 40%;
  display: flex;
  justify-content: space-around;
  gap: 0 10px;
}
.footer-center div {
  display: flex;
  flex-direction: column;
}
.footer-center div h2 {
  text-align: center;
  margin: 10px 0;
  font-size: 20px;
}
.footer-center div a {
  text-align: center;
  font-size: 16px;
  margin: 2px 0;
  display: block;
  color: #858585;
}
.footer-center div a:hover {
  color: rgb(156, 209, 255);
}
.footer-right {
  width: 30%;
}
.footer-right ul {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.footer-right ul li {
  width: 20%;
  text-align: center;
  margin-bottom: 10px;
}
.footer-right ul li a > img {
  width: 50%;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
.footer-right ul li > a {
  color: #858585;
}
.footer-bottom {
  margin: auto;
  margin-bottom: 30px;
  width: 90%;
}
.footer-bottom ul {
  padding: 10px;
  border-radius: 5px;
  background-color: #7777778e;
}
.footer-bottom ul li {
  display: inline-block;
  margin: 5px 10px;
}
.footer-bottom ul li a {
  color: #c0c0c0;
}
.footer-bottom ul li a:hover {
  color: #97cdff;
}
.footer-copy {
  padding-bottom: 10px;
  margin: auto;
  width: 60%;
  text-align: center;
}
.footer-copy a {
  color: #c0c0c0;
}
.footer-copy a:hover {
  color: red;
  text-decoration: underline;
}
.newsbanner img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.newsye {
  padding-bottom: 100px;
  background: url(../images/10006.webp) no-repeat center center;
  background-size: 100% 100%;
}
.newsqucontent {
  margin: auto;
  width: 70%;
  height: max-content;
  display: flex;
  justify-content: center;
}
.newsqucontent-left {
  position: sticky;
  top: 90px;
  padding-top: 50px;
  width: 200px;
  height: max-content;
  padding-bottom: 40px;
  background: url(../images/newsqu-left-bj.png) no-repeat center center;
  background-size: 100% 100%;
}
.newsqucontent-left-top {
  text-align: center;
}
.newsqucontent-left-top h2 {
  color: #ffffff;
  font-size: 30px;
  margin: 5px 0;
}
.newsqucontent-left-top h3 {
  color: #ffde4be3;
  font-size: 20px;
  margin: 10px 0;
  font-weight: lighter;
}
.newsqucontent-left-top a {
  display: block;
  margin: auto;
  width: 60%;
  height: 30px;
  background: url(../images/ljxq.png) no-repeat center center;
  background-size: 100% 100%;
}
.newsqucontent-left-top a:hover {
  background: url(../images/ljxq2.png) no-repeat center center;
  background-size: 100% 100%;
}
.newsqucontent-left-center {
  margin: 20px auto;
}
.newsqucontent-left-center p {
  font-size: 14px;
  color: #ffde4be3;
}
.newsqucontent-left-bottom .Andriod {
  background: url(../images/10004.png) no-repeat center center;
  background-size: 100% 100%;
  margin: auto;
  width: 80%;
  height: 45px;
}
.newsqucontent-left-bottom .Ios {
  background: url(../images/10005.png) no-repeat center center;
  background-size: 100% 100%;
  margin: auto;
  width: 80%;
  height: 45px;
  margin: 10px auto;
}
.newsqucontent-left-bottom .moniqi {
  background: url(../images/10024.png) no-repeat center center;
  background-size: 100% 100%;
  margin: auto;
  width: 80%;
  height: 45px;
}
.newsqucontent-left-bottom div a {
  display: block;
  width: 100%;
  height: 100%;
}
.newsqucontent-right {
  flex: 1;
  padding-top: 30px;
  padding-left: 5px;
}
.newsqucontent-right-top {
  background: url(../images/100004.png) no-repeat;
  background-size: cover;
  padding: 20px 0;
  line-height: 20px;
  padding-left: 20px;
}
.newsqucontent-right-top a {
  color: #a3a3a3;
  font-size: 18px;
  font-weight: bold;
}
.newsqucontent-right-top span {
  color: #a3a3a3;
  font-size: 18px;
  font-weight: bold;
  line-height: 30px;
}
.newsqucontent-right-top a:hover {
  color: #ffffff;
}
.newsqucontent-right-top a > svg {
  width: 25px;
  height: 25px;
  margin-right: 5px;
}
.newsqucontent-right-bottom {
  height: max-content;
  background-color: #e9f1ff;
}
.newsqucontent-right-bottom-li-left svg {
  width: 30px;
  height: 30px;
}
.newsqucontent-right-bottom ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #0068a538;
}
.newsqucontent-right-bottom ul li a:hover .newsqucontent-right-bottom-li-left {
  margin-right: 20px;
}
.newsqucontent-right-bottom ul li a:hover .newsqucontent-right-bottom-li-right img {
  margin: 0 30px 0 20px;
}
.newsqucontent-right-bottom-li-left {
  margin: 0 10px;
}
.newsqucontent-right-bottom-li-center {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.newsqucontent-right-bottom-li-center h2 {
  font-size: 20px;
  color: #28a9ff;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.newsqucontent-right-bottom-li-center p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  color: #707070;
  font-size: 16px;
  margin-top: 5px;
}
.newsqucontent-right-bottom-li-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.newsqucontent-right-bottom-li-right img {
  width: 30px;
  height: 30px;
  margin: 0 50px 0 20px;
}
.newsqucontent-right-bottom-page {
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 8px;
}
.newsqucontent-right-bottom-page a {
  color: #289cff;
  font-size: 17px;
  font-weight: bold;
}
.newsqucontent-right-bottom-page a:active{
  font-size: 14px;
}
.newsqucontent-right-bottom-page span {
  color: #000000;
  font-size: 18px;
}
.newstitle h1 {
  color: #3f6eb9;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  padding: 10px 0;
}
.author{
  text-align: center;
  color: darkgray;
  font-size: 14px;
  margin-bottom: 20px;
}
.newscontents {
  padding: 20px;
}
.newscontents p {
  line-height: 2rem;
}
.time {
  margin: 30px 0 10px 0;
}
.time p {
  text-align: left;
  color: #3f6eb9;
}
.time a{
  color: #3f6eb9;
}
.tags a{
  color: #009ca5;
  padding: 2px 5px;
  line-height: 30px;
  border-radius: .2rem;
  background-color: lightblue;
}
.essay{
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}
.essay div{
  width: 40%;
}
.essay div:nth-child(1){
  text-align: left;
}
.essay div:nth-child(2){
  text-align: right;
}
.essay div a{
  color: #656565;
}
.essay div a:active{
  font-size: 14px;
}
.essay div a:hover{
  color: #4e8bff;
}
.essay div a>span{
  color: black;
}
.correlation{
  padding-top: 20px;
  margin-top: 20px;
  width: 100%;
}
.correlation ol{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px;
  border: 2px dashed #ccc;
}
.correlation ol li{
  width: calc(50% - 30px);
  margin: 10px 0;
  margin-left: 30px;
  list-style: auto;
}
.correlation h2{
  text-align: left;
}
.correlation a{
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
/* 正文内容 */
.article-content {
  color: #777777;
}
.article-content h2{
  font-size: 24px;
  margin: 10px 0;
}
.article-content h2:before{
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  background: url("../images/h2ico.png") no-repeat 50%;
  background-size: cover;
}
.article-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin:5px auto;
}
.article-content p{
  /*text-indent: 30px;*/
  word-wrap: break-word;
}
#icp{
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.footer-mobile-Placeholding{
  width: 100vw;
  height: 80px;
  display: none;
}
.footer-mobile{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 70px;
  /*background-color: #ffffff;*/
  background-color: #ffffffd9;
  backdrop-filter: var(--nav-filter);
}
.footer-mobile ul{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.footer-mobile ul li a{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer-mobile ul li a>svg{
  width: 25px;
  height: 25px;
  margin-bottom: 5px;
}
.footer-mobile ul li a>p{
  font-size: 14px;
  color: #737373;
  font-weight: bold;
}
.jkyx{
  text-align: center;
  padding: 10px 0;
}

/* 自适应布局 */
@media screen and (max-width: 1500px) {
  .newslist-top ul li {
    margin: 0 15px;
  }
}
@media screen and (max-width: 1400px) {
  .newslist-top ul li {
    margin: 0 10px;
  }
}
@media screen and (max-width: 1300px) {
  .newslist-top ul li {
    font-size: 17px;
  }
  .videolist ul li {
    width: 30%;
  }
}
@media screen and (max-width: 1100px) {
  .newsmain {
    flex-direction: column;
    justify-content: flex-start;
  }
  .carousel {
    width: 100%;
  }
  .newslist {
    width: 100%;
    height: max-content;
  }
  .videolist {
    width: 70%;
  }
  .footer-top {
    padding: 20px;
  }
  #carousel-list li img{
    height: auto;
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 1000px) {
  .footer-top {
    flex-direction: column;
  }
  .footer-left {
    width: 100%;
  }
  .footer-center {
    width: 100%;
  }
  .footer-right {
    display: none;
  }
  .footer-left-shuoming {
    text-align: center;
    flex-direction: column;
  }
  .footer-left img {
    margin: 5px auto;
    width: 80px;
    margin-right: auto;
  }
  .footer-bottom {
    margin-bottom: 15px;
  }
  .footer-copy {
    width: 70%;
  }
  .gamerole-left {
    padding: 15px;
  }
  .gamerole-left ol li {
    margin: 10px 0;
    margin-left: 25px;
    font-size: 22px;
  }
  .gamerole-left h2,
  .gamerole-left h3 {
    margin: 10px 0;
    font-size: 23px;
  }
  /*.gamerole-right {*/
  /*  width: 160px;*/
  /*}*/
  .gamerole-left h2 span {
    font-size: 23px;
  }
  .gamerole-right h2 {
    font-size: 25px;
  }
}
@media screen and (max-width: 900px) {
  .videolist {
    width: 80%;
  }
  .newsqucontent{
    width: 90%;
  }
}
@media screen and (max-width: 800px) {
  .videolist {
    width: 90%;
  }
  .videolist ul li {
    width: 40%;
  }
  .download {
    width: 650px;
  }
}
@media screen and (max-width: 700px) {
  .nav-list li:nth-child(1),
  .nav-list li:nth-child(4),
  .nav-list li:nth-child(5) {
    display: none;
  }
  .download {
    width: 80%;
  }
  .download-2 {
    height: 50%;
  }
  .download-3,
  .download-4 {
    display: none;
  }
  .gamerole {
    flex-direction: column;
    width: 80%;
  }
  .gamerole-right {
    width: 100%;
  }
  .gamerole-right h2{
    display: none;
  }
  .gamerole-right img{
    width: 50%;
  }
  .float-left{
    display: none;
  }
  .floatvideo-content{
    width: 70%;
  }
  .footer-copy{
    width: 90%;
  }
  .footer-mobile-Placeholding{
    display: block;
  }
  .footer-mobile{
    display: block;
  }
  .float-right{
    bottom: 90px;
  }
  .float-right ul li > svg{
    width: 20px;
    height: 20px;
  }
  .float-right ul li > p{
    font-size: 10px;
  }
  .kefurexianqu,
.zaixiankefuqu,
.zhidingqu{
    width: 100px;
    border-radius: 5px 0 0 5px;
  }
  .float-right ul li div{
    padding: 2px;
  }
  .float-right ul li div h2{
    font-size: 13px;
    margin-bottom: 0;
  }
  .float-right ul li div img{
    width: 50%;
    height: 50%;
  }
  .float-right ul li div p{
    font-size: 12px;
  }
  .titlemk img{
    width: 60%;
  }
}
@media screen and (max-width: 600px) {
  .download-1 {
    display: none;
  }
  .download {
    background: transparent;
  }
  .fengetu{
    height: 40px;
    margin-top: -40px;
  }
  .gamerole{
    width: 90%;
  }
  .newsqucontent-left{
    display: none;
  }
  .newsbanner img{
    height: 100px;
  }
  .floatvideo a img{
    width: 30px;
    height: 30px;
  }
  .newsmain{
    width: 90%;
  }
  .nav{
      padding: 0;
  }
}
@media screen and (max-width: 500px){
  .nav-list li{
    margin: 0 10px;
  }
  .nav-list li{
    display: none;
  }
  .titlemk{
    width: 100%;
  }
  .newsmain{
    width: 90%;
  }
  .floatvideo-content{
    width: 60%;
  }
  .footer-center{
    display: none;
  }
  .notice{
    width: 90%;
  }
}
@media screen and (max-width: 400px){
  .newsqucontent-right-top a{
    font-size: 14px;
  }
  .newsqucontent-right-top span{
    font-size: 14px;
  }
  .newsqucontent-right-top a > svg{
    width: 18px;
    height: 18px;
  }
  .newsqucontent-right-top{
    padding-left: 5px;
  }
  .footer-bottom ul li{
    margin: 5px;
  }
}