/* 通用 */
/* 去除高度塌陷、重叠，（BFC） */
.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: "Microsoft YaHei", "微软雅黑", "Arial", sans-serif;
}
div {
  display: block;
}
a {
  text-decoration: none;
  color: black;
}
/* BG */
/* 底层背景样式 */
#bg_all {
  overflow: hidden;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  min-width: 1200px;
  background-image: url(../images/background/bg_001.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size:cover;
}
/* box1通用样式 */
.box1 {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  right: 3px;
  padding: 3px;
  border-radius: 10px;
  text-align: center;
  font-size: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  backdrop-filter: blur(5px);
  border: 1px rgba(255, 255, 255, 0.1) solid;
}
/* 部分单独box1样式 */
#ad_part .box1,
#news_part .box1 {
  background-image: url(../images/logo/ic_logo.png);
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: center center;
}
/* 底层垂直分布：Header,Body */
/* 头部主体样式 */
#header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
}
#logo_part {
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
}
#logo_part .logo_main {
  position: absolute;
  top: 25px;
  left: 105px;
  height: 60px;
  transition-duration: 0.5s;
}
#logo_part .logo_main:hover {
  transform: scale(1.2);
  filter: brightness(1.1);
}
#logo_part .title_ic {
  position: absolute;
  height: 25px;
  top: 98px;
  left: 85px;
  transition-duration: 0.5s;
}
#logo_part .title_ic:hover {
  transform: scale(1.1);
}
#message_part {
  position: absolute;
  top: 0;
  left: 280px;
  right: 280px;
  height: 100%;
}
.message_display {
  border-radius: 10px;
  height: 99%;
  color: rgb(255,255,255);
  font-size: 30px;
  border: 1px rgba(20, 150, 255, 0.8) solid;
  background-color: rgba(159, 212, 255, 0.2);
}
.message_display .danmu_text{
  position: relative;
  font-weight: bold;
  font-size: 25px;
  animation: danmu 20s linear infinite;
}
.message_display .danmu-box {
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  overflow: hidden;
}
.message_display .danmu {
  position: absolute;
  white-space: nowrap;
  font-size: 20px;
  width: 100%;
  text-align: left;
  animation: danmu 20s linear;
}
@keyframes danmu {
  0% {
      transform: translateX(100%);
  }
  100% {
      transform: translateX(-100%);
  }
}
.message_display .danmu:hover,
.message_display .danmu_text:hover{
  animation-play-state: paused;
  z-index: 100000;
}
.message_display .input-box {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  gap: 10px;
  width: 100%;
  height: 30px;
  justify-content: center;
  transition-duration: 0.5s;
}
.message_display:hover .input-box,
.message_display:focus-within .input-box,
.message_display #danmu-input:focus {
  bottom: 12px;
}
#danmu-input {
  padding: 6px;
  font-size: 15px;
  border: none;
  width: 25%;
  border-radius: 5px;
}
#send-btn {
  font-size: 15px;
  border: none;
  border-radius: 5px;
  width: 50px;
  height: 100%;
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
}
#send-btn:hover {
  background-color: #0056b3;
}
#aboutus_part {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
}
#aboutus_part a:hover {
  color: #4ca2ff;
}
#aboutus_part::after,
#logo_part::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: -1;
  background-image: url(../images/logo/aboutus-bg-white.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 274px 144px;
}
#aboutus_part .QR_code {
  position: absolute;
  height: 60px;
  top: 12px;
  right: 10px;
  transition-duration: 0.5s;
}
#aboutus_part .QR_code:hover {
  filter: brightness(1.1);
}
.about_us_text {
  position: absolute;
  top: 25px;
  left: 55px;
  color: rgb(255,255,255);
  line-height: 23px;
  font-size: 18px;
}
#aboutus_part .links1 {
  position: absolute;
  color: rgb(200,200,200);
  left: 40px;
  top: 60px;
  font-size: 18px;
}
#aboutus_part .bestsee {
  position: absolute;
  color: rgb(100, 100, 100);
  right: 55px;
  top: 130px;
  font-size: 8px;
}
#aboutus_part .links_support {
  position: absolute;
  color: rgb(200,200,200);
  right: 27px;
  top: 103px;
  font-size: 13px;
}
#aboutus_part #QR_Z_code {
  position: absolute;
  right: 3px;
  top: 120px;
  width: 274px;
  height: 205px;
  border-radius: 10px;
  z-index: 1000000;
  box-shadow: rgba(0, 0, 0, 0.8) 5px 5px 5px;
  opacity: 0;
  transition: 0.5s;
}
#QR_Z_code .QR_Z_code {
  border-radius: 10px;
  width: 274px;
} 
#aboutus_part .links_support:hover + #QR_Z_code,
#QR_Z_code:hover{
  opacity: 1;
}
#aboutus_part .contact {
  position: absolute;
  color: rgb(200,200,200);
  left: 60px;
  top: 95px;
  font-size: 18px;
}
#contact_box {
  position: absolute;
  color:rgb(200,200,200);
  background-color: rgba(50, 50, 55, 0.9);
  right: 3px;
  top: 120px;
  width: 259px;
  height: 105px;
  line-height: 23px;
  padding-top: 10px;
  padding-left: 15px;
  border-radius: 10px;
  border: 1px #4ca3ffd3 solid;
  z-index: 1000000;
  box-shadow: rgba(0, 0, 0, 0.8) 5px 5px 5px;
  opacity: 0;
  transition: 0.5s;
}
#contact_box a{
  color:rgb(200,200,200);
  text-decoration: underline;
}
#contact_box a:hover{
  color: #4ca2ff;
}
#aboutus_part .contact:hover + #contact_box,
#contact_box:hover {
  opacity: 1;
}
/* 主体位置大小 */
#body_main {
  position: absolute;
  top: 150px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  min-height: 587px;
}
#leftside {
  position: absolute;
  left: 0;
  width: 280px;
  height: 100%;
}
 #search_part {
  position: absolute;
  top: 0;
  bottom: 150px;
  width: 100%;
}
#search_part .search_title {
  border-bottom: 1px #fff solid;
  font-size: 25px;
  font-weight: bold;
  width: 100%;
  line-height: 35px;
}
.search_title .search_all {
  float: right;
  width: 35px;
  height: 100%;
  color: rgba(255, 255, 255, 0.8);
}
.search_title .search_all:hover {
  color: #007dff;
}
.search_title .search_in_bg {
  position: absolute;
  left: 0;
  right: 0;
  height: 0px;
  overflow: hidden;
  z-index: 1000000;
  transition: height 0.3s;
}
.search_title .search_all:hover .search_in_bg {
  height: 35px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}
.search_title .search_table {
  height: 100%;
  width: 100%;
  display: flex;
}
.search_title .search_table input {
  float: left;
  height: calc(100% -35px);
  padding: 0 10px;
  border: 0;
  width: 219px;
  font-size: 20px;
  color: #007dff;
}
.search_title .search_table input:focus {
  outline-color: #007dff;
}
.search_title .search_table button {
  background-color: #007dff;
  color: #fff;
  float: right;
  height: 100%;
  padding: 0;
  border: 0;
  width: 35px;
  font-size: 30px;
}
.search_title .search_table button:focus {
  outline: none;
}
.search_title .search_table button:hover {
  background-color: #fff;
  color: #007dff;
}
#search_part .scroll-container {
  position: relative;
  height: calc(100% - 45px);
  margin-top: 5px;
  overflow: hidden;
}
#search_part .scroll-list {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 0;
  width: 100%;
  height:100%;
  animation: scroll-up 30s linear infinite;
}
#search_part .copy {
  top: 100%;
}
@keyframes scroll-up {
  0% {
      transform: translateY(0);
  }
  100% {
      transform: translateY(-100%);
  }
}
#search_part .scroll-container:hover .scroll-list {
  animation-play-state: paused;
}
#search_part .list1 {
  flex: 1;
  box-sizing: border-box;
  font-size: 16px;
  text-shadow: rgba(0, 0, 0, 0.8) 1px 1px 5px;
  padding-left: 10px;
  transition-duration: 0.3s;
}
#search_part .list1:hover{
  transform: scale(1.1);
}
#search_part .list1 a {
  color: rgb(255,255,255);
}
#search_part .hot a {
  color: rgb(243, 57, 57);
  font-weight: bold;
}
#search_part .list1 a:hover {
  color: #4ca2ff;
}
#ad_part {
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 150px;
  border: none;
}
#ad_part .box1 {
  border: none;
}
#ad_part #videos_link {
  position: relative;
  top: -3px;
  left: -3px;
  width: 274px;
}
#ad_part .fas {
  position: absolute;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
}
#ad_part .fa-audio-description {
  font-size: 25px;
  top: -30px;
  left: 6px;
}
#ad_part .fa-microphone-alt-slash {
  right: 6px;
  bottom: -30px;
}
#ad_part .fa-expand-arrows-alt {
  right: 32px;
  bottom: -30px;
}
#ad_part .fa-sync {
  right: 52px;
  bottom: -30px;
}
#ad_part .fa-times {
  font-size: 22px;
  right: 8px;
  top: -30px;
}
#ad_part .fas:hover {
  color: #007dff;
}
#ad_part .box1:hover .fa-audio-description,
#ad_part .box1:hover .fa-times {
  top: 5px;
  transition: top 0.2s;
}
#ad_part .box1:hover .fa-microphone-alt-slash,
#ad_part .box1:hover .fa-expand-arrows-alt,
#ad_part .box1:hover .fa-sync {
  bottom: 6px;
  transition: bottom 0.2s;
}
#main_part {
  position: absolute;
  left: 280px;
  right: 280px;
  height: 100%;
  margin: 3px;
}
#main_part .mainPage {
  width: 100%;
  height: 100%;
}
#rightside {
  position: absolute;
  right: 0;
  width: 280px;
  height: 100%;
}
#news_part {
  position: absolute;
  top: 0;
  bottom: 550px;
  width: 100%;
  height: 50%;
  min-height: 270px;
}
#news_part .news_title {
  border-bottom: 1px white solid;
  margin-top: 3px;
  font-size: 25px;
  padding: 5px;
  font-weight: bold;
}
#news_part .news_content_main li {
  width: 230px;
  line-height: 24px;
  margin-top: 11px;
  margin-left: 10px;
  overflow: hidden;
  font-size: 18px;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
}
#news_part .news_content_main li::before {
  content: '\f0da';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  margin-right: 8px;
}
#news_part .news_content_main li:hover {
  color: #ffffff;
}
#news_part .fa-long-arrow-alt-up,
#news_part .fa-long-arrow-alt-down {
  position: absolute;
  right: 10px;
  font-size: 25px;
  color: rgba(255, 255, 255, 0.8);
}
#news_part .fa-long-arrow-alt-up {
  top: 150px;
}
#news_part .fa-long-arrow-alt-down {
  top: 250px;
}
#news_part .fa-long-arrow-alt-up:hover,
#news_part .fa-long-arrow-alt-down:hover {
  color: #007dff;
}
#games_part {
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 50%;
  min-height: 270px;
}
#games_part .game_close {
  width: 100%;
  height: 10px;
  z-index: 1000000;
  /* 关闭按钮样式 */
  /* 关闭按钮经过样式 */
}
#games_part .game_close .fas {
  position: absolute;
  top: -30px;
  left: 125px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  /* text-shadow: 2px 2px 2px black; */
}
#games_part .game_close .fas:hover {
  color: #007dff;
}
#games_part .game_close:hover .fas {
  top: 3px;
  transition: top 0.2s;
}
#games_part .game_set{
  position: relative;
  height: calc(100% - 10px);
  border-radius: 5px;
}
#games_part .game_set .game_html{
  position: absolute;
  left: 0px;
  top: 8%;
  height: 100%;
}
/* 登陆样式 */
.login_bg {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
}
/* 登录盒子样式 */
.log_in_box {
  position: relative;
  width: 500px;
  height: 340px;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 20px;
  background-color: rgba(0, 125, 255, 0.1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  font-size: 50px;
  text-align: center;
  color: #fff;
}
/* 登录盒子经过样式 */
.log_in_box:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
/* 登录字体 */
.log_in_box h5 {
  padding-top: 30px;
  color: black;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(255, 255, 255);
}
/* 账户密码样式 */
.username,
.password {
  height: 25px;
  width: 180px;
  border-radius: 5px;
  border: 1px solid #007dff;
  margin: 0;
  outline-color: #007dff;
  font-size: 20px;
  background-color: rgba(255, 255, 255, 0.8);
}
/* 登录登出按钮样式 */
.login_table,
.signout_table {
  width: 85px;
  height: 30px;
  margin: 30px 0 0 0 ;
  border: 2px solid #ffffff;
  border-radius: 5px;
  outline-color: #007dff;
  font-weight: bold;
  font-size: 18px;
  background-color: rgba(255, 255, 255, 0.8);
}
/* 登录登出经过样式 */
.login_table:hover,
.signout_table:hover {
  color: #007dff;
  border: 1px solid #007dff;
}
/* 注册信息样式 */
.log_in_box h6 {
  margin-top: 50px;
  font-size: 18px;
  color: black;
}
/* 关闭按钮样式 */
.log_in_box .fas {
  position: absolute;
  top: 8px;
  right: 15px;
  font-size: 30px;
}
.log_in_box .fas:hover {
  color: #007dff;
}
/* 登录界面出现背景模糊 */
#bg_all {
  filter: blur(0px);
  transition: filter 0.1s;
}
#copyright_part {
  position: absolute;
  bottom: 0px;
  right: 0px;
  left: 0px;
  height: 20px;
  color: rgb(255,255,255);
}
#copyright_part .copyright {
  position: absolute;
  width: 50%;
  left: 285px;
}
#copyright_part .beianhao {
  position: absolute;
  width: 50%;
  right: 285px;
}