@charset "UTF-8";
/* 新闻页面样式 */
.news-page {
  margin-top: 8rem;
}
.news-page .page-img-logo {
  padding-top: 16rem;
  height: 50rem;
  background-image: url("../img/index/news.png");
  background-repeat: no-repeat;
  background-size: cover;
  color: #fbfbfc;
}
.news-page .page-img-logo .title {
  font-size: 6rem;
}
.news-page .page-img-logo .title-desc {
  font-size: 2.8rem;
}
.news-page .tabs {
  height: 5.8rem;
  border-bottom: 0.1rem solid #e5e5e5;
}
.news-page .tabs .tab-item {
  display: inline-block;
  font-size: 1.8rem;
  padding-left: 3rem;
  padding-right: 3rem;
  height: 5.7rem;
  line-height: 5.7rem;
}
.news-page .tabs .tab-item:hover {
  cursor: pointer;
  background-color: #fafafa;
  color: #1097c6;
}
.news-page .tabs .active {
  background-color: #fafafa;
  color: #1097c6;
}
.news-page .news-content {
  background-color: #f0f6f7;
}
.news-page .news-content .news-item {
  display: block;
  /* height: 28rem; */
  background: #fff;
  border-radius: 0rem 1rem 1rem 0rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.news-page .news-content .news-item .news-img {
  width: 100%;
  height: 28rem;
  object-fit: cover;
}
.news-page .news-content .news-item .news-detail {
  padding: 3rem;
}
.news-page .news-content .news-item .news-detail .news-name {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  color: #081e28;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  /* 设置最大显示行数 */
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.news-page .news-content .news-item .news-detail .news-abstract {
  font-size: 1.8rem;
  color: #7f7f7f;
  line-height: 3.6rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* 设置最大显示行数 */
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.news-page .news-content .news-item .news-detail .news-publishTime {
  margin-top: 2rem;
  font-size: 1.6rem;
  color: #7f7f7f;
  line-height: 3rem;
}
.news-page .news-content .getMore {
  text-align: center;
}
.news-page .news-content .getMore .more {
  margin: 6rem;
  padding-left: 4rem;
  padding-right: 4rem;
  display: inline-block;
  height: 4.8rem;
  line-height: 4.8rem;
  border: 0.1rem solid #1097c6;
  border-radius: 2.4rem;
  color: #1097c6;
}
.news-page .news-content .getMore .more:hover {
  cursor: pointer;
  background: #1097c6;
  color: #fff;
}

/*# sourceMappingURL=news.css.map */
.container {
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
#backToTop {
  display: none;
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 999;
  width: 50px;
  height: 50px;
  border: none;
  background: transparent;
  cursor: pointer;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.top-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

/* 移动端适配 */
@media (max-width: 768px) {
  #backToTop {
    bottom: 20px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
}

/* 悬停状态 */
#backToTop:hover {
  opacity: 1;
  transform: translateY(-3px);
}

/* 点击状态 */
#backToTop.active .top-icon {
  content: url("img/aboutus/2.png");
}
#topIcon {
  transition: opacity 0.3s ease;
}

/* 点击时的闪烁效果 */
#backToTop:active #topIcon {
  opacity: 0.8;
  transform: scale(0.95);
}
/*# sourceMappingURL=aboutus.css.map */
@media only screen and (max-width: 767px) {
  .header .navbar .nav li a {
    padding-top: 0;
    padding-bottom: 0;
    height: 5rem;
    line-height: 4rem;
    color: #081624;
    font-weight: bold;
  }
}

@media only screen and (max-width: 767px) {
  .news-page .page-img-logo {
    padding-top: 8rem;
    height: 30vh;
    background-position: center;
  }
}
@media only screen and (max-width: 767px) {
  .news-page .page-img-logo .title {
    font-size: 3.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .news-page .page-img-logo .title-desc {
    font-size: 1.6rem;
  }
}
.phone-center {
  display: flex;
  justify-content: center;  /* 水平居中 */
  align-items: center;       /* 垂直居中 */
  min-height: 100px;         /* 按需调整容器高度 */
}

.content-wrapper {
  text-align: center;        /* 内部文本居中 */
}

.phone-line {
  font-size: 2rem;
  margin: 8px 0;             /* 行间距控制 */
  display: inline-block;     /* 保持内容整体性 */
}

.nowrap {
  white-space: nowrap;       /* 强制不换行 */
  display: inline-block;     /* 配合nowrap使用 */
}

/* 图标与文字间距调整 */
.icon-telephone {
  margin-right: 5px;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .phone-center {
    padding: 10px;
  }
  .phone-line {
    display: block;          /* 小屏幕下强制换行 */
  }
}
.sub-nav{
  padding-left: 25%;
}