@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  color: #1a59a8;
  text-decoration: none;
}

body {
  background-color: #f5f6f7;
  font-family: "MicrosoftYaHei";
}

.gray {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-filter: gray;
  filter: gray;
}

.container {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.bg-white {
  background-color: #ffffff;
}

.hidden {
  display: none !important;
}

.pt-10 {
  padding-top: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.px-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.pb-40 {
  padding-bottom: 40px;
}

.p-40 {
  padding: 40px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.my-40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mobile-show {
  display: none !important;
}

.mobile-show-flex {
  display: none !important;
}

.header-tool-bar {
  background-color: #f0f4f8;
  font-size: 14px;
}
.header-tool-bar .container {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header-tool-bar .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header-tool-bar .left a {
  color: #000000;
  margin-right: 17.25px;
}
.header-tool-bar .left .mail {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 0;
}
.header-tool-bar .left .mail span {
  margin-right: 4px;
}
.header-tool-bar .right {
  color: #36393c;
}

.header-banner {
  width: 100%;
  min-width: 1200px;
  height: 180px;
  background-color: #1b6eb4;
  background-repeat: no-repeat;
  background-size: 100% 180px;
  background-position: 0 0;
}
.header-banner .container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header-banner .search {
  width: 400px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border: 2px solid #1a59a8;
}
.header-banner .search button[type="submit"] {
  width: 100px;
  height: 46px;
  border: none;
  outline: none;
  background-color: #1a59a8;
  color: #f9f9f9;
  font-size: 18px;
  -webkit-transition: background-color 0.25s;
  transition: background-color 0.25s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.header-banner .search button[type="submit"]::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: -webkit-radial-gradient(
    circle,
    #ccc 10%,
    transparent 10.1%
  );
  background-image: radial-gradient(circle, #ccc 10%, transparent 10.1%);
  -webkit-transform: scale(10);
  transform: scale(10);
  opacity: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.header-banner .search button[type="submit"]:active::after {
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0.5;
  -webkit-transition: 0s;
  transition: 0s;
}
.header-banner .search input[type="text"] {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 100%;
  border: none;
  outline: none;
  padding-left: 20px;
  padding-right: 10px;
  font-size: 18px;
}
.header-banner .search input[type="text"] ::-webkit-input-placeholder {
  color: #999999;
}
.header-banner .search input[type="text"] ::-moz-placeholder {
  color: #999999;
}
.header-banner .search input[type="text"] :-ms-input-placeholder {
  color: #999999;
}
.header-banner .search input[type="text"] ::-ms-input-placeholder {
  color: #999999;
}
.header-banner .search input[type="text"] ::placeholder {
  color: #999999;
}

.header-nav {
  min-width: 1200px;
  height: 48px;
  background-color: #1a59a8;
  margin-bottom: 20px;
}
.header-nav .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header-nav .item {
  display: block;
  color: #ffffff;
}
.header-nav .item span {
  display: block;
  font-weight: bold;
  font-size: 18px;
  width: 100%;
  height: 48px;
  line-height: 48px;
  padding: 0 20px;
}
.header-nav .item.active span {
  background-color: #ffffff;
  color: #1a59a8;
}
.header-nav .close-box {
  display: none;
  width: 100%;
  height: 90px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-right: 26px;
}
.header-nav .close-box .menu-close {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 2px solid #ffffff;
  position: relative;
}
.header-nav .close-box .menu-close::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 6px;
  width: 12px;
  height: 2px;
  background-color: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.header-nav .close-box .menu-close::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 6px;
  width: 12px;
  height: 2px;
  background-color: #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.header-nav .mobile-other {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  margin-bottom: 30px;
}
.header-nav .mobile-other a {
  color: #fff;
  font-size: 14px;
  line-height: 19px;
  padding: 6px 12px;
  border: 1px solid #8faacb;
}

.mobile-search {
  display: none;
  padding: 4px 5px;
  background-color: #fff;
}
.mobile-search button[type="submit"] {
  width: 52px;
  height: 32px;
  line-height: 32px;
  border: none;
  outline: none;
  background-color: #ffffff;
  color: #999999;
  font-size: 16px;
}
.mobile-search button[type="submit"]::after {
  display: none;
}
.mobile-search button[type="submit"]:active::after {
  display: none;
}
.mobile-search input[type="text"] {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 32px;
  line-height: 32px;
  border: none;
  outline: none;
  padding-left: 28px;
  padding-right: 10px;
  font-size: 14px;
  border-radius: 4px;
  background-color: #f6f6f6;
  background-image: url(../images/home/icon_search.png);
  background-repeat: no-repeat;
  background-position: 5px 5px;
}
.mobile-search input[type="text"] ::-webkit-input-placeholder {
  color: #ccc;
}
.mobile-search input[type="text"] ::-moz-placeholder {
  color: #ccc;
}
.mobile-search input[type="text"] :-ms-input-placeholder {
  color: #ccc;
}
.mobile-search input[type="text"] ::-ms-input-placeholder {
  color: #ccc;
}
.mobile-search input[type="text"] ::placeholder {
  color: #ccc;
}

.horizontal-notices {
  height: 48px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}
.horizontal-notices .headlines-icon {
  width: 95px;
  height: 100%;
  background-image: url("../images/home/png_titile.png");
  background-repeat: no-repeat;
}
.horizontal-notices .notices-list {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.horizontal-notices .notices-list .notices-scroll {
  position: absolute;
  top: 0;
  left: 0;
  width: 1500px;
  height: 100%;
  overflow: hidden;
}
.horizontal-notices .notices-list .notices-item {
  display: inline-block;
  height: 48px;
  line-height: 48px;
  font-size: 16px;
  color: #333333;
  position: relative;
  padding-left: 12px;
  margin-right: 43px;
  margin-left: 13px;
  background-image: url("../images/home/png_point_b.png");
  background-repeat: no-repeat;
  background-position: 0 21px;
}
.horizontal-notices .notices-list .notices-more {
  position: absolute;
  top: 0;
  right: 0;
  width: 85px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #1a59a8;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(255, 255, 255, 0.9)),
    to(#ffffff)
  );
  background: -webkit-linear-gradient(
    left,
    rgba(255, 255, 255, 0.9) 0%,
    #ffffff 100%
  );
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, #ffffff 100%);
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
}

.focus-imgs-news-dynamic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.focus-imgs-news-dynamic .focus-imgs {
  width: 590px;
  overflow: hidden;
  margin-right: 20px;
  position: relative;
}
.focus-imgs-news-dynamic .focus-imgs-item {
  display: block;
  width: 100%;
  position: relative;
}
.focus-imgs-news-dynamic .focus-imgs-item:last-child {
  margin-right: 0;
}
.focus-imgs-news-dynamic .focus-imgs-item img {
  display: block;
  width: 100%;
  height: 390px;
}
.focus-imgs-news-dynamic .focus-imgs-item h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 54px;
  line-height: 54px;
  padding-left: 24px;
  padding-right: 100px;
  background-color: rgba(20, 84, 165, 0.8);
  font-size: 18px;
  color: #ffffff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.focus-imgs-news-dynamic .news-dynamic {
  width: 590px;
}

.focus-item {
  display: block;
  width: 100%;
  position: relative;
}
.focus-item img {
  display: block;
  width: 100%;
  height: 218px;
}
.focus-item h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 54px;
  line-height: 54px;
  padding-left: 5px;
  padding-right: 60px;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 18px;
  color: #ffffff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.swiper .swiper-pagination {
  width: auto;
  left: auto;
  bottom: 15px;
  right: 10px;
  padding: 3px 5px;
  border-radius: 10px;
}
.swiper .swiper-pagination:hover {
  background-color: rgba(0, 0, 0, 0.35);
}
.swiper .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 4px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}
.swiper
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 10px;
  height: 10px;
  background: #ffffff;
  opacity: 1;
}
.swiper.carousel-this-ind-rect
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 20px;
}
.swiper.carousel-all-primary .swiper-pagination .swiper-pagination-bullet {
  background: #1a59a8;
  opacity: 0.2;
}
.swiper.carousel-all-primary
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.swiper.carousel-this-ind-primary .swiper-pagination .swiper-pagination-bullet {
  background: #ffffff;
}
.swiper.carousel-this-ind-primary
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #1a59a8;
}

.container.middle-banners #middle-banners-carousel .swiper-slide {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.container.middle-banners #middle-banners-carousel .swiper-slide .focus-imgs-item {
  flex: 1;
}

.middle-banners {
  height: 90px;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}
.middle-banners .banner {
  display: block;
  width: 100%;
  position: relative;
}
.middle-banners .banner img {
  width: 100%;
  height: 90px;
}

.info-topic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.info-topic .info-box {
  width: 590px;
  margin-right: 20px;
}
.info-topic .topic-box {
  width: 590px;
}
.info-topic .topic-box .topic {
  padding: 0 20px;
}
.info-topic .topic-box .topic a {
  display: block;
  margin-bottom: 19px;
}
.info-topic .topic-box .topic a img {
  display: block;
}

.service-data-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.service-data-center .service-box {
  width: 590px;
  margin-right: 20px;
}

.data-center-box {
  width: 590px;
}

.center-box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 13px 26px 0;
}
.center-box .center-item {
  width: 33.33%;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.center-box .center-item img {
  width: 88px;
  height: 88px;
  margin-bottom: 8px;
}
.center-box .center-item h6 {
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
  color: #333333;
}

.friendly-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
}
.friendly-link > * {
  display: block;
  margin-right: 10px;
}
.friendly-link > *:last-child {
  margin-right: 0;
}
.friendly-link select {
  display: block;
  width: 156px;
  text-align: center;
  font-size: 14px;
  border: 1px solid #ebedee;
  border-radius: 0;
  background-color: #fff;
  cursor: pointer;
}

.footer {
  width: 100%;
  min-width: 1200px;
  height: 287px;
  background-image: url("../images/home/footer.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.footer a {
  color: #ffffff;
}
.footer .container {
  padding-top: 32px;
}
.footer .website-inner-link {
  width: 469px;
  margin: 0 auto;
  margin-bottom: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.footer .website-inner-link > * {
  color: #ffffff;
  display: block;
  font-size: 20px;
}
.footer .website-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footer .website-ownership {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer .website-ownership .sydw-icon {
  display: block;
  margin-right: 40px;
}
.footer .website-ownership .sydw-icon img {
  display: block;
  width: 53px;
  height: 65px;
}
.footer .website-ownership ul li {
  color: #ffffff;
  font-size: 16px;
  line-height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer .website-ownership ul li > * {
  margin-right: 12px;
}
.footer .website-ownership ul li img {
  margin-left: 5px;
}
.footer .third-app {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer .third-app li {
  width: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 40px;
}
.footer .third-app li:last-child {
  margin-right: 0;
}
.footer .third-app li img {
  display: block;
  width: 84px;
  height: 84px;
  margin-bottom: 8px;
}
.footer .third-app li span {
  font-size: 12px;
  color: #ffffff;
}

.fixed-notices {
  position: fixed;
  width: 200px;
  z-index: 1000;
  top: 300px;
  left: 20px;
}
.fixed-notices .fixed-notices-item {
  width: 100%;
  position: relative;
  margin-bottom: 40px;
}
.fixed-notices .fixed-notices-item a {
  display: block;
  width: 100%;
}
.fixed-notices .fixed-notices-item a img {
  display: block;
  width: 100%;
}
.fixed-notices .fixed-notices-item .close {
  display: block;
  position: absolute;
  right: 0;
  top: -12px;
  width: 37px;
  height: 25px;
  background-image: url("../images/home/btn_close.png");
  background-repeat: no-repeat;
  cursor: pointer;
}

/* 公共样式 */
.module-title {
  height: 72px;
  padding: 10px 0;
  background-image: url("../images/home/png_list_t.png");
  background-repeat: no-repeat;
  background-position: 0 10px;
  font-size: 26px;
  color: #333333;
  font-weight: bold;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.module-title .title {
  height: 35px;
  line-height: 35px;
}
.module-title .title b {
  color: #1a59a8;
}
.module-title .more {
  font-size: 16px;
  color: #999999;
  height: 21px;
  line-height: 21px;
  font-weight: normal;
}

/* 公共样式 */
.module-tabs {
  width: 100%;
}
.module-tabs .tabs-title {
  border-bottom: 1px solid #1a59a8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 20px;
  margin-bottom: 20px;
}
.module-tabs .tabs-title .tab-title {
  display: block;
  padding: 0 16px;
  height: 35px;
  line-height: 35px;
  color: #333333;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}
.module-tabs .tabs-title .tab-title.active {
  background-color: #1a59a8;
  color: #ffffff;
}
.module-tabs .tabs-title.handle {
  margin-left: 0;
  margin-bottom: 40px;
}
.module-tabs .tabs-panel .tab-panel {
  display: none;
}
.module-tabs .tabs-panel .tab-panel.active {
  display: block;
}

.module-more {
  display: none;
  width: 94%;
  line-height: 40px;
  margin: 20px auto;
  border-radius: 4px;
  text-align: center;
  border: 1px solid #cccccc;
  color: #cccccc;
}
.module-more.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.load-more {
  display: none;
  width: 94%;
  line-height: 40px;
  padding: 20px 0;
  margin: 0 auto;
  color: #cccccc;
}
.load-more span {
  text-align: center;
  width: 100%;
  display: inline-block;
  border-radius: 4px;
  border: 1px solid #cccccc;
}

/* 公共样式 */
.info-list {
  padding-left: 20px;
  padding-right: 20px;
}
.info-list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #333333;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 16px;
  position: relative;
}
.info-list .item.rect {
  padding-left: 16px;
  background-image: url("../images/home/png_point_s_p.png");
  background-repeat: no-repeat;
  background-position: 0 10px;
}
.info-list .item.rect:hover {
  background-image: url("../images/home/png_point_s_m.png");
  background-repeat: no-repeat;
  background-position: 0 10px;
}
.info-list .item.icon1 {
  padding-left: 25px;
  background-image: url("../images/home/icon_bg.png");
  background-repeat: no-repeat;
  background-position: 0 2px;
}
.info-list .item .title {
  width: 72%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.info-list .item .titleAll {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.info-list .item .time {
  display: block;
  color: #999999;
}
.info-list .item:hover {
  color: #1a59a8 !important;
}
.info-list .item:visited {
  color: #999999;
}

.bread-crumbs > * {
  color: #999999;
  display: inline-block;
}
.bread-crumbs .bread {
  position: relative;
  padding-right: 20px;
}
.bread-crumbs .bread::after {
  content: ">";
  position: absolute;
  right: 0;
  top: 0;
}
.bread-crumbs .bread:last-child {
  padding-right: 0;
}
.bread-crumbs .bread:last-child::after {
  content: "";
}

.article-detail {
  padding: 40px 80px;
  position: relative;
}
.article-detail .article-detail-head {
  background-color: #eff2f6;
  padding-top: 40px;
  padding-bottom: 20px;
  margin-bottom: 40px;
}
.article-detail .article-detail-head .article-detail-head-title {
  font-size: 28px;
  line-height: 38px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  padding: 0 20px;
}
.article-detail .article-detail-head .article-detail-head-title-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.article-detail .article-detail-head .article-detail-head-title-info > * {
  display: block;
  color: #333333;
}
.article-detail .article-detail-head .article-detail-head-title-info1 {
  background-color: #eff2f6;
  padding: 12px;
}
.article-detail .article-detail-head .article-detail-head-title-info1 span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.article-detail
  .article-detail-head
  .article-detail-head-title-info1
  span:first-child {
  color: #333333;
  font-size: 14px;
  line-height: 19px;
  font-weight: bold;
  margin-bottom: 8px;
}
.article-detail .article-detail-head .article-detail-head-title-info1 span b {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #999999;
  font-size: 12px;
}
.article-detail .article-detail-head .article-detail-head-title-info1 span b i {
  margin-right: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.article-detail
  .article-detail-head
  .article-detail-head-title-info1
  span
  b
  i.num {
  color: #1a59a8;
}
.article-detail .article-detail-content {
  color: #333333;
}
.article-detail .article-detail-content p {
  line-height: 32px;
  font-size: 18px;
  text-indent: 36px;
  margin-bottom: 20px;
}
.article-detail .article-detail-content img {
  max-width: 100%;
  display: block;
  margin: 20px auto !important;
}
.article-detail .article-detail-content img.space {
  margin: 20px !important;
}
.article-detail .article-detail-content table {
  width: 100%;
  max-width: 100%;
  border: 1px solid #333;
  margin-bottom: 20px !important;
}
.article-detail .article-detail-content table td {
  border: 1px solid #333;
  text-align: center;
}
.article-detail .article-detail-content table p {
  margin-bottom: 0;
  text-align: center;
  text-indent: inherit;
}
.article-detail .article-detail-content .file-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  padding-top: 20px;
}
.article-detail .article-detail-content .file-list > span {
  width: 60px;
}
.article-detail .article-detail-content .file-list ul {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 20px;
}
.article-detail .article-detail-content .file-list li {
  margin-bottom: 20px;
}
.article-detail .article-detail-content .file-list a {
  color: #1a59a8;
  line-height: 22px;
}
.article-detail .article-detail-like {
  padding-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.article-detail .article-detail-like .like-icon {
  display: block;
  margin-bottom: 7px;
  width: 64px;
  height: 64px;
  background-color: #eff2f6;
  border-radius: 50%;
  background-image: url("../images/detail/icon_no_d.png");
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
}
.article-detail .article-detail-like .like-icon.liked {
  background-image: url("../images/detail/icon_yes_d.png");
}
.article-detail .article-detail-like .like-num {
  display: block;
  font-size: 24px;
  color: #da2226;
}

.share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.share span {
  display: block;
  margin-bottom: 12px;
  margin-right: 12px;
  font-size: 14px;
  color: #333333;
}
.share span.icon {
  width: 64px;
  height: 64px;
  cursor: pointer;
  background-repeat: no-repeat;
  border: 1px solid #eee;
  border-radius: 50%;
}
.share span.icon.wechat {
  background-image: url("../images/detail/icon_wechat.png");
}
.share span.icon.pyq {
  background-image: url("../images/detail/icon_pyq.png");
}
.share span.icon.weibo {
  background-image: url("../images/detail/icon_web.png");
}

.bl-title {
  border-left: 6px solid #1a59a8;
  padding-left: 8px;
  font-size: 20px;
  line-height: 27px;
  color: #1a59a8;
  font-weight: bold;
}

.article-p {
  line-height: 32px;
  font-size: 18px;
  text-indent: 36px;
  margin-bottom: 20px;
}

.article-img {
  display: block;
  margin: 0 auto;
  margin-bottom: 40px;
}

.drug-testing-system {
  padding: 0 80px;
}

.leadership {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 80px;
}
.leadership img {
  display: block;
}
.leadership div {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 40px;
}
.leadership div h4 {
  font-size: 22px;
  line-height: 27px;
  color: #1a59a8;
  margin-bottom: 30px;
  font-weight: bold;
}
.leadership div ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 40px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.leadership div ul li {
  display: block;
  width: 50%;
  margin-bottom: 20px;
}
.leadership div ul li b {
  display: inline-block;
  font-size: 20px;
  line-height: 24px;
  color: #333333;
  font-weight: bold;
}
.leadership div ul li i {
  display: inline-block;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  margin-left: 24px;
}

.offices-tabs {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.offices-tabs .offices-title {
  background-color: #eff2f6;
  padding-top: 20px;
}
.offices-tabs .offices-title .office-title {
  color: #333333;
  font-size: 18px;
  line-height: 24px;
  cursor: pointer;
  margin-bottom: 16px;
  padding-left: 25px;
  padding-right: 15px;
}
.offices-tabs .offices-title .office-title.active {
  font-weight: bold;
  color: #1a59a8;
  background-image: url("../images/dts/icon_sanj01.png");
  background-repeat: no-repeat;
  background-position: 0 6px;
}
.offices-tabs .offices-panel {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border: 1px solid #cccccc;
  margin-left: 20px;
}
.offices-tabs .offices-panel .office-panel {
  display: none;
  padding-top: 40px;
  padding-left: 40px;
}
.offices-tabs .offices-panel .office-panel.active {
  display: block;
}
.offices-tabs .offices-panel .office-panel h4 {
  font-size: 18px;
  font-weight: bold;
  color: #1a59a8;
}
.offices-tabs .offices-panel .office-panel p {
  font-size: 18px;
  color: #333333;
  line-height: 32px;
}

#contact-panel .bl-title {
  display: none;
}

.contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.contact .contact-item {
  width: 336px;
  min-height: 120px;
  padding-bottom: 20px;
  border: 1px solid #cccccc;
  padding-top: 28px;
  margin-right: 16px;
  margin-bottom: 16px;
  cursor: pointer;
  position: relative;
}
.contact .contact-item:nth-child(3n) {
  margin-right: 0;
}
.contact .contact-item::after {
  display: none;
  content: "";
  position: absolute;
  bottom: -8px;
  right: -2px;
  width: 0;
  height: 0;
  border: 12px solid transparent;
  border-left: 12px solid #1a59a8;
  border-right: none;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.contact .contact-item .contact-who {
  font-size: 18px;
  line-height: 26px;
  color: #333333;
  font-weight: bold;
  margin-bottom: 10px;
  padding-left: 88px;
  background-image: url("../images/dts/icon_tel_normal.png");
  background-repeat: no-repeat;
  background-position: 44px 0;
}
.contact .contact-item .contact-phone {
  font-size: 24px;
  line-height: 32px;
  color: #999999;
  padding-left: 88px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.contact .contact-item:hover {
  border: 1px solid #1a59a8;
}
.contact .contact-item:hover::after {
  display: block;
}
.contact .contact-item:hover .contact-who {
  background-image: url("../images/dts/icon_tel_press.png");
  background-repeat: no-repeat;
  background-position: 44px 0;
}
.contact .contact-item:hover .contact-phone {
  color: #1a59a8;
}

.provinces-tabs .provinces-title {
  display: none;
}

.provinces-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.provinces-panel .province-panel {
  width: 336px;
  border: 1px solid #eff2f6;
  background-color: #eff2f6;
  padding: 24px;
  padding-bottom: 0;
  margin-right: 16px;
  margin-bottom: 16px;
  cursor: pointer;
  position: relative;
}
.provinces-panel .province-panel:nth-child(3n) {
  margin-right: 0;
}
.provinces-panel .province-panel::after {
  display: none;
  content: "";
  position: absolute;
  bottom: -8px;
  right: -2px;
  width: 0;
  height: 0;
  border: 12px solid transparent;
  border-left: 12px solid #1a59a8;
  border-right: none;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.provinces-panel .province-panel .province-who {
  font-size: 16px;
  color: #333333;
  font-weight: bold;
  margin-bottom: 15px;
}
.provinces-panel .province-panel .province-p {
  font-size: 14px;
  color: #999999;
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.provinces-panel .province-panel .province-p span:first-child {
  display: inline-block;
  width: 56px;
  text-align: justify;
  -moz-text-align-last: justify;
  text-align-last: justify;
}
.provinces-panel .province-panel .province-p span:last-child {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  word-break: break-word;
}
.provinces-panel .province-panel:hover {
  border: 1px solid #1a59a8;
  background-color: #ffffff;
}
.provinces-panel .province-panel:hover::after {
  display: block;
}
.provinces-panel .province-panel:hover .province-who {
  color: #1a59a8;
}
.provinces-panel a .province-who {
  color: #1a59a8 !important;
}

#map {
  overflow: hidden;
  width: 1040px;
  height: 520px;
}

.pagination {
  text-align: center;
}
.pagination .layui-laypage {
  margin: 0;
}
.pagination .layui-laypage a,
.pagination .layui-laypage span,
.pagination .layui-laypage .layui-laypage-curr {
  height: 34px;
  line-height: 34px;
  font-size: 14px;
  margin-right: 8px;
  margin-bottom: 0;
  padding: 0 10px;
}
.pagination .layui-laypage a:hover,
.pagination .layui-laypage span:hover,
.pagination .layui-laypage .layui-laypage-curr:hover {
  color: #1a59a8;
}
.pagination .layui-laypage .layui-laypage-curr .layui-laypage-em {
  background-color: #1a59a8;
}

.max-list-item {
  padding: 0 20px;
}
.max-list-item > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #ebedee;
}
.max-list-item > a img {
  display: block;
  width: 220px;
  height: 140px;
}
.max-list-item > a .content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 0;
  margin-left: 20px;
}
.max-list-item > a .content h2 {
  font-size: 20px;
  line-height: 27px;
  margin-bottom: 5px;
  color: #333333;
  font-weight: bold;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.max-list-item > a .content p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 5px;
  color: #333333;
  width: 100%;
  overflow: hidden;
  /*将对象作为弹性伸缩盒子模型显示*/
  display: -webkit-box;
  /*设置子元素排列方式*/
  -webkit-box-orient: vertical;
  /*设置显示的行数，多出的部分会显示为...*/
  -webkit-line-clamp: 2;
}
.max-list-item > a .content .tool {
  line-height: inherit;
}
.max-list-item > a .content .time {
  display: block;
  color: #999999;
}
.max-list-item.tl > a .content p {
  -webkit-line-clamp: 3;
}

.max-list .max-list-item:last-child > a {
  border-bottom: none;
}

.news-module-dynamic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.news-module-dynamic .news-dynamic-list {
  width: 793px;
  margin-right: 20px;
}
.news-module-dynamic .news-dynamic-list .max-list-item img {
  width: 168px;
  height: 110px;
}
.news-module-dynamic .news-dynamic-side {
  width: 387px;
}
.news-module-dynamic .news-dynamic-side .info-list {
  padding: 0;
}
.news-module-dynamic .news-dynamic-side .info-list li .item h2 {
  width: 100%;
}
.news-module-dynamic .news-dynamic-side .info-list li:last-child .item {
  margin-bottom: 0;
}
.news-module-dynamic .news-dynamic-side .topic-list li {
  margin-bottom: 12px;
}
.news-module-dynamic .news-dynamic-side .topic-list li:last-child {
  margin-bottom: 0;
}
.news-module-dynamic .news-dynamic-side .topic-list li img {
  display: block;
  width: 100%;
  height: 57px;
}

.index-search-num {
  color: #999999;
  font-size: 16px;
  line-height: 21px;
  margin-bottom: 20px;
}
.index-search-num b {
  color: #da2226;
}

.index-search {
  padding: 40px;
}

.index-search-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.index-search-category button {
  display: block;
  margin-right: 12px;
  width: 88px;
  height: 32px;
  line-height: 32px;
  border: 1px solid #cccccc;
  outline: none;
  background-color: #ffffff;
  font-size: 16px;
  color: #333333;
  cursor: pointer;
}
.index-search-category button.active {
  color: #ffffff;
  background-color: #1a59a8;
  border-color: #1a59a8;
}

.info-public {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.info-public > div {
  margin-right: 20px;
  margin-bottom: 20px;
  width: 590px;
  height: 440px;
}
.info-public > div:last-child {
  margin-right: 0;
}

.service-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  padding: 20px 0 40px;
}
.service-search .service-search-entry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.service-search .service-search-entry img {
  display: block;
  margin-bottom: 16px;
}
.service-search .service-search-entry h3 {
  font-size: 18px;
  line-height: 24px;
  color: #333333;
}

.topic-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.topic-list .topic-list-item {
  width: 386px;
  display: block;
  margin-right: 20px;
  margin-bottom: 20px;
  padding: 20px;
  background-color: #ffffff;
}
.topic-list .topic-list-item:nth-child(3n) {
  margin-right: 0;
}
.topic-list .topic-list-item div {
  width: 100%;
  position: relative;
  margin-bottom: 15px;
}
.topic-list .topic-list-item div img {
  display: block;
  width: 100%;
}
.topic-list .topic-list-item div h4 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 52px;
  font-size: 18px;
  color: #ffffff;
  text-align: center;
  background-color: rgba(20, 84, 165, 0.8);
}
.topic-list .topic-list-item p {
  font-size: 18px;
  line-height: 24px;
  color: #333333;
  width: 100%;
  overflow: hidden;
  /*将对象作为弹性伸缩盒子模型显示*/
  display: -webkit-box;
  /*设置子元素排列方式*/
  -webkit-box-orient: vertical;
  /*设置显示的行数，多出的部分会显示为...*/
  -webkit-line-clamp: 3;
}

.column-topic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  padding: 20px;
  margin-bottom: 20px;
}
.column-topic > .topic-list {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.column-topic > .topic-list:first-child {
  padding-right: 10px;
}
.column-topic > .topic-list:last-child {
  padding-left: 10px;
}
.column-topic > .topic-list .topic-list-item {
  width: 176px;
  margin-right: 20px;
  margin-bottom: 0;
  padding: 0;
}
.column-topic > .topic-list .topic-list-item > div {
  margin-bottom: 0;
}
.column-topic > .topic-list .topic-list-item:first-child {
  margin-right: 0;
  width: 100%;
}
.column-topic > .topic-list .topic-list-item:first-child > div {
  margin-bottom: 20px;
}
.column-topic > .topic-list .topic-list-item:last-child {
  margin-right: 0;
}

.pesticide-horizontal-timeline {
  padding: 20px;
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pesticide-horizontal-timeline .handle {
  width: 24px;
  height: 24px;
  cursor: pointer;
  margin-top: 24px;
}
.pesticide-horizontal-timeline .handle.left {
  margin-right: 24px;
  background-image: url("../images/timeline/left_left_normal.png");
  background-repeat: no-repeat;
}
.pesticide-horizontal-timeline .handle.left:hover {
  background-image: url("../images/timeline/left_left_presses.png");
}
.pesticide-horizontal-timeline .handle.right {
  margin-left: 24px;
  background-image: url("../images/timeline/right_row_normal.png");
  background-repeat: no-repeat;
}
.pesticide-horizontal-timeline .handle.right:hover {
  background-image: url("../images/timeline/right_row_persses.png");
}
.pesticide-horizontal-timeline .timeline-box {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 56px;
  overflow-x: hidden;
  position: relative;
}
.pesticide-horizontal-timeline .timeline-box::after {
  content: "";
  position: absolute;
  top: 36px;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 1px;
  background-color: #cccccc;
}
.pesticide-horizontal-timeline .timeline-box .timeline-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  height: 100%;
  -webkit-transition: left 0.3s ease-in;
  transition: left 0.3s ease-in;
}
.pesticide-horizontal-timeline .timeline-box .timeline-container span {
  display: block;
  margin-left: 195px;
  width: 45px;
  text-align: center;
  position: relative;
  color: #999999;
  font-size: 17px;
  cursor: pointer;
}
.pesticide-horizontal-timeline .timeline-box .timeline-container span::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background-image: url("../images/timeline/point_normal.png");
  background-repeat: no-repeat;
}
.pesticide-horizontal-timeline .timeline-box .timeline-container span.active {
  color: #1a59a8;
  font-weight: bold;
}
.pesticide-horizontal-timeline
  .timeline-box
  .timeline-container
  span.active::after {
  background-image: url("../images/timeline/point_presses.png");
}

.service-platform {
  position: relative;
}
.service-platform .entry-box {
  position: absolute;
  top: 71px;
  right: 100px;
  width: 460px;
  height: 309px;
  padding: 32px;
}
.service-platform .entry-box h4 {
  font-size: 24px;
  line-height: 33px;
  color: #333333;
  font-weight: bold;
  margin-bottom: 17px;
}
.service-platform .entry-box p {
  font-size: 16px;
  line-height: 21px;
  color: #333333;
  margin-bottom: 32px;
}
.service-platform .entry-box .entry-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ffffff;
  background-color: #1a59a8;
  -webkit-box-shadow: 0px 8px 10px -3px rgba(28, 89, 168, 0.5);
  box-shadow: 0px 8px 10px -3px rgba(28, 89, 168, 0.5);
  width: 100%;
  height: 63px;
}
.service-platform .entry-box .entry-item img {
  display: block;
  margin-right: 8px;
}
.service-platform .entry-box .entry-item.jszx {
  background-color: #50b772;
  -webkit-box-shadow: 0px 8px 10px -3px rgba(80, 183, 114, 0.5);
  box-shadow: 0px 8px 10px -3px rgba(80, 183, 114, 0.5);
}
.service-platform .entry-box2 {
  right: auto;
  left: 100px;
}

.service-platform1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.service-platform1 .entry-box {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 309px;
}
.service-platform1 .entry-box > div {
  padding: 0 20px;
}
.service-platform1 .entry-box > div > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.service-platform1 .entry-box p {
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  margin-bottom: 10px;
  height: 144px;
}
.service-platform1 .entry-box .entry-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ffffff;
  background-color: #1a59a8;
  -webkit-box-shadow: 0px 8px 10px -3px rgba(28, 89, 168, 0.5);
  box-shadow: 0px 8px 10px -3px rgba(28, 89, 168, 0.5);
  width: 300px;
  height: 63px;
}
.service-platform1 .entry-box .entry-item img {
  display: block;
  margin-right: 8px;
}
.service-platform1 .entry-box .entry-item.jszx {
  background-color: #50b772;
  -webkit-box-shadow: 0px 8px 10px -3px rgba(80, 183, 114, 0.5);
  box-shadow: 0px 8px 10px -3px rgba(80, 183, 114, 0.5);
}

.service-platform1-content .module-tabs {
  position: relative;
}
.service-platform1-content .module-tabs .title {
  position: absolute;
  top: 60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  color: #ffffff;
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 2px;
}
.service-platform1-content .module-tabs .tabs-title {
  border-bottom: none;
  margin-left: 0;
  margin-right: 0;
  background-color: #1a59a8;
  background-repeat: no-repeat;
  background-size: cover;
}
.service-platform1-content .module-tabs .tabs-title .tab-title {
  color: #fff;
}
.service-platform1-content .module-tabs .tabs-title .tab-title.active {
  background-color: #ffffff;
  color: #1a59a8;
}
.service-platform1-content .article-detail-content {
  color: #333333;
  padding: 20px 80px;
}
.service-platform1-content .article-detail-content p {
  line-height: 32px;
  font-size: 18px;
  text-indent: 36px;
  margin-bottom: 20px;
}
.service-platform1-content .article-detail-content img {
  max-width: 100%;
  display: block;
  margin: 20px auto !important;
}
.service-platform1-content .article-detail-content img.space {
  margin: 20px !important;
}
.service-platform1-content .article-detail-content table {
  width: 100%;
  max-width: 100%;
  border: 1px solid #333;
  margin-bottom: 20px !important;
}
.service-platform1-content .article-detail-content table td {
  border: 1px solid #333;
  text-align: center;
}
.service-platform1-content .article-detail-content table p {
  margin-bottom: 0;
  text-align: center;
  text-indent: inherit;
}
.service-platform1-content .article-detail-content .file-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  padding-top: 20px;
}
.service-platform1-content .article-detail-content .file-list > span {
  width: 60px;
}
.service-platform1-content .article-detail-content .file-list ul {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 20px;
}
.service-platform1-content .article-detail-content .file-list li {
  margin-bottom: 20px;
}
.service-platform1-content .article-detail-content .file-list a {
  color: #1a59a8;
  line-height: 22px;
}

.data-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.data-center .data-tabs {
  margin-right: 20px;
  width: 268px;
}
.data-center .data-tabs .title {
  width: 100%;
  height: 60px;
  line-height: 60px;
  color: #ffffff;
  font-size: 26px;
  font-weight: bold;
  background-color: #1a59a8;
  padding-left: 64px;
  letter-spacing: 2px;
}
.data-center .data-tabs .title + div {
  background-color: #f0f4f8;
  margin-left: 12px;
  padding-top: 40px;
  padding-bottom: 20px;
}
.data-center .data-tabs .data-tab {
  height: 56px;
  line-height: 56px;
  padding-left: 52px;
  font-size: 18px;
  color: #333333;
  cursor: pointer;
}
.data-center .data-tabs .data-tab.active {
  padding-left: 46px;
  border-left: 6px solid #1a59a8;
  color: #1a59a8;
  font-weight: bold;
  position: relative;
}
.data-center .data-tabs .data-tab.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(26, 89, 168, 0)),
    to(#1a59a8)
  );
  background: -webkit-linear-gradient(
    right,
    rgba(26, 89, 168, 0) 0%,
    #1a59a8 100%
  );
  background: linear-gradient(270deg, rgba(26, 89, 168, 0) 0%, #1a59a8 100%);
  opacity: 0.3;
}
.data-center .data-content {
  width: 912px;
  min-height: 1000px;
  background-color: #fff;
}
.data-center .data-content .data-panel {
  display: none;
}
.data-center .data-content .data-panel.active {
  display: block;
}

.data-info-public {
  padding: 20px 0;
}

#back-top {
  display: none;
  position: fixed;
  right: 100px;
  bottom: 100px;
  cursor: pointer;
  z-index: 1000;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
#back-top span {
  display: none;
}
#back-top img {
  display: block;
  width: 48px;
}

.review {
  width: 100px;
  position: fixed;
  right: 100px;
  top: 200px;
  padding: 5px;
  z-index: 1000;
}
.review .btn {
  display: block;
  padding: 5px 8px;
  background-color: #1a59a8;
  border: none;
  outline: none;
  color: #ffffff;
  cursor: pointer;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}
.review .btn.turn-down {
  background-color: rgb(219, 70, 70);
}

.mobile-nav {
  display: none;
  margin-bottom: 2px;
}
.mobile-nav .nav {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow-y: hidden;
  overflow-x: auto;
  background-color: #fff;
  scrollbar-width: none;
  /* firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}
.mobile-nav .nav::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
.mobile-nav .nav > div {
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.mobile-nav .nav .item {
  line-height: 44px;
  margin-left: 20px;
  font-size: 14px;
  color: #333333;
}
.mobile-nav .nav .item.active {
  font-size: 16px;
  font-weight: bold;
  color: #1a59a8;
  position: relative;
}
.mobile-nav .nav .item.active::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 12px;
  height: 3px;
  background-color: #1a59a8;
}
.mobile-nav .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  width: 40px;
  height: 44px;
}
.mobile-nav .icon img {
  display: block;
}

#confirm-leave {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  background-color: rgba(0, 0, 0, 0.35);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#confirm-leave .box {
  width: 360px;
  height: 200px;
  background-image: url("../images/home/png1_bj.png");
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
}
#confirm-leave .box .title {
  width: 100%;
  height: 32px;
  padding: 0 13px 0 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #1a59a8;
  color: #fff;
  margin-bottom: 36px;
}
#confirm-leave .box .title .icon {
  width: 16px;
  height: 16px;
  background-image: url("../images/home/icon_off.png");
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
#confirm-leave .box .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 48px;
  margin-bottom: 31px;
}
#confirm-leave .box .content img {
  margin-right: 24px;
}
#confirm-leave .box .content p {
  line-height: 21px;
  font-weight: bold;
}
#confirm-leave .box .leave-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#confirm-leave .box .leave-btn .btn {
  width: 112px;
  line-height: 32px;
  text-align: center;
  letter-spacing: 4px;
  color: #fff;
  background-color: #1a59a8;
  margin-right: 32px;
  cursor: pointer;
}
#confirm-leave .box .leave-btn .btn:last-child {
  margin-right: 0;
}

.drug-testing-system .module-tabs .tabs-title {
  position: relative;
}

.middle-banners-carousel-slide {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.middle-banners-carousel-slide .focus-imgs-item {
  flex: 1;
}


