/* 菜单导航 */
.tab-nav-box {
  display: flex;
  font-size: 16px;
  color: #4B4B4B;
  width: 80%;
  margin: 40px auto 60px;
}

.tab-nav-box .c {
  cursor: pointer;
}

.exhibit-detainer {
  width: 100%;
  margin: 40px auto 40px;
}

.exhibit-detainer .title {
  font-size: 24px;
  line-height: 24px;
  text-align: center;
}
.exhibit-detainer .content-box {
  margin-top: 30px;
  display: flex;
}
.exhibit-detainer .content-box .left-box {
  width: 480px;
  height: 360px;
}

.exhibit-detainer .content-box .left-box .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.exhibit-detainer .content-box .right-box {
  margin-left: 60px;
  height: 360px;
  position: relative;
  flex: 1;
}
.exhibit-detainer .content-box .right-box .text {
  font-size: 16px;
  color: #666;
  line-height: 26px;
  text-indent: 2em;
   -webkit-line-clamp: 9;
}

.exhibit-detainer .right-box .info {
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 20px;
  width: 100%;
}

.right-box .info .left-info .top-info {
  display: flex;
  align-items: center;
  color: #333;
  font-size: 24px;
  line-height: 24px;
  cursor: pointer;
}

.right-box .info .left-info .top-info img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.right-box .info .left-info .company-name {
  font-size: 16px;
  color: #07f;
  margin-top: 20px;
}

.right-box .info .right-info {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #333;
}

.right-box .info .right-info .info-item {
  display: flex;
  align-items: center;
  padding: 2px 10px;
  border-right: 1px solid #D9D9D9;
  cursor: pointer;
}

.right-box .info .right-info .info-item:last-child {
  border: none;
}

.right-box .info .right-info .info-item img {
  width: 20px;
  height: 20px;
  margin-right: 6px;
}

.induction {
  width: 80%;
  margin: 0 auto 80px;
}

.induction .title-box  {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
}
.induction .title-box .title {
  display: flex;
  align-items: center;
  font-size: 24px;
  line-height: 24px;
  color: #333;
}

.induction .title-box .title img {
  width: 12px;
  height: 24px;
  margin-right: 10px;
}

/* 弹窗收藏成功 success-collect */
.share-code,
.success-collect {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
}

/* 分享 */
.success-collect img {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
}

.share-code img {
  width: 200px;
  height: 200px;
}

@media (max-width:1200px) {
  .exhibit-detainer {
    width: 1000px;
    margin: 30px auto ;
  }
  .induction {
    width: 1000px;
  }
  .exhibit-detainer .content-box .right-box {
    margin-left: 30px;
  }
}
@media (max-width:750px) {

    .right-box .info {
        flex-direction: row;
        align-items: flex-end;
    }
  .tab-nav-box {
    width: 90%;
    margin: 20px auto 40px;
    flex-wrap: wrap;
  }
  .exhibit-detainer {
    width: 90%;
  }
  .exhibit-detainer .content-box {
    flex-direction: column;
  }
  .exhibit-detainer .content-box .left-box {
    order: 2;
    width: 100%;
    height: auto;
    background: pink;
  }
  .exhibit-detainer .content-box .right-box {
    order: 1;
    margin-left: 0px;
    height: auto;
    padding-bottom: 140px;
  }

  .exhibit-detainer .content-box .right-box .right-info {
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
  }
   .content-box .right-box .right-info .info-item {
    border: none;
  }

  .induction {
    width: 90%;
    margin: 30px auto 80px;
  }
}
