@charset "UTF-8";
.one-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.min-wc {
  width: 100%;
  min-width: 1200px;
}

.wc {
  width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 23px 0;
  background-color: #fff;
}
.header .logo {
  height: 74px;
}
.header .logo a,
.header .logo img {
  height: 100%;
}
.header .search {
  display: flex;
  height: 50px;
}
.header .search button {
  width: 80px;
  height: 100%;
  color: #fff;
  background: #e6131a;
  border-radius: 0px 6px 6px 0px;
}
.header .search button .iconfont {
  font-size: 23px;
}
.header .search input {
  width: 290px;
  height: 100%;
  background-color: transparent;
  outline: 0;
  border: 1px solid #dddddd;
  border-radius: 6px 0 0 6px;
  padding: 5px 10px;
  font-size: 16px;
}

.nav-container-bg {
  background-color: #006db7;
}

.nav-container {
  --nav-height: 60px;
  height: var(--nav-height, 60px);
  color: #fff;
  display: flex;
}
.nav-container .nav-group {
  flex: 1;
  position: relative;
  --nav-link-item-height: 50px;
}
.nav-container .nav-group .nav-group-head {
  height: var(--nav-height, 60px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-container .nav-group .nav-group-head > a {
  width: 100%;
  text-align: center;
  font-size: 16px;
  border-right: 1px solid #2594df;
}
.nav-container .nav-group .nav-group-body {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 30;
  background-color: #fff;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-height: 0;
  transition: all 0.3s;
  border-radius: 0 0 5px 5px;
}
.nav-container .nav-group .nav-group-body > a {
  font-size: 14px;
  height: var(--nav-link-item-height);
  line-height: var(--nav-link-item-height);
  width: 100%;
  text-align: center;
}
.nav-container .nav-group .nav-group-body > a:hover {
  background-color: #e6131a;
  color: #fff;
}
.nav-container .nav-group:hover .nav-group-head {
  background-color: #e6131a;
  color: #fff;
}
.nav-container .nav-group:hover .nav-group-body {
  /* 若增加子菜单个数，这个数值可以加大,但不宜过大 */
  max-height: calc(var(--nav-link-item-height) * var(--nav-link-item-max-height));
}
.nav-container .nav-group:last-child .nav-group-head > a {
  border-right: 0;
}

.home-swiper {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.home-swiper img {
  width: 100%;
}
.home-swiper .home-swiper-pagination {
  position: absolute;
  bottom: 15px;
  z-index: 20;
  display: flex;
  justify-content: center;
  width: 100%;
  --swiper-pagination-color: #fff;
}

.more-link {
  width: 142px;
  height: 46px;
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 23px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #666666;
  font-size: 16px;
}

:root {
  --service-swiper-width: 590px;
}

.service-swiper {
  position: relative;
  height: 400px;
  width: 590px;
  width: var(--service-swiper-width);
  overflow: hidden;
}
.service-swiper .swiper-slide a,
.service-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}
.service-swiper .swiper-slide a {
  overflow: hidden;
}
.service-swiper .swiper-slide img {
  transition: all 2s;
}
.service-swiper .swiper-slide:hover img {
  transform: scale(1.3);
}
.service-swiper .swiper-slide .laber {
  height: 60px;
  background: rgba(0, 0, 0, 0.5);
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  line-height: 60px;
  color: #fff;
  padding: 0 150px 0 30px;
  z-index: 30;
  font-size: 18px;
  font-family: MicrosoftYaHeiUISemibold;
  font-weight: 400;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.service-swiper .service-swiper-pagination {
  position: absolute;
  bottom: 25px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  left: 0;
  z-index: 40;
  padding: 0 20px;
  --swiper-pagination-color: #e6131a;
  --swiper-pagination-bullet-inactive-color: #fff;
  --swiper-pagination-bullet-inactive-opacity: 0.5;
}

.nesw-ul {
  width: calc(var(--service-swiper-width) - 30px);
}
.nesw-ul .news-li {
  padding: 9px 0;
  margin: 5px 0;
}
.nesw-ul .news-li .link {
  display: flex;
  align-items: center;
}
.nesw-ul .news-li .link::before {
  width: 6px;
  height: 6px;
  background: #e6131a;
  border-radius: 50%;
  content: '';
  display: block;
  margin-right: 10px;
}
.nesw-ul .news-li .link p {
  font-size: 16px;
  font-family: Microsoft YaHei UI;
  font-weight: 400;
  color: #444444;
  width: 75%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nesw-ul .news-li .link span {
  font-size: 14px;
  font-family: Microsoft YaHei UI;
  font-weight: 400;
  color: #888888;
  margin-left: auto;
}
.nesw-ul .news-li .link:hover p {
  color: #e6131a;
}

.specialty-bg {
  background: url(../images/img4.png) no-repeat center center/100% 100%;
}

.spceialty-swiper {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 490px;
}
.spceialty-swiper .space-row {
  display: flex;
  height: calc(100% / 2);
}
.spceialty-swiper .space-row:nth-child(2n) {
  flex-direction: row-reverse;
}
.spceialty-swiper .space-row:nth-child(2n) .link::before {
  border-left: 10px solid var(--bg-color);
  /* 右侧为实心红色，宽度为 10px */
  border-right: 0;
  right: -10px;
  left: auto;
}
.spceialty-swiper .img {
  width: calc(100% / 2);
  height: 100%;
  overflow: hidden;
}
.spceialty-swiper .img img {
  width: 100%;
  height: 100%;
  transition: all 3s;
}
.spceialty-swiper .img:hover img {
  transform: scale(1.2);
}
.spceialty-swiper .link {
  width: calc(100% / 2);
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../images/img7.png) no-repeat center center, var(--bg-color);
  flex-direction: column;
  color: #fff;
  position: relative;
}
.spceialty-swiper .link h4 {
  font-size: 18px;
  font-family: MicrosoftYaHeiUISemibold;
  font-weight: 400;
  color: #ffffff;
}
.spceialty-swiper .link span {
  font-size: 14px;
  font-family: MicrosoftYaHeiUISemibold;
  font-weight: 400;
  color: #ffffff;
  margin-top: 20px;
}
.spceialty-swiper .link::before {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  /* 顶部为透明，高度为 0 */
  border-right: 10px solid var(--bg-color);
  /* 右侧为实心红色，宽度为 10px */
  border-bottom: 6px solid transparent;
  /* 底部为透明，高度为 0 */
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -10px;
  margin: auto 0;
}

.specialty-button {
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}
.specialty-button .iconfont {
  font-size: 16px;
  color: #fff;
}

.home-card {
  width: 580px;
  padding: 30px 40px;
  background: #f4f7fc;
}
.home-card .home-card-head {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #e6e6e6;
}
.home-card .home-card-head .title {
  display: flex;
  padding-bottom: 17px;
  align-items: center;
  box-shadow: 0 3px 0 0 #006db7;
}
.home-card .home-card-head .title h3 {
  font-size: 22px;
  font-family: Microsoft YaHei UI;
  font-weight: bold;
  color: #006db7;
  margin-left: 10px;
}

.important-news {
  display: flex;
}
.important-news .desc {
  width: calc(100% - 176px);
  background-color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.important-news .desc h4 {
  font-size: 16px;
  font-family: MicrosoftYaHeiUISemibold;
  font-weight: 400;
  color: #000000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: auto;
}
.important-news .desc p {
  font-size: 14px;
  font-family: Microsoft YaHei UI;
  font-weight: 400;
  color: #777777;
  line-height: 22px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.photo-wall {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  --right-photo-widht: 685px;
}
.photo-wall .right-photo {
  width: 685px;
  width: var(--right-photo-widht);
  --name-height: 90px;
}
.photo-wall .left-photo {
  width: calc(100% - var(--right-photo-widht) - 10px);
  display: flex;
  flex-wrap: wrap;
  --name-height: 50px;
}
.photo-wall .left-photo .photo-i {
  width: calc(50% - 5px);
  margin-right: 10px;
  height: calc(50% - 5px);
  margin-bottom: 10px;
}
.photo-wall .left-photo .photo-i:nth-child(2n) {
  margin-right: 0;
}
.photo-wall .photo-x {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: block;
}
.photo-wall .photo-x img {
  width: 100%;
  height: 100%;
  transition: all 3s;
}
.photo-wall .photo-x:hover img {
  transform: scale(1.3);
}
.photo-wall .photo-x .name {
  height: var(--name-height);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}

.one-footer {
  padding: 50px 0;
  display: flex;
  justify-content: space-between;
}
.one-footer .footer-card {
  width: 360px;
}
.one-footer .head {
  display: flex;
  align-items: flex-end;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.one-footer .head h4 {
  font-size: 16px;
  color: #ffffff;
}
.one-footer .head .spce {
  color: #5b9ecb;
  margin: 0 5px;
}
.one-footer .head h5 {
  color: #5b9ecb;
  font-size: 12px;
  text-transform: uppercase;
}

.address {
  display: flex;
  font-size: 14px;
  color: #b0d9f5;
  margin-top: 15px;
}
.address span {
  display: block;
  flex-shrink: 0;
}
.address p {
  line-height: 1.2;
}

.banner {
  width: 100%;
}
.banner img {
  width: 100%;
}

.left-nav-bar {
  width: 270px;
  position: relative;
}
.left-nav-bar .title {
  height: 110px;
  width: 100%;
  position: absolute;
  background: url(../images/img15.png) no-repeat center center/100% 100%;
  position: absolute;
  top: -110px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.left-nav-bar .title span {
  font-size: 30px;
}

.left-menu {
  padding: 0 20px;
  background: #f1f7fb;
}
.left-menu .link {
  padding: 26px 0;
  font-size: 18px;
  font-family: Microsoft YaHei UI;
  font-weight: 400;
  color: #222222;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px dashed #dedede;
}
.left-menu .link:last-child {
  border-bottom: 0;
}
.left-menu .link:hover, .left-menu .link-active {
  color: #006db7;
}


.right-content {
  width: 890px;
}

.right-history {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  border-bottom: 2px solid #f1f7fb;
}
.right-history .history {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #888888;
  font-size: 14px;
}
.right-history .history .iconfont {
  font-size: 16px;
  color: #006db7;
  margin-right: 6px;
}
.right-history .history .space {
  margin: 0 5px;
}
.right-history .history .link:hover,
 .right-history .history .link-active {
  color: #006db7;
}

.rich-text {
  padding: 30px 0;
}
.rich-text p {
  font-size: 16px;
  font-family: Microsoft YaHei UI;
  font-weight: 400;
  color: #444444;
  line-height: 34px;
  text-indent: 30px;
}

