@charset "UTF-8";
.cookie-btn {
  position: relative;
  opacity: 1;
  line-height: 15px;
  z-index: 1000;
  transition: all 300ms ease;
  animation: otFloatingBtnIntro 800ms ease 0ms 1 forwards;
}
.cookie-btn-front {
  display: none;
  position: fixed;
  bottom: 1%;
  left: 1%;
  cursor: pointer;
}
.cookie-btn-front .front-icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  box-sizing: border-box;
  background-color: #ff1d99;
}
.cookie-btn-front .front-icon img {
  width: 80%;
  height: 80%;
}
.cookie-btn-bottom {
  display: none;
  background-color: #282727;
  height: 6%;
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  font-size: 16px;
}
.cookie-btn-bottom .bottom-info {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 10px;
  color: white;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  line-height: 1.4;
}
.cookie-btn-bottom .bottom-info-left {
  width: 60%;
}
.cookie-btn-bottom .bottom-info-left a {
  text-decoration: underline;
  color: white;
}
.cookie-btn-bottom .bottom-info-center {
  width: 34%;
  text-align: center;
}
.bottom-info-center > button:not(:first-child) {
  margin-left: 10px;
}


.cookie-btn-bottom .bottom-info-right {
  width: 6%;
  text-align: right;
}
.cookie-btn-bottom .bottom-info-right .close-btn {
  cursor: pointer;
  color: white;
  font-size: 20px;
}

.cookie-button {
  background-color: #F1F1F1;
  color: black;
  display: inline-block;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  border: none;border-radius: 5px;
  
}

.cookie-button-green{background-color: #28a745;color: white;
  display: inline-block;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  border: none; border-radius: 5px;}
  
  .cookie-button-all{background-color: #555555;color: white;
  display: inline-block;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  border: none; border-radius: 5px;}

.cookie-sidebar {
  display: none;
  transition: margin-left 0.5s;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100000;
  height: 100%;
  width: 100%;
}
.cookie-sidebar .sidebar-main {
  background-color: white;
  color: black;
  width: 30%;
  height: 100%;
  overflow-x: hidden;
}
.cookie-sidebar .sidebar-main-top {
  padding: 5px 10px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-flow: row nowrap;
}
.cookie-sidebar .sidebar-main-top .top-title {
  width: 80%;
  padding-left: 20%;
  text-align: center;
}
.cookie-sidebar .sidebar-main-top .top-close {
  width: 20%;
  text-align: right;
  font-size: 46px;
}
.cookie-sidebar .sidebar-main-top .top-close .close-btn {
  cursor: pointer;
  color: black;
}
.cookie-sidebar .sidebar-main-content {
  padding: 0 20px;
  box-sizing: border-box;
  line-height: 1.4;
}
.cookie-sidebar .sidebar-main-content a {
  text-decoration: underline;
  color: black !important;
}
.cookie-sidebar .sidebar-main-content p {
  font-size: 14px;
}
.cookie-sidebar .sidebar-main-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  box-sizing: border-box;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  height: 6%;
  width: 30%;
  display: flex;
  align-items: center;
  padding-left: 20px;
}

.sidebar-main {
  /* 样式开关按钮的外部容器 */
  /* 开关按钮的滑块样式 */
  /* 开关按钮的圆形样式 */
  /* 输入框被选中时改变滑块和圆形的背景颜色 */
  /* 设置滑块和圆形的样式 */
}
.sidebar-main .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  /* 输入框隐藏，只显示开关按钮 */
}
.sidebar-main .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.sidebar-main .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.sidebar-main .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.sidebar-main input:checked + .slider {
  background-color: #2196F3;
}
.sidebar-main input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.sidebar-main .slider.round {
  border-radius: 34px;
}
.sidebar-main .slider.round:before {
  border-radius: 50%;
}
.sidebar-main .option-bar {
  padding: 10px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
}
.sidebar-main .option-bar-header {
  cursor: pointer;
  display: flex;
}
.sidebar-main .option-select {
  display: flex;
  align-items: center;
  font-size: 14px;
  width: 70%;
}
.sidebar-main .option-select::before {
  content: "+";
}
.sidebar-main .option-switch {
  width: 30%;
  display: flex;
  justify-content: right;
}
.sidebar-main .option-bar-content {
  display: none;
}
.sidebar-main .option-bar.active .option-select::before {
  content: "−";
}
.sidebar-main .option-bar.active .option-bar-content {
  display: block;
  background-color: #f4f4f4;
  box-sizing: border-box;
  margin-top: 10px;
  padding: 5px 10px;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .cookie-btn-bottom {
    bottom: 0;
    height: 130px;
    overflow: scroll;
  }
  .cookie-btn-bottom .bottom-info {
    flex-flow: column nowrap;
    align-items: self-start;
    justify-content: start;
    padding: 5px 20px;
  }
  .cookie-button {font-size:13px;padding:5px 10px;}
  .cookie-button-all{font-size:13px;padding:5px 10px;}
  .cookie-button-green{font-size:13px;padding:5px 10px;}
  .cookie-btn-bottom{background-color:#282727;}
  .cookie-btn-bottom .bottom-info-left {
    width: 100%;
    order: 2;
    font-size: 13px;
  }
  .cookie-btn-bottom .bottom-info-center {
    width: 100%;
    order: 3;
    margin-top: 10px;
  }
  .cookie-btn-bottom .bottom-info-center .cookie-button {
    display: inline-block;
   /* width: 33%;*/
    margin-bottom: 10px;
  }
  .cookie-btn-bottom .bottom-info-center .cookie-button:not(:first-child) {
    margin-left: 0;
  }
  .cookie-btn-bottom .bottom-info-right {
    width: 100%;
    order: 1;
  }
  .cookie-sidebar .sidebar-main {
    width: 100%;
    overflow: scroll;
  }
  .cookie-sidebar .sidebar-main-bottom {
    width: 100%;
  }
}

/*# sourceMappingURL=roanyer-cookie-set.css.map */
