* {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

body {
  /* background-color: #243142 !important; */
  background-color: #F5F9FA !important;
  overflow: hidden;
}

/* 头部 */
.header {
  height: 50px;
  /* padding: 15px; */
  padding: 15px 5%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* background-color: #1f2937; */
  background: linear-gradient(180deg, #2EC1C4 0%, #A0EEEF 100%);
  /* background: #FFF; */
  /* border-bottom: 1px solid #4b5866; */
  box-shadow: 0px -10px 15px 0px rgba(0, 0, 0, 0.04);
}

.wxGroup {
  text-decoration: underline;
}

.wxGroup img {
  margin-right: 5px;
}

.outer {
  display: flex;
  align-items: center;
}

.header img {
  width: 25px;
  height: auto;
}

.header span {
  font-size: 25px;
  font-weight: bolder;
  vertical-align: bottom;
  margin-left: 5px;
}

.chatPayBtnOpen {
  width: 77px;
  height: 41px;
  border: none;
  color: #fff;
  background-color: #7493ab;
  border-radius: 5px;
  text-align: center;
  line-height: 41px;
  font-weight: 700;
  cursor: pointer;
}

.offcanvas-header {
  /* position: relative; */
  display: flex;
  flex-direction: column;
}

/* .offcanvas-start{
    width: 50%;
    background-color: #202123;
    padding-top: 50px;
} */
.newchat {
  color: #fff;
  margin: auto;
  width: 100%;
  /* height: 70%; */
  border: 1px solid gray;
  text-align: center;
  border-radius: 5px;
  margin-top: 20px;
  padding: 5px 0;
}

.chat {
  width: 100%;
  height: 400px;
  /* flex: 1; */
  overflow-y: auto;
}

.dialogue {
  background-color: #343541;
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
  margin: 10px 0;
  color: #fff;
  border-radius: 5px;
}

.clear {
  position: absolute;
  top: 85%;
  margin: auto;
  color: #fff;
  width: 95%;
  /* height: 5%; */
  border: 1px solid gray;
  text-align: center;
  border-radius: 5px;
  padding: 5px 0;
}

.offcanvas-header img {
  width: 40px;
}

/* 对话框 */
/* .bigrightbox {
    display: flex;
    padding: 10px;
    background-color: #363b41;
} */

/* .bigleftbox {
    display: flex;
    padding: 10px;
    background-color: #474956;
} */

/* ai对话 */
.hotQuestionBtn {
  position: fixed;
  bottom: 140px;
  right: 0;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  font-size: 12px;
  /* background-color: #7493ab8c; */
  color: #ffffff;

  background-color: #ededed;
}

.hotQuestionBtn .hotDetail {
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  text-align: center;
  /* background-color: #aabbff77; */
  background: linear-gradient(180deg, #2EC1C4 0%, #A0EEEF 100%);
}

/* ai绘画 */
.WrappedDraw {
  visibility: hidden;
  height: 0;
  position: relative;
  overflow: hidden;
}

.WrappedDraw .leftContent img {
  width: 95%;
  max-width: 250px;
  height: auto;
  margin-top: 10px;
}

.WrappedDraw .drawDownIcon {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 95%;
  max-width: 250px;
}

.WrappedDraw .drawDownIcon img {
  width: 35px;
  height: 35px;
  margin-top: 20px;
}

.drawMask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  /* background-color: #243142; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.drawMask .drawMaskTitle {
  color: #ffffff;
  margin: 15px 0;
}

.drawMask .drawMaskTitle img {
  width: 20px;
  height: 20px;
}

.drawMaskContent {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  height: 100%;
  overflow-y: scroll;
}

.drawMaskContent .drawMaskItem {
  width: 40%;
  height: 200px;
  border-radius: 3px;
  margin-top: 12px;
  padding: 3px 11px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  color: #000;
  font-size: 13px;
  /* background-color: #617283; */
  background-color: #F5F9FA;
  /* border: 1px solid #979da2; */
  cursor: pointer;
}

.drawMaskContent .drawMaskItem .drawMaskText {
  height: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media screen and (min-width: 768px) {
  .drawMaskContent .drawMaskItem {
    flex-direction: row;
  }

  .drawMaskContent .drawMaskItem .drawMaskText {
    width: 50%;
  }
}

.drawMaskContent .drawMaskItem .drawMaskImg {
  width: 110px;
  height: auto;
}

.drawMaskContent .drawMaskItem .drawMaskIcon {
  width: 20px;
  height: 20px;
  margin-bottom: 10px;
}

/* 探索 */
.WrappedExplore {
  visibility: hidden;
  height: 0;
  overflow: hidden;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* 探索：弹窗 */
.exToastWrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(57, 58, 60, 0.8);
}

.exToastWrap .exToast {
  width: 300px;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  border-radius: 12px;
  color: #666666;
  padding: 0 20px;
  position: relative;
}

.exToastWrap .exToastClose {
  position: absolute;
  top: 3px;
  right: 5px;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
}

.exToastWrap .exToastTitle {
  width: 100%;
  text-align: center;
  height: 45px;
  line-height: 45px;
  font-size: 16px;
  font-weight: 600;
}

.exToastWrap .exToastContent {
  background-color: #F5F9FA;
  width: 100%;
  height: 100%;
  border: 1px solid #d3d3d3;
  border-radius: 3px;
  padding: 3px;
}

.exToastWrap .exToastBtnWrap {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 20px;
}

.exToastWrap .exToastBtn {
  width: 65px;
  height: 25px;
  line-height: 25px;
  border-radius: 3px;
  border: 1px solid #2EC1C4;;
  margin-bottom: 10px;
  text-align: center;
  cursor: pointer;
}

.exToastWrap .exToastCancel {
  background-color: #efefef;
}

.exToastWrap .exToastRun {
  background-color: #2EC1C4;
  color: #ffffff;
}

.groupWrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(57, 58, 60, 0.9);
}

.groupWrap .groupBody {
  width: 500px;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  /* background-color: #ffffff; */
  border-radius: 12px;
  padding: 0 20px;
  position: relative;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 70px;
}

@media screen and (min-width: 768px) {
  .groupBody {
    width: 500px;
  }
}

.groupWrap .groupBody .codeOuter {
  display: flex;
}

.groupWrap .exToastClose {
  position: absolute;
  top: -60px;
  right: 50px;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
}

.groupWrap .gb-header {
  margin-top: 20px;
}

.groupWrap .gb-header span {
  color: #bc6c6e;
  font-size: 20px;
  font-weight: 600;
}

.groupWrap .gb-code {
  margin-top: 18px;
  width: 150px;
  height: 150px;
}

/* 探索：滚动区域 */
.WrappedExplore .exAll {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.WrappedExplore .exAllLeft {
  color: #333;
  width: 22%;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  /* background-color: #1f2937; */
  background-color: #FFF;
}

.WrappedExplore .exAllLeft .exAllLeftItem {
  height: 40px;
  line-height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.WrappedExplore .exAllLeft .exAllLeftChooseItem {
  /* background-color: #243142; */
  background-color: #FFF;
  color: #2EC1C4;
  /* background: linear-gradient(180deg, #2EC1C4 0%, #A0EEEF 100%); */
}

.WrappedExplore .exAllLeft .exAllLeftChooseItem::before {
  width: 3px;
  height: 13px;
  display: block;
  content: "";
  /* background-color: #2a826f; */
  background-color: #2EC1C4;
  margin-right: 4px;
}

.WrappedExplore .exAllRight {
  width: 78%;
  height: 100%;
  overflow-y: scroll;
}

.WrappedExplore .exAll .exAllItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  width: 25%;
  height: 100px;
  background-color: #617283;
  border-radius: 3px;
}

.WrappedExplore .exAll .exAllItemLast {
  margin-right: 0;
}

.WrappedExplore .exAll .exAllItem img {
  width: 60px;
  height: 60px;
}

.WrappedExplore .ex-title {
  margin: 5px 16px;
  font-size: 15px;
  font-weight: 700;
  color: #2EC1C4;
}

.WrappedExplore .item-wrap {
  padding-bottom: 20px;
}

.WrappedExplore .ex-item {
  margin: 0 auto 13px;
  font-size: 14px;
  border-radius: 3px;
  border: 1px solid #d3d3d3;
}

.WrappedExplore .ex-item .title {
  border-bottom: 1px dashed #d3d3d3;
  font-weight: 600;
  /* padding: 5px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #525659;
  padding: 4px 13px;
}

.WrappedExplore .ex-commend span {
  margin-left: 15px;
}

.WrappedExplore .ex-item .ex-run {
  color: #2EC1C4;
  cursor: pointer;
}

.WrappedExplore .ex-item .ex-copy {
  color: #f40;
  cursor: pointer;
}

.WrappedExplore .ex-item .ex-edit {
  color: #7d7d7d;
  cursor: pointer;
}

.WrappedExplore .ex-item .exi-context {
  /* padding: 5px; */
  color: #a1a1a1;
  font-size: 13px;
  padding: 8px 13px;
}

@media screen and (max-width: 767px) {
  .WrappedExplore .item-wrap {
    display: block;
  }

  .WrappedExplore .ex-item {
    width: 90%;
  }
}

@media screen and (min-width: 768px) {
  .WrappedExplore .item-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    padding-top: 40px;
  }

  .WrappedExplore .ex-item {
    width: 45%;
    height: 130px;
  }

  .WrappedExplore .ex-title {
    position: absolute;
    top: 0;
    left: 0;
  }

  .WrappedExplore .ex-item .exi-context {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    height: 90px;
  }
}

/* 我的 */
.WrappedMine {
  visibility: hidden;
  height: 0;
  overflow: hidden;
  color: #ffffff;
  position: relative;
}

.WrappedMine .mineTop {
  color: #333;
  display: flex;
  align-items: center;
  margin-left: 20px;
  font-size: 14px;
  /* border-bottom: 1px solid #c0c1c1; */
  padding: 10px 0;
}

.WrappedMine .mineTop img {
  width: 60px;
  height: 60px;
}

.WrappedMine .mineBottom .mineItem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10%;
  height: 55px;
}

.WelfarepasswordOuter {
  background-color: #33455c;
  width: 85%;
  height: 85px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 5px;
  padding: 0 2.5%;
}

.textWelfarepassword {
  margin: 10px 0;
}

.copeWelfarepassword {
  display: flex;
  align-items: center;
}

.WelfarepasswordOuter img {
  width: 80px;
  height: 80px;
}

#Welfarepassword {
  width: 78%;
  height: 36px;
}

.confirmWelfarepassword {
  width: 20%;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 3px;
  color: #000;
  /* background-color: #63e2b7; */
  background-color: #2EC1C4;
  padding: 0 2px;
  margin: 0 auto;
  cursor: pointer;
}

.WrappedMine .mineBottom .mineItemDetail {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.WrappedMine .mineBottom img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

/* 底部tab */
.menuOuter {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 65px;
  padding: 5px 0;
  text-align: center;
  /* border-top: 1px solid #549da1; */
  /* box-shadow: 0px -10px 15px 0px rgba(0, 0, 0, 0.04); */
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  color: #999;
  font-size: 12px;
  background-color: #FFFFFF;
}

.menuOuter .menuItem {
  width: 18%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menuOuter .menuIcon {
  width: 25px;
  height: 25px;
  margin-bottom: 5px;
}

.menuOuter .chatMenuBtn .menuIcon {
  width: 27px;
  height: 27px;
}

.chooseMenuBtn {
  color: #2EC1C4;
  /* font-weight: 600; */
}

.theChoosed {
  display: none;
}

.chooseMenuBtn .theChoosed {
  display: block;
}

.chooseMenuBtn .unChoose {
  display: none;
}

/* 会话样式 */
.WrappedBox {
  position: relative;
  overflow: hidden;
}

.WrappedBox .hotQuestionBtn {
  display: none;
}

.DPDJBS-default {
  margin-right: 15px;
  padding: 2px 10px;
  border-radius: 15px;display: flex;
  align-items: center;
  border: 1px solid rgba(0,0,0,.12);
  color: #4c4c4c;
  background-color: #FFF;
}
.DPDJBS-active {
  margin-right: 15px;
  padding: 2px 10px;
  border-radius: 15px;display: flex;
  align-items: center;
  border: 1px solid rgba(0,122,255,.15);
  color: #4d6bfe;
  background-color: #dbeafe;
}

.chatStyle {
  /* background-color: #243142; */
  background-color: #FFF;
  margin: 0 auto;
  padding: 10px;
  border-bottom: none;
  border-radius: 15px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.chatStyle::-webkit-scrollbar {
  width: 0;
}

.chatStyle .left {
  text-align: left;
  display: flex;
  align-items: center;
  margin-top: 10px;
  width: 100%;
  margin-bottom: -20px;
}

.chatStyle .right {
  text-align: right;
  margin-top: 10px;
  margin-bottom: -20px;
}

.chatStyle img {
  width: 40px;
  border: 5px;
}

.chatStyle .time {
  margin: 0 5px;
  /* color: #999; */
  font-size: 14px;
  margin-right: 21px;
  color: #fff;
}

.chatStyle .leftContent,
.chatStyle .rightContent {
  margin: 0 10px;
  padding: 10px 10px 8px;
  /* border-radius: 5px; */
  border-radius: 10px 0px 10px 10px;
}


.chatStyle textarea {
  width: 100%;
  height: 1.5rem;
  overflow: hidden;
  border: none;
  background: none;
  resize: none;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.chatStyle .leftContent {
  background-color: #F5F9FA;
  /* color: #424242; */
  color: #333;
  width: 68%;
  margin-right: 19%;
  position: relative;
  padding-bottom: 15px;
  border-radius: 0px 0px 10px 10px;
}
.chatStyle .leftContent .leftText {
  padding-top: 6px;
}

.chatStyle .rightContent {
  background-color: #2EC1C4;
  color: #fff;
  width: 68%;
  position: relative;
  margin-right: 47px;
}

.chatStyle .leftContent::before {
  display: none;
  position: absolute;
  top: -5px;
  left: 20px;
  content: "";
  transform: rotate(22deg);
  /* border-top: 20px solid rgb(255, 255, 255); */
  border-top: 20px solid #617283;
  border-bottom: 10px solid transparent;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
}

.chatStyle .rightContent::before {
  display: none;
  position: absolute;
  top: -5px;
  right: 20px;
  content: "";
  transform: rotate(-22deg);
  border-top: 20px solid #4d5672;
  border-bottom: 10px solid transparent;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
}



/*问答记录[左侧] */

 /* 侧边栏按钮 */
 .menu-button {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  z-index: 90;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fffdfd;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

/* 侧边栏 */
.sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100%;
  background-color: white;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 99;
  padding: 20px;
  overflow-y: auto;
}

.sidebar ul{
  /* margin-top: 20px;  */
  list-style: none; 
  padding-left: 0;
  margin-bottom: 8px;
}

.sidebar li{
  padding: 5px; 
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

.sidebar li p{
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin: 0;
    border-radius: 6px;
    background: #FFF;
    /* box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04); */
    width: 100%;
    height: 100%;
    font-size: 14px;

}

.sidebar h3{
  font-size: 13px;
  color: #666;
}

.sidebar.open {
  left: 0;
}

/* 主内容区 */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px;
  padding-top: 70px;
  max-width: 800px;
  margin: 0 auto;
}

.header {
  text-align: center;
  /* margin-bottom: 30px; */
}

.header h1 {
  font-size: 24px;
  color: #1a73e8;
  margin-bottom: 10px;
}

.header p {
  color: #666;
  margin-bottom: 20px;
}

.chat-container {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.input-area {
  display: flex;
  gap: 10px;
}

#message-input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 20px;
  outline: none;
  font-size: 16px;
}

#send-button {
  padding: 0 20px;
  background-color: #1a73e8;
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 16px;
}

.action-buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.action-button {
  padding: 8px 15px;
  background-color: #f1f1f1;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  font-size: 14px;
}

/* 遮罩层 */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}
  




/* 词条区域 */
.entry {
  /* display: none; */
  width: 100%;
  /* padding: 0 10%; */
  border-top: 15px solid transparent;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  /* background-color: #243142; */
  background-color: #FFF;
}

/* 解决刚进入的时候输入框跳动 */
@media screen and (max-width: 767px) {
  .entry {
    height: 477px;
  }
}

@media screen and (min-width: 768px) {
  .entry {
    height: 747px;
  }
}

.entry h2 {
  text-align: center;
  color: #fff;
}

.entry p {
  text-align: center;
  margin: 0px 0 0 15px;
  /* color: #fff; */
  color: #000;
}

.entry ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 0;
  /* margin-top: 20px; */
}

.entry li {
  width: 100%;
  height: 42px;
  line-height: 42px;
  border-radius: 3px;
  margin-top: 12px;
  display: flex;
  padding: 0px 15px;
  justify-content: center;
  align-items: center;
  /* color: #fff; */
  font-size: 13px;
  /* background-color: #617283; */
  margin: 30px 0px 0 0px;

  color: #000;
  /* background-color: #F5F9FA; */
}

.entry li:nth-child(2n) {
  /* margin: 10px 0px 0 0px; */
}

.entry li p {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin: 0;
  border-radius: 6px;
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
  width: 100%;
  height: 100%;
  color: #666;
}

.entry .replace {
  display: flex;
  justify-content: end;
  color: #fff;
  font-size: 13px;
  /* vertical-align: middle; */
  align-items: center;
}

.entry .replace img {
  width: 14px;
  height: 12px;
  margin-left: 4px;
  cursor: pointer;
}

.entry .morebox {
  margin-top: 25px;
  color: #fff;
  font-size: 11px;
  text-align: center;
  display: flex;
  position: relative;
  cursor: pointer;
}

.entry .Leftline {
  position: absolute;
  top: 8px;
  left: -110px;
  width: 87px;
  height: 1px;
  /* background-color: #fff; */
  background: linear-gradient(270deg, #D9D9D9 -1.71%, rgba(217, 217, 217, 0.00) 70.94%);
}

.entry .Rightline {
  position: absolute;
  top: 8px;
  right: -110px;
  width: 87px;
  height: 1px;
  /* background-color: #fff; */
  background: linear-gradient(90deg, #D9D9D9 -1.71%, rgba(217, 217, 217, 0.00) 70.94%);
}

/* 热门提问 */
.Questionsbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 99999;
}

.Questionsbox .Questions {
  /* box-sizing:content-box; */
  margin-top: 100px;
  background-color: #fff;
  width: 100%;
  height: calc(100% - 100px);
  overflow-y: auto;
  border-radius: 10px 10px 0 0;
  padding: 10px 20px;
}

.Questionsbox .Questions h3 {
  text-align: center;
  margin: 10px 0;
}

.Questionsbox .Questions .title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  overflow: hidden;
  padding: 0;
  justify-content: space-between;
}

.Questionsbox .Questions .title li {
  width: 21%;
  height: 30px;
  text-align: center;
  line-height: 30px;
  /* background-color: #617283; */
  /* background-color: #2EC1C4; */
  /* background-color: #d9dae1; */
  background-color: #F5F9FA;
  border-radius: 20px;
  /* color: #ffffff; */
  color: #666;
  font-size: 12px;
  float: left;
  margin-top: 10px;
  /* margin-left: 10px; */
  cursor: pointer;
}

.Questionsbox .Questions .BottomQuestions {
  border-top: 1px solid #e3e3e3;
  /* padding: 0px; */
}

.Questionsbox .Questions .BottomQuestions .questionsContext {
  padding: 0px;
}

.Questionsbox .Questions .BottomQuestions .questionsContext li {
  margin: 20px 0px 0px 0px;
  padding: 10px 0px 10px 12px;
  /* background-color: #f5f6fb; */
  /* border-radius: 3px; */
  color: #666;
  font-size: 13px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;

  border-radius: 6px;
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
}

/* 输入框 */
.inputStyle {
  width: 100%;
  /* height: 50px; */
  height: 85px;
  margin: 0 auto;
  text-align: center;
  /* border: 1px solid rgba(0, 0, 0, 0.3); */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 65px;
  left: 0%;
  /* background-color: #243142; */
  border-radius: 6px 6px 0px 0px;
  background: #FFF;
  box-shadow: 0px -10px 15px 0px rgba(0, 0, 0, 0.04);
}

.inputStyle input {
  width: 77%;
  height: 40px;
  border: none;
  border-radius: 8px;
  outline-style: none;
  padding: 5px 15px;
  margin-right: 5px;
  border-radius: 94px;
}

.inputStyle .sendStyle {
  width: 66px;
  height: 40px;
  border: none;
  color: black;
  background-color: #abf;
  border-radius: 5px;
}

/* 登录弹窗 */
.pcLogin {
  position: fixed;
  top: 70px;
  right: 30px;
  width: 300px;
  height: 300px;
  border-radius: 12px;
  background-color: #94bbff;
  display: none;
}

.unLoginWrap {
  width: 100%;
  height: 100%;
  /* display: none; */
}

.loginOuter {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.loginOuter .title {
  margin-top: 20px;
  font-weight: bold;
  font-size: 20px;
}

.loginOuter .tips {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loginOuter img {
  width: 150px;
  height: 150px;
  display: block;
}

.loginOuter .detail {
  margin-bottom: 20px;
  margin-top: 30px;
}

.loginOuter .changCode {
  font-size: 14px;
  color: blue;
}

.pcPay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  display: none;
}

.isLoginWrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(57, 58, 60, 0.8);
}

/* 支付弹窗 */

.userOuter {
  /* width: 300px; */
  /* height: 300px; */
  /* display: flex;
  flex-direction: column;
  align-items: center; */
  /* justify-content: space-between; */
  background-color: #ffffff;
  /* border-radius: 12px; */
  cursor: pointer;

  position: absolute;
  bottom: 0;
  width: 100%;
  border-radius: 12px 12px 0 0;
}

.userOuter .closeBtn {
  position: absolute;
  top: 10px;
  right: 20px;
}

.userOuter .userIntro {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 80%;
  margin-top: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eed9b5;
}

.userOuter .userIntro .tips {
  font-size: 14px;
  color: #666666;
}

.userOuter .userIntro .nicknameOuter {
  font-weight: 600;
  font-size: 15px;
}

.userOuter .userIntro .isPayTips {
  display: none;
}

.userOuter .userIntro .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.userOuter .infoOuter {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

/* 二级页面，隐私政策 */
.userOuter .privacy {
  display: flex;
  font-size: 12px;
}

.userOuter .privacy .checkBtn {
  margin-right: 5px;
  position: relative;
  width: 20px;
  height: 20px;
}

.userOuter .privacy .checkBtn[type="checkbox"]:checked::before {
  content: "\2713";
  background: #EF9944;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 1px;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  line-height: 20px;
}

.userOuter .privacy .link {
  color: #e88f94;
}

/* 申请推广 */
.pushApply {
  font-size: 13px;
  display: none;
}

.pushApplyTitle {
  text-align: center;
  margin-top: 10%;
}

.pushApplyTitle img {
  width: 20px;
  height: 20px;
}

.pushApplyIntro {
  margin-top: 30px;
  text-align: center;
}

.pushApplyTips {
  margin-top: 30px;
  text-align: center;
}

.pushApplyForm {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-top: 10%;
  width: 100%;
  font-size: 15px;
}

.pushApplyFormText {
  width: 30%;
  text-align: center;
}

.pushApplyFormItem {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 40px;
  width: 100%;
}

.pushApplyFormItem input {
  width: 55%;
  height: 30px;
}

.pushApplyForm .submitBtn {
  text-align: center;
  width: 30%;
  height: 35px;
  line-height: 35px;
  border-radius: 3px;
  background-color: #52b2a5;
}

/* 待后台审核 */
.pushCheck {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
}

.pushCheck .pushCheckCodeImg {
  width: 170px;
  height: 170px;
  margin-top: 20px;
}

.pushCheck .pushCheckCodeIcon {
  width: 100px;
  height: 100px;
  margin-top: 70px;
}

.pushCheck .checkBtn {
  background-color: #bbbbbb;
  width: 30%;
  height: 35px;
  line-height: 35px;
  border-radius: 3px;
  text-align: center;
  margin-top: 25px;
}

.pushCheckInfo {
  font-size: 14px;
}

/* 推广查看 */
.pushItem {
  /* display: flex;
  align-items: center;
  justify-content: flex-start; */
  margin-top: 20px;
  font-size: 14px;
}

.pushItem .pushText {
  margin-right: 5px;
  margin-bottom: 5px;
}

.pushItem .pushDetail {
  margin-bottom: 3px;
}

.pushInfo {
  display: block;
}

.pushLink {
  display: block;
}

.pushLink #canbox {
  position: fixed;
  left: -300%;
}

.pushLink #myCanvas {
  width: 300px;
  height: 428px;
}

.pushLink #canimg {
  width: 300px;
  height: 428px;
}

.pushLink #canimg img {
  width: 300px;
  height: 428px;
}

.pushLinkDetailOuter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* background-color: #33455c; */
  background-color: #F5F9FA;
  height: 35px;
  border-radius: 3px;
  max-width: 300px;
  color: #000;
}

.pushPageBtnStyle {
  width: 4em;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 3px;
  /* background-color: #63e2b7; */
  background-color: #2EC1C4;
  padding: 0 2px;
  margin-left: 5px;
  cursor: pointer;
  color: #FFF;
}

.copyPusLink {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.downImg {
  width: 160px;
  margin-left: 70px;
}

.pushLinkDetailOuter .pushLinkDetail {
  max-width: 77%;
  margin-left: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 支付弹窗 */
.userOuter .payBtn {
  width: 80%;
  height: 40px;
  border-radius: 20px;
  background-image: linear-gradient(#f9e6ce, #f6c380);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;

  /* background-color: #281801; */
  /* color: #FECEA2; */
}

.userOuter .closePayBtn {
  margin-bottom: 20px;
}

.userOuter .infoOuter .infoItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 5px;
  width: 26%;
  height: 100px;
  border-radius: 5px;
  /* box-shadow: 0 0 5px #888888; */
  box-shadow: 0 0 5px #c5c5c5;
  text-align: center;
  position: relative;
}

.userOuter .infoOuter .onSale {
  /* width: 100%;
  height: 16px;
  background-color: #ea8a14;
  position: absolute;
  top: 5px;
  left: 0;
  font-size: 12px;
  color: #ffffff; */
  position: absolute;
  right: 0;
  top: 0;
  font-size: 10px;
  padding: 3px 5px 3px 10px;
  border-radius: 0 0 0 14px;
  color: #A06116;
  background: linear-gradient(90deg, #FFE5BE 0%, #FCC876 100%);
}

.userOuter .infoOuter .infoItem .title {
  font-size: 12px;
  margin-top: 20px;
}

.userOuter .infoOuter .infoItem .before {
  text-decoration: line-through;
  color: #666666;
  margin-top: -7px;
}

.userOuter .infoOuter .infoItem .priceOuter {
  color: #f40;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.userOuter .infoOuter .infoItem .priceOuter .icon {
  font-size: 12px;
}

.payOuter {
  width: 300px;
  height: 300px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 12px;
  position: relative;
}

.payOuter .intro {
  margin-bottom: 10px;
}

.payOuter .closeScanPayBtn {
  position: absolute;
  top: 10px;
  right: 15px;
}

.payOuter img {
  width: 200px;
  height: 200px;
}

.choosePayItem {
  /* background-color: #fcfaee; */
  /* border: 2px solid #ebc38e; */
  box-sizing: content-box;

  border-radius: 5.684px;
  /* border: 2px solid var(--ddb-67-d, #DDB67D); */
  box-shadow: 0 0 5px #DDB67D !important;
  background: var(--Linear, linear-gradient(180deg, #FEF5E4 0%, #FFEBCD 100%));
}

.logoutWrap {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.logoutWrap .logoutBtn {
  text-align: right;
  color: blue;
  margin-bottom: 10px;
  margin-right: 10px;
}

/* apikey输入框 */

.apikey {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  border: 5px solid #add;
  border-radius: 20px;
  padding: 10px 20px;
  background-color: #fff;
  display: none;
  z-index: 10000;
}

.apikey input {
  width: 100%;
  margin: auto;
  border: none;
  border-bottom: 3px solid #daa;
  outline-style: none;
  background: none;
  padding: 5px;
  text-align: center;
  color: #f40;
}

.apikey .apikeyTip {
  margin: 5px 0;
  font-size: 8px;
  color: #666;
  text-align: center;
}

.apikey button {
  margin: 10px auto;
  float: right;
}

/* 二级页面 */
.secondPage {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  color: #333;
  overflow-y: scroll;
  /* background-color: #243142; */
  background-color: #FFF;
}

.secondPage .headerPrivacy {
  width: 100%;
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.secondPage .backBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 13px;
  left: 7%;
}

.secondPage .titleHead {
  font-weight: 600;
}

.secondContent {
  padding: 86px 7% 10px;
  margin: 0 auto;
}

.contentPrivacy .titleStart {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}

.contentPrivacy .titleBody {
  margin-top: 20px;
  font-weight: 600;
}

.contentPrivacy .textBody {
  margin-top: 10px;
  color: #a7adb3;
}

.contentPrivacy {
  /* background-color: #243142; */
  background-color: #FFF;
}

/* 充值表格 */

.payTable {
  /* border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  border-right: 1px solid #ffffff; */
  border-top: 1px solid #d3d3d3;
  border-left: 1px solid #d3d3d3;
  border-right: 1px solid #d3d3d3;
  margin-top: 30px;
}

.pushPage .payTable {
  margin-top: 0;
  white-space: nowrap;
}

.payTable .payTableHeader {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.payTable .payTableContent {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.payTable .payTableContent div {
  width: 50%;
  border-bottom: 1px solid #d3d3d3;
  height: 40px;
  line-height: 40px;
  font-size: 13px;
}

.payTable .payTableHeader div {
  width: 50%;
  border-bottom: 1px solid #d3d3d3;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  color: #000;
}

.pushPage .payTable .payTableHeader div {
  font-size: 12px;
}

/* 提现记录 */
.payWithdrawPage .wf-title span {
  color: #bc6c6e;
  margin-right: 3px;
}

.allMoney {
  color: #ffffff;
}

.payWithdrawPage .wf-title {
  margin-bottom: 5px;
  margin-top: 10px;
}

.payWithdrawPage .pushText {
  font-weight: 700;
  font-size: 15px;
}

.ww-outer {
  display: flex;
  align-items: center;
  width: 250px;
  height: 35px;
  border-radius: 5px;
  /* border: 1px solid #5e5e63; */
  border: 1px solid #d3d3d3;
  overflow: hidden;
}

.ww-item {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ww-item-choose {
  /* background-color: #63e2b7; */
  background-color: #2EC1C4;
  color: #FFF;
}

.withdrawFormOuter {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  /* background-color: rgba(57, 58, 60, 0.8); */
  background-color: rgba(225, 225, 225, 0.8);
}

.withdrawFormOuter .pushItem {
  width: 300px;
  height: 350px;
  /* background-color: #2c2c32; */
  background-color: #FFF;
  border-radius: 3px;
  padding: 25px;
  position: relative;
  margin-top: 0;
}

.withdrawFormOuter .pushItem .pushText {
  text-align: center;
}

.bandWithdrawOuter {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.payWithdrawPage .pushItem .bandWithdraw {
  width: 115px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 3px;
  /* color: #63e2b7; */
  color: #2EC1C4;
  /* border: 1px solid #63e2b7; */
  border: 1px solid #2EC1C4;
  padding: 0 2px;
  margin-left: 5px;
  cursor: pointer;
}

.withdrawFormOuter .pushItem .wfo-close-btn {
  width: 25px;
  height: 25px;
  font-size: 18px;
  position: absolute;
  color: #9a9a9d;
  top: 25px;
  right: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payWithdrawPage input {
  width: 100%;
  height: 35px;
  max-width: 300px;
}

.payWithdrawPage .chooseWithdrawItem {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  position: relative;
}
.payWithdrawPage .chooseWithdrawItem[type="radio"]:checked::before {
  content: "\2713";
  background: #2EC1C4;
  position: absolute;
  top: -1px;
  left: -1px;
  width: 22px;
  height: 22px;
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  line-height: 22px;
}

.payWithdrawPage .chooseWithdrawOuterItem {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.payWithdrawPage .chooseWithdrawOuterItemName {
  margin-right: 5px;
}

.withdrawConfirmBtn {
  /* background-color: #63e2b7; */
  background-color: #2EC1C4;
  color: #000;
  border-radius: 5px;
  width: 100%;
  height: 35px;
  line-height: 35px;
  text-align: center;
  max-width: 300px;
  margin-top: 25px;
}

.withdrawZfb {
  display: none;
}

.withdrawOuter {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  height: 150px;
  border-radius: 3px;
  /* border: 1px solid #858b93; */
  border: 1px solid #d3d3d3;
}

.errorWithdrMuch {
  color: #f40;
  font-size: 12px;
}

.drawBtn {
  width: 250px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  color: #000;
  border-radius: 20px;
  /* background-color: #63e2b7; */
  background-color: #2EC1C4;
}

/* 暂无记录 */
.noneTableContent {
  width: 100%;
  height: 120px;
  line-height: 120px;
  text-align: center;
  /* border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff; */
  border-right: 1px solid #d3d3d3;
  border-bottom: 1px solid #d3d3d3;
  font-size: 13px;
}

/* 遮掩层 */
.cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 10000px;
  height: 10000px;
  background-color: #999;
  display: none;
  opacity: 0.5;
  z-index: 9999;
}

/* chat文字输出处理--表格 */
/* tbody,
td,
tfoot,
th,
thead,
tr {
  border-color: #ffffff;
  border-style: solid;
  border-width: 2px;
  padding: 2px;
  background-color: green;
  text-align: center;
}
table {
  margin-top: 10px;
} */

.leftContent pre code {
  /* background-color: #FFF; */
  /* display: block; */
  /* padding: 20px 30px; */
  box-shadow: inset 0px 0px 5px #525659;
  border-radius: 5px;
}
.leftContent img {
  width: auto;
}
.leftContent table {
  background: #FFFFFF;
  border: solid 1px #DDDDDD;
  margin-bottom: 1.25rem;
  table-layout: auto;
}

.leftContent table caption {
  background: transparent;
  color: #222222;
  font-size: 1rem;
  font-weight: bold;
}

.leftContent table thead {
  background: #F5F5F5;
}

.leftContent table thead tr th,
.leftContent table thead tr td {
  color: #222222;
  font-size: 0.875rem;
  font-weight: bold;
  padding: 0.5rem 0.625rem 0.625rem;
}

.leftContent table tfoot {
  background: #F5F5F5;
}

.leftContent table tfoot tr th,
.leftContent table tfoot tr td {
  color: #222222;
  font-size: 0.875rem;
  font-weight: bold;
  padding: 0.5rem 0.625rem 0.625rem;
}

.leftContent table tr th,
.leftContent table tr td {
  color: #222222;
  font-size: 0.875rem;
  padding: 0.5625rem 0.625rem;
  text-align: left;
}

.leftContent table tr.even,
.leftContent table tr.alt,
.leftContent table tr:nth-of-type(even) {
  background: #F9F9F9;
}

.leftContent table thead tr th,
.leftContent table tfoot tr th,
.leftContent table tfoot tr td,
.leftContent table tbody tr th,
.leftContent table tbody tr td,
.leftContent table tr td {
  display: table-cell;
  line-height: 1.125rem;
}