.prompt-box {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99999;

  --theme-color: #43CA9A;
}

.prompt-box .mask {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
}

.prompt-content {
  width: 550px;
  max-width: 95%;
  padding: 28px 12px;
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  z-index: 1;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: #fff;
  text-align: center;
}

.prompt-content .prompt-title {
  font-size: 24px;
}

.prompt-content .prompt-text {
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 16px;
}

.prompt-box a {
  text-decoration: none;
}

.prompt-box a:hover {
  text-decoration: underline;
}

.btns {
  display: flex;
  flex-direction: column;
}

.btns button {
  margin-top: 20px;
  height: 48px;
  border: 1px solid var(--theme-color);
  border-radius: 6px;
  background-color: transparent;
  color: var(--theme-color);
  cursor: pointer;
}

.btns .cookie-btn {
  background-color: var(--theme-color);
  color: #fff;
}
.editor-header {
  height: 76px;
  background: #5950da;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 110px;
}
.editor-header .mb-switch {
  display: none;
}
.editor-header .content {
  height: 100%;
  display: flex;
  gap: 260px;
}
.editor-header .category {
  display: flex;
  height: 100%;
  gap: 120px;
}
.editor-header .category-item {
  position: relative;
}
.editor-header .category-item:nth-child(1) .category-product {
  left: -100%;
  width: 600px;
}
.editor-header .category-item:nth-child(1) .category-product::before {
  left: 20.5%;
}
.editor-header .category-item:nth-child(1) .product-wrap:first-child {
  flex: 0 0 50%;
  padding: 0 0 0 45px;
  border-right: 1px solid #e1e4ed;
}
.editor-header .category-item:nth-child(1) .product-wrap:last-child {
  flex: 0 0 50%;
  padding: 0 45px 0 55px;
}
.editor-header .category-item:nth-child(2) .category-product {
  width: 270px;
  left: -40%;
}
.editor-header .category-item:nth-child(2) .category-product::before {
  left: 36%;
}
.editor-header .category-item:nth-child(2) .product-wrap {
  padding: 0 0 0 45px;
}
.editor-header .category-item:nth-child(3) .category-product {
  left: -100%;
  width: 500px;
}
.editor-header .category-item:nth-child(3) .category-product::before {
  left: 30%;
}
.editor-header .category-item:nth-child(3) .product-wrap:first-child {
  flex: 0 0 50%;
  padding: 0 0 0 45px;
  border-right: 1px solid #e1e4ed;
}
.editor-header .category-item:nth-child(3) .product-wrap:last-child {
  flex: 0 0 50%;
  padding: 0 45px 0 55px;
}
.editor-header .category-item:hover .category-name::after {
  transform: rotate(180deg);
}
.editor-header .category-item:hover .category-product {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}
.editor-header .category-name {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 100%;
  height: 100%;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
}
.editor-header .category-name::after {
  content: '';
  width: 12px;
  height: 17px;
  background-image: url(../img/header/icon-header-arrow.svg);
  background-size: 100% 100%;
  transition: all 300ms;
}
.editor-header .category-product {
  position: absolute;
  top: 70px;
  z-index: 999;
  display: flex;
  width: fit-content;
  padding: 40px 0;
  border-radius: 18px;
  background: #fff;
  filter: drop-shadow(0 14px 21px rgba(166, 166, 166, 0.25));
  transform: translateY(10px);
  visibility: hidden;
  opacity: 0;
  transition: all 300ms;
}
.editor-header .category-product::before {
  content: '';
  position: absolute;
  top: -19px;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-bottom-color: #fff;
}
.editor-header .category .product-item {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.editor-header .category .product-item .product-name {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #000;
  font-size: 14px;
  margin-bottom: 5px;
}
.editor-header .category .product-item .product-name i {
  font-style: normal;
  border-radius: 2px;
  font-size: 8px;
  color: #fff;
  background: #ff334d;
  padding: 2px 4px;
}
.editor-header .category .product-item .product-name:hover {
  color: #5950da;
}
.editor-header .category .product-item .product-desc {
  color: #8f8f8f;
  font-size: 10px;
  font-weight: 300;
  margin-bottom: 5px;
}
.editor-header .category .product-item .product-download {
  display: flex;
  gap: 18px;
}
.editor-header .category .product-item .product-download_link {
  color: #8f8f8f;
  font-size: 10px;
  font-weight: 300;
  text-decoration: underline;
}
.editor-header .category .product-item .product-download_link:hover {
  color: #7980ff;
}
.editor-header .category .product-item:last-child {
  margin-bottom: 0;
}
.editor-header .pc-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}
.editor-header .pc-menu .menu-item {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}
.editor-header .pc-menu .menu-item:hover {
  text-decoration: underline;
}
.editor-header .pc-menu .menu-item.store {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 32px;
  border-radius: 6px;
  background: #ffe72d;
  color: #1a1a1a;
  transition: all 300ms;
}
.editor-header .pc-menu .menu-item.store:hover {
  text-decoration: none;
  transform: scale(1.1);
}
.editor-header .pc-menu .menu-item.search {
  width: 14px;
  height: 14px;
  background-image: url(../img/header/icon-search.svg);
  transition: all 300ms;
}
.editor-header .pc-menu .menu-item.search:hover {
  text-decoration: none;
  transform: scale(1.1);
}
.editor-header .mb-menu {
  display: none;
}
.editor-header .category-name i.hot{
  font-style: normal;
  border-radius: 2px;
  font-size: 8px;
  color: #fff;
  background: #ff334d;
  padding: 2px 4px;
  position: absolute;
  top: 14px;
  right: -8px;
}
@media (max-width: 768px) {
  .editor-header .category-name i.hot{
    top: 11px;
    left: 85px;
    width: fit-content;
  }
  .editor-header {
    position: relative;
    height: 60px;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 0 15px;
  }
  .editor-header .mb-switch {
    display: block;
    width: 16px;
    height: 17px;
    background-image: url(../img/header/icon-switch.svg);
    background-size: 100% 100%;
  }
  .editor-header .logo {
    flex: 1;
  }
  .editor-header .content {
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 999;
    width: 100%;
    height: auto;
    display: none;
    background-color: #fff;
  }
  .editor-header .category {
    flex-direction: column;
    width: 100%;
    height: auto;
    gap: 0;
    margin-right: 0;
  }
  .editor-header .category-item {
    position: relative;
    border-bottom: 1px solid #e9eff2;
  }
  .editor-header .category-item:nth-child(1) .category-product {
    width: 100%;
  }
  .editor-header .category-item:nth-child(1) .product-wrap:first-child {
    flex: 0 0 100%;
    padding: 0;
    border-right: none;
  }
  .editor-header .category-item:nth-child(1) .product-wrap:last-child {
    flex: 0 0 100%;
    padding: 0;
  }
  .editor-header .category-item:nth-child(2) .category-product {
    width: 100%;
  }
  .editor-header .category-item:nth-child(2) .product-wrap {
    padding: 0;
  }
  .editor-header .category-item:nth-child(3) .category-product {
    width: 100%;
  }
  .editor-header .category-item:nth-child(3) .product-wrap:first-child {
    flex: 0 0 100%;
    padding: 0;
    border-right: none;
  }
  .editor-header .category-item:nth-child(3) .product-wrap:last-child {
    flex: 0 0 100%;
    padding: 0;
  }
  .editor-header .category-item:hover .category-name::after {
    transform: rotate(-90deg);
  }
  .editor-header .category-item:hover .category-product {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }
  .editor-header .category-name {
    justify-content: space-between;
    padding: 10px 15px;
    width: 100%;
    height: 60px;
    font-size: 16px;
    color: #000;
    cursor: pointer;
  }
  .editor-header .category-name::after {
    content: '';
    width: 12px;
    height: 17px;
    background-image: url(../img/header/icon-header-arrow-mb.svg);
    background-size: 100% 100%;
    transform: rotate(-90deg);
    filter: brightness(0);
  }
  .editor-header .category-name.active {
    color: #5950da;
  }
  .editor-header .category-name.active::after {
    filter: brightness(1);
    transform: rotate(0deg) !important;
  }
  .editor-header .category-product {
    position: unset;
    width: 100%;
    padding: 0 20px;
    border-radius: 0;
    background: #fff;
    filter: unset;
    transform: translateY(0);
    transition: unset;
    visibility: visible;
    opacity: 1;
    display: none;
  }
  .editor-header .category-product::before {
    display: none;
  }
  .editor-header .category .product-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }
  .editor-header .category .product-item .product-name {
    margin-bottom: 2px;
  }
  .editor-header .category .product-item .product-desc {
    margin-bottom: 0;
  }
  .editor-header .category .product-item .product-download {
    display: none;
  }
  .editor-header .category .product-item:last-child {
    margin-bottom: 20px;
  }
  .editor-header .pc-menu {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }
  .editor-header .pc-menu .menu-item {
    width: 100%;
    display: flex;
    align-items: center;
    color: #000;
    height: 60px;
    border-bottom: 1px solid #e9eff2;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .editor-header .pc-menu .menu-item.store,
  .editor-header .pc-menu .menu-item.search {
    display: none;
  }
  .editor-header .mb-menu {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .editor-header .mb-menu .menu-item.store {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 32px;
    border-radius: 6px;
    background: #ffe72d;
    font-size: 16px;
    color: #1a1a1a;
    transition: all 300ms;
  }
  .editor-header .mb-menu .menu-item.search {
    width: 18px;
    height: 18px;
    background-image: url(../img/header/icon-search.svg);
    background-size: 100% 100%;
    transition: all 300ms;
  }
}
@media(max-width: 680px) {
  .prompt-content .prompt-title {
      font-size: 20px;
  }

  .prompt-content .prompt-text {
      font-size: 14px;
      margin-bottom: 10px;
  }
}