@charset "UTF-8";
/* 新闻页面样式 */
body {
  margin: 0;
  padding: 0;
}

.news-detail {
  margin-top: 8rem;
  padding-bottom: 6rem;
  background: #f0f6f7;
}
.news-detail .tabs {
  height: 6rem;
  line-height: 6rem;
  background: #fff;
  font-size: 1.8rem;
}
.news-detail .tabs .tab {
  display: inline-block;
  padding-left: 2rem;
  padding-right: 2rem;
}
.news-detail .tabs .tab:hover {
  background: #fafafa;
  color: #1097c6;
}
.news-detail .tabs .active {
  background: #fafafa;
  color: #1097c6;
}
.news-detail .title {
  padding-top: 2rem;
  margin-bottom: 2rem;
  color: #718090;
}
.news-detail .title a {
  color: #718090;
}
.news-detail .content {
  padding: 3rem 2rem;
  background-color: #fff;
}
.news-detail .content #news-title {
  color: #081e28;
  font-size: 3rem;
  text-align: center;
}
.news-detail .content .publishTime {
  color: #8995a1;
  font-size: 1.2rem;
  text-align: center;
}
.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;
  }
}
/*# sourceMappingURL=news-detail.css.map */
.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; /* 小屏幕下强制换行 */
  }
}
/* 模态框样式 */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
  -webkit-tap-highlight-color: transparent;
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 95%;
  max-height: 90vh;
  object-fit: contain;
  animation: zoom 0.3s;
}

@keyframes zoom {
  from { transform: scale(0.9); }
  to { transform: scale(1); }
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.close:hover {
  color: #bbb;
}

/* 移动端优化 */
@media (max-width: 768px) {
  .modal-content {
    max-width: 100%;
    padding: 0 10px;
  }
  
  .close {
    top: 10px;
    right: 15px;
    font-size: 30px;
  }
}
.sub-nav{
  padding-left: 25%;
}