html {
  -ms-overflow-style: none;
  /* IE 10+ */
  scrollbar-width: none;
  /* firefox */
}

html::-webkit-scrollbar {
  display: none;
}

.container {
  height: 100vh;
  width: 100vw;
  min-width: 1000px;
  background-color: #000000;
  color: #ffffff;
}

.container header {
  display: flex;
  align-items: center;
  height: 60px;
  padding: 0 30px;
  justify-content: space-between;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
}

.container header .left {
  font-size: 18px;
  display: flex;
  line-height: 60px;
  align-items: center;
}

.container header .left .title {
  margin: 0 40px;
}

.container header .left .icon-fanhui {
  color: #fff;
}

.container header .left .chapter {
  color: #999999;
  font-size: 14px;
}

.container header .rigth {
  display: flex;
  font-size: 14px;
  align-items: center;
}

.container header .rigth .share {
  margin-left: 10px;
  transition: .3s;
  position: relative;
}

.container header .rigth .share > .iconfont {
  cursor: pointer;
  font-size: 40px;
}

.container header .rigth .share > .iconfont:hover {
  color: var(--main-color);
}

.container header .rigth .share:hover .share-box {
  visibility: visible;
}

.container header .rigth .share .share-box {
  position: absolute;
  visibility: hidden;
  transition: visibility 0.3s;
  right: 0;
  top: 60px;
  box-shadow: 0px 2px 5px rgba(51, 51, 51, 0.2);
  background-color: #fff;
  z-index: 100;
  border-radius: 4px;
  color: #757575;
  display: flex;
  padding: 20px;
}

.container header .rigth .share .share-box .share-left {
  width: 200px;
  padding-right: 10px;
  border-right: 1px solid #eee;
  justify-content: space-evenly;
}

.container header .rigth .share .share-box .share-left .btn {
  width: 100%;
  height: 30px;
  border-radius: 4px;
  margin: 0;
  margin-top: 10px;
}

.container header .rigth .share .share-box .share-right {
  width: 150px;
  text-align: center;
  padding-left: 10px;
}

.container header .rigth .share .share-box .share-right .qrcode {
  margin: 0 auto;
  width: 150px;
}

.container header .rigth .share .share-box .share-right img {
  width: 100%;
}

.container header .rigth .share .share-box .icon-box {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.container header .rigth .share .share-box .icon-box .icon-item {
  text-align: center;
  color: #757575;
  cursor: pointer;
  transition: .3s;
}

.container header .rigth .share .share-box .icon-box .icon-item div {
  width: 40px;
  height: 40px;
  margin: 0 auto;
}

.container header .rigth .share .share-box .icon-box .icon-item:hover {
  color: var(--main-color);
}

.container header .rigth .share .share-box .icon-box .icon-item p {
  margin-top: 10px;
}

.container header .rigth .share .share-box .icon-box .icon {
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container header .rigth .share .share-box .icon-box .icon.icon-QQ {
  font-size: 34px;
}

.container header .rigth .btn {
  width: 120px;
  height: 36px;
  border-radius: 18px;
  margin-left: 20px;
}

.container header .rigth .collect {
  background: #3a3a50;
}

.container header .rigth .collect .iconfont {
  color: #fff;
}

.container header .rigth .collect.isCollect .iconfont {
  color: #feb200;
}

.container header .rigth .download {
  color: #00caff;
  position: relative;
}

.container header .rigth .download:hover .pwd {
  display: block;
  z-index: 100;
}

.container header .rigth .download .pwd {
  position: absolute;
  left: 50%;
  top: 100%;
  background-color: #fff;
  transform: translateX(-50%);
  border-radius: 4px;
  padding: 10px;
  display: none;
  min-width: 100%;
  text-align: center;
}

.container header .rigth .download .iconfont {
  font-size: 20px;
  margin-left: 30px;
  margin-right: 10px;
}

.container .content {
  height: calc(100% - 60px);
  position: relative;
  overflow: hidden;
}

.iehint {
  position: fixed;
  z-index: 100;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #f00;
  font-size: 20px;
  font-weight: 600;
}

.content .player-warp {
  height: 100%;
  width: calc(100% - 500px);
  position: relative;
  transition: .5s;
}

.content .player-warp.isUnfold {
  width: 100%;
}

.content .player-warp .flow-img {
  position: absolute;
  left: 50%;
  top: 100px;
  transform: translateX(-50%);
  z-index: 100;
}

.content .player-warp #player {
  height: 100%;
}

.content .player-warp #player.page-full .pv-video-player {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 100;
}

.content .right {
  width: 500px;
  height: 100%;
  background-color: #1c1d30;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  transition: .5s;
  z-index: 1;
}

.content .right:hover .unfold {
  opacity: 1;
}

.content .right.isUnfold {
  transform: translateX(500px);
}

.content .right.isUnfold .unfold {
  opacity: 1;
}

.content .right.isUnfold .unfold i {
  transform: rotate(180deg);
}

.content .right .unfold {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 50px;
  left: -18px;
  background: #212237;
  opacity: 0;
  transition: .3s;
  z-index: 5;
}

.content .right .unfold i {
  display: flex;
  height: 100%;
  transition: .5s;
  cursor: pointer;
}

.content .right .r-head {
  height: 80px;
  display: flex;
  justify-content: space-between;
}

.content .right .control .btn {
  width: 80px;
  height: 30px;
  border-radius: 15px;
  font-size: 14px;
}

.content .right .control .btn:first-child {
  margin-right: 20px;
}

.content .right .tab {
  display: flex;
}

.content .right .tab .item {
  padding-bottom: 8px;
  color: #cccccc;
}

.content .right .tab .item:first-child {
  margin-right: 30px;
}

.content .right .tab .item.active {
  color: #00a8d4;
  border-bottom: 2px solid #00a8d4;
}

.tab-content {
  height: calc(100% - 230px - 80px);
  overflow-y: scroll;
  scrollbar-color: var(--main-color) transparent;
  scrollbar-width: thin;
}

.tab-content::-webkit-scrollbar {
  width: 2px;
  border-radius: 1px;
}

.tab-content::-webkit-scrollbar-thumb {
  background: var(--main-color);
  border-radius: 1px;
}

.tab-content:nth-child(1) {
  display: none;
}

.scroll-blue-thin {
  scrollbar-color: var(--main-color) transparent;
  scrollbar-width: thin;
}

.scroll-blue-thin::-webkit-scrollbar {
  width: 2px;
  border-radius: 1px;
}

.scroll-blue-thin::-webkit-scrollbar-thumb {
  background: var(--main-color);
  border-radius: 1px;
}

.directory-wrp .list-item {
  line-height: 46px;
  height: 46px;
  display: flex;
  transition: 0.3s;
  color: #787991;
}

.directory-wrp .list-item .icon-li {
  width: 40px;
  text-align: center;
}

.directory-wrp .list-item .icon-li i {
  font-size: 12px;
  opacity: 0;
}

.directory-wrp .list-item .icon-li i.icon-suo1 {
  display: none;
}

.directory-wrp .list-item .icon-li .icon-bofang1 {
  font-size: 16px;
}

.directory-wrp .list-item .text {
  width: calc(100% - 80px - 60px);
}

.directory-wrp .list-item .time {
  width: 60px;
  text-align: center;
}

.directory-wrp .list-item:hover {
  background: #484850;
  color: #fff;
}

.directory-wrp .list-item:hover .icon-li i {
  opacity: 1;
}

.directory-wrp .list-item.isFree.isFree {
  color: #787991;
}

.directory-wrp .list-item.isFree.isFree .icon-bofang2 {
  display: none;
}

.directory-wrp .list-item.isFree.isFree .icon-suo1 {
  display: block;
  color: #787991;
  opacity: 1;
  font-size: 20px;
}

.directory-wrp .list-item.isFree.isFree .icon-bofang1 {
  opacity: 0;
}

.directory-wrp .list-item.active {
  background: #484850;
  color: #fff;
}

.directory-wrp .list-item.active .icon-li i {
  opacity: 1;
}

.bullet {
  background: #0d0d1c;
  margin: 0 10px;
  margin-top: 100px;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}

.bullet .inp-box {
  display: flex;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.bullet .inp-box form {
  width: calc(100% - 100px);
}

.bullet .inp-box input {
  width: 100%;
  height: 40px;
  padding-left: 5px;
  border: none;
  border-radius: 0;
}

.bullet .inp-box .btn-purple {
  width: 100px;
  height: 40px;
  border-radius: 0;
}

.comment-box {
  height: 200px;
  background: #0d0d1c;
  margin: 0 10px;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
}

.comment-box .star-wrap,
.comment-box .text-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.comment-box .star-wrap .star,
.comment-box .text-wrap .star {
  font-size: 14px;
  margin-right: 8px;
  cursor: pointer;
}

.comment-box .star-wrap .star.active,
.comment-box .text-wrap .star.active {
  color: #feb200;
}

.comment-box .star-wrap .btn,
.comment-box .text-wrap .btn {
  width: 46px;
  margin-right: 10px;
  border: 1px solid #ffffff;
  height: 20px;
  font-size: 12px;
}

.comment-box .star-wrap .btn.active,
.comment-box .text-wrap .btn.active {
  border: 1px solid var(--main-color);
  background: var(--main-color);
}

.comment-box .inp-box {
  height: 40px;
  border-radius: 4px;
  display: flex;
  padding-top: 15px;
}

.comment-box .inp-box form {
  width: calc(100% - 40px);
}

.comment-box .inp-box input {
  width: 100%;
  height: 40px;
  border: none;
  padding-left: 5px;
  border-radius: 0;
}

.comment-box .inp-box .btn {
  border-radius: 0;
  width: 80px;
  height: 40px;
}

.comment-box .desc {
  font-size: 14px;
}

.comment-wrap.tab-content .comment-item {
  margin: 0 30px;
  padding: 20px 0;
  border-bottom: 1px solid #3a3a50;
}

.comment-wrap.tab-content .comment-item .main-comment {
  display: flex;
}

.comment-wrap.tab-content .comment-item .main-comment .avatar {
  width: 60px;
  height: 60px;
}

.comment-wrap.tab-content .comment-item .main-comment .avatar img {
  border-radius: 50%;
}

.comment-wrap.tab-content .comment-item .main-comment .r-content {
  width: calc(100% - 60px);
  padding-left: 20px;
}

.comment-wrap.tab-content .comment-item .main-comment .r-content .c-top {
  display: flex;
  align-items: center;
}

.comment-wrap.tab-content .comment-item .main-comment .r-content .nick {
  max-width: 120px;
  margin-right: 16px;
  font-size: 16px;
  color: #ccc;
}

.comment-wrap.tab-content .comment-item .main-comment .r-content .star-box {
  display: flex;
}

.comment-wrap.tab-content .comment-item .main-comment .r-content .star-box i {
  font-size: 12px;
  margin-right: 8px;
}

.comment-wrap.tab-content .comment-item .main-comment .r-content .star-box i.active {
  color: #ffb300;
}

.comment-wrap.tab-content .comment-item .main-comment .r-content .state {
  width: 46px;
  height: 20px;
  border-radius: 4px;
  background-color: #1fd586;
  text-align: center;
  line-height: 20px;
  margin-left: 12px;
}

.comment-wrap.tab-content .comment-item .main-comment .r-content .c-center {
  margin-top: 20px;
  line-height: 20px;
  color: #ccc;
}

.comment-wrap.tab-content .comment-item .main-comment .r-content .c-bottom {
  font-size: 12px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  color: #787991;
}

.comment-wrap.tab-content .reply-wrap {
  padding: 14px 16px;
  display: flex;
  background: #3a3a50;
  margin-top: 10px;
}

.comment-wrap.tab-content .reply-wrap .avatar {
  width: 30px;
  height: 30px;
}

.comment-wrap.tab-content .reply-wrap .r-content {
  width: calc(100% - 30px);
  padding-left: 10px;
  font-size: 12px;
  color: #787991;
}

.comment-wrap.tab-content .reply-wrap .r-content .top {
  line-height: 20px;
}

.comment-wrap.tab-content .reply-wrap .r-content .nick {
  margin-right: 8px;
  color: #7e82cb;
}

.comment-wrap.tab-content .reply-wrap .r-content .nick:last-child {
  margin-left: 8px;
}

.comment-wrap.tab-content .reply-wrap .reply-box {
  margin-top: 16px;
}

.comment-wrap.tab-content .reply-wrap .reply-box .time {
  margin-right: 20px;
}

.comment-wrap.tab-content .reply-wrap .reply-inp-wrap {
  background: #1c1d30;
}

.comment-wrap.tab-content .reply-inp-wrap {
  background: #3a3a50;
  padding: 10px;
  margin-top: 10px;
  border-radius: 4px;
}

.comment-wrap.tab-content .reply-inp-wrap input {
  height: 40px;
  border-radius: 2px;
  border: 1px solid #cdcdcd;
  width: 100%;
  padding-left: 5px;
  background: #eee;
}

.comment-wrap.tab-content .reply-inp-wrap .btn-box {
  margin-top: 10px;
  display: flex;
  flex-direction: row-reverse;
}

.comment-wrap.tab-content .reply-inp-wrap .btn-box .btn {
  height: 30px;
  width: 60px;
  font-size: 12px;
}

.hint-box {
  text-align: center;
  padding: 100px;
}

.hint-box p {
  color: #787991;
  font-size: 20px;
}

.hint-box .pic img {
  width: 300px;
}

.hint-box .btn-box {
  padding-top: 40px;
}

.hint-box .btn {
  width: 120px;
  height: 30px;
  margin: 0 10px;
}

[v-cloak] {
  display: none;
}

.not-commit {
  text-align: center;
  padding-top: 30px;
  color: #787991;
}

.not-commit img {
  width: 100px;
  margin-bottom: 30px;
}

.tost-bg {
  z-index: 101;
}

.tost-bg .bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.tost-bg .win-box {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  width: 437px;
  height: 589px;
  background: url("//photo.tuituisoft.com/picgo/20210421160910.png") no-repeat 0 0;
  background-size: 100% 100%;
  padding-top: 395px;
  text-align: center;
}

.tost-bg .win-box h3 {
  color: #ff3c3d;
  font-size: 30px;
}

.tost-bg .win-box p {
  padding-top: 18px;
  padding-bottom: 26px;
  font-size: 20px;
  color: #666666;
}

.tost-bg .win-box .btn {
  margin: 0 66px;
  background: linear-gradient(270deg, #ffe156 0%, #ff3a39 100%);
  width: 304px;
  height: 54px;
  color: #ffffff;
  font-size: 22px;
  border-radius: 27px;
}

.tost-bg .corese-test {
  width: 700px;
  border-radius: 8px;
  background-color: #fff;
  color: #333;
}

.tost-bg .corese-test .pro-bar {
  height: 2px;
  background-color: var(--main-color);
  transition: 0.3s;
}

.tost-bg .corese-test h3 {
  text-align: center;
  padding: 12px 0;
  background: #ddd;
  border-radius: 8px 8px 0 0;
}

.tost-bg .corese-test .analysis {
  padding: 10px;
  border-top: 1px dashed #eee;
  line-height: 30px;
}

.tost-bg .corese-test .analysis .letter {
  color: orange;
  font-size: 20px;
  font-weight: 600;
}

.tost-bg .corese-test .analysis .answer_parse {
  font-weight: 600;
  color: #000;
}

.tost-bg .corese-test .quest-box {
  max-height: 50vh;
  overflow-y: scroll;
}

.tost-bg .corese-test .quest-box .question-item {
  padding: 0 30px;
  padding-top: 30px;
}

.tost-bg .corese-test .quest-box .question-item .title {
  font-size: 16px;
  padding-bottom: 24px;
}

.tost-bg .corese-test .quest-box .question-item .option-item {
  padding-bottom: 16px;
  cursor: pointer;
}

.tost-bg .corese-test .quest-box .question-item label {
  margin-left: 10px;
}

.tost-bg .corese-test .quest-box .question-item input[type='radio']:checked + label {
  color: var(--main-color);
}

.tost-bg .corese-test .btn-box {
  padding: 22px;
  display: flex;
  justify-content: center;
  border-top: 1px solid #eee;
}

.tost-bg .corese-test .btn-box .btn {
  width: 110px;
  height: 34px;
  margin: 0 25px;
  border-radius: 17px;
}

.tost-bg .corese-test .swiper-button-next,
.tost-bg .corese-test .swiper-button-prev {
  transform: scale(0.5);
}

.tost-bg .corese-test .swiper-button-next.swiper-button-next,
.tost-bg .corese-test .swiper-button-prev.swiper-button-next {
  right: 0;
}

.tost-bg .corese-test .swiper-button-next.swiper-button-prev,
.tost-bg .corese-test .swiper-button-prev.swiper-button-prev {
  left: 0;
}

.res-box .res-q-l {
  display: flex;
  text-align: center;
  justify-content: center;
  padding: 10px;
}

.res-box .res-q-l .flex-center {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 10px;
  background: #f00;
  color: #fff;
}

.res-box .res-q-l .flex-center.true {
  background: green;
}

.res-box .accuracy {
  text-align: center;
  font-size: 20px;
  padding: 10px;
}

.res-box .accuracy span {
  color: #f00;
}
