@charset "UTF-8";
.max_width {
  max-width: 1440px;
  margin: auto;
}

body {
  background-color: #f7dcbc;
}

.app .deatils {
  margin: auto;
  margin-top: 20px;
}
@media (max-width: 1400px) {
  .app .deatils {
    max-width: 100%;
  }
}
.app .deatils .list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}
@media (max-width: 1200px) {
  .app .deatils .list {
    justify-content: center;
  }
}
.app .deatils .list a {
  width: 180px;
  height: 180px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .app .deatils .list a {
    width: 32%;
  }
}
.app .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 .deatils .list a:hover p {
  display: block;
}
.app .deatils .list a img {
  width: 100%;
  height: 100%;
  min-height: 103px;
}
.app .deatils .info {
  background: #fff;
  border-radius: 10px;
  width: 100%;
  margin-top: 20px;
  box-sizing: border-box;
  padding: 20px;
  color: #111;
}
.app .deatils .play {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.app .deatils .play .left,
.app .deatils .play .right {
  width: 190px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 1400px) {
  .app .deatils .play .left,
  .app .deatils .play .right {
    display: none;
  }
}
.app .deatils .play .left a,
.app .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 .deatils .play .left a p,
.app .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 .deatils .play .left a:hover p,
.app .deatils .play .right a:hover p {
  display: block;
}
.app .deatils .play .left a img,
.app .deatils .play .right a img {
  width: 100%;
  height: 180px;
}
@media (max-width: 1000px) {
  .app .deatils .play .left a img,
  .app .deatils .play .right a img {
    width: 30vw;
  }
}
.app .deatils .play .left img,
.app .deatils .play .right img {
  width: 190px;
}
@media (max-width: 1000px) {
  .app .deatils .play .left img,
  .app .deatils .play .right img {
    width: 30vw;
  }
}
.app .deatils .play .play_box {
  flex: 1;
}
.app .deatils .play .play_box .play_box1 {
  color: #fefcfc;
  /* SVG */
  /* SVG animations */
  /* Button animations */
}
@media (max-width: 950px) {
  .app .deatils .play .play_box .play_box1 {
    justify-content: space-between;
    padding: 0 40px;
  }
}
@media (min-width: 1200px) {
  .app .deatils .play .play_box .play_box1 {
    justify-content: center;
  }
}
.app .deatils .play .play_box .play_box1 img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
}
.app .deatils .play .play_box .play_box1 .d_content_game {
  font-size: 14px;
  line-height: 20px;
  /* 超出三行换行 */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
}
.app .deatils .play .play_box .play_box1 h5,
.app .deatils .play .play_box .play_box1 h4 {
  font-size: 18px;
  margin: 15px 0;
}
.app .deatils .play .play_box .play_box1 .btn-conteiner {
  display: flex;
  justify-content: center;
  --color-text: #ffffff;
  --color-background: #50577a;
  --color-outline: #50577A;
  --color-shadow: #474E68;
}
.app .deatils .play .play_box .play_box1 .btn-content {
  display: flex;
  align-items: center;
  padding: 5px 40px;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--color-text);
  background: var(--color-background);
  transition: 1s;
  border-radius: 100px;
  box-shadow: 0 0 0.2em 0 var(--color-background);
  transition: 0.5s;
  animation: btn-content 1s;
  outline: 0.1em solid transparent;
  outline-offset: 0.2em;
  box-shadow: 0 0 0.4em 0 var(--color-background);
}
.app .deatils .play .play_box .play_box1 .btn-content .icon-arrow {
  transition: 0.5s;
  margin-right: 0px;
  transform: scale(0.6);
}
.app .deatils .play .play_box .play_box1 .icon-arrow {
  transition: 0.5s;
  margin-right: 25px;
}
.app .deatils .play .play_box .play_box1 .icon-arrow {
  width: 20px;
  margin-left: 15px;
  position: relative;
  top: 6%;
}
.app .deatils .play .play_box .play_box1 #arrow-icon-one {
  transition: 0.4s;
  transform: translateX(-60%);
}
.app .deatils .play .play_box .play_box1 #arrow-icon-two {
  transition: 0.5s;
  transform: translateX(-30%);
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.4s;
}
.app .deatils .play .play_box .play_box1 #arrow-icon-three {
  animation: color_anim 1s infinite 0.2s;
}
.app .deatils .play .play_box .play_box1 #arrow-icon-one {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.6s;
}
@keyframes color_anim {
  0% {
    fill: white;
  }
  50% {
    fill: var(--color-background);
  }
  100% {
    fill: white;
  }
}
@keyframes btn-content {
  0% {
    outline: 0.2em solid var(--color-background);
    outline-offset: 0;
  }
}
.app .deatils .play .play_box .list a {
  box-shadow: 1px 3px 19px rgba(7, 19, 60, 0.7215686275);
}
@media (max-width: 750px) {
  .app .deatils .play .play_box .list {
    justify-content: center;
  }
  .app .deatils .play .play_box .list #ifr_diagnose {
    width: 100%;
    height: 50vh;
  }
  .app .deatils .play .play_box .list a {
    height: 110px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    width: 27%;
  }
}
.app .deatils .play .play_box p {
  line-height: 25px;
}
.app .deatils .play .play_box #ifr_diagnose {
  display: none;
  height: 660px;
}
@media (max-width: 750px) {
  .app .deatils .play .play_box #ifr_diagnose {
    width: 100%;
    height: 50vh;
  }
}
.app .header .h_top {
  background: #638331 top right repeat-x;
  background-image: url(/images/hbg.png), url(/images/hbg1.svg), url(/images/hbg2.svg), url(/images/hbg4.svg), url(/images/hbg3.svg);
  background-size: auto 100%;
  z-index: 500;
  background-position-x: 33%;
  height: 60px;
  border-bottom: 1px solid #e1e1e1;
}
.app .header .h_top .max_width {
  display: flex;
  justify-content: space-between;
  color: #ffffff;
}
.app .header .h_top .max_width .website_name {
  line-height: 60px;
  font-size: 20px;
  font-weight: 900;
  text-shadow: 2px 2px 2px green;
  display: flex;
  justify-content: center;
  align-items: center;
}
.app .header .h_top .max_width .website_name img {
  margin-right: 10px;
  width: 50px;
  height: 50px;
}
.app .header .h_top .max_width .h_des {
  font-size: 14px;
  margin-top: 16px;
  line-height: 14px;
  text-align: center;
}
.app .header .h_top .max_width .h_search {
  width: 150px;
  height: 32px;
  margin-top: 15px;
  line-height: 32px;
  padding-left: 10px;
  border-radius: 5px;
  background: #d3dcc4;
  color: #999;
}
.app .header .h_top .max_width .h_search .iconfont {
  margin-left: 10px;
  font-size: 20px;
  color: #111;
  font-weight: 900;
}
@media (max-width: 1440px) {
  .app .header .h_top .max_width {
    padding: 0 15px;
  }
}
.app .header .h_bottom {
  min-height: 36px;
  height: 36px;
  z-index: 3;
  box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.25);
  background-color: #553924;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  color: #ffffff;
}
.app .header .h_bottom ul {
  display: flex;
}
.app .header .h_bottom ul li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.app .header .h_bottom ul li a {
  display: inline-block;
  line-height: 36px;
  padding: 0 30px;
  border-left: solid 1px #462f1e;
  font-size: 14px;
}
.app .header .mob_show {
  display: none;
}
@media (max-width: 768px) {
  .app .header .h_search,
  .app .header .h_des,
  .app .header .h_bottom {
    display: none;
  }
  .app .header .mob_show {
    display: block;
    line-height: 60px;
  }
  .app .header .mob_show .iconfont {
    font-size: 25px;
    padding: 0 3px;
  }
}
.app .content {
  background-color: #638331;
  overflow: hidden;
}
.app .content .first_block {
  background-color: #c2460f;
  margin: 6px;
  border-radius: 10px;
  padding: 10px;
}
.app .content .first_block .f_tools {
  display: flex;
  justify-content: space-between;
}
.app .content .first_block .f_tools .f_title {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
}
.app .content .first_block .f_tools .f_t_l_lr {
  display: flex;
}
.app .content .first_block .f_tools .f_t_l_lr div {
  align-items: center;
  height: 24px;
  margin-left: 4px;
  padding: 0 5px;
  padding-top: 2px;
  background: rgba(0, 0, 0, 0.12);
  border-radius: 0.3125rem;
  flex: 1;
}
.app .content .first_block .f_tools .f_t_l_lr div:hover {
  background: rgba(0, 0, 0, 0.05);
}
.app .content .first_block .f_tools .f_t_l_lr .disabled {
  background: rgba(0, 0, 0, 0);
}
.app .content .first_block .f_tools .f_t_l_lr .disabled .iconfont {
  color: #ccc;
}
.app .content .first_block .f_tools .f_t_l_lr .disabled:hover {
  background: rgba(0, 0, 0, 0);
}
.app .content .first_block .f_tools .f_t_l_lr .iconfont {
  color: #ffffff;
  font-weight: 700;
  font-size: 10px;
}
.app .content .first_block .show_all a {
  display: block !important;
}
.app .content .first_block .f_block {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(10, 1fr);
  margin-top: 5px;
  border-radius: 10px;
  padding: 10px;
  background-color: #F7DACC;
  color: #ffffff;
  gap: 10px;
}
.app .content .first_block .f_block a {
  display: none;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-sizing: border-box;
  transition: all 0.2s;
}
.app .content .first_block .f_block a:hover {
  transform: scale(1.1);
  transition: all 0.2s ease-in-out;
}
.app .content .first_block .f_block a img {
  width: 100%;
  height: 100%;
  min-height: 130px;
}
.app .content .first_block .f_block a p {
  position: absolute;
  bottom: 0;
  padding: 5px;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  text-align: center;
  font-size: 12px;
}
.app .content .first_block .f_block .show {
  display: block;
}
@media (max-width: 1200px) {
  .app .content .first_block .f_block {
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 950px) {
  .app .content .first_block .f_block {
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(3, 1fr);
  }
  .app .content .first_block .f_block a img {
    min-height: 103px;
  }
}
.app .content .second_block {
  padding: 5px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.app .content .second_block .s_i_title {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 10px;
}
.app .content .second_block .s_item_block {
  padding: 10px;
  border-radius: 10px;
  background-color: #6E6E6E;
}
.app .content .second_block .s_item_block img {
  width: 100%;
  height: 120px;
}
.app .content .second_block .s_item_block a img {
  display: none;
}
.app .content .second_block .s_item_block .s_i_list {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.961);
  border-radius: 5px;
  padding: 20px;
  height: 500px;
}
.app .content .second_block .s_item_block .s_i_list a {
  color: #111111;
  background-color: transparent;
  display: block;
  padding: 7px 0;
  font-size: 16px;
  text-decoration: none;
}
.app .content .second_block .s_item_block .s_i_list a:hover {
  color: #638331;
}
@media (max-width: 950px) {
  .app .content .second_block .s_item_block .s_i_list a p {
    background-color: #333;
    color: #fff;
  }
}
.app .content .second_block .s_item_block .s_i_list a:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.02);
}
.app .content .second_block .s_item_block:nth-child(1) {
  background-color: #6337b5;
}
.app .content .second_block .s_item_block:nth-child(1) .s_i_list {
  background: #d8cdec;
}
.app .content .second_block .s_item_block:nth-child(2) {
  background-color: #0A3C97;
}
.app .content .second_block .s_item_block:nth-child(2) .s_i_list {
  background: #D9E0EE;
}
.app .content .second_block .s_item_block:nth-child(3) {
  background-color: #91552d;
}
.app .content .second_block .s_item_block:nth-child(3) .s_i_list {
  background: #e3d4ca;
}
.app .content .second_block .s_item_block:nth-child(4) {
  background-color: #b755b4;
}
.app .content .second_block .s_item_block:nth-child(4) .s_i_list {
  background: #edd4ec;
}
.app .content .second_block .s_item_block:nth-child(5) {
  background-color: #05531f;
}
.app .content .second_block .s_item_block:nth-child(5) .s_i_list {
  background: #d3e3ca;
}
.app .content .second_block .s_item_block:nth-child(6) {
  background-color: #dc5d00;
}
.app .content .second_block .s_item_block:nth-child(6) .s_i_list {
  background: #f6d6bf;
}
.app .content .second_block .s_item_block:nth-child(7) {
  background-color: #2193b0;
}
.app .content .second_block .s_item_block:nth-child(7) .s_i_list {
  background: #c7e4eb;
}
.app .content .second_block .s_item_block:nth-child(8) {
  background-color: #ddb100;
}
.app .content .second_block .s_item_block:nth-child(8) .s_i_list {
  background: #f6ebbf;
}
.app .content .second_block .s_item_block:nth-child(10) {
  background-color: #ac0d19;
}
.app .content .second_block .s_item_block:nth-child(10) .s_i_list {
  background: #eac2c5;
}
@media (max-width: 1400px) {
  .app .content .second_block {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1000px) {
  .app .content .second_block {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .app .content .second_block {
    grid-template-columns: repeat(1, 1fr);
  }
  .app .content .second_block img {
    display: none;
  }
  .app .content .second_block .s_item_block .s_i_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    height: auto;
  }
  .app .content .second_block .s_item_block .s_i_list a {
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
  }
  .app .content .second_block .s_item_block .s_i_list a img {
    display: block;
  }
  .app .content .second_block .s_item_block .s_i_list a p {
    text-align: center;
  }
  .app .content .second_block .s_item_block .s_i_list .s_i_more {
    display: none;
  }
}/*# sourceMappingURL=index.css.map */