/* 原子类 */
.db{
  display: block;
}
.dn{
  display: none;
}
/* 通用 */
.mbp-cookie-bottom-container, .mbp-cookie-bottom-container *,
.mbp-cookie-drawer-container, .mbp-cookie-drawer-container *
{
  box-sizing: border-box;
}
/* pc端底部 */
.mbp-cookie-bottom-container{
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50px;
  padding: 6px 60px 0 40px;
  background-color: #fff;
}
.mbp-cookie-bottom-container .mbp-cookie-txt-container{
  float: left;
  color: rgba(0,0,0,.65);
}
.mbp-cookie-bottom-container .mbp-cookie-title{
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
}
.mbp-cookie-bottom-container .mbp-cookie-desc{
  font-size: 12px;
  line-height: 18px;
}
.mbp-cookie-bottom-container .mbp-cookie-btn-container{
  float: right;
}
.mbp-cookie-bottom-container .mbp-cookie-btn{
  font-size: 12px;
  color: #fff;
  background-color: #1890ff;
  border-color: #1890ff;
  text-shadow: 0 -1px 0 rgb(0 0 0 / 12%);
  box-shadow: 0 2px 0 rgb(0 0 0 / 5%);
  line-height: 1.499;
  text-align: center;
  cursor: pointer;
  height: 32px;
  padding: 0 15px;
  border-radius: 4px;
  border: 1px solid #d9d9d9;
}
.mbp-cookie-bottom-container .mbp-cookie-btn_right{
  margin-left: 12px;
}
.mbp-cookie-bottom-container .mbp-bottom-close-btn{
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 10px;
  right: 25px;
  cursor: pointer;
}
/* pc端左侧抽屉 */
.mbp-cookie-drawer-container{
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
}
.mbp-cookie-drawer-mask{
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(0,0,0,.45);
  opacity: 0;
  transition: opacity .3s linear;
}
.mbp-cookie-drawer-content-container{
  position: absolute;
  top: 0;
  left: 0;
  width: 25vw;
  height: 100%;
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.7,.3,.1,1);
}
.mbp-cookie-drawer-open{
  width: 100%;
}
.mbp-cookie-drawer-open .mbp-cookie-drawer-mask{
  width: 100%;
  opacity: 1;
}
.mbp-cookie-drawer-open .mbp-cookie-drawer-content-container{
  transform: translateX(0);
}
.mbp-cookie-drawer-close .mbp-cookie-drawer-content-container{
  transform: translateX(-100%);
}
.mbp-cookie-drawer-close .mbp-cookie-drawer-mask{
  width: 0;
  opacity: 0;
  transition: opacity .3s linear,width 0s ease .3s;
}
.mbp-cookie-drawer-close{
  width: 0;
  transition: transform .3s cubic-bezier(.7,.3,.1,1),width 0s ease .3s;;
}
.mbp-cookie-drawer-content-wrapper{
  width: 100%;
  height: 100%;
  padding: 24px;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
  background-color: #fff;
  color: rgba(0,0,0,.65);
}
.mbp-cookie-drawer-close-btn{
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}
.mbp-cookie-drawer-content{
  height: 88%;
  overflow-y: auto;
}
.mbp-cookie-drawer-btns{
  height: 12%;
  padding-top: 7px;
}
.mbp-cookie-common-block{
  background: #f7f8fa;
  padding: 0 20px 10px;
  margin-top: 20px;
}
.mbp-cookie-common-block-title{
  display: block;
  height: 50px;
  padding-top: 13px;
  font-size: 16px;
}
.mbp-cookie-common-desc{
  color: #999;
  font-size: 12px;
  padding: 0 10px;
}
.mbp-cookie-common-desc *{
  color: #999;
  font-size: 12px;
}
.mbp-switch-container{
  background: #fff;
  height: 50px;
  padding: 13px 20px;
  margin-bottom: 10px;
}
.mbp-switch-title{
  float: left;
}
.mbp-switch_right{
  float: right;
}
.mbp-switch{
  margin: 0;
  padding: 0;
  color: rgba(0,0,0,.65);
  font-size: 14px;
  font-variant: tabular-nums;
  line-height: 1.5;
  list-style: none;
  font-feature-settings: "tnum","tnum";
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  min-width: 44px;
  height: 22px;
  line-height: 20px;
  vertical-align: middle;
  background-color: rgba(0,0,0,.25);
  border: 1px solid transparent;
  border-radius: 100px;
  cursor: pointer;
  transition: all .36s;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.mbp-switch-checked{
  background-color: #1890ff;
}
.mbp-switch-disabled{
  cursor: not-allowed;
  opacity: 0.4;
}
.mbp-switch-dot{
  position: absolute;
  top: 1px;
  left: 1px;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 18px;
  cursor: pointer;
  transition: all .36s cubic-bezier(.78,.14,.15,.86);
}
.mbp-switch-checked .mbp-switch-dot{
  left: 55%;
}
.mbp-cookie-drawer-btn{
  display: block;
  width: 100%;
  color: #fff;
  background-color: #1890ff;
  height: 32px;
  padding: 0 15px;
  font-size: 14px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}
.drawer-agree{
  margin-top: 10px;
}
/* 这个只是移动端用, 但写在pc端中是为了方便整个复制到移动端 */
@media screen and (max-width: 768px) {
  .mbp-cookie-drawer-content-container{
    width: 100vw;
  }
}