/* .page_sub start */
.page_sub {
  padding: 50px 0;
  background: #fff;
  min-height: 700px;
}

.page_sub .side_nav {
  float: left;
  width: 19%;
  text-align: center;
  color: #fff;
  background: #fff;
  box-shadow: 0 3px 12px #dbdada;
}

.page_sub .side_nav h4 {
  background: #01a777;
  background-image: linear-gradient(to right, #01a777, #114c94);
  font-size: 24px;
  line-height: 86px;
  font-weight: normal;
}

.page_sub .side_nav a {
  display: block;
  color: #666666;
  line-height: 65px;
  font-size: 20px;
}

.page_sub .side_nav a:hover {
  color: #01a777;
}

.page_sub .side_nav a.active {
  background: #01a777;
  color: #fff;
}

.page_sub .article_cnt {
  float: left;
  width: 81%;
  padding-left: 50px;
}

.page_sub .article_cnt.full {
  width: 100%;
  float: none;
  padding-left: 0;
}

.page_sub .article_cnt>.title>h4,
.cnt_item_title>h4 {
  display: inline-block;
  font-size: 30px;
  background-image: -webkit-linear-gradient(0deg, #01a777, #114c94);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.page_sub .article_cnt>.title::after,
.cnt_item_title::after {
  content: '';
  display: block;
  background-image: linear-gradient(to right, #01a777, #114c94);
  width: 100%;
  height: 2px;
  width: 100%;
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
}

.page_sub .article_cnt .main .cnt {
  font-size: 16px;
  line-height: 30px;
  color: #666;
}

.pagination {
  margin-top: 60px;
}

.pagination span {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  margin-right: 14px;
}

.pagination a {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  line-height: 32px;
  font-weight: normal;
  color: #343434;
  border-radius: 5px;
  text-align: center;
  width: 32px;
  box-sizing: border-box;
  margin: 0 5px;
  transition: all 0.3s;
}

.pagination a:hover {
  color: #01a777;
}

.pagination a.active {
  background: #01a777;
  background-image: linear-gradient(to right, #01a777, #114c94);
  color: #fff;
}

.pagination a.prev,
.pagination a.next {
  width: 80px;
  font-weight: 300;
}


@media (max-width: 1700px) and (min-width: 1100px) {
  .page_sub {
    min-height: 580px;
  }

  .page_sub .side_nav {
    width: 17%;
  }

  .page_sub .article_cnt {
    width: 83%;
  }

  .page_sub .article_cnt.full {
    width: 100%;
  }

  .page_sub .side_nav h4 {
    font-size: 20px;
    line-height: 70px;
  }

  .page_sub .side_nav a {
    line-height: 54px;
    font-size: 16px;
  }

  .page_sub .article_cnt>.title>h4,
  .cnt_item_title>h4 {
    font-size: 24px;
  }

  .page_sub .article_cnt>.title::after,
  .cnt_item_title::after {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .page_sub .article_cnt .main .cnt {
    font-size: 15px;
    line-height: 28px;
  }
}

@media (max-width: 1100px) {
  .page_sub {
    padding: 30px 0;
  }

  .page_sub .side_nav {
    display: none;
  }

  .page_sub .article_cnt {
    width: 100%;
    padding: 0;
  }

  .page_sub .article_cnt>.title>h4,
  .cnt_item_title>h4 {
    font-size: 20px;
  }

  .page_sub .article_cnt>.title::after,
  .cnt_item_title::after {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

/* .page_sub end */



/* page_sub_activity start */
.page_sub_activity .list {
  margin: 0 -15px;
}

.page_sub_activity .list li {
  float: left;
  width: 50%;
  padding: 15px;
}

.page_sub_activity .list li a {
  display: block;
  width: 100%;
  background: #fff;
  padding: 20px;
  height: 130px;
  transition: all .6s;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, .14);
}

.page_sub_activity .list li a .date {
  float: left;
  width: 18%;
  color: #009da4;
  text-align: center;
  padding-top: 10px;
}

.page_sub_activity .list li a .date em {
  font-size: 40px;
  display: block;
  font-weight: bold;
}

.page_sub_activity .list li a .date span {
  font-size: 18px;
  display: block;
}

.page_sub_activity .list li a .msg {
  float: left;
  width: 82%;
  padding-left: 30px;
  border-left: 1px solid #f1f1f1;
}

.page_sub_activity .list li a .msg h4 {
  font-size: 18px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
  font-weight: normal;
}

.page_sub_activity .list li a:hover .msg h4 {
  font-weight: bold;
  color: #009da4;
}

.page_sub_activity .list li a .msg span {
  font-size: 15px;
  color: #626262;
  line-height: 28px;
  display: -webkit-box;
  /* 设置为WebKit内核的弹性盒子模型 */
  -webkit-box-orient: vertical;
  /* 垂直排列 */
  -webkit-line-clamp: 2;
  /* 限制显示两行 */
  overflow: hidden;
  /* 隐藏超出范围的内容 */
  text-overflow: ellipsis;
}

@media (max-width: 1700px) and (min-width: 1100px) {
  .page_sub_activity .list li a .date em {
    font-size: 30px;
  }

  .page_sub_activity .list li a .date span {
    font-size: 15px;
  }

  .page_sub_activity .list li a .msg h4 {
    font-size: 16px;
  }

  .page_sub_activity .list li a .msg span {
    font-size: 13px;
    line-height: 22px;
  }

  .page_sub_activity .list li a {
    height: 118px;
  }
}

@media (max-width: 1100px) {

  .page_sub_activity .list li {
    width: 100%;
  }

  .page_sub_activity .list li a {
    height: 116px;
  }

  .page_sub_activity .list li a .date {
    width: 20%;
  }

  .page_sub_activity .list li a .date em {
    font-size: 30px;
  }

  .page_sub_activity .list li a .date span {
    font-size: 14px;
  }

  .page_sub_activity .list li a .msg {
    width: 80%;
    padding-left: 12px;
  }

  .page_sub_activity .list li a .msg h4 {
    font-size: 15px;
  }

  .page_sub_activity .list li a .msg span {
    font-size: 13px;
    line-height: 22px;
  }
}

/* page_sub_activity end */


/* page_sub_review start */

.page_sub_review .list {
  margin: -10px;
}

.page_sub_review .list li {
  float: left;
  width: 33.3%;
  padding: 10px;
}

.page_sub_review .list li a {
  display: block;
  width: 100%;
  height: 300px;
  font-size: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, .14);
}

.page_sub_review .list li a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .6s;
}

.page_sub_review .list li a:hover img {
  transform: scale(1.1);
}

@media (max-width: 1700px) and (min-width: 1100px) {
  .page_sub_review .list li a {
    height: 250px;
  }
}

@media (max-width: 1100px) {
  .page_sub_review .list li {
    width: 50%;
  }

  .page_sub_review .list li a {
    height: 180px;
  }
}

/* page_sub_review end */

/* page_sub_speakers start */

.page_sub_speakers .list {
  margin: -10px;
}

.page_sub_speakers .list li {
  float: left;
  width: 33.3%;
  padding: 10px;
}

.page_sub_speakers .list li a {
  display: block;
  width: 100%;
}

.page_sub_speakers .list li a .avatar {
  display: block;
  width: 100%;
  height: 240px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: 10px;
}

.page_sub_speakers .list li a h4 {
  font-weight: normal;
  text-align: center;
  font-size: 18px;
  height: 54px;
}

.page_sub_speakers .list li a:hover h4 {
  color: #01a777;
  font-weight: bold;
}

@media (max-width: 1700px) and (min-width: 1100px) {
  .page_sub_speakers .list li a .avatar {
    height: 210px;
  }

  .page_sub_speakers .list li a h4 {
    font-size: 15px;
  }
}

@media (max-width: 1100px) {
  .page_sub_speakers .list li {
    width: 50%;
  }

  .page_sub_speakers .list li a .avatar {
    height: 150px;
  }

  .page_sub_speakers .list li a h4 {
    height: 64px;
    font-size: 14px;
  }
}

/* page_sub_speakers end */


/* page_sub_download start */

.page_sub_download .list li {
  font-size: 0;
  border-bottom: 1px dashed #dcdcdc;
  padding: 15px 0;
}

.page_sub_download .list h4 {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 100px);
  font-size: 18px;
  font-weight: normal;
  padding-right: 30px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.page_sub_download .list a {
  display: inline-block;
  vertical-align: middle;
  width: 100px;
  background: #01a777;
  background-image: linear-gradient(to right, #01a777, #114c94);
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: 36px;
  border-radius: 6px;
}

.page_sub_download .list a:hover {
  background: #a30019;
}

@media (max-width: 1700px) and (min-width: 1100px) {
  .page_sub_download .list h4 {
    font-size: 16px;
  }

  .page_sub_download .list li {
    padding: 10px 0;
  }

  .page_sub_download .list a {
    font-size: 14px;
    line-height: 32px;
  }
}

@media (max-width: 1100px) {
  .page_sub_download .list h4 {
    display: block;
    white-space: normal;
    overflow: unset;
    width: 100%;
    font-size: 15px;
    line-height: 26px;
  }

  .page_sub_download .list a {
    display: block;
    margin-top: 14px;
    font-size: 13px;
  }
}

/* page_sub_download end */


/* page_sub_news start */

.page_sub_news .list li {
  font-size: 0;
  border-bottom: 1px solid #dcdcdc;
  padding: 15px 0;
}

.page_sub_news .list li .msg {
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 100px);
  padding-right: 30px;
}

.page_sub_news .list li .msg h4 {
  font-size: 22px;
  font-weight: normal;
  margin-bottom: 20px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.page_sub_news .list li .msg span {
  font-size: 16px;
  color: #7b7b7b;
}

.page_sub_news .list li a {
  display: inline-block;
  vertical-align: top;
  width: 100px;
  background: #01a777;
  background-image: linear-gradient(to right, #01a777, #114c94);
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: 36px;
  border-radius: 6px;
}

.page_sub_news .list li a:hover {
  background: #a30019;
}

@media (max-width: 1700px) and (min-width: 1100px) {
  .page_sub_news .list li .msg h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .page_sub_news .list li .msg span {
    font-size: 14px;
  }

  .page_sub_news .list li a {
    font-size: 14px;
    line-height: 32px;
  }
}

@media (max-width: 1100px) {
  .page_sub_news .list li .msg {
    width: 100%;
    padding-right: 0;
    display: block;
  }

  .page_sub_news .list li .msg h4 {
    font-size: 17px;
    white-space: normal;
    line-height: 26px;
    margin-bottom: 10px;
  }

  .page_sub_news .list li a {
    display: block;
    margin-top: 14px;
    font-size: 14px;
  }
}

/* page_sub_news end */


/* page_sub_file_links start */

.page_sub_file_links .list {
  margin: -10px;
}

.page_sub_file_links .list li {
  float: left;
  width: 25%;
  padding: 10px;
}

.page_sub_file_links .list li a {
  display: block;
  width: 100%;
  height: 150px;
  font-size: 0;
  border: 2px solid #e5e5e5;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.page_sub_file_links .list li a img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: auto;
  height: auto;
  max-width: 75%;
  max-height: 75%;
  z-index: 1;
}

@media (max-width: 1700px) and (min-width: 1100px) {
  .page_sub_file_links .list li {
    width: 20%;
  }
}

@media (max-width: 1100px) {
  .page_sub_file_links .list li {
    width: 50%;
  }
}

/* page_sub_file_links end */


/* cnt_news start */
.cnt_news {
  width: 900px;
  margin: 0 auto;
}

.cnt_news_main .title {
  font-size: 25px;
  color: #333333;
  margin-bottom: 10px;
  text-align: center;
}

.cnt_news_main .msg {
  text-align: center;
  font-size: 18px;
  color: #666666;
}

.cnt_news_main .content {
  margin-top: 30px;
  font-size: 17px;
  line-height: 30px;
}

.cnt_news_main .content img {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
}

@media (max-width: 1700px) and (min-width: 1100px) {
  .cnt_news {
    width: 800px;
  }

  .cnt_news_main .title {
    font-size: 20px;
  }

  .cnt_news_main .msg {
    font-size: 15px;
  }

  .cnt_news_main .content {
    font-size: 15px;
    line-height: 25px;
  }
}

@media (max-width: 1100px) {
  .cnt_news {
    width: 100%;
    margin: 0;
  }

  .cnt_news_main .title {
    font-size: 18px;
  }

  .cnt_news_main .msg {
    font-size: 15px;
  }

  .cnt_news_main .content {
    margin-top: 20px;
    font-size: 15px;
    line-height: 24px;
  }
}

/* cnt_news end */

/* page_sub_exhibitor start */
.page_sub_exhibitor {
  background: #f3f3f3;
  padding: 30px;
}

.page_sub_exhibitor .operate {
  overflow: hidden;
  margin-bottom: 30px;
}

.page_sub_exhibitor .operate .order {
  float: left;
  font-size: 18px;
  margin-top: 10px;
}

.page_sub_exhibitor .operate .order span {
  display: inline-block;
  vertical-align: middle;
}

.page_sub_exhibitor .operate .order a {
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
}

.page_sub_exhibitor .operate .order a:hover,
.page_sub_exhibitor .operate .order a.active {
  color: #e54560;
}

.page_sub_exhibitor .operate .search {
  float: right;
}

.page_sub_exhibitor .operate .search input {
  display: inline-block;
  vertical-align: middle;
  background: #ffffff;
  font-size: 18px;
  color: #585858;
  line-height: 48px;
  border-radius: 50px;
  padding: 0 24px;
  border: none;
  width: 300px;
  margin-right: 12px;
}

.page_sub_exhibitor .operate .search a {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  background: url('https://qn.5957.htx.cc/uploads/20250619/FiRi3VS0Fz-iJa-FQOP5Wy_BYOd-.png') no-repeat center;
  background-size: cover;
  line-height: 48px;
  padding: 0 40px;
  border-radius: 40px;
}

.page_sub_exhibitor .list {
  margin: -10px;
}

.page_sub_exhibitor .list li {
  float: left;
  width: 33.3%;
  padding: 10px;
}

.page_sub_exhibitor .list li a {
  display: block;
  width: 100%;
  background: #fff;
  border: 1px solid #d7d7d7;
  padding: 10px;
  color: #666;
}

.page_sub_exhibitor .list li a:hover {
  background: #01a777;
  background-image: linear-gradient(to right, #01a777, #114c94);
  color: #fff;
}

.page_sub_exhibitor .list li .logo {
  width: 100%;
  height: 210px;
  position: relative;
  z-index: 1;
  background: #fff;
}

.page_sub_exhibitor .list li .logo img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  margin: auto;
}

.page_sub_exhibitor .list li .tit {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  font-weight: normal;
  padding: 18px 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page_sub_exhibitor .list li .msg {
  overflow: hidden;
  font-size: 16px;
  margin-top: 10px;
}

.page_sub_exhibitor .list li .msg em {
  float: left;
}

.page_sub_exhibitor .list li .msg span {
  float: right;
}

@media (max-width: 1700px) and (min-width: 1100px) {
  .page_sub_exhibitor .operate .order {
    font-size: 15px;
  }

  .page_sub_exhibitor .operate .search input {
    font-size: 15px;
    line-height: 38px;
  }

  .page_sub_exhibitor .operate .search a {
    line-height: 38px;
    padding: 0 32px;
  }

  .page_sub_exhibitor .list li .logo {
    height: 170px;
  }

  .page_sub_exhibitor .list li .tit {
    font-size: 15px;
    padding: 10px 12px;
  }

  .page_sub_exhibitor .list li .msg {
    font-size: 14px;
  }
}

@media (max-width: 1100px) {
  .page_sub_exhibitor {
    padding: 0;
    background: #fff;
  }

  .page_sub_exhibitor .operate .order {
    float: none;
    font-size: 16px;
    text-align: center;
    margin-top: 0;
  }

  .page_sub_exhibitor .operate .search {
    float: none;
    width: 100%;
    margin-top: 10px;
    font-size: 0;
  }

  .page_sub_exhibitor .operate .search input {
    font-size: 15px;
    background: #f1f1f1;
    padding: 0 14px;
    line-height: 40px;
    width: calc(100% - 100px);
    margin-right: 10px;
  }

  .page_sub_exhibitor .operate .search a {
    line-height: 40px;
    font-size: 15px;
    width: 90px;
    padding: 0;
    text-align: center;
  }

  .page_sub_exhibitor .list li {
    width: 50%;
  }

  .page_sub_exhibitor .list li .logo {
    height: 100px;
  }

  .page_sub_exhibitor .list li .tit {
    font-size: 14px;
    padding: 10px;
    white-space: normal;
    height: 62px;
  }

  .page_sub_exhibitor .list li .msg em,
  .page_sub_exhibitor .list li .msg span {
    display: block;
    float: none;
    font-size: 13px;
  }
}

/* page_sub_exhibitor end */


/* page_sub_exhibitor_item start */

.page_sub_exhibitor_item .top {
  margin-bottom: 30px;
}

.page_sub_exhibitor_item .top h4 {
  float: left;
  background-image: -webkit-linear-gradient(0deg, #01a777, #114c94);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 30px;
}

.page_sub_exhibitor_item .top span {
  float: right;
  font-size: 24px;
  color: #666666;
  margin-top: 8px;
}

.page_sub_exhibitor_item_title {
  background-image: -webkit-linear-gradient(0deg, #01a777, #114c94);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-size: 25px;
  margin-bottom: 10px;
}

.page_sub_exhibitor_item .intro {
  margin-bottom: 30px;
}

.page_sub_exhibitor_item .content {
  font-size: 18px;
  line-height: 32px;
}

.page_sub_exhibitor_item .product .main a {
  display: block;
  width: 100%;
  background: #eeeeee;
  padding: 6px;
  transition: all .6s;
}

.page_sub_exhibitor_item .product .main a:hover {
  background: #01a777;
}

.page_sub_exhibitor_item .product .main a .cover {
  display: block;
  width: 100%;
  height: 230px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page_sub_exhibitor_item .product .swiper-pagination {
  position: static;
  margin-top: 15px;
}

.page_sub_exhibitor_item .product .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 4px;
}

.page_sub_exhibitor_item .product .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 20px;
  background: #01a777;
  background-image: linear-gradient(to right, #01a777, #114c94);
}

.modal-bg-black {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3000;
  background-color: #000;
}

.case-modal {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3001;
  font-size: 0;
  text-align: center;
}

.case-modal img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: auto;
  width: 60%;
  z-index: 2;
}

.case-modal .close-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
  z-index: 2;
  background: url('//qn.5957.htx.cc/uploads/20250704/Fq1pWfhQ4emwaTaWAoKrc0OugiMy.png') no-repeat center;
  background-size: contain;
  transition: all .4s;
}

.case-modal .close-btn:hover {
  transform: rotate(180deg);
}

.case-modal .btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-image: url('//qn.5957.htx.cc/uploads/20250704/FjJqBuhiukT1WzXyCCHc8na3RRYz.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.case-modal .btn.prev {
  left: 20px;
  transform: translateY(-50%) rotate(180deg);
}

.case-modal .btn.next {
  right: 20px;
}


@media (max-width: 1700px) and (min-width: 1100px) {
  .page_sub_exhibitor_item .top h4 {
    font-size: 23px;
  }

  .page_sub_exhibitor_item .top span {
    font-size: 17px;
  }

  .page_sub_exhibitor_item .top {
    margin-bottom: 25px;
  }

  .page_sub_exhibitor_item_title {
    font-size: 20px;
  }

  .page_sub_exhibitor_item .content {
    font-size: 15px;
    line-height: 28px;
  }

  .page_sub_exhibitor_item .product .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 2px;
  }

  .page_sub_exhibitor_item .product .swiper-pagination-bullet-active {
    width: 30px;
  }
}

@media (max-width: 1100px) {
  .page_sub_exhibitor_item .top h4 {
    font-size: 18px;
    float: none;
  }

  .page_sub_exhibitor_item .top span {
    float: none;
    display: block;
    font-size: 16px;
    margin-top: 10px;
  }

  .page_sub_exhibitor_item_title {
    font-size: 17px;
  }

  .page_sub_exhibitor_item .content {
    font-size: 15px;
    line-height: 28px;
  }

  .case-modal img {
    width: 100%;
  }

  .case-modal .btn {
    top: 80%;
  }
}

/* page_sub_exhibitor_item end */