﻿[v-cloak] {
  display: block;
}

/* 开启flex布局 */
.ub {
  display: flex;
  position: relative;
  flex-shrink: 0;
}

/* ***************容器*************** */
/* 改变轴向：纵轴、横轴、轴反转 */
.ub-ver {
  flex-direction: column;
}

.ub-h {
  flex-direction: row;
}

.ub-ver-rev {
  flex-direction: column-reverse;
}

.ub-h-rev {
  flex-direction: row-reverse;
}

/* 项目换行：换行、不换行、换行反转 */
.ub-wrap {
  flex-wrap: wrap;
}

.ub-nowrap {
  flex-wrap: nowrap;
}

.ub-wrap-rev {
  flex-wrap: wrap-reverse;
}

/* 项目主轴对齐方式：居中、左对齐、右对齐、贴边、环绕 */
.ub-pc {
  justify-content: center;
}

.ub-ps {
  justify-content: flex-start;
}

.ub-pe {
  justify-content: flex-end;
}

.ub-pb {
  justify-content: space-between;
}

.ub-pa {
  justify-content: space-around;
}

/* 项目在交叉轴上如何对齐 */
.ub-ac {
  align-items: center;
}

.ub-as {
  align-items: flex-start;
}

.ub-ae {
  align-items: flex-end;
}

/* ***************项目*************** */
/* 子元素 项目缩小比例：0不缩小，宽度可控、1缩小，宽度不可控 */
.ub-shrink0 {
  flex-shrink: 0;
}

.ub-shrink1 {
  flex-shrink: 1;
}

/* 项目的放大比例 */
.ub-grow0 {
  flex-grow: 0;
}

.ub-f1 {
  flex: 1;
}

/* ¹È¸è */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

/* »ðºü */
input {
  -moz-appearance: textfield;
}

#play .underway {
  background-color: rgb(203, 203, 203) !important;
}

html,
body {
  width: 100%;
  height: 100vh;
  /* background: #191919; */
}


#play {
  width: 100%;
  /* height: 100%; */
  min-width: 1200px;
  padding-top: 50px;
  padding-bottom: 50px;
  box-sizing: border-box;
  background: #191919;
}

.artic {
  width: 1200px;
  margin: 0 auto;
  /* background-color: #fff; */
}

.artic .left {
  width: 920px;
}

.artic .right {
  width: 280px;
}

/* ¹«¹²Ä£¿éÑùÊ½1 */
.growthPlan {
  width: 280px;
  height: 440px;
  background-color: #242424;
  margin: 0 auto;
}

.growthPlan .header {
  width: 100%;
  height: 90px;
  background: #FF403E;
  font-family: PingFang;
  font-weight: bold;
  color: #FFFFFF;
  font-size: 16px;
  margin-bottom: 21px;
}

.growthPlan .header div:nth-of-type(1) {
  font-size: 32px;
  margin-top: 10px;
  margin-bottom: 11px;
}

.growthPlan .growthPlan-plan {
  width: 180px;
  height: 22px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 18px;
  color: #FFFFFF;
  z-index: 1;
  position: relative;
}

.growthPlan .growthPlan-plan::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 10px;
  background-image: linear-gradient(90deg,
      #242424 0%,
      rgba(51, 51, 51, 0.4) 20%,
      #4c4c4c 50%,
      rgba(51, 51, 51, 0.4) 80%,
      #242424 100%);
  border-radius: 5px;
  z-index: -1;

}

.recommendLecture {
  width: 280px;
  background: #2D2D2D;
  margin: 0 auto;
}

.recommendLecture .header {
  width: 100%;
  height: 40px;
  background: #2D2D2D;
  font-size: 18px;
  color: #e6e6e6;
  padding-left: 14px;
  padding-top: 15px;
  box-sizing: border-box;
  align-items: baseline;
}

.recommendLecture .header span {
  font-size: 12px;
  color: #666666;
  margin-left: 10px;
}

.recommendLecture ul {
  flex-wrap: wrap;
  padding: 0 15px;
  margin-top: 15px;
}

.recommendLecture li {
  width: 120px;
  height: 180px;
  margin-bottom: 10px;
}

.recommendLecture .recommendItem {
  width: 100%;
  box-sizing: border-box;
  border-bottom: 1px dotted #333333;
  position: relative;
}

.recommendLecture a {
  color: #ffffff;
}

.recommendLecture .recommendItem::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .35);
}

.recommendLecture .recommendItem .video {
  width: 100%;
  height: 180px;
}

.recommendLecture .recommendItem video {
  width: 100%;
  height: 180px;
}

.recommendLecture .recommendItem img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 30px;
  z-index: 3;
}

.recommendLecture .recommendItem p {
  width: 100%;
  height: 44px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8);
  padding: 0 5px;
}

.recommendLecture .recommendItem p span {
  font-size: 12px;
  text-align: center;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  /* 几行后显示不开省略 */
  -webkit-line-clamp: 2;
  line-height: 15px;
  z-index: 3;
}

/* ¹«¹²Ä£¿éÑùÊ½3 */
.forwardForm {
  width: 100%;
  height: 330px;
  background: #FFFFFF;
  padding: 28px 25px;
  box-sizing: border-box;
  margin-bottom: 50px;
}

.forwardForm .header {
  width: 860px;
  height: 40px;
  border-bottom: 1px solid #F2F2F2;
}

.forwardForm .header div:nth-of-type(1) {
  font-size: 24px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #5C2718;
  margin-bottom: 14px;
}

.forwardForm .header div:nth-of-type(2) {
  font-size: 16px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #666666;
}

.forwardForm .article {
  width: 100%;
  height: 160px;
  margin: 20px auto;
}

.forwardForm .article .require {
  width: 78px;
  height: 40px;
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #666666;
  margin-right: 20px;
}

.forwardForm .article .input {
  width: 180px;
  height: 40px;
  background: #FFFFFF;
  border: 1px solid #E6E6E6;
}

.inputCode {
  width: 280px !important;
}


.forwardForm .article .input select {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  padding: 6px 11px;
  padding-right: 5%;
  box-sizing: border-box;
  color: #B3B3B3;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: url("../../image/collegeExam/arrow.png") no-repeat;
  background-size: 15px 15px;
  background-position-x: 95%;
  background-position-y: center;
  font-size: 14px;
  font-weight: 400;
}

.forwardForm .article .input input {
  width: 100%;
  height: 100%;
  padding: 0rem 0.4rem;
  box-sizing: border-box;
  border: 0;
  outline: 0;
  padding: 0rem 0.4rem;
}

.forwardForm ::-webkit-input-placeholder {
  color: #B3B3B3;
  font-size: 14px;
  font-weight: 400;
}

.forwardForm :-moz-placeholder {
  color: #B3B3B3;
  font-size: 14px;
  font-weight: 400;
  opacity: 1;
}

.forwardForm ::-moz-placeholder {
  color: #B3B3B3;
  font-size: 14px;
  font-weight: 400;
  opacity: 1;
}

.forwardForm :-ms-input-placeholder {
  color: #B3B3B3;
  font-size: 14px;
  font-weight: 400;
  opacity: 1;
}

.forwardForm .input .code {

  border: 1px solid #E6E6E6 !important;
  border-right: none !important;
}

.forwardForm .input .code:nth-of-type(1) {
  width: 120px !important;
  margin-right: 5px;
  border-right: 1px solid #E6E6E6 !important;
}

.forwardForm .input .code:nth-of-type(2) {
  width: 60px !important;
}

.forwardForm .input .authCode {
  width: 100px;
  height: 100%;
  background: #FF403E;
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #FFFFFF;
  cursor: pointer;
}

.forwardForm .inputCode {
  border: none !important;
}

.forwardForm .footer {
  width: 150px;
  height: 45px;
  margin: 0 auto;
  background: #FF403E;
  border-radius: 22px;
  font-size: 16px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #FFFFFF;
  cursor: pointer;
}

.artic .left {
  position: relative;
}

.artic .left .video {
  width: 100%;
  height: 770px;
  position: relative;
  align-items: flex-start;
  padding-bottom: 30px;
}

.artic .left .video .video_link {
  width: 418px;
  height: 740px;
  background: #000000;
}

.artic .left .video .playIcon {
  width: 64px;
  height: 64px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.artic .left .video .playIcon img {
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.artic .left .video-title {
  width: 100%;
  min-height: 127px;
  background: #202020;
}

.artic .left .video-title .title-right {
  width: 210px;
  height: 140px;
}

.artic .left .video-title .title-right .consulting {
  width: 150px;
  height: 45px;
  background: #FFAB02;
  border-radius: 22px;
  font-size: 16px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #000000;
  cursor: pointer;
}

.artic .left .video-title .title-left {
  padding-left: 25px;
  box-sizing: border-box;
}

.artic .left .video_num {
  width: 660px;
  font-size: 16px !important;
  /*width: 200px;*/
  margin-bottom: 0 !important;
  margin-left: 0;
  margin-top: 10px;
  flex-wrap: wrap;

}

.artic .left .video_num b {
  width: 90px;
  background-color: none;
  border: 3px solid #ff403e;
  line-height: 20px;
  cursor: pointer;
  color: #ff403e;
  margin-bottom: 5px;
  margin-right: 5px;
}

.artic .left .video_num b:nth-child(7n) {
  margin-right: 0px;
}

.artic .left .video_num b:hover {
  background-color: #ff403e;
  color: #ffffff;
}

.artic .left .video_num b.active {
  background-color: #ff403e;
  color: #ffffff;
}

.artic .left .video-title .title-left div:nth-of-type(1) {
  font-size: 30px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #DDDDDD;
  margin-bottom: 0;
  width: 696px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video-title .title-left .label_box {
  display: block;
  margin-top: 10px;
}

.video-title .title-left .label,
.video-title .title-left .detail_name {
  display: inline-block;
  width: auto;
  text-align: center;
  font-size: 16px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #999999;
}

.video-title .title-left .detail_name {
  margin: 10px 0;
}

.video-title .title-left .label {
  margin-right: 15px;
  font-size: 14px;
}

.video-title .title-left .label a {
  color: #999999;
}

.video-title .title-left .label a:hover {
  color: #ffb93f;
}

section.btm_form {
  width: 100%;
}

section.btm_form .content {
  background-color: #ffffff;
  border-radius: 5px;
  padding: 20px 25px 20px 29px;
}

section.btm_form form {
  flex-wrap: wrap;
  border-bottom: 1px solid #f2f2f2;
  margin-bottom: 20px;
}

section.btm_form .item {
  margin-bottom: 20px;
  margin-right: 17px;
}

section.btm_form .item:nth-child(3),
section.btm_form .item:nth-child(6) {
  margin-right: 0;
}

section.btm_form label {
  width: auto;
  flex-shrink: 0;
  font-size: 14px;
  color: #666666;
  margin-right: 10px;
  text-align: right;
}

section.btm_form input,
section.btm_form select {
  width: 200px;
  height: 40px;
  background-color: #ffffff;
  border-radius: 3px;
  font-size: 14px;
  line-height: 40px;
  color: #b3b3b3;
  padding-left: 15px;
  border: solid 1px #cccccc;
}

section.btm_form .item.question {
  width: 100%;
}

section.btm_form .item.question label {
  width: 100%;
  margin-right: 35px;
  flex-shrink: 1;
  text-align: left;
}

section.btm_form .item.question input {
  width: 550px;
  height: 40px;
  background-color: #ffffff;
  border-radius: 3px;
  flex-shrink: 0;
  border: solid 1px #cccccc;
}

section.btm_form select {
  background: #ffffff url(../img/form_arrow.png) no-repeat;
  background-position: 225px center;
}

section.btm_form input::placeholder {
  color: #b3b3b3;
}

section.btm_form input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #f2f2f2 inset !important;
}

section.btm_form .btn {
  width: 200px;
  height: 40px;
  background-color: #ff403e;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 40px;
  color: #ffffff;
  margin-bottom: 20px;
  margin-left: 87px;
}

section.btm_form select {
  background-position: 157px center;
}

section.btm_form .remark p {
  color: #000000;
  font-size: 14px;
  color: #666666;
  margin-bottom: 5px;
}

section.btm_form .remark p:nth-child(1) {
  color: #000000;
  font-size: 14px;
  margin-bottom: 10px;
}

section.btm_form .remark p .leyu {
  color: #ff403e;
  cursor: pointer;
  text-decoration: underline;
}

.left .share {
  position: absolute;
  top: 95px;
  left: 0;
  flex-direction: column;
}

.left .share .title {
  width: 89px;
  font-size: 16px;
  color: #fcfcfc;
  margin-bottom: 13px;
}

.left .share .share_btn>div {
  margin-bottom: 16px;
  cursor: pointer;
  position: relative;
}
.left .share .share_btn>div:nth-child(1){
  cursor: initial;
}
.left .share .share_btn .qrcode{
  width: 224px;
    height: 287px;
  background-color: #2d2d2d;
  position: absolute;
  top: 0;
  left: 55px;
  padding: 10px;
  font-size: 12px;
  color: #CCCCCC;
  display: none;
}
.left .share .share_btn .qrcode p:nth-child(1){
  font-size: 14px;
}
.left .share .share_btn .qrcode .ewm{
  width: 190px;
  height: 190px;
  margin:10px auto;
  background-color: #ffffff;
  display: flex;
}
.left .share .share_btn .qrcode .ewm img{
  width: 180px;
  height: 180px;
}
.left .share .share_btn>div.wechat:hover .qrcode{
  display: block;
}