#box_main {
  width: 1020px;
  padding-top: 14px;
  padding-left: 20px;
}

.box_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.box_title h4 {
  margin-right: 16px;
}

#box_tabs button {
  width: 86px;
  height: 34px;
  border: 0px;
  border-radius: 6px;
  background-color: var(--color-white);
  color: var(--color-greyDark);
}

#box_content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

#box_content .box_rank {
  width: 486px;
  height: 567px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 32px;
}

#box_content .box_rank .box_header {
  margin-bottom: 20px;
}

#box_content .box_rank .box_ranking {
  height: 459px;
  overflow-y: auto;
}

#box_content .box_rank .box_item {
  height: 24px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  text-align: left;
  align-items: center;
  font-size: 14px;
}

#box_content .box_rank .title {
  font-size: 12px;
  color: var(--color-greyMedium);
}

#box_content .box_rank .box_item .ranking {
  width: 30px;
}

#box_content .box_rank .box_item .symbol {
  width: 100px;
  white-space: nowrap; /* 不換行 */
  overflow: hidden; /* 隱藏溢出的文本 */
  text-overflow: ellipsis; /* 顯示省略符號 */
  display: flex;
  align-items: center;
}

#box_content .box_rank .box_item .symbol a {
  color: var(--color-black);
  text-decoration: none;
  display: flex;
  align-items: center;
}

#box_content .box_rank .box_item .symbol a:hover {
  color: var(--color-primary);
}

#box_content .box_rank .box_item .symbol img {
  height: 24px;
  border-radius: 50%;
  border: 0px;
  margin-right: 8px;
}

#box_content .box_rank .box_item .price {
  width: 80px;
  line-height: 24px;
}

#box_content .box_rank .box_item .entry {
  width: 100px;
  line-height: 24px;
}

#box_content .box_rank .box_item .position {
  width: 80px;
}

.loading-box {
  height: 20px;
}

/******** RWD ********/
@media (max-width: 1300px) {
  #box_main {
    width: 588px;
    padding-left: 0px;
  }

  .box_title {
    display: none;
  }

  #box_tabs {
    display: flex !important;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
  }

  #box_content .box_rank {
    width: 588px;
    height: 523px;
  }

  #box_content .box_rank .box_header {
    margin-bottom: 0px;
  }

  #box_content .box_rank .box_ranking {
    height: 459px;
  }
}

@media (max-width: 768px) {
  #box_main {
    width: 350px;
  }

  #box_content .box_rank {
    width: 350px;
    height: 523px;
  }

  #box_content .box_rank .item {
    font-size: 12px;
  }

  #box_content .box_rank .box_item .ranking {
    display: none;
  }

  #box_content .box_rank .box_item .symbol {
    width: 80px;
  }

  #box_content .box_rank .box_item .price {
    display: none;
  }

  #box_content .box_rank .box_item .entry {
    width: 80px;
  }

  #box_content .box_rank .box_item .position {
    width: 60px;
  }
}

/* -------- Dark mode -------- */
body.dark-mode #box_content .box_rank {
  background-color: var(--color-greyDark);
}

body.dark-mode #box_content .box_rank .title {
  color: var(--color-greyLightMedium);
}

body.dark-mode #box_content .box_rank .box_item .symbol a {
  color: var(--color-white);
}

body.dark-mode #box_content .box_rank .box_item .symbol a:hover {
  color: var(--color-primary);
}
