﻿.flexContainer {
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
}
.flexContainer .noticeContainer {
  flex: 1 1 auto;
}
.header {
  height: 45px;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(244, 244, 244, 1) 100%
  );
  border-radius: 5px;
  border: 1px solid rgba(227, 227, 227, 1);
  line-height: 45px;
}
.pt90 {
  padding-top: 90px;
}
.pb90 {
  padding-bottom: 90px;
}
.content {
  background: #fefefe;
  padding: 25px 37px;
}
.tables {
  width: 100%;
  table-layout:fixed;
  word-break:break-all;
}
.table_header {
  height: 40px;
  background: #3fafba;
  line-height: 40px;
}
.tables .one {
  width: 8.33333%;
}
.tables .two, .tables .four {
  width: 25%;
}
.tables .three {
  width: 12.66667%;
}
.tables .six, .tables .five {
  width: 12.5%;
}
.tableHeader {
  color: #fff;
  text-align: center;
  font-size: 14px;
}
.tableHeader.fa {
  color: #3fafba;
}
.tables tbody tr td {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  position: relative;
  top: 0;
  padding: 10px;
}
.tables tbody tr td::after {
  content: "";
  width: 1px;
  height: 75%;
  background: hsla(0,0%,59.2%,.3);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.tables tbody tr td:last-child::after {
  display: none;
}
.tables tbody tr:nth-child(odd) {
  background: #efefef;
}
.c-3fa {
  color: #3fafba;
}

.iframe{
  height: 600px;
  overflow-y: auto;
}
.iframe_header{
  padding: 20px 0px;
}
.iframe_title{
  line-height: 24px;
  font-size: 18px;
  color: #303133;
}
.close{
  color: #909399;
  position: absolute;
  top: 20px;
  right: 30px;
  padding: 0;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 16px;
  color: #909399;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.close .img{
  width: 100%;
  height: 100%;
}
.iframe .iframe_content{
  display: inline-block;
  width: 1000px;
  padding-bottom: 10px;
  vertical-align: middle;
  background-color: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #EBEEF5;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  text-align: left;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: fixed;
  z-index:3001;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
  padding:0 30px;
}
.iframe iframe{
  border:1px solid #666;
}
.modal{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: #000000;
  z-index:3000;
}
.meetHandle {
  top: 260px!important;
}


@media screen and (max-width: 768px) {
  .content{
    padding: 0 15px !important;
  }
}