@charset "UTF-8";
html {
  background-color: #4d4fb2;
}

#content_html {
  margin-top: 20px;
  padding: 0 15px;
}
#content_html p,
#content_html li {
  margin: 15px 0;
  font-size: 16px;
  line-height: 25px;
}
#content_html ul,
#content_html li {
  list-style: inside;
}
#content_html h1,
#content_html h2,
#content_html h3,
#content_html h4,
#content_html h5,
#content_html h6 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.025rem;
  line-height: 1.8rem;
  margin: 20px 0;
  outline: none;
}
#content_html h2 {
  font-size: 18px;
}
#content_html h3 {
  font-size: 17px;
}
#content_html h4,
#content_html h5,
#content_html h6 {
  font-size: 16px;
}

.gameMenu {
  position: fixed;
  left: 20px;
  top: 20px;
  z-index: 99999999;
  background: #fff;
  padding: 10px;
}
.gameMenu img {
  width: 40px !important;
  height: 40px !important;
}

.gameButtons {
  position: fixed;
  left: 20px;
  top: 60px;
  z-index: 99999999;
}
.gameButtons img {
  width: 40px !important;
  height: 40px !important;
}

.app {
  background-color: #4d4fb2;
  min-height: 100vh;
}
.app a {
  text-decoration: none;
}
.app .mobile_menu {
  width: 0vw;
  height: 100vh;
  background: rgba(178, 175, 175, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  transition: all 0.2s ease-in-out;
  overflow: hidden;
  z-index: 999999;
}
.app .mobile_menu .mobile_menu_content {
  width: 80%;
  height: 100vh;
  background-color: #4d4fb2;
}
.app .mobile_menu .mobile_menu_content .mobile_menu-close {
  height: 90px;
  line-height: 70px;
  text-align: right;
  padding-right: 30px;
  font-size: 40px;
  border-bottom: 1px solid #ffffff;
  color: #fff;
}
.app .mobile_menu .mobile_menu_content ul {
  padding: 20px 40px;
  height: calc(100vh - 91px);
  overflow: auto;
}
.app .mobile_menu .mobile_menu_content ul .active {
  border-left: 6px solid #A48EFF;
}
.app .mobile_menu .mobile_menu_content ul .active a {
  color: yellow;
}
.app .mobile_menu .mobile_menu_content ul li {
  border-left: 6px solid transparent;
  padding-left: 30px;
  margin: 20px 0;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.app .mobile_menu .mobile_menu_content ul li a {
  color: #fff;
  font-size: 25px;
  line-height: 30px;
}
.app .header {
  position: sticky;
  z-index: 99;
  top: 0;
  height: 60px;
  background: #6767db;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  align-items: center;
  font-size: 20px;
}
@media (max-width: 1200px) {
  .app .header {
    position: sticky !important;
  }
}
.app .header .website_title {
  line-height: 15px;
}
.app .header .mob_menu,
.app .header .mob_search {
  font-weight: 700;
  display: none;
  color: #ffffff;
  font-size: 30px;
}
@media (max-width: 1200px) {
  .app .header .mob_menu,
  .app .header .mob_search {
    display: block;
  }
}
.app .header .menu_icon {
  display: flex;
  gap: 10px;
  color: #FFFFFF;
  font-weight: 600;
}
.app .header .menu_icon i {
  font-size: 30px;
  color: #FFFFFF;
}
@media (max-width: 1200px) {
  .app .header .menu_icon i {
    display: none;
  }
}
.app .header .menu_icon svg {
  margin-left: 10px;
  width: 30px;
  height: 30px;
}
.app .header .menu_icon a {
  display: flex;
  color: #ffffff;
  gap: 10px;
}
.app .header .search {
  height: 70%;
  border-radius: 25px;
  background: #fff;
  width: 450px;
  box-sizing: border-box;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1200px) {
  .app .header .search {
    display: none;
  }
}
.app .header .search div {
  border: none;
  height: 100%;
  background: transparent;
  color: #111;
  font-size: 20px;
  flex: 1;
  line-height: 42px;
}
.app .header .search div:focus {
  border: none;
  outline: none;
}
.app .header .search i {
  color: #111;
  font-size: 20px;
}
.app .container {
  display: flex;
}
.app .container .sidebar {
  position: sticky;
  top: 60px;
  width: 200px;
  background-color: #4d4fb2;
  transition: all 0.3s ease-in-out;
  /* 添加过渡动画 */
  border-right: 1px solid #ffffff;
}
@media (max-width: 1200px) {
  .app .container .sidebar {
    display: none;
  }
}
@media (max-width: 768px) {
  .app .container .sidebar {
    display: none;
  }
}
.app .container .sidebar ul li {
  line-height: 35px;
  font-size: 20px;
  margin: 10px 0;
  padding-left: 30px;
  text-align: left;
  border-left: 6px solid #4d4fb2;
}
.app .container .sidebar ul li a {
  color: #fff;
}
.app .container .sidebar ul li:hover {
  border-left: 6px solid yellow;
}
.app .container .sidebar ul li:hover a {
  color: yellow;
}
.app .container .sidebar ul .active {
  border-left: 6px solid yellow;
}
.app .container .sidebar ul .active a {
  color: yellow;
}
.app .container .main-content {
  flex: 1;
  padding: 0 20px;
  width: calc(100vw - 200px);
}
@media (max-width: 1200px) {
  .app .container .main-content {
    padding: 0;
  }
}
.app .container .main-content .deatils {
  max-width: 70vw;
  margin: auto;
  margin-top: 20px;
}
@media (max-width: 1400px) {
  .app .container .main-content .deatils {
    max-width: 100%;
  }
}
.app .container .main-content .deatils .list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}
@media (max-width: 1200px) {
  .app .container .main-content .deatils .list {
    justify-content: center;
  }
}
.app .container .main-content .deatils .list a {
  width: 180px;
  height: 180px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .app .container .main-content .deatils .list a {
    width: 32%;
  }
}
.app .container .main-content .deatils .list a p {
  display: none;
  position: absolute;
  bottom: 0;
  background: rgba(169, 166, 166, 0.6);
  line-height: 25px;
  font-size: 23px;
  width: 100%;
  text-align: center;
  color: #7050f2;
}
.app .container .main-content .deatils .list a:hover p {
  display: block;
}
.app .container .main-content .deatils .list a img {
  width: 100%;
  height: 100%;
}
.app .container .main-content .deatils .info {
  background: #fff;
  border-radius: 10px;
  width: 100%;
  margin-top: 20px;
  box-sizing: border-box;
  padding: 20px;
  color: #111;
}
.app .container .main-content .deatils .play {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.app .container .main-content .deatils .play .left,
.app .container .main-content .deatils .play .right {
  width: 190px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 1400px) {
  .app .container .main-content .deatils .play .left,
  .app .container .main-content .deatils .play .right {
    display: none;
  }
}
.app .container .main-content .deatils .play .left a,
.app .container .main-content .deatils .play .right a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 1px 3px 19px rgba(7, 19, 60, 0.7215686275);
}
.app .container .main-content .deatils .play .left a p,
.app .container .main-content .deatils .play .right a p {
  display: none;
  position: absolute;
  bottom: 0;
  background: rgba(255, 255, 255, 0.6);
  line-height: 25px;
  font-size: 23px;
  width: 100%;
  text-align: center;
  color: #7050f2;
}
.app .container .main-content .deatils .play .left a:hover p,
.app .container .main-content .deatils .play .right a:hover p {
  display: block;
}
.app .container .main-content .deatils .play .left a img,
.app .container .main-content .deatils .play .right a img {
  width: 100%;
  height: 180px;
}
@media (max-width: 1000px) {
  .app .container .main-content .deatils .play .left a img,
  .app .container .main-content .deatils .play .right a img {
    width: 30vw;
  }
}
.app .container .main-content .deatils .play .left img,
.app .container .main-content .deatils .play .right img {
  width: 190px;
}
@media (max-width: 1000px) {
  .app .container .main-content .deatils .play .left img,
  .app .container .main-content .deatils .play .right img {
    width: 30vw;
  }
}
.app .container .main-content .deatils .play .play_box {
  flex: 1;
}
.app .container .main-content .deatils .play .play_box .list a {
  box-shadow: 1px 3px 19px rgba(7, 19, 60, 0.7215686275);
}
@media (max-width: 750px) {
  .app .container .main-content .deatils .play .play_box .list {
    justify-content: center;
  }
  .app .container .main-content .deatils .play .play_box .list iframe {
    width: 100%;
    height: 50vh;
  }
  .app .container .main-content .deatils .play .play_box .list a {
    height: 110px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    width: 27%;
  }
}
.app .container .main-content .deatils .play .play_box p {
  line-height: 25px;
}
.app .container .main-content .deatils .play .play_box iframe {
  height: 660px;
}
@media (max-width: 750px) {
  .app .container .main-content .deatils .play .play_box iframe {
    width: 100%;
    height: 50vh;
  }
}
.app .container .main-content h2 {
  color: #fff;
  font-weight: 700;
  margin: 15px 0;
  font-size: 28px;
}
@media (max-width: 1000px) {
  .app .container .main-content h2 {
    margin: 40px;
  }
}
.app .container .main-content img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  box-sizing: border-box;
  transition: all 0.2s;
  cursor: pointer;
}
.app .container .main-content img:hover {
  border-color: #A48EFF;
  transform: scale(1.12);
  transition: all 0.2s;
}
.app .container .main-content .second {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 1000px) {
  .app .container .main-content .second {
    justify-content: center;
  }
}
.app .container .main-content .second a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 1px 3px 19px rgba(7, 19, 60, 0.7215686275);
}
.app .container .main-content .second a p {
  display: none;
  position: absolute;
  bottom: 0;
  background: rgba(220, 220, 220, 0.6);
  line-height: 25px;
  font-size: 23px;
  width: 100%;
  text-align: center;
  color: #7050f2;
}
.app .container .main-content .second a:hover p {
  display: block;
}
.app .container .main-content .second a img {
  width: 180px;
  height: 180px;
}
@media (max-width: 1000px) {
  .app .container .main-content .second a img {
    width: 30vw;
    height: 100%;
  }
}
.app .container .main-content .second img {
  width: 180px;
}
@media (max-width: 1000px) {
  .app .container .main-content .second img {
    width: 30vw;
  }
}
.app .tabbar {
  width: 100%;
  height: 50px;
  box-sizing: border-box;
  background-color: rgba(63, 65, 92, 0.7);
  position: sticky;
  border-radius: 25px;
  bottom: 30px;
  display: none;
  overflow: hidden;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .app .tabbar {
    display: flex;
  }
}
.app .tabbar .tabbar_item {
  cursor: pointer;
  line-height: 22px;
  padding-top: 5px;
  width: 25%;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  color: #fff;
}
.app .tabbar .tabbar_item i {
  font-size: 25px;
}
.app .tabbar .active {
  background: #6842FF;
}
.app .hide-sidebar .sidebar {
  transform: translateX(-200px);
  /* 隐藏侧边栏 */
  width: 0;
}
.app .hide-sidebar .main-content {
  width: 100%;
}
.app .footer {
  margin-top: 20px;
  padding-bottom: 50px;
  background: #6767db;
  display: flex;
  justify-content: center;
  line-height: 40px;
  color: rgba(255, 255, 255, 0.5647058824);
  font-size: 17px;
  flex-direction: column;
}
.app .footer p {
  text-align: center;
}
.app .footer #menu-overige {
  margin-right: 20px;
  display: flex;
  gap: 20px;
  justify-content: center;
}
@media (max-width: 768px) {
  .app .footer #menu-overige {
    gap: 0px;
    flex-direction: column;
    text-align: center;
  }
}
.app .footer #menu-overige a {
  color: #fff;
}
.app #content_html {
  background: #ffffff;
  padding: 20px;
  color: #111;
}
.app #content_html p {
  margin-bottom: 25px;
  margin-top: 25px;
  font-size: 18px;
  line-height: 26px;
}
.app #content_html h1 {
  font-family: Helvetica Neue LT, Helvetica Neue, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.025rem;
  line-height: 1.8rem;
  margin-bottom: 24px;
  margin-left: 0;
  margin-right: 0;
  outline: none;
}/*# sourceMappingURL=index.css.map */