body {
  background-color: #F8FAFE;
  --fontColor1: #333333;
  --fontColor2: #999999;
  --fontColor3: #FFFFFF;
  --fontColor4: #666666;
  --fontColor5: #0099FF;
  --copyIcon: url(../images/copy-icon.png);
  --addClassIcon: url(../images/add-round.png);
  --complateIcon: url(../images/complate-round.png);
  --statusBgColor1: #FF9500;
  --statusBgColor2: #1979FF;
  --statusBgColor3: #C4C7CC;
}
* {
  box-sizing: border-box;
  cursor: default;
}
.panel {
  width: var(--panelWidth);
  background: #FFFFFF;
  box-shadow: 0px 4px 14px #E6ECF5;
  border-radius: 6px;
  padding-top: 40px;
  position: relative;
}
.panel .qrcode-enter {
  width: 46px;
  height: 46px;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}
.left-top-pos{
  position: absolute;
  top: 0;
  left: 0;
}
.panel .reserve_panel_left_head{
  background: #00CC77;
  border-radius: 6px 2px 6px 0px;
  font-size: 11px;
  line-height: 14px;
  color: #fff;
  padding: 4px 8px;
}
.panel .class-name {
  color: var(--fontColor1);
  font-size: 22px;
  line-height: 30.8px;
  font-weight: 500;
  text-align: center;
  padding: 0 40px;
}
.panel .class-code {
  color: var(--fontColor1);
  font-size: 18px;
  line-height: 25.2px;
  font-weight: 500;
  text-align: center;
  margin-top: 10px;
  pointer-events: none;
}
.panel .class-code::after{
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--copyIcon) center no-repeat;
  background-size: 100% 100%;
  margin-left: 6px;
  cursor: pointer;
  pointer-events: auto;
}
.panel .class-url {
  color: var(--fontColor2);
  font-size: 12px;
  line-height: 16.8px;
  font-weight: 400;
  text-align: center;
  margin-top: 10px;
  pointer-events: none;
}
.panel .class-url::after{
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--copyIcon) center no-repeat;
  background-size: 100% 100%;
  margin-left: 6px;
  vertical-align: middle;
  cursor: pointer;
  pointer-events: auto;
}
.panel .state {
  margin-top: 33.5px;
  display: flex;
  justify-content: center;
  text-align: center;
}
.panel .state .moment {
  color: var(--fontColor1);
  font-size: 28px;
  font-weight: 500;
  line-height: 39.2px;
}
.panel .state .date {
  color: var(--fontColor1);
  font-size: 12px;
  font-weight: 500;
  line-height: 16.8px;
}
.panel .state .class-status-wrap {
}
.panel .state .class-status-wrap .duration {
  background-color: #F5F6F8;
  border-radius: 2px;
  padding: 2px 8px;
  margin: 10px 16px;
  position: relative;
}
.panel .state .class-status-wrap .duration::before,
.panel .state .class-status-wrap .duration::after
{
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background-color: #D9D9D9;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.panel .state .class-status-wrap .duration::before{
  left: -16px;
}
.panel .state .class-status-wrap .duration::after{
  right: -16px;
}
.panel .state .class-status-wrap .duration>span {
  color: var(--fontColor4);
  font-size: 11px;
  line-height: 15.4px;

}
.panel .state .class-status {
  width: max-content;
  border-radius: 3px;
  padding: 2px 4px;
  font-size: 10px;
  color: var(--fontColor3);
  font-weight: 500;
  line-height: 14px;
  background-color: var(--statusBgColor);
}
.panel .state .class-status.not-start {
  --statusBgColor: var(--statusBgColor1);
}
.panel .state .class-status.not-start::after {
  display: inline-block;
}

.panel .state .class-status.end {
  --statusBgColor: var(--statusBgColor3);
}
.panel .state .class-status.end::after {
  display: inline-block;
}

.panel .state .class-status.underway {
  --statusBgColor: var(--statusBgColor2);
}
.panel .state .class-status.underway::after {
  display: inline-block;
}
.panel .add-class {
  padding: 15px 0;
  text-align: center;
  border-top: 1px dashed #EBEBEB;
  font-size: 14px;
  line-height: 19.6px;
  vertical-align: middle;
  cursor: pointer;
}
.panel .add-class.on-add {
  color: var(--fontColor5);
}
.panel .add-class.on-add::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--addClassIcon) center no-repeat;
  background-size: 100% 100%;
  margin-left: 6px;
  vertical-align: middle;
}
.panel .add-class.on-add::after {
  display: inline-block;
}
.panel .add-class.already-add {
  color: var(--fontColor2);
}
.panel .add-class.already-add::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--complateIcon) center no-repeat;
  background-size: 100% 100%;
  margin-left: 6px;
  vertical-align: middle;
}
.panel .add-class.already-add::after {
  display: inline-block;
}
.enter-class-mobi,.enter-class-pc {
  display: none;
}

.dowloadPrompt {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #8A8B99;
}

.dowloadPrompt>span{
  color: #3A8BFF;
  cursor: pointer;
}
/* 手机 */
@media screen and (max-width:600px) {
  body {
    --panelWidth: 100%;
    padding: 15px;
  }
  .enter-class-mobi, .join_meet_mobi, .confirm_mobi{
    margin: auto;
    margin-top: 40px;
    display: block;
    width: calc(100% - 30px);
    padding: 9px 0;
    background: #0099FF;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    color: var(--fontColor3);
  }
  .panel .state {
  }
}
/* PC */
@media screen and (min-width:960px) {
  body {
    --panelWidth: 440px;
  }
  .panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .enter-class-pc {
    display: block;
    margin: auto;
    margin-top: 50px;
    padding: 11.5px 148px;
    background: #3A8BFF;
    font-size: 16px;
    color: var(--fontColor3);
    cursor: pointer;
  }
}

.openPrompt {
  width: 100%;
  top: 38px;
  left: 0;
  font-size: 15px;
  line-height: 21px;
  color: #7A8799;
  text-align: center;
  margin: 30px 0;
}

.openPrompt p {
  display: inline-block;
  vertical-align: top;
  position: relative;
}

.openPrompt .icon_arrow {
  display: block;
  width: 36px;
  right: -40px;
  position: absolute;
  top: -33px;
}