/* 全局样式 */
body {
  font-family: "Microsoft YaHei", sans-serif;
  line-height: 1.7;
}
a.card-link{
  color: rgba(0,0,0,0);
}

a {
    color: inherit;
    text-decoration: inherit;
}

/*超出显示省略号*/
.text-truncate-2{
  display: -webkit-box; /* 弹性盒子模型 */
  -webkit-box-orient: vertical; /* 垂直排列 */
  -webkit-line-clamp: 2; /* 限制行数 */
  overflow: hidden; /* 隐藏溢出内容 */
  max-width: 100%; /* 限制容器宽度 */
}
.text-truncate-3{
  display: -webkit-box; /* 弹性盒子模型 */
  -webkit-box-orient: vertical; /* 垂直排列 */
  -webkit-line-clamp: 3; /* 限制行数 */
  overflow: hidden; /* 隐藏溢出内容 */
  max-width: 100%; /* 限制容器宽度 */
}
.text-truncate-4{
  display: -webkit-box; /* 弹性盒子模型 */
  -webkit-box-orient: vertical; /* 垂直排列 */
  -webkit-line-clamp: 4; /* 限制行数 */
  overflow: hidden; /* 隐藏溢出内容 */
  max-width: 100%; /* 限制容器宽度 */
}
.containerBgBox{
  background-image: url('/static/index/station/images/bg.png');
  background-size: cover;
}

.containerRedBgBox{
  background-image: url('/static/index/station/images/redBg.png');
  background-size: cover;
  color: #fff;
}
.containerRedBgBox h2{
  color: #fff;
  font-size: 32px;
font-weight: 700;
}
.containerRedBgBox .newsHeader{
  border-bottom: 1px solid #fff;
}
.containerRedBgBox .newsHeader span{
  color: #fff;
  border-left: 1px solid #fff;
}
.containerRedBgBox .newsHeader div{
  color: #fff;
}
.containerColorBox{
  background: rgba(140, 0, 0, 0.05);
}

/* 头部导航栏样式 */
#headerBox .navbar {
  transition: all 0.3s ease;
}

/* 导航项激活状态 */
#headerBox .navbar-nav .nav-link.active {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.25rem;
  font-weight: 500;
}

/* 增强导航交互效果 */
#headerBox .navbar-nav .nav-link {
  transition: all 0.2s ease;
}

#headerBox .navbar-nav .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}  

#headerBox .logo{
    width: 455px;
    height: 57px;
}
#headerBox .header-box{
    background-color: #8C0000;
    padding: 40px 0;
}
#headerBox .header-box .container{
  display: block;
}
#headerBox .header-box .container .urlName{
  display: inline-block;
  color: #fff;
  font-size: 33px;
  font-weight: 700;
  height: 40px;
  border-left: 1px solid #fff;
  /*margin-left: 20px;*/
  padding-left: 20px;
  line-height: 40px;
}
#headerBox .header-box .container .btns{
  display: inline-block;
  float: right;
  color: #fff;
  font-size: 17px;
}
#headerBox .header-box .container .btns a{
  color: #fff;
}
#headerBox .header-box .container .btns li{
  margin-right: 28px;
}
#headerBox .header-box .container .btns li:last-child{
  margin-right: 0;
}
#headerBox .header-box .container .btns img{
  width: 19px;
  height: 19px;
  vertical-align: middle;
}
#headerBox .header-box .container .btns span{
  vertical-align: middle;
}
#headerBox #navbarNav{
  display: block !important;
}
#headerBox .header-list-box{
  background: #740000;
  padding: 0;

}
#headerBox #navbarNav #main-nav li{
  flex: 0 0 12.5%;
  text-align: center;
  
}
#headerBox #navbarNav #main-nav li a{
height: 70px;
  line-height: 70px;
  padding: 0;
}
#headerBox .carousel-indicators button {
  width: 15px !important;      /* 自定义宽度 */
  height: 15px !important;     /* 自定义高度 */
  border-radius: 15px !important; /* 使其成为圆形 */
 overflow: hidden;
 border: 0 none !important;
}

#headerBox .open-time{
  color: #fff;
  text-align: right;
}
#headerBox .open-time-container {
  display: flex;
  align-items: center;
  color: white; /* 文字颜色设为白色 */
  float: right;
  margin-right: 20px;
}
#headerBox .open-time-container:first-child{
  margin-right: 0;
}

#headerBox .open-time-container img {
  width: 50px; /* 可按需调整图标大小 */
  height: 50px;
  margin-right: 10px; /* 图标与文字间的间距 */
}

#headerBox .open-time-text p {
  margin: 0;
}

#headerBox .search-container-right {
  display: flex;
  align-items: center;
  border-radius: 20px;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  max-width: 300px;
  float: right;
}
#headerBox .search-container-right img{
  width: 15px;
  height: 15px;
  vertical-align: baseline;
}

#headerBox .search-container-right .search-input {
  flex: 1;
  border: none;
  font-size: 16px;
  outline: none;
  background-color: transparent;
  height: 40px;
  line-height: 40px;
  padding-left: 10px;
  border-radius: 40px;
  font-size: 14px;
font-weight: 400;
}

#headerBox .search-container-right .search-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#headerBox.search-container-right  .search-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* 响应式设计 */
@media (max-width: 480px) {
  .search-container-right {
    max-width: 90%;
  }
}

/*头部样式结束*/


/*底部样式*/
.bg-white #footerBox{
  background-color: #fff;
}
#footerBox{
  background: rgba(140, 0, 0, 0.05);
}
#footerBox .footer-box{
  background: #8C0000;
  padding-top: 40px;
  
}
#footerBox .footer-row{
  background: #740000;
  height: 46px;
  line-height: 46px;
  overflow: hidden;
}
#footerBox .footer-row div p{
  font-size: 15px;
  font-weight: 400;
}

#footerBox .link-box img{
  width: 22px;
  height: 22px;
  vertical-align: middle;
}
#footerBox .link-box .title{
  vertical-align: middle;
  font-size: 17px;
  font-weight: 700;
}

#footerBox .link-list ul{
  padding: 0;
  margin-top: 24px;
}
#footerBox .link-list li{
  display: inline-block;
  font-size: 15px;
  font-weight: 400;
  color: #555;
  text-align: center;
  padding: 0 10px;
  border-right: 1px solid #555;
  height: 15px;
  line-height: 15px;
}
#footerBox .link-list li.title{
  width: 84px;
  height: 35px;
  line-height: 35px;
  background: rgba(140, 0, 0, 0.1);
  padding: 0;
  color: rgba(140, 0, 0, 1);
  border: 0 none;
}
#footerBox .link-list li.last{
  border: 0 none;
}

#footerBox .phoneList{
  font-size: 18px;
  font-weight: 400;
}
#footerBox .phoneList a{
  color: #fff;
}
#footerBox .footer-box .logoImg img{
  width: 100%;
  /* height: 48px; */
    margin-top: 30px;
}

#footerBox .list-unstyled{
  display: flex;
}
#footerBox .list-unstyled li{
  width: 25%;
}
#footerBox .list-unstyled img{
  width: 90%;
  background-color: #fff;
  /* height: 90px; */

}
#footerBox .list-unstyled p{
  text-align: center;
  width: 90%;
  font-size: 15px;
  font-weight: 400;
  margin-top: 13px;
}

/*底部样式结束*/


/*
  分页样式
*/
.pagination {
    margin-top: 50px;
    justify-content: center; /* 保持分页导航居中 */
}
.pagination .page-item {
    margin: 0 5px; /* 给每个分页项之间添加间距 */
}
.pagination .page-link {
    padding: 8px 15px; /* 调整链接的内边距，让按钮看起来更饱满 */
    background-color: #fff; /* 链接背景色 */
    border: 1px solid #dee2e6; /* 链接边框 */
    color: #6c757d; /* 链接文字颜色 */
    transition: all 0.3s ease; /* 过渡效果，让样式变化更平滑 */
}
.pagination .page-link:hover {
    background-color: #e9ecef; /* 鼠标悬停时的背景色 */
    color: #495057; /* 鼠标悬停时的文字颜色 */
}
.pagination .page-item.active .page-link {
    background-color: #8c0000; /* 当前页（激活状态）的背景色 */
    border-color: #8c0000; /* 当前页的边框色 */
    color: white; /* 当前页的文字颜色 */
}


/* 列表页左侧列表 */
      .sidebar {
        padding: 0;
      }
      .sidebar h4 {
        height: 81px;
        line-height: 81px;
        background-color: #8c0000;
        color: white;
      }
      .sidebar>div {
        padding: 0 20px;
        background-image: url("/static/index/station/images/newsBg.png");
        height: 824px;
      }

      .sidebar a {
        display: block;
        padding: 18px 6px;
        color: #333;
        text-decoration: none;
        border-bottom: 0.5px solid #8c0000;
        background-color: rgba(0, 0, 0, 0);
      }

      .sidebar a.active {
        color: rgba(140, 0, 0, 1);
      }
      .sidebar a img{
        width: 19px;
        height: 19px;
        float: right;
        margin-top: 5px;
      }

          /* 重置链接样式 */
      a.no-style-link {
        color: inherit;
        text-decoration: none;
        display: block;
      }

      a.no-style-link:hover {
        color: inherit;
      }

      /* 文章卡片悬停效果 */
      .article-link {
        transition: all 0.3s ease;
      }

  /* 侧边栏整体样式 */
  /* .sidebar {
    max-width: 260px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  } */

  .sidebar h4 {
    height: 60px;
    line-height: 60px;
    background-color: #8c0000;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 8px 8px 0 0;
  }

  .sidebar .list-group {
    border-radius: 0;
  }

  .sidebar .list-group-item {
    padding: 14px 20px;
    border: none;
    border-bottom: 0.5px solid rgba(140, 0, 0, 1);
    transition: all 0.3s ease;
  }


  .sidebar .list-group-item.active {
    color: #8c0000;
    background-color: rgba(0, 0, 0, 0);
    font-weight: 500;
    border-bottom: 1px solid #8c0000;
  }
  .sidebar .list-group-item:hover, .list-group-item:focus{
    background-color: rgba(0, 0, 0, 0);
    color: #8c0000;
  }

  .sidebar .list-group-item .bi-chevron-down {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
  }

  /* 箭头旋转效果 */
  .sidebar .list-group-item[aria-expanded="true"] .arrow-icon {
    transform: rotate(180deg);
  }

  /* 二级菜单样式 */
  .sidebar .collapse .list-group-item {
    padding-left: 45px;
    font-size: 0.95rem;
    color: #6c757d;
    background-color: rgba(0, 0, 0, 0);
  }

  .sidebar .collapse .list-group-item:hover {
    color: #8c0000;
  }

  /* 响应式调整 */
  @media (max-width: 768px) {
    .sidebar {
      max-width: 100%;
      margin-top: 0;
      border-radius: 0;
    }

    .sidebar h4 {
      height: 50px;
      line-height: 50px;
      font-size: 1rem;
    }
  }

      /*列表上方标题*/
      .listBox {
        padding-left: 40px;
      }
      .listBox>h4 {
        border-bottom: 0.5px solid rgba(209, 209, 209, 1);
      }
      .listBox>h4 span {
        border-bottom: 1px solid rgba(140, 0, 0, 1);
        display: inline-block;
        font-size: 25px;
        font-weight: 700;
        height: 100%;
        color: rgba(140, 0, 0, 1);
        padding-bottom: 10px;
      }
/* 列表前圆点 */
      .custom-bullet-list {
        list-style: none; /* 移除默认圆点 */
        padding-left: 20px;
        margin: 0;
      }

      .custom-bullet-list li {
        position: relative;
        padding: 8px 0;
        border-bottom: 1px dashed rgba(56, 56, 56, 1);
        font-size: 15px;
      }
      .custom-bullet-list li span {
        display: inline-block;
        width: 98%;
      }
      .custom-bullet-list li:last-child {
        border: 0 none;
      }
      .custom-bullet-list li p {
        font-size: 15px;
        color: rgba(166, 166, 166, 1);
      }

      /* 使用伪元素创建自定义圆点 */
      .custom-bullet-list li::before {
        content: "";
        position: absolute;
        left: -16px; /* 调整圆点位置 */
        top: 18px; /* 调整圆点垂直位置 */
        width: 6px; /* 圆点大小 */
        height: 6px; /* 圆点大小 */
        background: rgba(140, 0, 0, 1);
      }

      /* 全局样式 */
      body {
        font-family: "Microsoft YaHei", sans-serif;
        line-height: 1.7;
      }

      .news-card {
        transition: all 0.3s ease;
      }

      .news-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      }
      #newsCarousel {
        border-radius: 10px;
        overflow: hidden;
      }
      #newsCarousel .carousel-indicators {
        left: auto;
        margin-left: 0;
        margin-right: 30px;
        margin-bottom: 24px;
      }
      #newsCarousel .carousel-indicators button {
        width: 10px !important;
        height: 10px !important;
        border-radius: 10px !important;
      }
      #newsCarousel .carousel-item {
        position: relative;
      }
      #newsCarousel .title-text {
        position: absolute;
        width: 100%;
        height: 60px;
        background: rgba(56, 56, 56, 0.6);
        bottom: 0;
        margin: 0;
        color: #fff;
        line-height: 60px;
        font-size: 17px;
        font-weight: 400;
        padding-left: 30px;
        box-sizing: border-box;
      }
      .newsHeader {
        font-size: 32px;
        font-weight: 700;
        color: #8c0000;
        border-bottom: 0.5px solid #adadad;
        padding-bottom: 20px;
      }
      .newsHeader p{
        display: inline-block;
        width: 80%;
        text-indent: 3em;
        color: rgba(56, 56, 56, 1);
        margin-top: 10px;
      }
      .newsHeader span {
        display: inline-block;
        height: 34px;
        line-height: 34px;
        border-left: 1px solid #8c0000;
        font-size: 18px;
        font-weight: 300;
        color: #383838;
        padding-left: 16px;
        vertical-align: bottom;
        text-indent: initial;
      }
      .newsHeader.twoline span{
        margin-left: 18px;
        text-align: left;
      }
      .newsHeader div {
        float: right;
        font-size: 16px;
        font-weight: 400;
        color: rgba(128, 128, 128, 1);
        margin-top: 16px;
      }
      .newsHeader div img {
        width: 21px;
        height: 21px;
        vertical-align: text-top;
      }
      .newsList a {
        border-bottom: 0.5px dashed #383838;
        padding: 40px 0 20px 0;
        font-size: 17px;
        font-weight: 400;
        color: #333;
      }
      .newsList a.first {
        padding-top: 0;
      }
      .newsList a h5 {
        width: 80%;
      }
      .newsList a.small {
        font-size: 14px;
        font-weight: 400;
        color: #555;
      }
      .p-5.rounded {
        padding-left: 0 !important;
      }
      .cardBox {
        border: 0 none;
        border-radius: 0;
      }
      .cardBox.active {
        box-shadow: 0px 2px 9px rgba(140, 0, 0, 0.1);
      }
      .cardBox .time {
        background: rgba(201, 201, 201, 1);
        flex: 0 0 80px;
        padding: 10px 0;
      }
      .cardBox.active .time {
        background: rgba(140, 0, 0, 1);
      }
      .cardBox .card-title {
        font-size: 16px;
        font-weight: 400;
        color: rgba(56, 56, 56, 1);
        line-height: 25px;
        text-align: left;
      }
      .text-truncate-2 {
        display: -webkit-box;
        -webkit-line-clamp: 2; /* 显示2行 */
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
      }


      /*科技学院首页*/
      /*轮播图+列表*/
       img {
        display: inline-block !important;
      }
      .carouselList .newsList .timeline-item a {
        padding: 22px 0;
      }
      .carouselList .newsList .timeline-item:first-child a {
        padding-top: 0;
      }
      .carouselList .timeline-item {
        position: relative;
        padding-left: 30px;
      }
      .carouselList .timeline-badge {
        position: absolute;
        left: 10px;
        top: 30px;
        width: 12px;
        height: 12px;
        background-color: #e74c3c; /* 可以根据需求修改圆点颜色 */
        border-radius: 50%;
        border: 2px solid white;
      }
      .carouselList .timeline-item:first-child .timeline-badge {
        top: 7px;
      }
      .carouselList .timeline-item::before {
        content: "";
        position: absolute;
        left: 15px;
        top: 0;
        width: 0.5px;
        height: 100%;
        background-color: rgba(222, 222, 222, 1); /* 时间轴线条颜色 */
      }
      /*两个栏目*/
      .twoList .indexRow .newsHeader {
        font-size: 28px;
      }
      .twoList .indexRow .newsHeader span {
        font-size: 14px;
        height: 30px;
        line-height: 30px;
      }
      .twoList .indexRow .newsHeader div {
        margin-top: 8px;
      }
    
      .twoList .indexRow .card {
        border: 0 none;
      }
      .twoList .indexRow .card .card-header {
        border: 0 none;
        padding: 10px 0;
        background: rgba(240, 233, 233,1);

      }
      .twoList .indexRow .card-body {
        padding: 0 16px;
        border-radius: 10px;
      }
      .twoList .custom-bullet-list {
        list-style: none; /* 移除默认圆点 */
        padding: 0 30px;
        margin: 0;
      }

      .twoList .custom-bullet-list li {
        position: relative;
        padding: 16px 0;
        border-bottom: 1px dashed rgba(56, 56, 56, 1);
        font-size: 15px;
      }
      .twoList .custom-bullet-list li span {
        display: inline-block;
        width: 80%;
        vertical-align: middle;
      }
      .twoList .custom-bullet-list li:last-child {
        border: 0 none;
      }
      .twoList .custom-bullet-list li p {
        font-size: 15px;
        color: rgba(166, 166, 166, 1);
        display: inline-block;
        vertical-align: middle;
      }


      /*红色边框的两个栏目*/
       .recruitStudent.twoList .indexRow .card-body {
        padding: 0;
      }
      .twoList .custom-bullet-list.borderRed {
        border: 0.5px solid rgba(140, 0, 0, 1);
        border-radius: 10px;
      }
      .twoList .custom-bullet-list.borderRed h5 {
        font-size: 22px;
        font-weight: 700;
        color: rgba(140, 0, 0, 1);
        border-bottom: 0.5px solid rgba(209, 209, 209, 1);
        
      }
      .twoList .custom-bullet-list.borderRed h5 span{
        display: inline-block;
        padding: 14px 0;
        border-bottom: 1px solid rgba(140, 0, 0, 1);
      }
      
      .twoList .indexRow .card-body .borderRed:nth-child(2){
        margin-top: 20px;
      }
      

      /*三个栏目*/
      .threeList .card{
        border: 0 none;
        background: rgba(0, 0, 0, 0);
        padding-top: 10px;
      }
      .threeList .card-body{
        padding: 0;
      }
      .threeList .card img{
        height: 300px;
        border-radius: 10px;
      }
      .threeList .card-body h5{
        font-size: 19px;
        font-weight: 700;
        padding: 20px 0 10px;
        color: rgba(56, 56, 56, 1)
      }
      .threeList .card-body p{
        font-size: 16px;
        font-weight: 400;
        color: rgba(128, 128, 128, 1);
      }
      .threeList .card-body span{
        font-size: 15px;
        font-weight: 400;
        color: rgba(166, 166, 166, 1);
      }
      /* 使用伪元素创建自定义圆点 */
      .twoList .custom-bullet-list li::before {
        content: "";
        position: absolute;
        left: -16px; /* 调整圆点位置 */
        top: 28px; /* 调整圆点垂直位置 */
        width: 6px; /* 圆点大小 */
        height: 6px; /* 圆点大小 */
        background: rgba(140, 0, 0, 1);
      }
      /* 手风琴导航按钮样式 */
      #prev-btn,
      #next-btn {
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      #prev-btn {
        background: rgba(140, 0, 0, 1);
      }
      #prev-btn img, #next-btn img{
        width: 18px;
        height: 14px;
      }
      #prev-btn:hover {
        background-color: #900;
      }
      #next-btn {
        background-color: rgba(140, 0, 0, 0.1);
      }
      #next-btn:hover {
        background-color: rgba(140, 0, 0, 0.3);
      }

      /*图文列表样式 xydt.html*/
      .news-card {
        transition: all 0.3s ease;
      }

      .news-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      }
      .imgTextList .article {
        padding: 20px 0px;
        border-bottom: 1px solid #e5e5e5;
        display: flex;
        flex-wrap: wrap;
      }

      .imgTextList .article-img {
        width: 30%;
        padding-right: 15px;
      }

      .imgTextList .article-img img {
        width: 100%;
        height: auto;
      }

      .imgTextList .article-content {
        width: 70%;
      }
      .imgTextList .article-content p{
        margin-top: 16px;
        padding-top: 16px;
        border-top: 0.5px dashed rgba(209, 209, 209, 1);
      }

      .imgTextList .article h4 {
        margin-bottom: 5px;
      }

      .imgTextList .article span {
        color: #999;
        font-size: 14px;
      }
      .imgTextList .article span img{
        width: 18px;
        height: 18px;
        vertical-align: sub;
      }
      .imgTextList .article a{
        float: right;
        border: 0.5px solid rgba(128, 128, 128, 1);
        color: rgba(128, 128, 128, 1);
        width: 95px;
        height: 35px;
        line-height: 35px;
        font-size: 14px;
        padding: 0;
      }
       .imgTextList .article a:hover{
        border: 0.5px solid rgba(128, 128, 128, 1);
        color: rgba(128, 128, 128, 1);
       }

      @media (max-width: 768px) {
        .imgTextList .article-img,
        .imgTextList .article-content {
          width: 100%;
          padding-right: 0;
        }
        .imgTextList .article-img {
          margin-bottom: 15px;
        }
      }
   
       /* 纯文字列表 textList.html */

      .allTextList .card {
        border: 0 none;
      }
      .allTextList .card-body {
        padding: 0;
      }
      
      .listBox.allTextList .custom-bullet-list li::before {
        top: 30px;
      }
      .listBox.allTextList .custom-bullet-list li p {
        width: 80%;
        color: rgba(56, 56, 56, 1);
        font-size: 18px;
        display: inline-block;
        margin: 10px 0;
      }
      .listBox.allTextList .custom-bullet-list li span {
        float: right;
        width: auto;
        font-size: 16px;
        color: rgba(166, 166, 166, 1);
        margin: 10px 0;
      }
      .listBox.allTextList .custom-bullet-list li:last-child {
        border-bottom: 1px dashed rgba(56, 56, 56, 1);
      }


      /*列表-带日期 inform.html*/
      /* 侧边栏链接样式 */
       
        .textTimeList .article {
            padding: 20px 0px;
            border-bottom: 1px dashed #e5e5e5;
            display: flex;
            flex-wrap: wrap;
            cursor: pointer;
        }

        .textTimeList .article-time {
            width: 10%;
            margin-right: 15px;
            text-align: center;
            border-right: 0.5px solid rgba(214, 214, 214, 1);
        }

        .textTimeList .article-time p {
            font-size: 22px;
            color: rgba(85, 85, 85, 1);
        }
        
        .textTimeList .article-time span{
            font-size: 15px;
            color: rgba(128, 128, 128, 1)
        }

        .textTimeList .article-content {
            width: 87%;
        }
        
        .textTimeList .article-content h5{
            color:  rgba(56, 56, 56, 1);
        }
        
        .textTimeList .article-content p{
            color: rgba(128, 128, 128, 1);
            font-size: 14px;
            margin-bottom: 0;
        }

        .textTimeList .article h4 {
            margin-bottom: 5px;
        }

        .textTimeList .article span {
            color: #999;
            font-size: 14px;
        }
        
        .textTimeList .article span img{
            width: 18px;
            height: 18px;
            vertical-align: sub;
        }
        
        .textTimeList .article a{
            float: right;
            border: 0.5px solid rgba(128, 128, 128, 1);
            color: rgba(128, 128, 128, 1);
            width: 95px;
            height: 35px;
            line-height: 35px;
            font-size: 14px;
            padding: 0;
        }
        
        .textTimeList .article a:hover{
            border: 0.5px solid rgba(128, 128, 128, 1);
            color: rgba(128, 128, 128, 1);
        }

        @media (max-width: 768px) {
            .textTimeList .article-img,
            .article-content {
                width: 100%;
                padding-right: 0;
            }
            .textTimeList .article-img {
                margin-bottom: 15px;
            }
        }


        /*详情页标题下方的时间、作者、浏览量*/
      .info-bar {
        background: rgba(204, 204, 204, 0.2);
        padding: 10px;
        display: flex;
        justify-content: center;
        gap: 20px;
        align-items: center;
        margin-bottom: 10px;
      }

      .info-bar .info-item {
        display: flex;
        align-items: center;
        gap: 5px;
        color: rgba(128, 128, 128, 1);
        
      }

      .info-bar .info-icon {
        width: 18px;
        height: 18px;
      }


      /*老师列表*/
      .teacherList.imgTextList .article-img{
        width: 16%;
        display: inline-block;
        vertical-align: middle;
      }
      
      .teacherList.imgTextList .article-content{
        width: 84%;
        display: inline-block;
        vertical-align: middle;
      }
      .teacherList.imgTextList .article-content p{
        border: 0 none;
        margin-top: 0;
        color: rgba(56, 56, 56, 1);

      }
      .teacherList.imgTextList .article span{
        font-size: 16px;
      }
      .teacherList.imgTextList .article a{
        float: none;
        width: 100%;
        border: 0 none;
        height: auto;
        line-height: normal;
        font-size: initial;
        color: inherit;
      }


      /*校园风光*/
      .imgListBox.listBox .carousel {
        height: 560px; /* 调整轮播图高度 */
      }
      .imgListBox.listBox .img-thumbnail {
        cursor: pointer; /* 缩略图显示手型光标 */
        padding: 0;
        border: 0 none;
        height: 132px;
        object-fit: cover;
      }
      .imgListBox.listBox .active-thumb+ .bun_bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 93%;
        height: 100%;
        background: #000;
        filter: alpha(opacity=60);
        -moz-opacity: 0.6;
        -khtml-opacity: 0.6;
        opacity: 0.6;
        border-radius: 5px;
      }
      .imgListBox.listBox .carousel-item img {
        height: 560px; /* 让图片高度等于容器高度 */
        object-fit: cover; /* 图片会覆盖整个容器，可能会裁剪部分图片 */
      }
 /* 缩略图容器样式 */
      .thumbnail-container {
        position: relative;
      }

      .thumbnails-wrapper {
        padding: 0 30px 0 0; /* 为滚动按钮留出空间 */
        -webkit-overflow-scrolling: touch; /* 增强移动设备滚动体验 */
      }
      .thumbnails-wrapper .col-3 {
        position: relative;
      }

      /* 缩略图容器样式 */
      .thumbnail-container {
        position: relative;
      }

      .thumbnails-wrapper {
        padding: 0 30px 0 0;
        -webkit-overflow-scrolling: touch;
        overflow-x: auto;

        /* 隐藏滚动条但保留滚动功能 */
        scrollbar-width: none; /* Firefox */
      }

      .thumbnails-wrapper::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Edge */
      }

      .thumbnails-wrapper .col-3 {
        position: relative;
      }
  
  
  
  /* 模态框样式 */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    transition: opacity 0.3s ease;
  }
  
  .modal-content {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
  }
  
  .close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .close:hover,
  .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }
  
  /* 模态框视频样式 */
  #modalVideo {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
  }
  
  /* 响应式调整 */
  @media screen and (max-width: 768px) {
    .modal-content {
      width: 100%;
    }
  }

  #videoModal{
        background-color: rgba(0, 0, 0, 0.5);
        position: fixed;
        z-index: 50;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
      }
      /* 模态框过渡动画 */
      .hidden {
        display: none;
      }
      .fade-in {
        animation: fadeIn 0.3s ease-in-out;
      }
      @keyframes fadeIn {
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }


  /*招生政策*/
  .recruitStudent.twoList .indexRow .card .card-header{
    background-color: rgba(0, 0, 0, 0);
  }
  .recruitStudent.twoList .indexRow .card{
     background-color: rgba(0, 0, 0, 0);
  }

   .threeQuestion img {
        width: 38px;
        height: auto;
      }
      .threeQuestion p {
        margin: 0;
        font-size: 28px;
        font-weight: 700;
      }
      .threeQuestion p img{
        width: 22px;
        height: 22px;
      }
      .officeHall.threeQuestion p{
        font-size: 26px;
      }

      .threeQuestion small {
        font-size: 15px;
        font-weight: 300;
      }
      .btn-custom {
        background-size: cover;
        color: white;
        width: 100%;
        padding: 20px;
        border: none;
        border-radius: 8px;
      }
      .threeQuestion .btn:hover {
        color: #fff;
      }
    

    

      .button-text {
        font-size: 20px;
        margin-left: 10px;
      }

      .video-placeholder {
        position: relative;
        cursor: pointer;
        margin-bottom: 20px;
        height: 280px;
      }
      .video-placeholder img {
        height: 100%;
      }

      .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
      }

      .play-button img {
        width: 100%;
        height: 100%;
      }

      .modal-backdrop {
        background-color: rgba(0, 0, 0, 0.9);
      }

      .modal-content {
        background-color: transparent;
        border: none;
      }

      .videoThreeBox p {
        position: absolute;
        bottom: 0;
        left: 0;
        background-color: #fff;
        padding: 12px 0;
        background: rgba(56, 56, 56, 0.3);
        width: 100%;
        text-align: center;
        color: rgba(255, 255, 255, 1);
        font-size: 16px;
        font-weight: 400;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
      }
      .imgFourBox img {
        height: 245px;
        border-radius: 10px;
      }

      .fixed-sidebar {
        position: fixed;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        z-index: 1000;
      }
      .sidebar-item {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        background: rgba(140, 0, 0, 1);
        /* 深红色，可根据实际需求调整 */
        color: white;
        width: 84px;
        height: 84px;
        margin-bottom: 1px;
        text-decoration: none;
        transition: background-color 0.3s ease;
        position: relative;
      }
      .sidebar-item:hover {
        background-color: #9b1010; /* 鼠标悬停时颜色变深 */
      }
      .sidebar-item img {
        width: 30px;
        height: 30px;
        margin-bottom: 5px;
      }
      .sidebar-item span {
        font-size: 16px;
        font-weight: 400;
      }
      .qr-popup {
        position: absolute;
        right: 84px;
        background-color: #fff;
        padding: 13px 35px;
        box-shadow: 0px 2px 9px rgba(0, 0, 0, 0.05);
        top: 0;
        font-size: 14px;
        font-weight: 400;
        color: rgba(56, 56, 56, 1);
        text-align: center;
        opacity: 0; /* 初始透明度为0，隐藏状态 */
        visibility: hidden; /* 初始不可见 */
        transition: opacity 0.3s ease, visibility 0.3s ease; /* 添加过渡效果 */
        width: auto;
      }
      .qr-popup.active {
        opacity: 1; /* 显示时透明度为1 */
        visibility: visible; /* 显示时可见 */
      }
      #phonePopup, #indexPhonePopup {
        height: 84px;
      }
      #phonePopup p, #indexPhonePopup p {
        width: 123px;
        font-size: 16px;
        font-weight: 400;
        color: rgba(56, 56, 56, 1);
        margin-top: 5px;
      }
      #phonePopup span, #indexPhonePopup span {
        font-size: 16px;
        font-weight: 400;
        color: rgba(140, 0, 0, 1);
      }
      .qr-popup img {
        width: 102px;
        height: 102px;
        max-width: initial;
      }


      /*图片列表*/
      .imageList div img{
        height: 290px;
      }
      .imageList div p{
        background: rgba(242, 242, 242, 1);
        font-size: 17px;
        font-weight: 400;
        padding: 15px 0;
      }
      .imageList .col-md-6{
        position: relative;
      }
     
      .imageList .img-fluid {
          display: block;
          width: 100%;
      }

      .imageList .videoPlay {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -90%);
          width: 60px; /* 根据需要调整播放图标大小 */
          height: 60px;
          z-index: 10; /* 确保图标显示在图片上方 */
      }

      /*素质教育*/
      .educationList .img-container {
      position: relative;
    }
    .educationList .img-container img{
      height: 300px;
    }

   .educationList .img-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(56, 56, 56, 0.6);
      color: white;
      text-align: center;
      padding: 12px 0;
      border-radius: 0 0 5px 5px;
      font-size: 19px;
      font-weight: 400;
    }

     /* 自定义样式 */
   .educationList .img-container {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      margin-bottom: 1.5rem;
    }

   .educationList .img-container img {
      transition: transform 0.3s ease;
    }

   

   .educationList .img-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
      color: white;
      text-align: center;
      padding: 15px 10px 10px;
      font-weight: 500;
      transform: translateY(0);
      transition: transform 0.3s ease;
    }

   

    /* 自定义圆点样式 */
   .educationList .custom-dot {
      display: inline-block;
      width: 6px;
      height: 6px;
      opacity: 1;
      background: rgba(140, 0, 0, 1);
      margin-right: 8px;
    }

    /* 列表项样式 */
   .educationList .news-item {
      padding: 8px 0;
      border-bottom: 1px solid #f0f0f0;
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
    }


   .educationList .news-date {
      font-size: 0.9rem;
      color: #6c757d;
      margin-left: 10px;
      white-space: nowrap;
    }

    /* 链接样式 */
   .educationList .link-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 10;
    }

    /* 新增：新闻标题容器样式 */
   .educationList .news-title-container {
      flex: 1;
      min-width: 0; /* 确保在flex布局中可以应用溢出省略 */
    }

    /* 新增：单行文本溢出显示省略号 */
   .educationList .news-title {
      display: block;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /*资助中心*/
    .subsidize{
      border-radius: 10px;
      border: 0.5px solid rgba(140, 0, 0, 1);
    }
    .subsidize .row{
      border-right: 0.5px dashed rgba(179, 179, 179, 1);
    }
    
    .subsidize .notice-item {
        padding: 26px 10px;
    }
    .subsidize .notice-item .notice-years{
        display: inline-block;
        border-top: 0.5px dashed rgba(140, 0, 0, 1);
        font-size: 16px;
        font-weight: 400;
        color: rgba(140, 0, 0, 1);
        padding-top: 5px;
    }

    .subsidize .notice-date {
        font-size: 26px;
        font-weight: 700;
        color: rgba(140, 0, 0, 1);
        
    }
    .subsidize .notice-item h6{
      font-size: 17px;
      font-weight: 400;
      color: rgba(56, 56, 56, 1);
      text-align: left;
    }
    .subsidize .notice-item p{
      margin-top: 10px;
      font-size: 15px;
      font-weight: 400;
      color: rgba(128, 128, 128, 1);
      text-align: left;
    }
    .subsidize .notice-item img{
      width: 27px;
      height: 27px;
    }

    /* 自定义样式让背景图片铺满且居中 */
   .bg-img {
      /* background-image: url('your - image - path.jpg'); 替换为实际图片路径 */
      background-size: cover;
      background-position: center;
      position: absolute; /* 使用fixed固定在视口 */
      
      display: flex;   /* 使用Flexbox布局 */
      align-items: center; /* 垂直居中 */
      justify-content: center; /* 水平居中 */
      z-index: 5;
    }

     
    /* 搜索框居中样式 */
    .search-container.container {
      position: absolute;
      top: 35%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 80%;
      /* max-width: 800px; */
      z-index: 10; /* 确保搜索框在轮播图上方 */
    }
    .search-container>div{
      padding: 30px 15% 70px;
    }
    
    /* 轮播图样式 */
    .carousel-item {
      height: 500px; /* 设置轮播图高度 */
    }
    
    .carousel-item img {
      object-fit: cover; /* 确保图片覆盖容器 */
      height: 100%;
    }
/* 替代方案：使用伪元素自定义单选按钮样式 */
input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(56, 56, 56, 1);
  border-radius: 50%;
  margin-right: 5px;
  position: relative;
  cursor: pointer;
}
.form-check-input:checked{
  background-color: initial;
  box-shadow: none;
}
.form-check-input:focus{
  box-shadow: none;
  border-color: rgba(140, 0, 0, 1);
  background-color: initial;
}
input[type="radio"]{
  margin-top: 2px;
}
input[type="radio"]:checked {
  border: 5px solid rgba(140, 0, 0, 1);
}

/* input[type="radio"]:checked::after {
  content: '';
  width: 10px;
  height: 10px;
  background-color: rgba(140, 0, 0, 1);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
} */

/* 添加单选按钮自定义样式 */
input[type="radio"] {
  accent-color: var(--primary-color);
}

.custom-select {
  position: relative;
}
.custom-select img{
  width: 16px;
  height: 16px;
}

.select-header {
  user-select: none;
  border-right: 0 !important;
}

.select-header:hover {
  background-color: #f8f9fa;
}

.select-header.active .fa-chevron-down {
  transform: rotate(180deg);
}

.select-options {
  max-height: 200px;
  overflow-y: auto;
}

.option.selected {
  background-color: #e9ecef;
  font-weight: 500;
}

.hidden {
  display: none;
}
.searchInput.form-control:focus{
  box-shadow: none;
}
.search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(140, 0, 0, 1);
  background: rgba(140, 0, 0, 1);

}

.search-btn img {
  width: 16px;
  height: 16px;
}

@media (max-width: 576px) {
  .search-filter {
    width: 100px;
  }
}

.search-filter {
  flex: 0 0 18%;
  /* 移除select元素的默认点击样式 */
  outline: none;
  box-shadow: none;
  border-color: #ced4da; /* 恢复默认边框颜色 */
}
.search-filter option{
  background-color: #f8f9fa;
  color: #212529;
  padding: 0.375rem 0.75rem;
  border: 0 none;
  border-radius: 0;
}

.linkList img{
  width: 110px;
  height: 110px;
}

.database img{
  width: 20px;
  height: 20px;
  vertical-align: sub;
  margin-right: 10px;
}
.database a{
  color: #fff;
}
.database .try{
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-block;
  background: rgba(255, 255, 255, 0.5);
  text-align: center;
  line-height: 18px;
  font-size: 10px;
  color: #fff;
  vertical-align: top;
}
/*新书速递*/


.bookList .bookListBox{
  background-color: #fff;
  box-shadow: 0px 2px 10px  rgba(0, 0, 0, 0.1);
  padding: 24px;
  border-radius: 10px;
}

.bookList .swiper-slide img {
  width: 140px;
  height: 190px;
}
.bookList .swiper-slide h5{
  font-size: 17px;
font-weight: 400;
margin-top: 12px;
}
.bookList .swiper-slide p{
  font-size: 14px;
font-weight: 400;
color: rgba(166, 166, 166, 1);
}
.bookList .swiper-button-next, .bookList .swiper-container-rtl .swiper-button-prev{
  background-image: url('/static/index/station/images/rightBook.png');
  width: 40px;
  height: 40px;
  background-size: 40px 40px;
}
.bookList .swiper-button-prev, .bookList .swiper-container-rtl .swiper-button-next{
 background-image: url('/static/index/station/images/leftBook.png');
  width: 40px;
  height: 40px;
  background-size: 40px 40px;
}
/* .bookList .swiper-button-prev,
.bookList .swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
  
  left: -30px; 
  right: -30px; 
} */







blockquote, body, button, dd, div, dl, dt, form, h1, h2, h3, h4, h5, h6, input, ul, li, ol, p, pre, td, textarea, th, header, footer, nav, section, aside, article, main, a {
  box-sizing: border-box;
}
:root {
  --primary: rgba(54, 92, 182, 1);
  --danger: rgba(255, 87, 51, 1);
  --green: rgba(53, 133, 98, 1);
}

body {
  max-width: 2560px;
  min-width: 1320px;
  min-height: 100vh;
  margin: auto;
  background-color: rgba(246, 246, 246, 1);
  color: #383838;
  /*font-family: SourceHanSans, sans-serif;*/
  line-height: 1.4;
}

input, button {
  border: none;
  outline: none;
  background-color: transparent;
}
.wrap {
  position: relative;
  width: 1320px;
  height: 100%;
  margin: 0 auto;
}
/*.active {*/
/*  font-weight: 500;*/
/*  color: var(--primary) !important;*/
/*}*/
a {
  color: inherit;
}
/*a:hover {*/
/*  color: var(--primary);*/
/*}*/
button:hover {
  opacity: 0.8;
}

.r-fill {
  border-radius: 999px;
}
.flex {
  display: flex;
}
.flex-d-col {
  flex-direction: column;
}
.flex-y-c {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius:10px;
box-shadow: 0px 2px 10px  rgba(0, 0, 0, 0.1);
padding-top: 30px;
}
.flex-x-c {
  justify-content: center;
}
.flex-x-b {
  /*justify-content: space-between;*/
}
.flex-x-z {
  justify-content: space-between;
}
.flex-1 {
  flex: 1;
  overflow: hidden;
}
.ml-x {
  margin-left: auto;
}
.m-auto {
  margin: auto;
}
.hide-two {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.com-tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  padding: 0 1em;
  min-width: 100px;
  height: 40px;
  color: #fff;
  background-color: var(--primary);
  cursor: pointer;
}
.com-tag:hover {
  opacity: 0.8;
}
.primary-plain {
  background-color: rgba(3, 83, 154, 0.15);
  color: var(--primary);
}
.primary-bd {
  background-color: #fff;
  border: 1px solid var(--primary);
  color: var(--primary);
}
.primary-bg {
  background-color: var(--primary);
  color: #fff;
}
.error-bg {
  background-color: var(--danger);
  color: #fff;
}
.success-bg {
  background-color: rgba(54, 201, 192, 1);
  color: #fff;
}
.info-bg {
  background-color: rgba(166, 166, 166, 0.8);
  color: #fff;
}
.pr {
  position: relative;
}
.f-13 {
  font-size: 13px;
}
.f-15 {
  font-size: 15px;
}
.f-17 {
  font-size: 17px;
}
.f-b {
  font-weight: bold;
}
.t-c {
  text-align: center;
}
.t-sw {
  font-weight: 500;
}
.t-gray {
  color: #808080;
}
.t-primary {
  color: var(--primary);
}
.t-error {
  color: var(--danger);
}
.t-333 {
  color: #333;
  font-weight: bold;
}
.t-555 {
  color: #555;
}
.t-777 {
  color: #777;
}
.t-999 {
  color: #999;
}
.t-a6 {
  color: #a6a6a6;
}
.bgc-white {
  background-color: #fff;
}
/* 澶撮儴 */
.header {
  z-index: 9999;
  width: 100%;
  height: 95px;
  left: 50%;
  transform: translateX(-50%);
  position: fixed;
}
.head-wrap {
  width: 1400px;
  height: 100%;
  margin: 0 auto;
}
.logo {
  width: 245px;
  height: 65px;
}
.nav {
  padding-left: 125px;
  flex: 1;
}
.nav-li {
  /*margin: 0 27px;*/
  height: 95px;
  display: flex;
  width: 115px;
}
.nav-row {
  white-space: nowrap;
  margin: auto;
  position: relative;
  font-size: 17px;
  padding-bottom: 5px;
      padding-top: 4px;
}
.nav-li.active .nav-row::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 50%;
  height: 2px;
  background-color: var(--primary);
}
.nav-li:hover .nav-child {
  display: block;
}
.nav-child {
  z-index: 9998;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
  transition: all 0.5s;
}
.nav-pro {
  text-align: center;
  padding: 20px 0;
}
.pro-img-sm {
  width: 160px;
  height: 160px;
}
.n-tag {
  padding: 0 12px;
  min-width: 136px;
  height: 40px;
  border-radius: 999px;
  color: #a6a6a6;
  border: 1px solid #a6a6a6;
}

.n-tag1{
padding: 0 50px;
    min-width: 150px;
    height: 22px;
    color: #7a7a7a;

}
.nav-pro:not(:last-child) .n-tag1{
    border-right: 1px solid #a6a6a6;
}

.n-tag i {
  margin-left: 2px;
  color: #c4c4c4;
}
.n-tag:hover {
  background-color: var(--primary);
  border: none;
  color: #fff;
}
.n-tag:hover i {
  color: #fff;
}

/* 搴曢儴 */
.f-dl {
  white-space: nowrap;
  margin-right: auto;
}
.foot-t {
  padding-top: 55px;
  height: 378px;
  background: url(../image/foot-bg.png) no-repeat center/cover;
}
.f-dt {
  color: #fff;
  font-size: 17px;
  margin-bottom: 1em;
}
.f-dd {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.f-qr {
  width: 100px;
  height: 100px;
  background-color: #fff;
  padding: 5px;
  margin-bottom: 8px;
}
.f-dd-last {
  line-height: 2;
  color: rgba(255, 255, 255, 0.7);
}
.f-dd-last i {
  color: inherit;
  margin-right: 8px;
}
.foot-b {
  background-color: rgba(31, 75, 125, 1);
  text-align: center;
  height: 46px;
  line-height: 46px;
  color: rgba(255, 255, 255, 0.8);
}
/* 椤甸潰 */
.main {
  min-height: calc(100vh - 495px);
}
/* .container {
  position: relative;
  padding: 40px 0;
} */

/* .title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
} */
.zh {
  font-size: 26px;
  font-weight: 700;
}
.en {
  margin-left: 14px;
  font-size: 22px;
  text-transform: uppercase;
}
.more {
  width: 120px;
  height: 40px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.more:hover {
  opacity: 0.8;
}
.more i {
  margin-left: 12px;
  font-size: 24px;
  color: inherit;
}
.pro-img {
  width: 200px;
  height: 200px;
}


.fix-box {
  z-index: 100;
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.fix-item {
  padding-left: 20px;
  position: relative;
  cursor: pointer;
}
.fix-item:hover>.fix-child {
  display: block;
}
.fix-row {
  margin: 1px 0;
  border-radius: 3px;
  width: 75px;
  height: 75px;
  background-color: var(--primary);
  color: #fff;
  display: flex;
}
.fix-row i {
  margin: auto;
  font-size: 36px;
  color: inherit;
}
.fix-child {
  display: none;
  position: absolute;
  top: 0;
  left: -200px;
  width: 200px;
  background-color: #fff;
  border-radius: 3px;
  transition: all 0.4s;
}
.fix-row:hover>.kf{
    display: none;
}
.fix-row:hover>.fix-txt {
    display: block !important;
}


.i-banner {
  display: block;
  height: 400px;
  padding-top: 180px;
}
.i-b-title {
  position: relative;
  color: #fff;
  padding-bottom: 36px;
}
.i-b-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: #fff;
}
.i-b-zh {
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 2px;
}
.i-b-en {
  font-weight: 300;
  font-size: 18px;
  text-transform: uppercase;
}
.bread {
  display: flex;
  align-items: center;
  height: 70px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.i-aside {
  padding-top: 30px;
}
.i-tab {
  margin-right: 28px;
  min-width: 130px;
  border-radius: 5px;
  border: 1px solid #a6a6a6;
  background-color: transparent;
  color: #a6a6a6;
  font-size: 16px;
}
.i-tab.current {
  background-color: var(--primary);
  border: none;
  color: #fff;
  font-weight: 700;
}
.i-col {
  /*position: relative;*/
  padding-right: 3em;
}
.i-col:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 2px;
  width: 2px;
  height: 20px;
  background-color: #777;
}
.i-link {
  font-size: 16px;
  color: #777;
  position: relative;
  display: block;
  padding-bottom: 10px;
}
.i-link.active {
  border-bottom: 2px solid var(--primary);
}

.re-hd {
  display: flex;
  align-items: center;
  margin: 36px 0;
}
.re-h5 {
  position: relative;
  /*display: flex;*/
  align-items: center;
  font-size: 22px;
  color: var(--primary);
  font-weight: 700;
  border-left: 3px solid;
    padding: 0 10px;
}
/*.re-h5::before {*/
/*  content: "";*/
/*  width: 3px;*/
/*  height: 24px;*/
/*  margin-right: 20px;*/
/*  background-color: var(--primary);*/
/*}*/
.d-h5 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
}
.d-article {
  width: 870px;
}
.d-other p {
  padding: 4px 0;
  color: #777;
}
.d-aside {
  margin-left: auto;
  width: 420px;
}
.d-aside .re-h5 {
  margin-bottom: 24px;
}


.primary-bg:hover{
    background-color: var(--primary);
    color: #fff;
}

.re-n-item1 {
  margin-top: 16px;
  padding-bottom: 24px;
}
.re-n-item1:not(:last-child) {
  border-bottom: 1px solid rgba(214, 214, 214, 1);
}
.re-n-img1 {
  overflow: hidden;
  width: 126px;
  height: 80px;
  margin-right: 12px;
}
.re-item2 {
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 3px;
  padding: 20px 12px;
  /*border: 1px solid #a6a6a680;*/
}
.re-item2:hover {
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(54, 92, 182, 0.1);
}
.re-n-img2 {
  overflow: hidden;
  width: 130px;
  height: 100px;
  margin-right: 10px;
}
/* 瑙ｅ喅鏂规 */
.o-list {
  display: grid;
  grid-template-columns: repeat(3, 456px);
  gap: 16px;
}
.o-item {
  position: relative;
  height: 292px;
  color: #fff;
}
/*.o-item::after {*/
/*  z-index: 2;*/
/*  content: "";*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  background-image: linear-gradient(270deg, rgba(68, 116, 179, 0.15) 0%, rgba(68, 116, 179, 0.4) 93.75%, rgba(68, 116, 179, 0.4) 100%);*/
/*}*/
/*.o-item:nth-child(1)::after {*/
/*  background-image: linear-gradient(270deg, rgba(165, 214, 63, 0.15) 0%, rgba(68, 116, 179, 0.4) 93.75%, rgba(68, 116, 179, 0.4) 100%);*/
/*}*/
.o-text {
z-index: 1;
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    padding: 0 10px;
    text-align: center;
backdrop-filter: blur(4px);
    height: 39px;
    line-height: 35px;
  
}

.o-item:hover{
font-weight: bold;
color: #fff;
  
}

.o-list2 {
  display: grid;
  grid-template-columns: repeat(4, 315px);
  justify-content: space-between;
  row-gap: 30px;
}
.o-item2 {
  overflow: hidden;
  height: 360px;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 2px 10px 1px rgba(54, 92, 182, 0.1);
}
.o2-img {
  overflow: hidden;
  width: 100%;
  height: 200px;
}

.opt1-img {
  margin-left: 80px;
  overflow: hidden;
width: 850px;
    height: 547px;
}

.opt1-tabs {
  z-index: 99;
  position: sticky;
  top: 0;
  background-color: #fff;
}
.opt1-tab {
  margin-right: 75px;
  height: 60px;
  padding-bottom: 30px;
  font-size: 18px;
  color: #222;
}
.opt1-tab.current {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}
.o-zh {
  margin-bottom: 32px;
}
.o-en {
  text-transform: uppercase;
}

.opt-banner-wrap {
  padding: 10px 5px;
  width: 1320px;
}
.opt-banner-wrap .swiper-slide-active {
  border-color: transparent;
  box-shadow: 0 2px 13px 1px rgba(0, 0, 0, 0.06);
  border-left: solid 2px #efefef;
}
.opt-banner-wrap h5{
  font-size: 17px;
font-weight: 400;
text-align: center;
}
.opt-banner-wrap p{
  font-size: 14px;
font-weight: 400;
color: rgba(166, 166, 166, 1);
}
.swiper-slide.opt-item {
  overflow: hidden;
  display: block;
  width: 179px;
  height: 290px;
  border-radius: 5px;
  /* padding: 20px 40px 0; */
  text-align: center;
  /*border: 1px solid rgba(207, 207, 207, 1);*/
  border-color: rgba(0, 0, 0, 0);
  box-shadow: 0 2px 13px 1px rgba(0, 0, 0, 0);
}
.opt-item h5 {
  margin-top: 12px;
}
.opt-tool {
  color: #c4c4c4;
}
.opt-tool img {
  width: 40px;
  height: 40px;
  margin: 0 20px;
}
.opt-case {
  height: 590px;
  background: url(/static/index/station/image/opt-case-bg.png) no-repeat center/cover;
}

/* 鏂伴椈涓績 */
.n-list1 {
  display: grid;
  grid-template-columns: repeat(2, 680px);
  gap: 30px 40px;
}
.n-item1 {
  padding: 24px 12px;
  background: rgba(250, 250, 250, 1);
  transition: all 0.4s;
}
.n-item1:hover {
  background-color: #fff;
  box-shadow: 0 2px 9px rgba(0, 0, 0, 0.08);
}
.n-img1 {
  overflow: hidden;
  width: 220px;
  height: 150px;
  margin-right: 20px;
}
.n-item1 i {
  color: #a6a6a6;
  font-size: 28px;
  line-height: 1;
}
.n-item1 a:hover i {
  color: var(--primary);
}
.n-list2 {
  display: grid;
  grid-template-columns: repeat(3, 450px);
  justify-content: space-between;
}
.n-item2:hover {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(54, 92, 182, 0.1);
}
.n-item2 {
  border-radius: 3px;
  padding: 32px 16px;
  background-color: rgba(250, 250, 250, 1);
  transition: all 0.3s;
}
.n-img2 {
  overflow: hidden;
  width: 164px;
  height: 126px;
  margin-right: 18px;
}
.n-item2 p {
  line-height: 27px;
  line-clamp: 3;
  -webkit-line-clamp: 3;
}

/* 甯歌闂 */
.q-item1 {
  padding: 24px;
}
.q-img1 {
  margin-right: 28px;
  overflow: hidden;
  width: 212px;
  height: 164px;
}
.q-item1 a:hover h5 {
  font-weight: 700;
}

.q-list2 {
  display: grid;
  grid-template-columns: repeat(3, 450px);
  justify-content: space-between;
  row-gap: 12px;
}
.q-img2 {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.q-img2::before {
  z-index: 1;
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(270deg, rgba(68, 116, 179, 0.19) 0%, rgba(68, 116, 179, 0.5) 93.75%, rgba(68, 116, 179, 0.5) 100%);
}
.q-img2 i {
  z-index: 2;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  color: #fff;
}

.q-list3 {
  display: grid;
  row-gap: 20px;
}
.q-item3 {
  border: 1px solid rgba(189, 189, 189, 1);
  padding: 24px;
}
.q-item3:hover {
  border-color: transparent;
  box-shadow: 0px 2px 8px rgba(54, 92, 182, 0.1);
}
.q-item3 .com-tag {
  border-radius: 5px;
  border: 1px solid #808080;
  color: #808080;
  background-color: transparent;
}
.q-item3:hover .com-tag {
  border-color: transparent;
  background-color: var(--primary);
  color: #fff;
}

.q-list4 {
  display: grid;
  grid-template-columns: repeat(4, 340px);
  justify-content: space-between;
  row-gap: 16px;
}
.q-item4 {
  overflow: hidden;
  height: 280px;
  padding: 30px 30px 0;
  border-radius: 3px;
  background-color: rgba(250, 250, 250, 1);
  transition: all 0.3s;
}
.q-item4:hover {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(54, 92, 182, 0.1);
}
.q-item4:hover h5 {
  font-weight: 700;
}
.q-item4:hover .com-tag {
  border-color: transparent;
  background-color: var(--primary);
  color: #fff;
}
.date {
  margin-top: 8px;
  line-height: 27px;
}
.q-item4 p {
  height: 81px;
  color: #666;
  line-height: 27px;
  margin: 18px 0 32px;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}


.card-custom {
      background-color: #990000; /* 深红色背景色 */
      color: white;
      border: none;
      border-radius: 5px;
    }

    .card-body-custom {
      display: flex;
      align-items: center;
    }

    .icon-img {
      width: 32px;
      height: 32px;
      margin-right: 10px;
    }

    .btn-custom {
      background-color: #cc6633; /* 按钮背景色 */
      color: white;
      border: none;
      border-radius: 20px;
      padding: 0px;
      height: 130px;
    background-size: cover;
    }

    .jwxtBtn{
      background-size: cover;
      text-align: center;
      padding: 45px 0;
      border-radius: 10px;
    }
    
    .jwxtBtn>img{
      width: 40px;
      height: 33px;
    }
    .jwxtBtn h3{
      font-size: 22px;
font-weight: 700;
color: #fff;
padding: 17px 0 40px;
    }
    .jwxtBtn a>img{
      width: 120px;
      height: 36px;
    }
