
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  width: 3px;
  background-color: rgba(156, 156, 156, 0.5);
  -webkit-border-radius: 2em;
  -moz-border-radius: 2em;
  border-radius: 2em;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(156, 156, 156, 0.5);
  background-clip: padding-box;
  min-height: 28px;
  -webkit-border-radius: 2em;
  -moz-border-radius: 2em;
  border-radius: 2em;
  transition: background-color .3s;
  cursor: pointer;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(144, 147, 153, .3);
}

#CookieFrame {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100vw;
  height: 100vh;
  display: none;
  pointer-events: none;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  background-color: #000000b5;

  --gray-color: #d2d2d28a;
  --highblur-color: rgb(47, 57, 242);
  z-index: 999;
}

.frame {
  width: 800px;
  background-color: #ffffff;
  border-radius: 20px;
  pointer-events: auto;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, .05);
  display: flex;
  flex-direction: column;
}

.head {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1.5px solid var(--gray-color);
}

.img-container {
  margin-left: 20px;
  width: 150px;
  /* 设置容器宽度 */
  height: 150px;
  /* 设置容器高度 */
}

.img-container img {
  width: 100%;
  /* 设置图像宽度为容器宽度的百分之百 */
  height: 100%;
  /* 设置图像高度为容器高度的百分之百 */
  object-fit: contain;
  /* 图像按比例缩放以适应容器 */
}


.backContainer {
  margin-right: 14px;
  width: 35px;
  /* 设置容器宽度 */
  height: 35px;
  /* background-color:var(--gray-color); */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* 设置容器高度 */
}
.backContainer img{
  width: 85%;
  /* 设置图像宽度为容器宽度的百分之百 */
  height: 85%;
  /* 设置图像高度为容器高度的百分之百 */
  object-fit: contain;
  color: #f2f2f2;
  /* 图像按比例缩放以适应容器 */
}

.selecter {
  width: 100%;

  display: flex;
  justify-content: space-between;
  border-bottom: 1.5px solid var(--gray-color);
}
.selecter-item {
  width: 33.33%;
  height: 40px;
  /* margin: 3px; */
  border: none;
  display: flex;
  background-color: transparent;
  justify-content: center;
  align-items: center;
  color: #000 !important;
}

.selecter-item-light {
  border-bottom: 3px solid var(--highblur-color);
  color: var(--highblur-color);
}

.ck-content {
  width: 100%;
  /* min-height: 100px; */
  /* max-height: 250px; */
  height: 250px;
  border-bottom: 1.5px solid var(--gray-color);
  overflow-y: scroll;
  overflow-x: hidden;
  outline: none;
  display: flex;
  justify-content: center;
}

/* .content::-webkit-scrollbar {
  width: 0px;

  color: var(--gray-color);
} */

.ck-content-item {
  width: 100%;
  top: 0;
  left: 0;
  display: none;
  flex-direction: column;
  align-items: center;
}
.content-item-content{
  height: 100%;
  justify-content: space-between;
}
.content-item-show{
  display: flex;
}

.content-item-center {
  width: calc(100% - 30px);
}

.tail {
  width: 90%;
  height: 75px;

  display: flex;

  justify-content: center;
  align-items: center;

  align-self: center;
  
  font-size: 13px;
}
.selecter-action {
  margin-left: 10px;
  margin-right: 10px;
  width: 28%;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 2px solid var(--highblur-color);
  color: #000 ;

}

.selecter-action-forAllowall {
  background-color: var(--highblur-color);
  color: #fff;
}
.center-align {
  display: flex;
  justify-content: center;
}

.simpleOptionContainer {
  width: 100%;
  height: 100px;
  display: flex;
  border-top: 1.5px solid var(--gray-color);
  border-bottom: 1.5px solid var(--gray-color);

  
}
.simpleOption {
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.simpleOptionRightBorder {
  border-right: 1.5px solid var(--gray-color);

}

.simpleOptionLeftBorder {
  border-left: 1.5px solid var(--gray-color);
}
.optionName {
  margin: 0;
  margin-bottom: 10px;
  padding: 0;
}

.seceltBtn {
  position: relative;
  width: 58px;
  height: 28px;
  border-radius: 20px;
  background-color: var(--gray-color);
  display: flex;


  
}
.seceltBtnBall {
  position: absolute;

  left: 3px;
  right: auto;
  align-self: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.seceltBtnBallSeclected {
  left: auto;
  right: 3px;
  background-color: var(--highblur-color);
}

.seceltBtnBallNecessary {
  left: auto;
  right: 3px;
  background-color: var(--gray-color);
}
.detailItem {
  border-bottom: 1.5px solid var(--gray-color);
  padding: 10px 0px;
  
}

.detailItemTitle {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 3px;
  color: #000 !important;
}

.detailItemText {
  margin-left: 3px;
  font-size: 14px;
  color: #000 !important;
}
.textAlignCenter{
  text-align: center;
  margin-top: 5px;
  font-size: 14px;
  color: #000 !important;
}