@charset 'UTF-8';
.slick-loading .slick-list {
  background: #173f75 url("../assets/ajax-loader.gif") center center no-repeat;
}
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  margin-top: -42px;
  display: block;
  width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 50%;
  background-size: 80%;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.3);

  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);

  transition: all 0.3s;
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background-color: rgba(0, 0, 0, 0.6);
  /* background: transparent; */
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev {
  left: 15px;
  background-image: url("../../assets/arrowLeft.svg");
}
.slick-next {
  right: 15px;
  background-image: url("../../assets/arrowRight.svg");
}

.slick-dots {
  position: absolute;
  bottom: 84px;
  display: block;
  width: 100%;
  padding: 16px 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 2px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;

  display: block;

  width: 20px;
  height: 20px;

  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  line-height: 20px;

  position: absolute;
  top: 5px;
  left: 5px;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #007cac;
  text-align: center;
  border-radius: 50%;
  transition: all 0.3s;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  background-color: #c0e4f8;
}

#recommend-page {
}
.recommend-page-wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
}
#recommend-page .container {
  max-width: 1980px;
  width: 100%;
  margin: auto;
  position: relative;
}

.recommend-channel {
  width: 100%;
}

.recommend-list-container {
  padding: 0 20px;
}

.recommend-channel .channelList {
  width: 100%;
  display: grid;
  grid-gap: 6px;
  grid-template-columns: repeat(12, 1fr);
  margin-bottom: 10px;
}

.recommend-channel .channel {
  font-size: 12px;
  display: inline-block;
  cursor: pointer;
  line-height: 22px;
  padding: 0 2px;
  text-align: center;
  border: 1px #0086e0 solid;
  border-radius: 12px;
  background-color: #00437e;
  color: #0086e0;

  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.recommend-channel .channel:hover {
  color: #fff;
  box-shadow: 0 0px 1px #3d97e0;
  background-color: rgba(31, 185, 236, 0.2);
}
.recommend-channel .channel.active {
  border-color: #0086e0;
  color: #fff;
  background-color: rgba(31, 185, 236, 0.4);
  box-shadow: 0 0px 1px #3d97e0;
}
.recommend-list-container {
  flex: 1;
  overflow: auto;
  box-sizing: border-box;
}

.recommend-list {
  position: relative;
  display: grid;
  grid-gap: 16px;
  grid-column: span 4;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 10px;
}
.recommend-main-container {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  position: relative;
  display: none;
}

.recommend-list .card {
  position: relative;
}

.recommend-list .card .title {
  font-weight: 500;
  margin-bottom: 6px;
  cursor: pointer;
  transition: all 0.3s;

  height: 40px;
  line-height: 20px;

  overflow: hidden;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;

  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.recommend-list .mainBox .title {
  font-size: 18px;
  height: 48px;
  line-height: 24px;
}

.recommend-list .card .title:hover {
  color: #1472b0;
}

.recommend-list .card .cover {
  position: relative;
  padding-top: 56.25%;
  cursor: pointer;
  overflow: hidden;
  background-color: #173f75;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.recommend-list .card .stats {
  position: absolute;
  width: 100%;
  bottom: 0;
  box-sizing: border-box;
  background-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
  padding: 10px 10px 4px 10px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
}
/* .recommend-list .mainBox .stats {
  padding: 50px 10px 4px 10px;
  background-image: linear-gradient(
    180deg,
    rgba(0, 71, 139, 0) 0%,
    rgba(0, 71, 139, 0.5) 60%,
    rgba(0, 71, 139, 1) 100%
  );
} */
.recommend-list .card .footer {
  width: 100%;
  box-sizing: border-box;
  background-color: #f1f2f3;
  padding: 8px 10px;
  color: #18191c;
}

/* .recommend-list .mainBox .footer {
  background-color: rgba(0, 71, 139, 1);
  color: #fff;
} */
.recommend-list .card .footer .meta {
  font-size: 12px;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.6);
}

.recommend-list .card .footer .item {
  margin-right: 4px;
  line-height: 1.2;
  display: inline-block;
}

.recommend-list .card .footer .type {
  cursor: pointer;
  transition: all 0.3s;
}
.recommend-list .card .footer .type:hover {
  color: #1472b0;
}

.recommend-list .card .footer .time {
  float: right;
  margin: 0;
}
/* 
.recommend-list .mainBox .footer .meta {
  color: rgba(255, 255, 255, 0.6);
} */

.recommend-main,
.recommend-list .subBox {
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 0 8px 2px rgba(27, 94, 161, 0.8);
  /* box-shadow: 0 0 16px 0px rgba(0, 0, 0, 0.4); */
}
.recommend-main:hover,
.recommend-list .subBox:hover {
  box-shadow: 0px 0px 0px 5px rgba(105, 192, 255, 0.8);
}

.recommend-main {
  /* position: absolute; */
  /* left: 0; */
  /* top: 0; */
  /* width: 100%; */
}

.recommend-main .cover {
  padding-bottom: 8px;
}

.recommend-roll {
  position: absolute;
  right: 0;
  top: 0;
}
.recommend-roll .btnRoll {
  font-size: 12px;
  transform: translate(-100%, 40px);
  width: 12px;
  line-height: 1;
  display: inline-block;
  cursor: pointer;
  padding: 12px 8px 12px 8px;
  border-radius: 20px;
  background: #1472b0;
  box-shadow: 0 0px 16px #173f75;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.recommend-roll .btnRoll .svgIcon {
  margin-bottom: 6px;
}

.recommend-roll .btnRoll:hover {
  background: #2392cb;
}

.promt-message .flex-horz {
  display: none;
}

.promt-message .form-prompt-row {
  padding-left: 5px;
}

#messages-div {
}

#messages-div .message-tag {
  margin-right: 10px;
}

.messageWrap {
  height: 100%;
  max-width: 1100px;
  margin: auto;
}

.messageWrapBorder {
  height: 100%;
  border: 2px #2b8cdb solid;
  background-color: rgba(27, 94, 161, 0.6);
  overflow: auto;
}

.messageWrapBorder .messageList {
  padding: 20px 40px;
}

.messageList .messageBox {
  display: flex;
  margin-bottom: 10px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
  padding: 10px;
}

.messageList .messageBox .left {
  flex: 0 1 48px;
}

.messageList .messageBox .center {
  width: 100%;
  flex: 1;
  position: relative;
  margin-right: 4px;
}

.messageList .messageBox .rightTop {
  text-align: right;
  position: absolute;
  right: 0;
  top: 0;
}

.messageList .messageBox .itemControl {
  margin-top: -2px;
}

.messageList .messageBox .name {
  padding-top: 4px;
  color: #d0e5f7;
  margin-right: 140px;
}

.messageList .messageBox .level {
  font-size: 12px;
  color: #d0e5f7;
  margin-left: 4px;
  display: inline-block;
}
.messageList .flag {
  color: #fff;
  display: inline-block;
  padding: 0px 4px;
  border-radius: 4px;
  font-size: 11px;
  line-height: 16px;
  margin-right: 2px;
  background-color: rgba(0, 67, 120, 0.4);
}

.messageList .time {
  font-size: 12px;
  color: #94aec5;
}

.messageList .postCont {
  padding: 10px 0;
  white-space: pre-wrap;
  word-break: break-word;
}
.messageList .messageBox.system .title {
  font-weight: bold;
  padding: 4px 0;
}
.messageList .messageBox.system .center {
  margin-left: 10px;
}

.messageList .messageBox.system .postCont {
  margin-right: 40px;
}
.jsContentMore {
  display: none;
}
.pageTaskAi {
  width: 100%;
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial,
    sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

.pageTaskAi input,
.pageTaskAi button,
.pageTaskAi textarea {
  resize: none;
  height: auto;
  box-sizing: border-box;
  width: 100%;
}

.pageTaskAi textarea {
  font-family: inherit;
  color: inherit;
  font-size: inherit;
}

.pageTaskAi input[type="file"] {
  color: transparent;
}

.pageTaskAi .container {
  max-width: 860px;
  margin: auto;
}
.taskStageAiPrompt .container {
  max-width: 560px;
}

.pageTaskAi .taskStage {
  height: 100%;
}
.pageTaskAi .taskAiContent {
  overflow: auto;
  height: calc(100% - 50px);
  padding: 16px 20px 0 20px;
  box-sizing: border-box;
}
.pageTaskAi .btmActionBar {
  border-top: 1px rgba(100, 218, 214, 0.4) solid;
  height: 50px;
  padding-top: 10px;
  box-sizing: border-box;
  margin: 0 90px;
  text-align: center;
  display: flex;
  position: relative;
}
.pageTaskAi .btmActionBar .actionsLeft {
  position: absolute;
  left: 0;
  margin-right: 10px;
}

.pageTaskAi .btmActionBar .actionsExpand {
  flex: 1;
}

.taskStageAiPrompt {
}
.taskStageAiResult {
}
.jsFieldHidden {
  display: none;
}

.jsUploadSection {
  position: relative;
}

.jsUploadSection.uploaded {
  line-height: 24px;
  padding: 6px 10px;
}

.jsUploadSection .jsUploadDone {
  display: none;
}

.jsUploadSection input[type="file"] {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}
.jsUploadSection.uploaded .labelBtnUpload {
  display: none;
}

.jsUploadSection.uploaded .jsUploadDone {
  display: block;
}

.taskStageAiResult {
}
.taskStageAiResult .tabHeaderWrap {
  text-align: center;
  margin-bottom: 12px;
}
.taskStageAiResult .tabHeader {
  display: inline-block;
  border-radius: 20px;
  background-color: rgba(34, 198, 251, 0.1);
  border: 2px rgba(34, 198, 251, 1) solid;
}

.taskStageAiResult .tabHeader .tab {
  cursor: pointer;
  font-weight: bold;
  padding: 4px 20px;
  line-height: 22px;
  border-radius: 15px;
  margin: 2px;
  display: inline-block;
  transition: all 0.3s;
}

.taskStageAiResult .tabHeader .tab:hover {
  background-color: rgba(34, 198, 251, 0.4);
}

.taskStageAiResult .tabHeader .tab.active {
  color: #06174c;
  background-color: #22c6fb;
}

.taskAiResultContent {
  margin: auto;
  max-width: 1240px;
}

.jsAiResultTabContent {
  display: none;
}

.jsAiResultTabContent.active {
  display: block;
}

.videoCanvas {
  position: relative;
}

.videoCanvas.resetClass {
  margin: auto !important;
  position: relative !important;
  z-index: 0 !important;
	max-height: calc(100vh - 430px);
}

.resultTabContentVideo #framelist {
  display: block !important;
  height: 100%;
  min-width: auto;
}

.resultTabContentVideo .framebase {
  width: 20px;
  height: 20px;
  z-index: 4;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  line-height: 20px;
  border-radius: 4px;
  right: 6px;
  bottom: 6px;
  left: auto;
  top: auto;
}

.framewrapper.resetClass {
  display: block;
}

.videoCanvas .sprite2.active {
  box-shadow: 0px 0px 0px 2px rgba(34, 198, 251, 1);
}

.videoIndex {
  overflow: hidden;
  max-width: 800px;
  min-height: 70px;
  margin: 0 auto 12px auto;
  display: flex;
  justify-content: center;
	flex-wrap: wrap;
}

.videoIndex .frameitem {
  width: 124px;
  transition: all 0.3s;
  border: none;
  margin: 4px;
}
.videoIndex .frameitem:hover {
  border: none;
  box-shadow: 0px 0px 0px 4px rgba(34, 198, 251, 0.4);
}
.videoIndex .frameitem.selected {
  border: none;
  box-shadow: 0px 0px 0px 4px rgba(34, 198, 251, 1);
}

/* .videoIndex .frameitem:hover .framestage, */
.videoIndex .frameitem.selected .framestage {
  box-shadow: 0px 0px 0px 2px rgba(11, 49, 88, 1);
}

.videoIndex .num {
  width: 200px;
  height: 100px;
  display: inline-block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-sizing: border-box;
  cursor: pointer;
}

.videoIndex .num.active {
  border: 2px red solid;
}

.switchCharacter {
  position: absolute;
  top: 0;
  right: -100%;
  height: calc(100% - 50px);
  background: rgba(16, 55, 100, 0.8);
  max-width: 300px;
  transition: all 0.3s;
  z-index: 9;
}
.switchCharacter .btnToggle {
  display: none;
}

.switchCharacter.expand {
  right: 0;
}
.switchCharacter.expand .btnToggle {
  display: block;
}
.switchCharacter #reslist {
  height: 100%;
  display: block;
}
.switchCharacter .resentry {
  width: 50%;
  float: left;
  height: 180px;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
  margin: 0;
  transition: all 0.3s;
}
.switchCharacter .resentry img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.switchCharacter .resentry:hover {
  background-color: rgba(34, 198, 251, 0.4);
}

.switchCharacter .btnToggle {
  position: absolute;
  width: 40px;
  height: 60px;
  right: 100%;
  display: block;
  top: 30%;
  border-radius: 20px 0 0 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  background: rgba(9, 51, 89, 0.87) url("../assets/iconMenuClose.svg") no-repeat
    center/24px;
  background-color: rgba(9, 143, 204, 0.9);
  border: 1px #64daf1 solid;
  display: none;
}

.switchCharacter.expand .btnToggle {
  display: block;
}

.formItem {
  position: relative;
  display: flex;
  margin-bottom: 12px;
}
.formItem.txt {
  margin-bottom: 0;
}
.formItem .label {
  flex: 0 1 120px;
  min-height: 36px;
  line-height: 24px;
  padding: 6px 10px 6px 0;
  text-align: right;
  box-sizing: border-box;
  font-weight: 500;
  white-space: nowrap;
}
.formItem .label label {
  margin: 0;
}
.formItem .field {
  flex: 1;
  position: relative;
}

.formItem.txt .field {
  line-height: 24px;
  padding: 6px 10px;
}
.formItem .field textarea,
.formItem .field input[type="text"] {
  width: 100%;
  color: #fff;
  /* height: 36px; */
  line-height: 24px;
  padding: 6px 10px;
  border-radius: 8px;

  box-sizing: border-box;
  background: rgba(20, 67, 121, 0.3);

  border: 1px solid rgba(122, 246, 250, 0.6);
  border-radius: 8px;
  transition: all 0.3s;
}
.formItem .field textarea {
}

.formItem .field textarea:hover,
.formItem .field textarea:focus,
.formItem .field input[type="text"]:hover,
.formItem .field input[type="text"]:focus {
  border: 1px solid rgba(122, 246, 250, 0.6);
  border-color: #7af6fa;
  box-shadow: 0 0 4px rgba(122, 246, 250, 0.4);
  background: rgba(20, 67, 121, 0.7);
}

.formItem input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.formItem input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.formItem input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.rowPromptAiRecommend .ui-checkboxradio-icon,
.rowPromptAiRecommend .ui-checkboxradio-icon {
  display: none;
}

.rowPromptAiRecommend .ui-checkboxradio-label {
  height: 36px;
  line-height: 22px;
  padding: 6px 10px;
  min-width: 80px;
  margin-bottom: 4px;
  box-sizing: border-box;
  border-radius: 8px;
  background-color: rgba(34, 198, 251, 0.2);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  border: 1px transparent solid;
  transition: all 0.3s;
  box-shadow: none !important;
}
.rowPromptAiRecommend .ui-checkboxradio-label:hover {
  color: #7af6fa;
  background: rgba(34, 198, 251, 0.3);
}
.rowPromptAiRecommend .ui-checkboxradio-checked,
.rowPromptAiRecommend .ui-checkboxradio-checked:active {
  color: #7af6fa;
  border: 1px #7af6fa solid;
  background: rgba(34, 198, 251, 0.3);
}
.rowPromptAiRecommend .ui-checkboxradio-checked:hover {
  border-color: #7af6fa;
  box-shadow: 0 0 4px rgba(122, 246, 250, 0.4) !important;
}

.questList {
  /* padding: 0 20px; */
}
.questCategory {
  margin-bottom: 20px;
}
.questList .title {
  padding-left: 120px;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
}
.questItem {
  margin-bottom: 16px;
}

.questItem .formItem {
  margin-bottom: 6px;
}

.questItem .formItem .label {
  font-weight: normal;
  color: rgba(208, 229, 247, 0.8);
  font-size: 12px;
}
.questItem .formItem.formItemHeader .label {
  font-weight: bold;
  color: #fff;
  font-size: 14px;
}

.questItem .formItem input[type="text"],
.questItem .formItem textarea {
  border: 1px solid transparent;
  color: rgba(208, 229, 247, 1);
  background-color: rgba(16, 55, 100, 0.4);
}
.questItem .formItem input.header[type="text"],
.questItem .formItem textarea {
  background-color: rgba(16, 55, 100, 0.8);
  color: #fff;
}

.questItem .formItem {
  margin-bottom: 6px;
}

.rowPromptCustom .formItem {
  margin-bottom: 0;
}
.rowPromptCustom .formItem input[type="checkbox"] {
  margin-right: 8px;
  height: 18px;
  width: 18px;
}
.rowPromptAiInit {
  padding: 16px 0 4px 0;
}
.rowPromptAiInit .btnBlockLarge {
  margin-top: 30px;
  font-size: 18px;
  padding: 12px 20px;
}

.rowPromptAiRecommend,
.rowPromptCustom {
  border-top: 1px rgba(100, 218, 214, 0.4) solid;
  padding: 16px 0 4px 0;
}

.btnToggleSync1 {
    display: inline;
}

.btnToggleSync2 {
    display: none;
}

.jsUploadSection.syncoff .btnToggleSync1 {
    display: none;
}
.jsUploadSection.syncoff .btnToggleSync2 {
    display: inline;
}