@charset "UTF-8";
@font-face {
  /* 给自定义字体取个名字，后面可以用这个名字引用字体 */
  font-family: 'Tomorrow';
  /* 字体文件的路径，这里假设字体文件在当前目录下 */
  src: url("../font/Tomorrow-Bold.ttf");
  /* 可选的字体样式，如 normal 或 italic */
  font-style: normal;
  /* 可选的字体粗细，如 normal 或 bold */
  font-weight: normal;
}

.nav-detail {
  padding-top: 160px;
  width: 1400px;
  margin: 0 auto;
  text-align: left;
}

.all_game {
  width: 100%;
  height: auto;
  margin-top: 50px;
  padding-bottom: 200px;
  box-sizing: border-box;
}

.all_game .container {
  max-width: 1200px;
  height: 100%;
  width: 100%;
  margin: 0 auto;
}

.all_game .container h1 {
  margin-top: 0;
  margin-bottom: 0;
  color: #FFF;
  text-align: center;
  font-family: 'Tomorrow';
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.all_game .container .all_tab_box {
  width: 100%;
  height: auto;
  margin-top: 26px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.all_game .container .all_tab_box .tab_item {
  cursor: pointer;
  width: 34px;
  height: 34px;
  border-radius: 4px;
  background: #373737;
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 34px;
  margin-right: 18px;
  margin-top: 18px;
}

.all_game .container .all_tab_box .tab_item.active {
  background: #EA6519;
}

.all_game .container .all_tab_box .tab_item:hover {
  background: #EA6519;
}

.all_game .container .all_content_box {
  width: 100%;
  height: auto;
  margin-top: 35px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.all_game .container .all_content_box .box_item {
  width: 100%;
  height: auto;
  padding: 35px 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  box-sizing: border-box;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.all_game .container .all_content_box .box_item .item_title {
  width: 15%;
  color: #FFF;
  text-align: left;
  font-family: "Tomorrow";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.all_game .container .all_content_box .box_item .item_box {
  width: 80%;
  height: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.all_game .container .all_content_box .box_item .item_box .item {
  width: 25%;
  padding-right: 2%;
  box-sizing: border-box;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 44px;
  /* 275% */
}

.all_game .container .all_content_box .box_item .item_box .item:hover {
  color: #EA6519;
}

@media screen and (max-width: 768px) {
  .nav-detail {
    width: 100vw;
    padding: 160px 15px 0;
    box-sizing: border-box;
  }
  .all_game {
    width: 100%;
    height: auto;
    margin-top: 40px;
    padding-bottom: 50px;
    box-sizing: border-box;
  }
  .all_game .container {
    max-width: 92%;
    height: 100%;
    width: 100%;
    margin: 0 auto;
  }
  .all_game .container h1 {
    margin-top: 0;
    margin-bottom: 0;
    color: #FFF;
    text-align: center;
    font-family: 'Tomorrow';
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  .all_game .container .all_tab_box {
    width: 100%;
    height: auto;
    margin-top: 26px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .all_game .container .all_tab_box .tab_item {
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: #373737;
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 40px;
    margin-right: 9px;
    margin-top: 10px;
  }
  .all_game .container .all_tab_box .tab_item.active {
    background: #EA6519;
  }
  .all_game .container .all_tab_box .tab_item:hover {
    background: #EA6519;
  }
  .all_game .container .all_content_box {
    width: 100%;
    height: auto;
    margin-top: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .all_game .container .all_content_box .box_item {
    width: 100%;
    height: auto;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
  .all_game .container .all_content_box .box_item .item_title {
    width: 100%;
    color: #FFF;
    text-align: left;
    font-family: "Tomorrow";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  .all_game .container .all_content_box .box_item .item_box {
    width: 100%;
    margin-top: 20px;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .all_game .container .all_content_box .box_item .item_box .item {
    width: 50%;
    padding-right: 2%;
    box-sizing: border-box;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    /* 275% */
  }
  .all_game .container .all_content_box .box_item .item_box .item:hover {
    color: #EA6519;
  }
}
