.cookie_ban {
  position: fixed;
  bottom: 34px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: max-content;
  height: 50px;
  background: #ffffff;
  border-radius: 25px;
  box-shadow: 0 8px 30px 0 rgba(0,0,0,0.12);
  display: flex;
  padding: 0 20px;
  z-index: 9999999999;
}

.cookie_ban .cookie_content {
  display: flex;
  flex: 1;
  align-items: center;
  margin: 0;
  font-size: 15px;
  text-align: left;
  color: #000000;
}

.cookie_ban .cookie_content .cookies_btn {
  margin-top: -2px;
}

.cookie_ban .cookie_content span:last-child {
  margin-left: 4px;
}

.cookie_ban .cookie_btn {
  margin-left: 20px;
  width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cookie_ban .cookie_btn .manage {
  padding: 0 20px;
  height: 32px;;
  border-radius: 19px;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  text-align: center;
  cursor: pointer;
  line-height: 32px;
  transition: all 0.3s;
}
.cookie_ban .cookie_btn .manage:hover {
  background: #f3f3f7;
}
.cookie_ban .cookie_btn .accept {
  margin-left: 10px;
  padding: 0 20px;
  height: 32px;
  background: rgba(255,130,44,0.10);
  border-radius: 19px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 500;
  text-align: center;
  color: #ff822c;
  line-height: 32px;
  transition: all 0.3s;
}
.cookie_ban .cookie_btn .accept:hover {
  background: rgba(255,130,44,0.20);
}

.cookie_manage {
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 9999999999;
}

.cookie_manage .cookie_manage_content {
  position: absolute;
  width: 614px;
  left: 0;
  right: 0;
  bottom: 30px;
  margin: 0 auto;
  height: calc(100% - 80px);
  padding: 32px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 30px 0 rgba(0,0,0,0.12);
}

.cookie_manage .cookie_manage_content .cookie_manage_close {
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  /*line-height: 32px;*/
  font-size: 28px;
  /*text-align: center;*/
  position: absolute;
  top: -32px;
  right: -32px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.cookie_manage .cookie_manage_content .cookie_manage_close .cookie_mobile_svg {
  display: none;
}

.cookie_manage .cookie_manage_content .cookie_manage_close:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
.cookie_manage .cookie_manage_content .cookie_manage_close svg {
  transition: all 0.3s;
}

.cookie_manage .cookie_manage_content .cookie_manage_close svg:hover {
  transform: rotate(180deg);
}

.cookie_manage .cookie_manage_box {
  max-height: calc(100% - 55px);
  overflow-y: scroll;
}

/* For Webkit Browsers */
.cookie_manage .cookie_manage_box::-webkit-scrollbar {
  width: 5px; /* 设置滚动条的宽度 */
}

/*.cookie_manage .cookie_manage_box::-webkit-scrollbar-thumb {*/
/*  background-color: #888; !* 设置滚动条的滑块颜色 *!*/
/*}*/

/* For Firefox */
.cookie_manage .cookie_manage_box::-moz-scrollbar {
  width: 5px; /* 设置滚动条的宽度 */
}

/*.cookie_manage .cookie_manage_box::-moz-scrollbar-thumb {*/
/*  background-color: #888; !* 设置滚动条的滑块颜色 *!*/
/*}*/
.cookie_manage .cookie_manage_content .cookie_manage_title .title {
  font-size: 24px;
  font-weight: 500;
  text-align: left;
  color: #000000;
}

.cookie_manage .cookie_manage_content .cookie_manage_title .content {
  margin: 10px 0;
  font-size: 15px;
  text-align: justify;
  color: #000000;
  line-height: 22px;
}

.cookie_manage .cookie_manage_content .cookie_manage_title .content a {
  color:  #FF822C;
  text-decoration: underline;
}

.cookie_manage .cookie_manage_content .cookie_manage_title .content a:hover {
  color: #E06410;
}

.cookie_manage .cookie_manage_content .cookie_manage_title .button {
  margin-top: 18px;
  display: flex;
  justify-content: right;
}
.cookie_manage .cookie_manage_content .cookie_manage_title .button button:first-child {
  width: 140px;
  height: 42px;
  background: #f3f3f7;
  border-radius: 10px;
  margin-left: 12px;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.cookie_manage .cookie_manage_content .cookie_manage_title .button button:first-child:hover {
  background: #E9E9ED;
}
.cookie_manage .cookie_manage_content .cookie_manage_title .button button:last-child {
  width: 140px;
  height: 42px;
  background: #f3f3f7;
  border-radius: 10px;
  margin-left: 12px;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.cookie_manage .cookie_manage_content .cookie_manage_title .button button:last-child:hover {
  background: #E9E9ED;
}

.cookie_manage .cookie_manage_content .cookie_manage_list ul {
  width: 100%;
  list-style-type: none;
  padding: 0;
  margin-top: 20px;
}
.cookie_manage .cookie_manage_content .cookie_manage_list ul li {
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-top: 6px;
}

.cookie_manage_list_ar {
  width: 545px !important;
}

.cookie_manage .cookie_manage_content .cookie_manage_list ul li div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie_manage .cookie_manage_content .cookie_manage_list ul li div:first-child span {
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  color: #000000;
}

.cookie_manage .cookie_manage_content .cookie_manage_list ul li p {
  margin: 8px 0;
  font-size: 15px;
  text-align: left;
  color: #000000;
  line-height: 22px;
}

.cookie_manage .cookie_manage_content .cookie_manage_list ul li div:last-child {
  margin-top: 8px;
  font-size: 15px;
  text-align: left;
  color: #000000;
  cursor: pointer;
}

.cookie_manage .cookie_manage_content .cookie_manage_list ul li div:last-child span {
  font-size: 15px;
  font-weight: 500;
}

.cookie_manage .cookie_manage_content .cookie_manage_list ul li .cookie_manage_more .cookie_manage_detail {
  display: none;
}

.cookie_manage .cookie_manage_content .cookie_manage_list ul li .cookie_manage_more .cookie_manage_detail ul {
  list-style-type: none;
  padding: 0;
  margin-top: 0;
}

.cookie_manage .cookie_manage_content .cookie_manage_list ul li .cookie_manage_more .cookie_manage_detail ul li {
  border: none;
  font-size: 15px;
  text-align: left;
  color: #686c7e;
  margin-top: 0;
  padding: 0;
  height: 32px;
  line-height: 32px;
}

.cookie_manage .cookie_manage_content .cookie_manage_save {
  margin-top: 15px;
  height: 42px;
  background: #ff822c;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: #ffffff;
  line-height: 42px;
  cursor: pointer;
  transition: all 0.3s;
}

.cookie_manage .cookie_manage_content .cookie_manage_save_ar {
  width: 545px !important;
}

.cookie_manage .cookie_manage_content .cookie_manage_save:hover {
  background: #ff6412;
}
.cookie_switch {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 20px;
}

.cookie_switch input {
  opacity: 1;
  width: 0;
  height: 0;
}

/* The cookie_slider */
.cookie_slider {
  position: absolute;
  cursor: pointer;
  top: 1px;
  left: -2px;
  right: 0;
  bottom: 0;
  background-color: #e9e9ed;
  transition: .4s;
  border-radius: 20px;
  border: 1px solid #ccc;
}
.cookie_slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  border-radius: 16px;
  left: 1.2px;
  top: 0;
  bottom: 0;
  background-color: white;
  /*box-shadow: 0 2px 5px #999999;*/
  transition: .4s;
}

.cookie_manage_checkbox:checked + .cookie_slider {
  background-color: #ff822c;
  border: 1px solid transparent;
}

.cookie_manage_checkbox:checked + .cookie_slider:before {
  transform: translateX(14px);
}

@media screen and (max-width: 700px)  {
  .cookie_ban {
    width: calc(100% - 40px);
    display: block;
    height: auto;
    padding: 20px;
    border-radius: 14px;
  }
  .cookie_ban .cookie_btn {
    margin-top: 16px;
    width: calc(100% - 20px);
    display: flex;
    justify-content: right;
  }
  .cookie_ban .cookie_content {
    align-items: normal;
  }
  .cookie_ban .cookie_content .cookies_btn {
    margin: 0;
  }
  .cookie_manage .cookie_manage_content {
    width: 100%;
    top: 0;
    padding: 16px 20px;
    border-radius: 0;
    height: 100%;
  }
  .cookie_manage .cookie_manage_content .cookie_manage_close {
    width: 36px;
    height: 36px;
    background: #f3f3f7;
    border-radius: 50%;
    font-size: 28px;
    position: unset;
    cursor: pointer;
    color:  #080a10;
  }
  .cookie_manage_list_ar {
    width: 310px !important;
  }
  .cookie_manage .cookie_manage_content .cookie_manage_close .cookie_web_svg {
    display: none;
  }

  .cookie_manage .cookie_manage_content .cookie_manage_close .cookie_mobile_svg {
    display: inline;
  }

  .cookie_manage .cookie_manage_content .cookie_manage_close svg path {
    fill:  #080a10;
  }
  .cookie_manage .cookie_manage_box {
    margin-top: 24px;
    max-height: calc(100% - 120px);
    overflow-y: auto;
  }
  .cookie_manage .cookie_manage_content .cookie_manage_title {
    .button {
      display: flex;
      justify-content: left;
    }
    .button button:first-child {
      width: calc(50% - 6px);
      height: 42px;
      background: #f3f3f7;
      border-radius: 10px;
      margin-left: 0;
    }
    .button button:last-child {
      width: calc(50% - 6px);
      height: 42px;
      background: #f3f3f7;
      border-radius: 10px;
    }
  }
  .cookie_manage .cookie_manage_content .cookie_manage_save {
      margin-top: 20px;
  }
  .cookie_manage .cookie_manage_content .cookie_manage_save_ar {
      width: 310px !important;
  }
}