@font-face {
  font-family: "Beatrice-Deck-TRIAL-Regular";
  src: url("../../fonts/BeatriceDeckTRIAL-Regular.otf") format("truetype");
}
@font-face {
  font-family: "Beatrice-Deck-TRIAL-Bold";
  src: url("../../fonts/BeatriceDeckTRIAL-Bold.otf") format("truetype");
}
body {
  font-size: 14px;
  font-family: "Beatrice-Deck-TRIAL-Regular";
  margin: 0;
  color: #000;
  background: url("../../img/noisy.png") repeat;
}
a {
  color: #000;
  text-decoration: none;
}
.container {
  width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.flex {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
.flex .auto {
  flex: 1;
}
.flex-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
header {
  padding-top: 25px;
  padding-bottom: 10px;
}
header .container {
  display: flex;
  gap: 50px;
  align-items: center;
}
header .logo {
  margin: 0;
  font-size: 24px;
  display: inline-block;
  font-family: "Beatrice-Deck-TRIAL-Bold";
}
header .nav {
  flex: 1;
  display: flex;
  gap: 65px;
}
header .nav .item {
  font-size: 16px;
  line-height: 24px;
  box-sizing: border-box;
}
header .nav .item > a {
  padding-bottom: 5px;
}
header .nav .item .active {
  border-bottom: #000 1px solid;
}
header .search-field {
  flex: 1;
  background: #d9d9d9;
  border-radius: 2em;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 16px 18px;
}
header .search-field img {
  width: 14px;
}
header .search-field input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  line-height: 18px;
}
header .search-field span {
  cursor: pointer;
  color: rgba(0,0,0,0.66);
}
header .links {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
header .links .extension {
  font-size: 12px;
  border: #000 1px solid;
  color: #000;
  line-height: 30px;
  padding: 10px 20px;
  border-radius: 2em;
  box-sizing: border-box;
}
header .links .discord {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  background: #000;
  color: #fff;
  line-height: 30px;
  padding: 10px 20px;
  border-radius: 2em;
}
header .links .discord img {
  width: 30px;
}
.main-category {
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  padding: 15px;
  box-sizing: border-box;
  gap: 15px;
}
.main-category a {
  display: inline-block;
  border: #d9d9d9 1px solid;
  color: #333;
  text-align: center;
  padding: 14px;
  font-size: 14px;
}
.main-category a:hover,
.main-category a.active {
  color: #fff;
  background-color: #000;
  border-color: #000;
}
.banner {
  padding: 50px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}
.banner .title {
  font-family: "Beatrice-Deck-TRIAL-Bold";
  font-size: 40px;
  font-weight: 800;
}
.banner .discord {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 20px;
  background: #000;
  color: #fff;
  line-height: 30px;
  padding: 10px 42px;
  border-radius: 2em;
}
.banner .discord img {
  width: 30px;
}
.banner .text {
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  font-family: Roboto;
}
.banner .link {
  display: block;
  padding: 10px;
  border-radius: 10px;
  border: #222 1px solid;
}
.color-title {
  text-align: center;
  margin-bottom: 120px;
}
.color-title span,
.color-title h3 {
  margin: 0;
  display: inline-block;
  font-size: 40px;
  font-weight: 700;
  background: linear-gradient(90deg, #f85867 0%, #d13ce9 50.5%, #4b83f8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.index-list {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.index-list .item {
  width: 299px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.index-list .item.title {
  gap: 20px;
  height: 299px;
}
.index-list .item.title h3 {
  margin: 0;
  font-size: 48px;
  font-family: "Beatrice-Deck-TRIAL-Bold";
}
.index-list .item.title .auto {
  flex: 1;
  font-size: 20px;
}
.index-list .item.title .see-all {
  display: flex;
  align-items: center;
  padding: 8px 27px;
  background: #d9d9d9;
}
.index-list .item.title .see-all .text {
  flex: 1;
}
.index-list .item.title .see-all img {
  width: 48px;
  height: 14px;
}
.index-list .item .thumbnail {
  height: 299px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  overflow: hidden;
}
.index-list .item .thumbnail img {
  max-width: 100%;
}
.index-list .item .category,
.index-list .item .brand {
  font-size: 12px;
  color: rgba(0,0,0,0.66);
}
.index-list .item .product {
  display: flex;
  gap: 10px;
}
.index-list .item .product .name {
  flex: 1;
  font-size: 14px;
}
.index-list .item .product .price {
  font-size: 14px;
}
section.normal {
  padding: 60px 0;
}
section.white {
  background: #fff;
}
.grid-2 {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, 1fr);
  background: #dfdfdf;
  border-top: #dfdfdf 1px solid;
  border-bottom: #dfdfdf 1px solid;
}
.grid-2 .content {
  box-sizing: border-box;
  background: #fff;
  padding: 60px 0;
}
footer {
  padding: 54px 0;
  color: #000;
}
footer #to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  padding: 25px 20px;
  box-sizing: border-box;
  background: #000;
  border-radius: 40px;
}
footer #to-top img {
  width: 20px;
  display: block;
}
footer .container {
  text-align: center;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 30px;
}
footer .container .copyright {
  font-size: 20px;
}
footer .container img + img {
  margin-left: 16px;
}
.introduce {
  line-height: 22px;
  font-size: 14px;
  font-weight: normal;
  margin: 0;
}
.breadcrumbs {
  font-size: 14px;
  color: rgba(0,0,0,0.66);
  margin: 0;
  font-weight: normal;
}
.breadcrumbs a {
  color: rgba(0,0,0,0.66);
}
.breadcrumbs .current {
  color: #000;
}
.products {
  display: flex;
  flex-direction: row;
  gap: 40px;
  padding: 60px 0;
}
.products .filters {
  width: 265px;
  max-height: 1000px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  overflow-y: auto;
}
.products .filters .title {
  font-size: 16px;
  font-weight: 800;
  font-family: "Beatrice-Deck-TRIAL-Bold";
}
.products .filters .title.sub {
  font-size: 14px;
}
.products .filters .field {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-bottom: 15px;
  border-bottom: #c9c9c9 1px dashed;
}
.products .filters .tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.products .filters .tags a {
  padding: 8px 0;
  border: #a3a3a3 1px solid;
  text-align: center;
}
.products .filters .tags a:hover,
.products .filters .tags a.active {
  background: #000;
  border-color: #000;
  color: #fff;
}
.products .filters .input {
  width: 100px;
  height: 30px;
  outline: 0;
  border: #a3a3a3 1px solid;
  padding: 5px;
  box-sizing: border-box;
}
.products .filters .btn {
  height: 30px;
  border: rgba(0,0,0,0.66) 1px solid;
  padding: 5px;
  box-sizing: border-box;
  outline: 0;
  background: #fff;
}
.products .filters .btn:hover {
  background: #f0f0f0;
}
.products .filters .slider {
  position: relative;
  height: 20px;
}
.products .filters .slider:before {
  width: 100%;
  height: 2px;
  background: #d9d9d9;
  position: absolute;
  left: 0;
  top: 9px;
  content: "";
}
.products .filters .slider .cursor {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  width: 4px;
  height: 20px;
  border-radius: 2px;
  background: #000;
  z-index: 10;
  cursor: pointer;
  user-select: none;
}
.products .filters .check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.products .filters .check-list .item {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
.products .filters .check-list .item a {
  color: #727272;
}
.products .filters .check-list .item.active {
  font-weight: bold;
}
.products .filters .check-list .item.active a {
  color: #000;
}
.products .main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.products .main .gap {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.products .main .page-title {
  font-size: 20px;
  font-family: "Beatrice-Deck-TRIAL-Bold-Bold";
}
.products .main .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.products .main .tags a {
  padding: 5px 20px;
  border: #5e5e5e 1px solid;
}
.products .main .tags a:hover {
  background: #000;
  border-color: #000;
  color: #fff;
}
.products .list {
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  justify-content: center;
}
.products .list .item {
  overflow: hidden;
  border: #999 1px solid;
  position: relative;
  background: #fff;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.products .list .item .best {
  position: absolute;
  width: 49px;
  height: 20px;
  left: 0;
  top: 180px;
  display: inline-block;
  background: linear-gradient(to right, #ea5025, #e32525);
  color: #fff;
  text-align: center;
  line-height: 20px;
  font-family: "Beatrice-Deck-TRIAL-Bold";
}
.products .list .item .thumbnail {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
}
.products .list .item .thumbnail img {
  max-width: 100%;
}
.products .list .item .bottom {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
}
.products .list .item .bottom .text {
  display: flex;
  align-items: center;
}
.products .list .item .bottom .text .category {
  flex: 1;
  font-size: 12px;
  color: rgba(0,0,0,0.66);
}
.products .list .item .bottom .text .price {
  font-size: 14px;
  font-weight: 600;
}
.products .list .item .bottom .name {
  flex: 1;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}
.products .list .item .bottom .btn {
  text-align: center;
  padding: 10px 0;
  color: #fff;
  background: #232323;
}
.products .list .item .bottom .join-discord-btn {
  border: #000 1px solid;
  color: #000;
  background: none;
}
.products .list .item .bottom .join-discord-btn:hover {
  background: #000;
  color: #fff;
}
.pagination {
  text-align: center;
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  align-self: center;
}
.pagination a,
.pagination span {
  height: 30px;
  vertical-align: middle;
  line-height: 30px;
  border: #c5c5c5 1px solid;
  padding: 0 10px;
}
.pagination a img,
.pagination span img {
  width: 10px;
  height: 18px;
  margin: 6px 0;
}
.pagination a:hover {
  background: #d9d9d9;
}
.pagination span {
  color: #666;
  cursor: default;
}
.detail-page {
  width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 52px;
}
.detail-page .staff {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.detail-page .staff .detail {
  display: flex;
  flex-direction: row;
  gap: 100px;
}
.detail-page .staff .detail .stage {
  width: 532px;
  height: 450px;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.detail-page .staff .detail .stage .big-img {
  width: 450px;
  height: 450px;
  display: block;
  border: #d9d9d9 1px solid;
}
.detail-page .staff .detail .stage .thumbs {
  width: 80px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.detail-page .staff .detail .stage .thumbs img {
  width: 80px;
  height: 80px;
  border: #d9d9d9 1px solid;
  box-sizing: border-box;
  opacity: 0.8;
}
.detail-page .staff .detail .stage .thumbs img.active {
  opacity: 1;
}
.detail-page .staff .detail .detail-info {
  flex: 1;
  border: #d9d9d9 1px solid;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
}
.detail-page .staff .detail .detail-info .name {
  font-size: 30px;
  font-weight: 500;
  line-height: 40px;
  margin: 0;
}
.detail-page .staff .detail .detail-info .price {
  font-size: 30px;
  font-weight: 500;
  line-height: 50px;
  flex: 1;
  margin: 0;
}
.detail-page .staff .detail .detail-info .btn {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #000;
  padding: 8px;
}
.detail-page .staff .detail .detail-info .light {
  border: #000 1px solid;
  color: #000;
  background: none;
}
.detail-page .staff .detail .detail-info .light:hover {
  background: #000;
  color: #fff;
}
.detail-page .extension {
  border: #d5d5d5 1px solid;
  background: #fff;
  padding: 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
.detail-page .extension .text {
  font-size: 18px;
  line-height: 1.5em;
}
.detail-page .extension .btn {
  width: 300px;
  background: #000;
  color: #fff;
  font-size: 14px;
  padding: 8px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.detail-page .sub-title-1 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}
.detail-page .sub-title-2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
  display: block;
}
.detail-page .grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}
.detail-page .quality-check {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.detail-page .quality-check img {
  width: 150px;
  height: 150px;
  border: #d9d9d9 1px solid;
}
.detail-page .related .item {
  overflow: hidden;
  background: #fff;
  border: #d9d9d9 1px solid;
  position: relative;
  display: flex;
  flex-direction: column;
}
.detail-page .related .item .thumbnail {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.detail-page .related .item .thumbnail img {
  max-width: 100%;
  max-height: 100%;
  background: #3b3b3b;
}
.detail-page .related .item .bottom {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
}
.detail-page .related .item .bottom .text {
  display: flex;
  align-items: center;
}
.detail-page .related .item .bottom .text .category {
  flex: 1;
  font-size: 12px;
  color: rgba(0,0,0,0.66);
}
.detail-page .related .item .bottom .text .price {
  font-size: 14px;
  font-weight: 600;
}
.detail-page .related .item .bottom .name {
  flex: 1;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}
.detail-page .related .item .bottom .buy {
  font-size: 13px;
  text-align: center;
  padding: 10px 0;
  color: #fff;
  background: #232323;
}
.detail-page .related .item .bottom .buy {
  background: #000;
}
.how-to {
  text-align: center;
  margin-bottom: 56px;
}
.how-to .breadcrumbs {
  padding: 28px 80px;
  text-align: left;
  border-bottom: #d9d9d9 1px solid;
  margin-bottom: 54px;
}
.how-to .title {
  font-size: 42px;
  font-weight: 700;
  line-height: 64px;
  margin-bottom: 20px;
}
.how-to .links {
  margin: 40px 0;
}
.how-to .links a {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  color: #fff;
  background: rgba(197,200,185,0.08);
}
.how-to .links a.colorful {
  background: linear-gradient(90deg, #f85867 0%, #d13ce9 50.5%, #4b83f8 100%);
  margin-right: 15px;
}
.how-to-list {
  padding-top: 56px;
  padding-bottom: 100px;
}
.how-to-list .title {
  font-size: 42px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  margin-bottom: 70px;
}
.how-to-list .steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.how-to-list .steps .sub-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 33px;
}
.how-to-list .steps .text {
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
}
.page-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 96px 0;
}
.page-404 img {
  width: 200px;
  height: 200px;
}
.page-404 .text {
  font-size: 16px;
}
.page-404 .btn {
  display: inline-block;
  width: 266px;
  background: #000;
  color: #fff;
  padding: 8px 0;
  text-align: center;
  margin-top: 15px;
}
.mask {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mask .dialog {
  border: #666 1px solid;
  overflow: hidden;
  max-width: 100vw;
  max-height: 100vh;
}
.mask .dialog .title {
  display: flex;
  align-items: center;
  padding: 10px;
  background: #fff;
}
.mask .dialog .title .auto {
  flex: 1;
  font-size: 16px;
  line-height: 30px;
}
.mask .dialog .title .close {
  width: 16px;
  height: 16px;
  padding: 4px;
  cursor: pointer;
  border-radius: 4px;
}
.mask .dialog .title .close:hover {
  background: #d9d9d9;
}
.mask .dialog img {
  max-width: 100%;
  max-height: 100%;
}
#join-discord {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  box-sizing: border-box;
  padding: 54px;
  background: #fff;
  border: #444 1px solid;
  border-radius: 20px;
  display: none;
  flex-direction: column;
  gap: 55px;
  color: #000;
  text-align: center;
}
#join-discord.show {
  display: flex;
}
#join-discord .title {
  font-size: 32px;
  font-weight: 600;
}
#join-discord #discord-close {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}
#join-discord .lines {
  display: flex;
  flex-direction: column;
  gap: 40px;
  font-size: 14px;
}
#join-discord .link {
  width: 300px;
  margin: auto;
  background: #000;
  color: #fff;
  padding: 10px;
  border-radius: 2em;
  font-size: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
