@charset "UTF-8";
.news_box {
  width: 100%;
  min-width: 1180px;
  height: 148px;
  background: rgba(255, 255, 255, 0.69);
}

.news_box .box {
  width: 1180px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.news_box .box .title {
  padding-top: 18px;
  font-weight: bold;
  font-size: 26px;
  color: #b10403;
  text-align: center;
  margin-bottom: 16px;
}

.news_box .box .text {
  font-size: 16px;
  color: #999999;
}

.news_box .box .text span {
  font-weight: 400;
  font-size: 16px;
  color: #da0303;
}

.section1 {
  width: 1180px;
  height: 320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  margin-top: 20px;
  justify-content: space-between;
}

.section1 .box {
  width: calc((100% - 20px) / 2);
  height: 100%;
}

.section1 .swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  /* 为导航按钮和分页器提供定位上下文 */
}

/*.section1 .swiper .swiper-wrapper {*/
/*  width: 100%;*/
/*  height: 100%;*/
/*}*/

.section1 .swiper .swiper-slide {
  width: 100%;
  /* 你可以根据需要设置宽度 */
  height: 100%;
  display: block;
  margin: 0 auto;
  background-position: center center;
  /* 背景图居中 */
  background-repeat: no-repeat;
  /* 防止背景图重复 */
  background-size: cover;
  /* 背景图覆盖整个元素 */
}

.section1 .swiper .swiper-slide a {
  width: 100%;
  height: 100%;
}

.section1 .swiper .swiper-pagination {
  position: static;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.section1 .swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ffffff;
  opacity: 1;
}

.section1 .swiper .swiper_title {
  width: 100%;
  height: 44px;
  background: rgba(51, 51, 51, 0.6);
  border-radius: 0px 0px 0px 0px;
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  padding: 0 22px;
}

.section1 .swiper .swiper_title .title {
  font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.section1 .swiper .swiper-pagination-bullet-active {
  width: 32px;
  height: 12px;
  background: #da0303;
  border-radius: 20px 20px 20px 20px;
  border: 1px solid #707070;
}

.section1 .swiper img {
  width: 100%;
  height: 100%;
}

.section1 .tabs_box {
  padding: 12px 22px;
  background: #ffffff;
  border-radius: 0px 0px 0px 0px;
}

.section1 .tabs_box .tabs {
  display: flex;
  align-items: center;
}

.section1 .tabs_box .tabs .tab {
  background-position: center center;
  /* 背景图居中 */
  background-repeat: no-repeat;
  /* 防止背景图重复 */
  background-size: cover;
  /* 背景图覆盖整个元素 */
  width: 130px;
  height: 43px;
  font-weight: bold;
  font-size: 18px;
  color: #333333;
  line-height: 38px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}


.section1 .tabs_box .tabs .active {
  background-image: url("../img/icon/tabs_bg.png");
  font-weight: bold;
  font-size: 18px;
  color: #ffffff;
}
.section1 .tabs_box .new_list_none{
    display: none;
}
.section1 .tabs_box .new_list_block{
    display: block;
}
.section1 .tabs_box .new_list {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 11px;
  gap: 22px;
}

.section1 .tabs_box .new_list .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section1 .tabs_box .new_list .item .name {
  display: flex;
  align-items: center;
  gap: 6px;
}

.section1 .tabs_box .new_list .item .name .center {
  width: 408px;
  white-space: nowrap;
  /* 不换行 */
  overflow: hidden;
  /* 超出部分隐藏 */
  text-overflow: ellipsis;
  /* 显示省略号 */
  font-weight: 400;
  font-size: 16px;
  color: #333333;
}

.section1 .tabs_box .new_list .item .name .dot {
  width: 5px;
  height: 5px;
  background: #cdcdcd;
  border-radius: 0px 0px 0px 0px;
}

.section1 .tabs_box .new_list .item .time {
  font-weight: 400;
  font-size: 16px;
  color: #999999;
}

.section2 {
  /* 轮播图容器 */
  width: 1180px;
  margin: 0 auto;
  margin-top: 28px;
  padding: 15px 32px;
 height: 120px;
  background: #ffffff;
  border-radius: 0px 0px 0px 0px;
  border: 1px solid #e9e9e9;
  position: relative;
  /* 使得内部的按钮可以绝对定位 */
  /* 图片适应容器 */
  /* 左右切换按钮样式 */
  /* 可选：为滚动条设置样式 */
}

.section2 .swiper-container {
  width: 100%;
  /* 设置容器宽度 */
  height: 100%;
  /* 设置高度 */
}

.section2 .swiper-slide {
  width: 25%;
  /* 每页显示4张图片，宽度为 25% */
  height: 88px;
  /* 高度和容器一致 */
  box-sizing: border-box;
  /* 包括边框在内的布局 */
}

.section2 .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 保持图片比例 */
}

.section2 .swiper-button-next,
.section2 .swiper-button-prev {
  width: 9px;
  height: 16px;
  position: absolute;
  top: 50%;
  /* 垂直居中 */
  transform: translateY(-50%);
  /* 垂直居中 */
  background-position: center center;
  /* 背景图居中 */
  background-repeat: no-repeat;
  /* 防止背景图重复 */
  background-size: cover;
  /* 背景图覆盖整个元素 */
  margin: 0;
  padding: 0;
}

.section2 .swiper-button-prev {
  left: 10px;
  /* 向左偏移 */
  background-image: url("../img/icon/prev.png");
}

.section2 .swiper-button-next {
  right: 10px;
  /* 向右偏移 */
  background-image: url("../img/icon/next.png");
}

.section2 .swiper-scrollbar {
  background: rgba(0, 0, 0, 0.5);
  height: 8px;
}

.section3 {
  width: 1180px;
  margin: 0 auto;
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.section3 .box {
  width: calc((100% - 17px) / 2);
  display: flex;
  flex-direction: column;
}

.section3 .box .content {
  background: #ffffff;
  box-shadow: 0px 3px 20px 1px rgba(0, 0, 0, 0.16);
  border-radius: 0px 0px 0px 0px;
  padding: 20px 13px 0 13px;
  flex-grow: 1;
}

.section3 .box .content .item {
  padding: 15px;
  border-bottom: 1px dotted #e4e2e2;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  width: 100% !important;
  white-space: nowrap;
  /* 不换行 */
  overflow: hidden;
  /* 超出部分隐藏 */
  text-overflow: ellipsis;
  /* 显示省略号 */
}

.section3 .box .content .item:last-child {
  border: none;
}

.section4 {
  width: 1180px;
  margin: 0 auto;
  margin-top: 24px;
  /* 奇数行的样式 */
  /* 偶数行的样式 */
}

.section4 .stysteam_title {
  height: 240px;
  width: 100%;
}

.section4 .stysteam_table1 {
  width: 100%;
  background-color: #f8f8f8;
  border-collapse: collapse;
  border-spacing: 0;
}

.section4 .stysteam_table1 thead {
  background: #b10403;
}

.section4 .stysteam_table1 th {
  height: 48px;
  line-height: 48px;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  padding: 0;
  text-align: center;
}

.section4 .stysteam_table1 tbody tr {
  height: 48px;
  line-height: 48px;
  text-align: center;
  font-size: 14px;
  color: #666666;
  padding: 0;
}

.section4 .stysteam_table1 tbody td {
  font-weight: bold;
  font-size: 14px;
  color: #333333;
}

.section4 .stysteam_table tbody .grade {
  font-weight: bold;
  font-size: 14px;
  color: #185aae;
}

.section4 .stysteam_table1 tbody .detail {
  font-weight: bold;
  font-size: 14px;
  color: #b10403;
  line-height: 0px;
  text-align: left;
  font-style: normal;
  text-decoration-line: underline;
  text-transform: none;
}

.section4 .stysteam_table1 tbody tr:last-child {
  border: none;
}

.section4 .stysteam_table1 tbody tr:nth-child(odd) {
  background-color: #ffffff;
  /* 白色背景 */
  color: #666666;
  /* 设置字体颜色 */
}

.section4 .stysteam_table1 tbody tr:nth-child(even) {
  background-color: #f8f8f8;
  /* 浅灰色背景 */
  color: #666666;
  /* 设置字体颜色 */
}

.general_title_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  background-color: #fff;
  padding-right: 11px;
}

.general_title_box .title {
  background: #185aae;
  width: 166px;
  height: 100%;
  line-height: 52px;
  text-align: center;
  font-weight: bold;
  font-size: 22px;
  color: #ffffff;
}

.general_title_box .more {
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  display: flex;
  align-items: center;
  gap: 6px;
}

.general_title_box .more img {
  width: 9px;
  height: 14px;
}

.section5 {
  width: 1180px;
  margin: 0 auto;
  margin-top: 24px;
}
    .section5 .swiper-container {
        width: 100% !important;
    }
.section5 .content {
  padding: 19px 13px 13px 13px;
  background: #ffffff;
  box-shadow: 0px 3px 20px 1px rgba(0, 0, 0, 0.16);
  display: flex;
  gap: 8px 26px;
  flex-wrap: wrap;
}

.section5 .content {
  padding: 19px 13px 13px 13px;
  background: #ffffff;
  box-shadow: 0px 3px 20px 1px rgba(0, 0, 0, 0.16);
  display: flex;
  gap: 8px 26px;
  flex-wrap: wrap;
}

.section5 .content .list {
  width: calc((100% - 52px) / 3);
}
.section5 .content .list a {
     white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.section5 .content .item {
  width: 100%;
  /* height: 46px; */
  background: #f8f8f8;
  line-height: 46px;
  padding-left: 19px;
  font-weight: bold;
  font-size: 16px;
  color: #333333;
  white-space: nowrap;
  /* 禁止文本换行 */
  overflow: hidden;
  /* 隐藏超出的部分 */
  text-overflow: ellipsis;
  /* 当文本溢出时，显示省略号 */
  display: flex;
  align-items: center;
}

.section6 {
  width: 1180px;
  height: 148px;
  margin: 0 auto;
  margin-top: 55px;
  background-image: url("../img/bg_2.png");
  background-position: top center;
  /* 背景图定位在页面顶部并居中 */
  background-repeat: no-repeat;
  /* 防止背景图重复 */
  background-size: 100%;
  /* 背景图的大小保持其原始比例 */
}

.section6 .title {
  font-weight: bold;
  font-size: 24px;
  color: #ffffff;
  text-align: center;
  padding-top: 26px;
}

.section6 .ipt_box {
  width: 600px;
  height: 48px;
  margin: 0 auto;
  margin-top: 16px;
  background: #ffffff;
  box-shadow: 0px 0px 14px 1px #5b0a12;
  border-radius: 70px 70px 70px 70px;
  border: 2px solid #cb0f10;
  position: relative;
  display: flex;
  align-items: center;
}

.section6 .ipt_box .ipt_img {
  width: 72px;
  height: 72px;
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
}

.section6 .ipt_box input {
  padding-left: 60px;
  flex: 1;
}

.section6 .ipt_box input::placeholder {
  color: #999;
  /* 设置占位文字颜色 */
}

.section6 .ipt_box .icon {
  margin-right: 21px;
  width: 22px;
  height: 22px;
  cursor: pointer;
}

.section7 {
  display: flex;
  gap: 14px;
}

.section7 .box {
  width: calc((100% - 28px) / 3);
}

.section7 .box .item {
  width: 100% !important;
}

.section8 {
  width: 1180px;
  margin: 0 auto;
  margin-top: 38px;
}

.section8 .title {
  font-weight: bold;
  font-size: 24px;
  color: #b10403;
}

.section8 .content {
  display: flex;
  gap: 20px;
  margin-top: 28px;
}

.section8 .content .box {
  width: 278px;
  height: 406px;
  background: #ffffff;
  box-shadow: 0px 3px 20px 1px rgba(0, 0, 0, 0.16);
  padding: 17px 11px;
}

.section8 .content .box .top_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #ededed;
  padding-bottom: 9px;
  position: relative;
}

.section8 .content .box .top_box .left {
  font-weight: bold;
  font-size: 22px;
  color: #b10403;
}

.section8 .content .box .top_box .left .line {
  width: 90px;
  height: 2px;
  background-color: #b10403;
  position: absolute;
  left: 0;
  bottom: -2px;
}

.section8 .content .box .top_box .more {
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  display: flex;
  align-items: center;
  gap: 6px;
}

.section8 .content .box .top_box .more img {
  width: 8px;
  height: 14px;
}

.section8 .content .box .center {
  margin-top: 14px;
}

.section8 .content .box .center .img_box {
  position: relative;
}

.section8 .content .box .center img {
  height: 140px;
  width: 100%;
}

.section8 .content .box .center .img_title {
  width: 100%;
  height: 36px;
  background: rgba(51, 51, 51, 0.6);
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 14px;
  line-height: 36px;
  padding: 0 13px 0 8px;
  text-align: center;
  color: #f3f3f3;
  white-space: nowrap;
  /* 不换行 */
  overflow: hidden;
  /* 超出部分隐藏 */
  text-overflow: ellipsis;
  /* 显示省略号 */
}

.section8 .content .box .center .list {
  margin-top: 17px;
}

.section8 .content .box .center .list .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.section8 .content .box .center .list .item .text {
  white-space: nowrap;
  /* 不换行 */
  overflow: hidden;
  /* 超出部分隐藏 */
  text-overflow: ellipsis;
  /* 显示省略号 */
  font-size: 14px;
  color: #333333;
}

.section8 .content .box .center .list .item .time {
  font-size: 12px;
  color: #999999;
  white-space: nowrap;
}

.section8 .content .box1 {
  flex: 1;
}

.section8 .content .box1 .img_box1 {
  display: flex;
  align-items: center;
}

.section8 .content .box1 .img_box1 img {
  width: 238px;
}

.section8 .content .box1 .img_box1 .img_right {
  flex: 1;
  height: 140px;
  background: #f9f9f9;
  padding: 13px 9px 9px;
}

.section8 .content .box1 .img_box1 .img_right .name {
  font-weight: bold;
  font-size: 16px;
  color: #333333;
}

.section8 .content .box1 .img_box1 .img_right .digest {
  margin-top: 8px;
  display: -webkit-box;
  /* 需要使用 Webkit 引擎支持 */
  -webkit-box-orient: vertical;
  /* 垂直排列子元素 */
  -webkit-line-clamp: 2;
  /* 限制显示的行数，这里是 3 行 */
  overflow: hidden;
  /* 隐藏超出部分 */
  font-size: 12px;
  color: #999999;
  line-height: 20px;
  margin-bottom: 6px;
}

.section8 .content .box1 .img_box1 .img_right .read {
  font-weight: bold;
  font-size: 14px;
  color: #b10403;
}

.section9 {
  width: 1180px;
  margin: 0 auto;
  margin-top: 53px;
  margin-bottom: 72px;
}

.section9 .title {
  background-position: center center;
  /* 背景图居中 */
  background-repeat: no-repeat;
  /* 防止背景图重复 */
  background-size: cover;
  /* 背景图覆盖整个元素 */
  background-image: url("../img/swiper/message.png");
  width: 297px;
  font-weight: bold;
  font-size: 26px;
  color: #333333;
}

.section9 .content {
  margin-top: 21px;
  display: flex;
  justify-content: space-between;
  gap: 51px;
}

.section9 .content .left {
  width: 646px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section9 .content .left .ipt {
  width: 100%;
  height: 52px;
  background: #f8f8f8;
  border-radius: 0px 0px 0px 0px;
  padding: 0 16px;
}

.section9 .content .left input {
  width: 100%;
  height: 100%;
  font-size: 16px;
}

.section9 .content .left input:placeholder {
  font-size: 16px;
  color: #999999;
}

.section9 .content .left .ipt_box {
  display: flex;
  gap: 6px;
}

.section9 .content .left .textarea_box {
  /* 容器样式（可选） */
  width: 100%;
  /* 设置容器的宽度为 100% */
  background: #f8f8f8;
}

.section9 .content .left textarea {
  width: 100%;
  /* 设置textarea宽度为父容器的100% */
  height: 150px;
  /* 设置textarea的高度 */
  background: #f8f8f8;
  /* 去除默认边框、内边距和外边距 */
  padding: 0;
  margin: 0;
  border: none;
  font-size: 16px;
  padding: 12px 22px;
  resize: none;
  /* 禁止调整大小 */
  /* 去掉默认的阴影（有些浏览器会有聚焦时的阴影效果） */
  outline: none;
}

.section9 .content .left textarea:placeholder {
  font-size: 16px;
  color: #999999;
}

.section9 .content .left .btn {
  height: 52px;
  background: #285cac;
  font-size: 16px;
  color: #ffffff;
  line-height: 52px;
  text-align: center;
}

.section9 .content .right {
  flex: 1;
}

.section9 .content .right .name {
  font-weight: bold;
  font-size: 22px;
  color: #333333;
  margin-bottom: 15px;
}

.section9 .content .right .addres {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  gap: 4px;
  margin-bottom: 20px;
}

.section9 .content .right .addres img {
  width: 26px;
  height: 26px;
}

.section9 .content .right .QR_list {
  display: flex;
  align-items: center;
  gap: 58px;
}

.section9 .content .right .QR_list .QR_item img {
  width: 184px;
  height: 184px;
}

.section9 .content .right .QR_list .QR_item .text {
  font-weight: bold;
  font-size: 16px;
  color: #333333;
  text-align: center;
  margin: 0 auto;
  margin-top: 18px;
}

/* 遮罩层样式 */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* 半透明黑色 */
  z-index: 1000;
  display: none;
  /*  */
}

.overlay .box {
  width: 598px;
  height: 326px;
  background: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.overlay .box .cha_icon {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 18px;
  top: 20px;
  cursor: pointer;
}

.overlay .box .title {
  font-weight: bold;
  font-size: 26px;
  color: #333333;
  line-height: 48px;
  text-align: center;
  margin-top: 23px;
}

.overlay .box .content {
  margin-top: 80px;
  font-weight: bold;
  font-size: 22px;
  color: #333333;
  text-align: center;
}

.overlay .box .content span {
  color: #b10403;
}
