.recom_game .mod_card_body {
  width: 100%;
}
.recom_game .recom_game_list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.recom_game .recom_game_item {
  display: flex;
  gap: 8px;
  align-items: center;
}
.recom_game .recom_game_img {
  border-radius: 12px;
  width: 64px;
  aspect-ratio: 1;
  box-sizing: border-box;
  border: 1px solid var(--border);
}
.recom_game .recom_game_info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
  width: 1px;
}
.recom_game .recom_game_title {
  display: flex;
  gap: 8px;
  align-items: center;
}
.recom_game .recom_game_title .text {
  flex: 1 1 auto;
  width: 1px;
  color: var(--title);
  font-size: 14px;
  line-height: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.recom_game .recom_game_title .icon {
  flex: 0 0 auto;
}
.recom_game .recom_game_desc {
  font-size: 12px;
  line-height: 14px;
  color: var(--desc);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 768px) {
  .recom_game_item:hover .recom_game_title .text {
    color: var(--h_color);
  }
}
.hot_article .mod_card_body {
  width: 100%;
  overflow: hidden;
}
.hot_article .hot_article_list {
  display: grid;
  grid-template-columns: repeat(3, calc((100% - 24px * 2) / 3));
  overflow: visible;
  align-items: center;
  gap: 24px;
}
.hot_article .hot_article_item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 16px;
  box-sizing: border-box;
  background-color: var(--card_bg);
  border-radius: 16px;
}
.hot_article .hot_article_img {
  width: 250px;
  height: 141px;
  border-radius: 12px;
}
.hot_article .hot_article_info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hot_article .hot_article_title {
  line-height: 16px;
  font-size: 14px;
  color: var(--title);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: var(--trs);
}
.hot_article .hot_article_desc {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 12px;
  color: var(--desc);
  line-height: 14px;
}
@media screen and (min-width: 768px) {
  .hot_article .hot_article_item:hover .hot_article_title {
    color: var(--h_color);
  }
}
@media screen and (max-width: 767px) {
  .hot_article .hot_article_list {
    grid-template-columns: 100%;
    gap: 12px;
  }
  .hot_article .hot_article_item {
    display: flex;
    flex-direction: row;
    gap: 8px;
    padding: 12px;
    border-radius: 16px;
  }
  .hot_article .hot_article_info {
    width: 1px;
    flex: 1 1 auto;
    justify-content: center;
  }
  .hot_article .hot_article_img {
    width: 128px;
    height: 72px;
    border-radius: 8px;
  }
  .hot_article .hot_article_title {
    font-weight: 700;
    display: -webkit-box;
    white-space: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .hot_article .hot_article_desc {
    -webkit-line-clamp: 1;
  }
}
.hot_soft .mod_card_body {
  width: 100%;
  overflow: hidden;
}
.hot_soft .hot_soft_list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 24px;
}
.hot_soft .hot_soft_item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background-color: var(--card_bg);
  border-radius: 24px;
  box-sizing: border-box;
}
.hot_soft .hot_soft_img {
  border-radius: 12px;
  width: 97px;
  aspect-ratio: 1;
}
.hot_soft .hot_soft_title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: var(--name);
  font-size: 14px;
  line-height: 18px;
  height: 36px;
  transition: var(--trs);
}
.hot_soft .hot_soft_score {
  display: flex;
  align-items: center;
  color: var(--h_color);
  font-size: 12px;
  gap: 2px;
  line-height: 14px;
}
.hot_soft .hot_game_icon {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .hot_soft .hot_soft_item:hover .hot_soft_title {
    color: var(--h_color);
  }
}
@media screen and (max-width: 767px) {
  .hot_soft .hot_soft_list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(98px, 1fr));
    gap: 12px;
  }
  .hot_soft .hot_soft_list:after {
    content: "";
    width: 1px;
    flex: 2 1 auto;
    display: block;
    height: 0px;
  }
  .hot_soft .hot_soft_item {
    width: 100%;
    flex: 1 1 auto;
    gap: 6px;
    padding: 10px;
    border-radius: 16px;
  }
  .hot_soft .hot_soft_img {
    width: 100%;
  }
  .hot_soft .hot_soft_title {
    font-size: 12px;
    line-height: 14px;
    height: 28px;
  }
}
.info_mod .mod_card_body {
  padding: 24px;
  box-sizing: border-box;
  background-color: var(--card_bg);
}
.info_mod .info_mod_con {
  display: flex;
  align-items: center;
  gap: 16px;
}
.info_mod .info_mod_img {
  width: 120px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 16px;
}
.info_mod .msg_box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 1px;
  flex: 1 1 auto;
  gap: 8px;
}
.info_mod .msg_box .mod_graphic {
  color: var(--inbgc);
  background-color: var(--h_color);
  padding: 2px 6px;
  border-radius: 20px;
}
.info_mod .info_mod_title {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  color: var(--title);
  width: 100%;
}
.info_mod .info_mod_desc {
  font-size: 14px;
  color: var(--desc);
  line-height: 16px;
}
.info_mod .info_mod_btn {
  order: 3;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--inbgc);
  background-color: var(--h_color);
  font-size: 18px;
  line-height: 1;
  width: 280px;
  height: 60px;
  border-radius: 30px;
}
.info_mod .info_mod_btn .text {
  font-size: 14px;
}
.info_mod .info_mod_option {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.info_mod .info_mod_option .box {
  display: flex;
  align-items: center;
  gap: 12px;
}
.info_mod .info_mod_option .social_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  line-height: 1;
  font-size: 12px;
}
.info_mod .info_mod_option .social_box .text {
  color: var(--name);
}
.info_mod .info_mod_option .social_box .com_icon {
  font-size: 32px;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .info_mod .mod_card_body {
    padding: 12px;
    border-radius: 12px;
  }
  .info_mod .info_mod_con {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    flex-wrap: wrap;
  }
  .info_mod .info_mod_img {
    width: 80px;
    order: 2;
  }
  .info_mod .msg_box {
    order: 1;
    width: calc(100% - 88px);
    flex: 0 0 auto;
    gap: 6px;
  }
  .info_mod .info_mod_title {
    font-size: 18;
    line-height: 22px;
  }
  .info_mod .info_mod_desc {
    font-size: 12px;
    line-height: 14px;
  }
  .info_mod .info_mod_btn {
    width: 100%;
    font-size: 18px;
    height: 42px;
    border-radius: 22px;
    gap: 4px;
  }
  .info_mod .info_mod_btn .text {
    font-size: 14px;
  }
  .info_mod .info_mod_option {
    justify-content: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: solid 1px var(--default_br);
  }
  .info_mod .info_mod_option .box {
    gap: 8px;
  }
  .info_mod .info_mod_option .social_box .com_icon {
    font-size: 24px;
    border-radius: 6px;
  }
}
.introduce_mod .mod_card_body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.introduce_mod.is_active .introduce_mod_btn .com_icon {
  transform: rotate(270deg);
}
.introduce_mod.is_active .introduce_mod_con,
.introduce_mod.hide_accordion .introduce_mod_con {
  max-height: max-content;
}
.introduce_mod .introduce_mod_con {
  max-height: 450px;
  overflow: hidden;
  width: 100%;
}
.introduce_mod .introduce_mod_con h3 {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 22px;
  color: var(--title);
  font-weight: 500;
}
.introduce_mod .introduce_mod_con p {
  margin-bottom: 24px;
  line-height: 24px;
  font-size: 14px;
  color: var(--name);
}
.introduce_mod .introduce_mod_btn {
  display: inline-flex;
  gap: 2px;
  font-size: 14px;
  color: var(--h_color);
  cursor: pointer;
  line-height: 1;
}
.introduce_mod .introduce_mod_btn .com_icon {
  transform: rotate(90deg);
  transition: var(--trs);
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .introduce_mod .mod_card_body {
    gap: 12px;
  }
  .introduce_mod .introduce_mod_con {
    max-height: 100vw;
    overflow: hidden;
  }
  .introduce_mod .introduce_mod_con h3 {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 20px;
  }
  .introduce_mod .introduce_mod_con p {
    margin-bottom: 12px;
    line-height: 18px;
    font-size: 14px;
  }
}
.information_group {
  display: grid;
  grid-template-columns: repeat(4, calc((100% - 54px) / 4));
  gap: 18px;
}
.information_list {
  border-radius: 24px;
  background-color: var(--card_bg);
  box-sizing: border-box;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.information_item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.information_item .label,
.information_item .value {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.information_item .label {
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  color: var(--title);
}
.information_item .value {
  font-size: 14px;
  color: var(--name);
  line-height: 18px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.information_item .com_icon{
  width: 18px;
  height: 18px;
}
@media screen and (max-width: 767px) {
  .information_group {
    grid-template-columns: repeat(2, calc((100% - 12px) / 2));
    gap: 12px;
  }
  .information_list {
    border-radius: 16px;
    padding: 12px;
    gap: 12px;
  }
}
.old_versions.is_active .old_versions_more .com_icon {
  transform: rotate(270deg);
}
.old_versions.is_active .old_versions_list {
  max-height: max-content;
}
.old_versions_list {
  padding: 24px;
  border-radius: 24px;
  background-color: var(--card_bg);
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: auto;
  max-height: 196px;
  box-sizing: border-box;
  transition: var(--trs);
  overflow: hidden;
}
.old_versions_item {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}
.old_versions_item .version_info {
  display: inline-flex;
  width: 33%;
  flex-direction: column;
  gap: 8px;
}
.old_versions_item .version_name {
  width: 100%;
  display: flex;
  font-size: 14px;
  line-height: 16px;
  color: var(--title);
  font-weight: 700;
  gap: 4px;
}
.old_versions_item .name {
  flex: 0 1 auto;
}
.old_versions_item .version {
  flex: 0 0 auto;
}
.old_versions_item .date {
  font-size: 12px;
  line-height: 14px;
  color: var(--name);
}
.old_versions_item .size {
  font-size: 14px;
  line-height: 16px;
  color: var(--title);
  font-weight: 700;
}
.old_versions_item .download_btn {
  font-size: 12px;
  color: var(--inbgc);
  line-height: 1;
  display: inline-flex;
  gap: 4px;
  align-items: center;
  padding: 8px 16px;
  border-radius: 16px;
  cursor: pointer;
  background-color: var(--primary_bg);
  border: 1px solid var(--primary_br);
  transition: var(--trs);
}
.old_versions_item .download_btn .com_icon {
  font-size: 16px;
}
.old_versions_more {
  display: flex;
  gap: 2px;
  font-size: 14px;
  color: var(--h_color);
  cursor: pointer;
  line-height: 1;
  justify-content: center;
  padding: 12px 0;
}
.old_versions_more .com_icon {
  transform: rotate(90deg);
  transition: var(--trs);
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .old_versions_item .download_btn:hover {
    background-color: var(--incard_bg);
    color: var(--h_color);
  }
}
@media screen and (max-width: 767px) {
  .old_versions_list {
    padding: 12px;
    border-radius: 16px;
    gap: 12px;
    max-height: 156px;
  }
  .old_versions_item {
    gap: 12px;
    position: relative;
  }
  .old_versions_item .name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .old_versions_item .version_info {
    width: 1px;
    flex: 1 1 auto;
    height: 36px;
  }
  .old_versions_item .size {
    position: absolute;
    left: 0;
    bottom: 0;
    font-weight: 400;
    color: var(--name);
    font-size: 12px;
    line-height: 14px;
  }
  .old_versions_item .download_btn {
    border-radius: 16px;
  }
}
.explore_more .mod_card_body {
  border-radius: 24px;
  padding: 24px;
  box-sizing: border-box;
  background-color: var(--card_bg);
}
.explore_more_card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.explore_more_single {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}
.explore_more_single .single_img {
  height: 218px;
  width: auto;
  flex: 0 0 auto;
  aspect-ratio: 2;
  border-radius: 16px;
}
.explore_more_single .info_box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 auto;
  width: 1px;
}
.explore_more_single .name,.explore_more_single .name a {
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  color: var(--title);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.explore_more_single .desc {
  font-size: 14px;
  line-height: 22px;
  color: var(--name);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.explore_more_multiple {
  display: grid;
  grid-template-columns: repeat(3, calc((100% - 16px * 2) / 3));
  gap: 16px;
}
.explore_more_multiple .multiple_item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}
.explore_more_multiple .multiple_img {
  width: 72px;
  aspect-ratio: 1;
  border-radius: 12px;
  flex: 0 0 auto;
  box-sizing: border-box;
  border: 1px solid var(--default_br);
}
.explore_more_multiple .info_box {
  display: flex;
  flex: 1 1 auto;
  width: 1px;
  flex-direction: column;
  gap: 10px;
}
.explore_more_multiple .name {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  color: var(--title);
}
.explore_more_multiple .desc,
.explore_more_multiple .size {
  color: var(--name);
  font-size: 12px;
  line-height: 14px;
}
.explore_more_multiple .size {
  color: var(--h_color);
}
@media screen and (max-width: 767px) {
  .explore_more .mod_card_body {
    border-radius: 12px;
    padding: 12px;
  }
  .explore_more_card {
    gap: 12px;
  }
  .explore_more_single {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .explore_more_single .single_img {
    height: auto;
    width: 100%;
    border-radius: 16px;
  }
  .explore_more_single .info_box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 1 auto;
    width: 100%;
  }
  .explore_more_single .name,.explore_more_single .name a {
    font-size: 14px;
    line-height: 16px;
    -webkit-line-clamp: 1;
  }
  .explore_more_single .desc {
    font-size: 12px;
    line-height: 14px;
    -webkit-line-clamp: 2;
  }
  .explore_more_multiple {
    grid-template-columns: repeat(auto-fill, minmax(146px, 1fr));
    gap: 12px;
  }
  .explore_more_multiple .multiple_item {
    width: auto;
    flex-direction: column;
    gap: 8px;
    box-sizing: border-box;
    padding: 10px;
    border-radius: 12px;
    background-color: var(--incard_bg);
  }
  .explore_more_multiple .multiple_img {
    width: 50%;
  }
  .explore_more_multiple .info_box {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 6px;
  }
  .explore_more_multiple .name {
    width: 100%;
    font-size: 12px;
    font-weight: 400;
    white-space: normal;
    line-height: 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .explore_more_multiple .desc,
  .explore_more_multiple .size {
    color: var(--name);
    font-size: 12px;
    line-height: 14px;
  }
  .explore_more_multiple .size {
    color: var(--h_color);
  }
}
