@font-face {
  font-family: 'gothicb';
  src: url('../fonts/gothic.ttf'), url('../fonts/gothicb.ttf');
  font-weight: normal;
  font-style: normal;
}

body {
  line-height: 1.5;
  font-family: 'gothicb';
}

/* Common */
.main-container {
  max-width: 1200px;
  padding: 0 20px;
  margin: auto;
}

.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main-title {
  padding: 16px 24px;
  font-size: 18px;
  font-weight: bold;
  background-color: #fff;
  color: #333;
}

.main-title::before {
  content: '';
  width: 4px;
  background-color: #12A0A5;
  height: 16px;
  margin-right: 10px;
  display: inline-block;
}

.main-title a {
  float: right;
  font-size: 14px;
  color: #4062FF;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 62px;
  padding: 16px;
  color: #808080;
  border-bottom: 1px solid #F2F6F9;
}

.header-logo {
  width: 168px;
}

/* Nav */
.nav-container {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
}

.nav-container:first-child {
  border-bottom: 1px solid #fff;
}

.nav-container .first-nav {
  position: relative;
  display: inline-block;
  padding: 0 10px;
}

.nav-container .first-nav:hover .second-nav {
  display: block;
}

.nav-container .first-nav-link {
  display: inline-block;
  padding: 10px 0;
  cursor: pointer;
  border-bottom: 4px solid #fff;
  color: inherit;
}

.nav-container .first-nav-link:hover {
  color: #006DE3;
  border-color: #006DE3;
  transition: all 0.5s;
}

.nav-container .second-nav {
  position: absolute;
  display: none;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  left: 0;
  top: 100%;
  z-index: 100;
  background-color: #fff;
}

.nav-container .second-nav-link {
  line-height: 40px;
  width: 220px;
  border-left: 4px solid #fff;
  display: block;
  font-size: 14px;
  text-indent: 20px;
  color: inherit;
  text-align: left;
  border-bottom: 1px solid rgba(112, 112, 112, 0.149);
}

.nav-container .second-nav-link:hover {
  border-left-color: #006DE3;
  transition: all 0.5s;
}

/* BannerArea */
.banner-wrapper {
  height: 700px;
  position: relative;
}

.banner-container {
  position: absolute;
  top: 0;
  /*left: 0;*/
  /*width: 100%;*/
  left: 50%;
  width: calc(100% - 200px);
  height: 100%;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0);
      transform: translateX(-50%);
}

.company-detail {
  width: 900px;
  margin: auto;
  text-align: left;
  color: #fff;
  padding-top: 130px;
}

.company-name {
  font-size: 40px;
}

.company-abstract {
  font-size: 24px;
  font-weight: 400;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
}

.date-location img {
  width: 26px;
  vertical-align: text-bottom;
}

.date-location {
  font-size: 24px;
  padding-top: 24px;
}

.date-location span {
  padding: 0 15px;
}

/*Link*/
.link {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 80px;
  justify-content: center;
}

.link li a {
  min-width: 150px;
  line-height: 50px;
  padding: 0 15px;
  box-sizing: border-box;
  border: 1px solid #fff;
  text-align: center;
  margin-right: 20px;
  margin-bottom: 20px;
  display: block;
  font-size: 16px;
  color: #fff;
  border-radius: 4px;
}

.link li a:hover {
  background-color: #006DE3;
  border-color: #006DE3;
  color: #fff;
}

/*Meet*/
.meet-date {
  margin-top: 60px
}

.meet-date ul {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.meet-date .meet-date-num span {
  width: 66px;
  height: 66px;
  display: block;
  line-height: 66px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 23px;
  border-radius: 8px;
}

.meet-date .meet-date-num p {
  text-align: center;
  color: #fff;
  margin-top: 7px;
  font-size: 17px;
}

.meet-date-sperator {
  padding: 0 20px;
  height: 66px;
  line-height: 66px;
  color: #fff;
  font-size: 23px;
}

/*Company*/
.company-title {
  font-size: 32px;
  font-weight: bold;
  color: #006DE3;
  padding: 60px 0 20px 0;
}

/*news-dates-wrapper*/
.news-dates-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap:wrap;
}

.news,
.dates {
  max-width: 560px;
  width: 100%;
  border: 1px solid #006DE3;
  margin-top: 40px;
}

.news-title,
.dates-title {
  border-top: 10px solid #006DE3;
  color: #006DE3;
  padding: 20px 20px 0 20px;
}

.news-title::before,
.dates-title::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  vertical-align: middle;
  margin-right: 10px;
  border: 8px solid transparent;
  border-left: 12px solid #006DE3;
}

.news-list,
.dates-list {
  padding: 0 20px;
  box-sizing: border-box;
  height: 210px;
  overflow: auto;
  background-color: #fff;
}

.news-list li,
.dates-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(112, 112, 112, 0.149);
  line-height: 24px;
}

.news-list li:last-child,
.dates-list li:last-child {
  border: none;
}

.news-list li a h4 {
  color: #333;
  font-weight: bold;
  font-size: 16px;
}

.news-list li a p {
  color: #666;
  font-size: 14px;
}

.dates-list li h4 {
  color: #666;
  font-weight: bold;
  font-size: 16px;
}

.dates-list li p {
  color: #006DE3;
  font-weight: bold;
  font-size: 14px;
}

.dates-list li .dates-item-2 {
  text-decoration: line-through;
}

.dates-list li .dates-item-3 {
  color: #CE0707;
}

/*Footer*/
.footer {
  padding: 40px 0 70px 0;
  background-color: #F1F1F1;
}

.footer-company-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  justify-content: space-between;
  padding-bottom: 25px;
  border-bottom: 1px solid #333;
}

.footer-company-left h3 {
  font-size: 29px;
  font-weight: bold;
  color: #333333;
}

.footer-company-left h4 {
  font-size: 18px;
  font-weight: 400;
  color: #333333;
}

.footer-company-right h3 img {
  width: 28px;
  vertical-align: text-bottom;
  margin-right: 12px;
}

.footer-company-right h3 {
  font-size: 24px;
  font-weight: 400;
  color: #333333;
}

.footer-contact-download {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-contact p {
  white-space: pre-line;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: #515151;
  padding-top: 15px;
}

/* Downloads */
.downloads {
  width: 480px;
}

.footer-title,
.download-title {
  font-size: 18px;
  font-weight: bold;
  color: #333333;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(112, 112, 112, 0.149);
}

.downloads-list {
  box-sizing: border-box;
  overflow: auto;
  padding-top: 5px;
  height: 120px;
}

.downloads-list li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(112, 112, 112, 0.149);
  line-height: 24px;
}

.downloads-list li a {
  color: #666;
  font-size: 14px;
}


/*Copyright*/
.company-copyright {
  font-size: 11px;
  padding: 8px 0;
  text-align: center;
  background-color: #202020;
  color: #EEEEEE;
}


/*Sponsors*/

.sponsors {
  padding-bottom: 10px;
  padding-top: 40px;
}

.sponsors h3 {
  color: #333;
  margin-top: 10px;
  font-weight: bold;
  font-size: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E9E9E9;
  margin-bottom: 16px;
}

.sponsors h3 span {
  font-size: 14px;
  color: #333333;
  opacity: 0.15;
}

.sponsors h3::before {
  content: '';
  display: inline-block;
  width: 10px;
  margin-top: -2px;
  vertical-align: middle;
  height: 10px;
  border: 4px solid #006DE3;
  margin-right: 5px;
  border-radius: 50%;
}

.sponsors-img {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  text-align: center;
}

.sponsors-img li {
  margin-right: 16px;
  margin-bottom: 16px;
}

.sponsors-img a {
  border: 1px solid #e9e9e9;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 100px;
  background-color: #fff;
  overflow: hidden;
}

.sponsors-img img {
  max-width: 100%;
}

.sponsors-img p {
  padding-top: 10px;
  color: #666666;
  font-size: 14px;
  width: 180px;
}

/*GoTop*/
.goTop {
  width: 120px;
  height: 40px;
  background: #006DE3;
  border-radius: 4px;
  color: #fff;
  text-align: center;
  line-height: 40px;
  position: fixed;
  z-index: 100;
  right: 40px;
  bottom: 180px;
  display: none;
}

.goTop::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-width: 0 5px 5px;
  margin-right: 10px;
  vertical-align: middle;
  border-style: solid;
  border-color: transparent transparent #FFF;
}

/* Talks */

.talks {
  padding-top: 40px;
  min-height: 440px;
}

.talks-tabs {
  border-bottom: 1px solid rgba(112, 112, 112, 0.149);
  margin-bottom: 20px;
}

.talks-tabs span {
  font-size: 18px;
  font-weight: bold;
  display: inline-block;
  border-bottom: 6px solid #fff;
  padding: 10px 0;
  cursor: pointer;
  color: #999;
  margin-right: 40px;
}
.talks-tabs span div{
    display: block;
    font-size: 12px;
    font-weight: 400;
}
.talks-tabs span.active {
  font-size: 24px;
  border-color: #006DE3;
  color: #006DE3;
}

.talks-list.active {
  display: flex;
}

.talks-list {
  margin-left: -25px;
  margin-right: -25px;
  display: none;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.talks-list-item {
  width: 190px;
  padding: 15px;
  box-sizing: border-box;
  height: 310px;
  text-align: center;
  border-radius: 4px;
  position: relative;
}

.talks-list-item:hover {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.talks-img {
  display: flex;
  /*width: 140px;*/
  /*height: 166px;*/
  width: 160px;
    height: 185px;
  margin: auto;
  align-items: center;
  justify-content: center;
}
.talks-img img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.talks-list-item h3 {
  padding-top: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #006DE3;
}

.talks-list-item h4 {
  font-size: 14px;
  font-weight: 400;
  /*color: #515151;*/
  color: #666666;
  /*opacity: 0.5;*/
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  height: 45px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.talks-list-item h5 {
  font-size: 13px;
  cursor: pointer;
  visibility: hidden;
  color: #006DE3;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.talks-list-item h5 img {
  margin-left: 5px;
  display: inline-block;
  width: 24px;
  vertical-align: middle;
}

.talks-list-item:hover h5 {
  visibility: visible;
}

.talks-detail {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 101;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
}

.talks-detail.active {
  display: flex;
}

.talks-detail-container {
  padding: 10px 25px 25px 25px;
  box-sizing: border-box;
  width: 580px;
  height: 750px;
  background: #FFFFFF;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 4px;
}

.talks-detail-title {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(112, 112, 112, 0.149);
  justify-content: space-between;
}

.talks-detail-title b {
  color: #006DE3;
  font-size: 18px;
}

.talks-detail-title span {
  color: #515151;
  opacity: 0.5;
  font-size: 14px;
}

.talks-info {
  flex: 1;
  padding-left: 10px;
}

.talks-detail-info {
  padding: 20px 0;
  text-align: left;
}

.talks-detail-info h2 {
  font-size: 14px;
  height: 125px;
  overflow: hidden;
  font-weight: bold;
  color: #515151;
}

.talks-detail-info h3 {
  font-size: 14px;
  font-weight: bold;
  color: #006DE3;
  padding: 0;
}

.talks-detail-info h6 {
  font-size: 14px;
  font-weight: bold;
  color: #515151;
  opacity: 0.5;
}

.talks-detail-info {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.talks-detail-container .talks-img {
  margin: 0;
}

.talks-content-wrapper {
  margin-top: 10px;
  color: #515151;
  height: 400px;
  line-height: 20px;
  font-size: 13px;
  text-align: justify;
  overflow-y: scroll;
}

.close-btn {
  text-align: right;
}

.close-btn span {
  cursor: pointer;
  color: rgba(0, 0, 0, 0.29);
  font-size: 18px;
  font-weight: 600;
}

/* Detail */
.detail-content {
  padding-top: 57px;
  display: flex;
  min-height: calc(100vh - 521.5px);
  align-items: flex-start;
  justify-content: space-between;
}

.detail-content .dates {
  max-width: 400px;
  width: 100%;
}

.detail-content .subbmission {
  font-size: 26px;
  font-weight: bold;
  padding-bottom: 20px;
  color: #006DE3;
}

.detail-content .content-left {
  flex: 1;
  padding-right: 60px;
}

.awards-groups{
  width: 280px;
  background-color: #EFEFEF;
  text-align: center;
  color: #333;
  font-size: 16px;
  margin-right:30px;
}
.awards-groups p{
  line-height: 1.5;
  padding: 12px 0;
  cursor: pointer;
  border-bottom: 1px solid rgba(112,112,112,0.2);
}
.awards-groups p:hover{
  color:#fff;
  background-color: #666666;
}
.awards-groups p.active{
  background-color: #006DE3;
  color: #fff;
}

.detail-content .sponsors{
  max-width: 400px;
}
.class-ifica{
    width: 100%;
    /*display: inline-block;*/
    text-align: center;
}
.class-ifica1{
    border: 1px solid white;
    box-sizing: border-box;
    width: 18.4%;
    height: 50px;
    /*float: left;*/
    /*margin-right: 2%;*/
        margin-right: 1.5%;
    margin-top: 80px;
    border-radius: 4px;
    display: block;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    display: inline-block;
}
.class-ifica1:nth-child(5n){
    margin-right: 0;
}
.class-ifica1:hover{
    border: 1px solid #006DE3;
    background: #006DE3;
}
.class-ifica1 div{
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
    text-align: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.new-dates{
    width: 100%;
    display: inline-block;
    margin-top: 40px;
}
.new-date{
    border: 1px solid #006DE3;
    border-top: 10px solid #006DE3;
    box-sizing: border-box;
    width: 47%;
    float: left;
    margin-right: 6%;
}
.new-date:nth-child(2n){
    margin-right: 0;
}
.new-date1{
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    font-size: 20px;
font-weight: bold;
color: #006DE3;
}
.new-date1 img{
    width: 12px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
}
.new-date1 div{
    width: calc(100% - 28px);
     display: inline-block;
    vertical-align: middle;
}
.new-date2{
    width: 100%;
    height: 190px;
    padding: 0 20px;
    box-sizing: border-box;
    overflow: hidden;
    overflow-y: scroll;
}
.new-date2::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

.new-date2::-webkit-scrollbar-thumb {
	border-radius: 8px;
	background-color: rgba(0, 109, 227, 1);
}

.new-date2::-webkit-scrollbar-track {
	border-radius: 8px;
	background-color: rgba(0, 109, 227, .1);
}
.new-date2_1{
    border-bottom: 1px solid rgba(112, 112, 112, 0.15);
    width: 100%;
    padding: 10px 0;
    font-size: 15px;
font-weight: 400;
color: #666666;
display: block;
    overflow: hidden;    
text-overflow:ellipsis;    
white-space: nowrap;
}
.new-date2_2{
    width: 100%;
     border-bottom: 1px solid rgba(112, 112, 112, 0.15);
    width: 100%;
    padding: 10px 0;
    display: block;
}
.new-date2_3{
    width: 100%;
    font-size: 15px;
    color: #666666;
    overflow: hidden;    
text-overflow:ellipsis;    
white-space: nowrap;
}
.new-date2_4{
    width: 100%;
    font-size: 15px;
    color: #006DE3;
    font-weight: bold;
}
.footer-contact a{
    border-bottom: 1px solid rgba(112, 112, 112, 0.149);
    width: 100%;
    display: block;
    padding: 10px 0;
    font-size: 16px;
font-weight: 400;
color: #333333;
}
/*.date-location1:last-child{*/
/*     margin-left: 100px;*/
/*}*/
.date-location1:first-child{
     margin-right: 100px;
}
@media (max-width: 1020px) {
    .banner-wrapper {
       height: auto !important;
    }
    .swiper {
        height: auto !important;
    }
   .company-detail{
       width: 100%;
       /*padding-top:35px;*/
       padding-top: 0;
   }
   .date-location{
       padding-top: 10px;
   }
   .company-name{
        font-size: 16px;
        text-align: center;
    }
    .company-abstract{
        display: none;
    }
    .date-location1{
        width: 100%;
        font-size: 14px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }
    .date-location1:last-child{
         margin-left: 0;
    }
    .class-ifica{
        display: flex;
        flex-wrap: wrap;
        box-sizing: border-box;
    }
    .class-ifica1:hover{
    border: 1px solid #006DE3;
    background: #006DE3;
    color: white;
}
    .class-ifica1{
         border: 1px solid #006DE3;
        width: 49%;
            margin-right: 2%;
    margin-top: 20px;
    color: #006DE3;
    }
    .class-ifica1:nth-child(5n){
   margin-right: 2%;
}
    .class-ifica1:nth-child(2n){
        margin-right: 0;
    }
    .meet-date{
        display: none;
    }
    
}
