@charset "utf-8";

.content {
  position: relative;
  padding: 24px 0 40px;
  background: #fff;
}

.stat_tab_pane {
  display: flex;
  margin-bottom: 28px;
}
.stat_tab_style1 {
  width: 210px;
  flex-shrink: 0;
  margin-right: 24px;
}
.stat_tab_style1 > li { margin-top: 10px; }
.stat_tab_style1 > li:first-child { margin-top: 0; }
.stat_tab_style1 li a {
  position: relative;
  display: block;
  box-sizing: border-box;
  height: 72px;
  line-height: 72px;
  background: #f1f1f1;
  padding: 0 10px;
  font-size: 16px;
  color: #333;
  transition: background .2s, color .2s;
}
.stat_tab_style1 li a:hover {
  background: #e8f1fb;
  color: var(--yx-blue);
}
.stat_tab_style1 li.cur a {
  background: linear-gradient(0deg, #3778bf 0%, #4e94de 100%);
  color: #fff;
  font-weight: 700;
}
.stat_tab_style1 li.cur a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -14px;
  margin-top: -8px;
  border: 8px solid transparent;
  border-left-color: #3e7bcd;
}

.stat_content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.stat_search_box {
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 12px;
  min-height: 40px;
}
.stat_search_box .stat_text {
  font-size: 16px;
  color: #333;
  line-height: 36px;
  margin: 0;
  white-space: nowrap;
}
.stat_search_box .select_box {
  position: relative;
  display: inline-block;
  width: 128px;
  height: 36px;
  margin: 0;
  vertical-align: middle;
}
.stat_search_box .select_box::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -3px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #3a8fda;
  pointer-events: none;
  z-index: 1;
}
.stat_search_box .select_input {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 36px;
  line-height: 34px;
  border: 1px solid #d0d5db;
  border-radius: 2px;
  background: #fff;
  color: #333;
  font-size: 16px;
  padding: 0 28px 0 12px;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
}
.stat_search_box .select_input:hover,
.stat_search_box .select_box:focus-within .select_input {
  border-color: #3a8fda;
}
.stat_search_box .select_ul {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 38px;
  z-index: 30;
  max-height: 220px;
  overflow-x: hidden;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #d0d5db;
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}
.stat_search_box .select_box:focus-within .select_ul {
  display: block;
}
.stat_search_box .select_ul li a {
  display: block;
  height: 34px;
  line-height: 34px;
  text-align: left;
  padding: 0 12px;
  color: #333;
  font-size: 16px;
}
.stat_search_box .select_ul li a:hover {
  background: #3a8fda;
  color: #fff;
}
.stat_btn {
  display: inline-block;
  height: 36px;
  line-height: 36px;
  padding: 0 14px;
  border-radius: 2px;
  font-size: 16px;
  margin: 0;
  cursor: pointer;
  -webkit-transition: opacity .2s, background .2s, color .2s;
  transition: opacity .2s, background .2s, color .2s;
  vertical-align: middle;
}
.stat_btn.color_btn {
  width: 36px;
  height: 36px;
  min-width: 36px;
  padding: 0;
  background: #2f7ed8;
  border: 1px solid #2f7ed8;
  color: #fff;
  text-align: center;
  line-height: 34px;
  border-radius: 2px;
}
.stat_btn.color_btn .query_ico {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 50%;
  position: relative;
  vertical-align: middle;
  margin-top: -2px;
  box-sizing: border-box;
}
.stat_btn.color_btn .query_ico::after {
  content: '';
  position: absolute;
  width: 7px;
  height: 2px;
  background: #fff;
  right: -6px;
  bottom: -2px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 1px;
}
.stat_btn.color_btn:hover {
  background: #276ebd;
  border-color: #276ebd;
}
.stat_btn.link_excel {
  margin-left: auto;
  background: transparent;
  border: 0;
  color: #2f7ed8;
  text-decoration: none;
  padding: 0 2px;
  height: auto;
  line-height: 36px;
}
.stat_btn.link_excel:hover {
  color: #1a5f99;
  text-decoration: underline;
}
.stat_btn.link_excel.loading {
  opacity: .55;
  pointer-events: none;
  text-decoration: none;
}
.stat_btn.link_excel img {
  width: 14px;
  height: 14px;
  margin-right: 4px;
  vertical-align: -2px;
}

.stat_box {
  min-height: 0;
}
.stat_box .stat_chart_box {
  display: none;
}
.stat_box.is-ready .stat_chart_box.is-active {
  display: block;
}
.stat_chart_box .chart {
  width: 100%;
  height: 440px;
}

.data_portal_area {
  display: flex;
  margin-bottom: 32px;
}
.portal_left {
  flex: 1;
  background: var(--yx-blue-soft);
  border-radius: 2px;
  padding: 22px 10px;
}
.portal_feature {
  display: flex;
}
.feature_item {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 0 12px;
  position: relative;
}
.feature_item + .feature_item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: #d7e6f2;
}
.feature_icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(160deg, #4aa4f0 0%, #2b7ed0 100%);
  box-shadow: 0 0 0 3px rgba(249,195,77,.55);
  display: flex;
  justify-content: center;
  margin-right: 14px;
  flex-shrink: 0;
}
.feature_icon img {
  width: 34px;
  height: 34px;
}
.feature_text h3 {
  margin: 0 0 6px;
  font-size: 18px;
  color: var(--yx-text);
}
.feature_text p {
  margin: 0;
  font-size: 16px;
  color: #888;
  line-height: 1.5;
  max-width: 11em;
}
.portal_right {
  width: 324px;
  flex-shrink: 0;
}
.portal_gov {
  display: block;
  height: 100%;
  min-height: 118px;
  background: var(--yx-blue-mid) url(../images/sjfb_sjkf.jpg) center / 100% 100% no-repeat;
  border-radius: 2px;
  transition: transform .25s, box-shadow .25s;
}
.portal_gov:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(27,116,198,.3);
}

.field_area { margin-bottom: 36px; }
.field_title {
  position: relative;
  margin-bottom: 22px;
}
.field_title::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: #e0e0e0;
}
.field_title span {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 6px 22px;
  background: var(--yx-blue);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
.field_list {
  position: relative;
  padding: 0 40px;
}
.field_viewport.swiper-container {
  overflow: hidden;
  width: 100%;
}
.field_items.swiper-wrapper {
  align-items: stretch;
}
.field_viewport .swiper-slide {
  height: auto;
}
.field_viewport .swiper-slide a {
  display: block;
  padding: 10px 4px;
  border-radius: 4px;
  transition: background .2s, transform .2s;
}
.field_viewport .swiper-slide a:hover {
  background: #f3f9ff;
  transform: translateY(-2px);
}
.field_viewport .swiper-slide img {
  width: 46px;
  height: 46px;
  margin-bottom: 8px;
}
.field_viewport .swiper-slide span {
  display: block;
  font-size: 16px;
  color: #333;
}
.field_list .field_arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 28px;
  height: 44px;
  margin-top: -22px;
  padding: 0;
  border: 0;
  outline: none;
  cursor: pointer;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 26px;
  opacity: 1;
}
.field_list .field_arrow_prev {
  left: 6px;
  right: auto;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0,22L22,0l2.1,2.1L4.2,22l19.9,19.9L22,44L0,22z' fill='%237eb6e8'/%3E%3C/svg%3E");
}
.field_list .field_arrow_next {
  right: 6px;
  left: auto;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27,22L5,44l-2.1-2.1L22.8,22L2.9,2.1L5,0L27,22z' fill='%237eb6e8'/%3E%3C/svg%3E");
}
.field_list .field_arrow_prev:hover {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0,22L22,0l2.1,2.1L4.2,22l19.9,19.9L22,44L0,22z' fill='%232c66a5'/%3E%3C/svg%3E");
}
.field_list .field_arrow_next:hover {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27,22L5,44l-2.1-2.1L22.8,22L2.9,2.1L5,0L27,22z' fill='%232c66a5'/%3E%3C/svg%3E");
}
.field_list .field_arrow::after {
  content: none !important;
  display: none !important;
}
.field_list .field_arrow.swiper-button-disabled {
  opacity: .35;
  cursor: default;
  pointer-events: none;
}

.sjfb_wrap .animated {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}
.sjfb_wrap .search_box_area.animated {
  -webkit-animation-delay: .15s;
  animation-delay: .15s;
}
.loading_toast {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.35);
  display: none;
}
.loading_toast.on { display: block; }
.loading_toast_inner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 240px;
  margin: -48px 0 0 -120px;
  background: #fff;
  border-radius: 8px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.loading_toast_inner p {
  margin: 12px 0 0;
  font-size: 16px;
  color: #333;
}
.loading_spinner {
  width: 34px;
  height: 34px;
  margin: 0 auto;
  border: 3px solid #e8f1fb;
  border-top-color: var(--yx-blue);
  border-radius: 50%;
  animation: sjfb_spin .8s linear infinite;
}
@keyframes sjfb_spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1200px) {
  .stat_tab_style1 {
    width: 170px;
    margin-right: 16px;
  }
  .stat_tab_style1 li a {
    height: 60px;
    line-height: 60px;
    font-size: 16px;
  }
  .portal_right { width: 240px; }
}

@media (max-width: 768px) {
  .sjfb_content { padding: 16px 0 28px; }
  .stat_tab_pane { flex-direction: column; }
  .stat_tab_style1 {
    width: 100%;
    margin: 0 0 14px;
    display: flex;
    flex-wrap: wrap;
  }
  .stat_tab_style1 > li {
    width: 33.333%;
    margin: 0;
    box-sizing: border-box;
    padding: 3px;
  }
  .stat_tab_style1 li a {
    height: auto;
    min-height: 48px;
    line-height: 1.35;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding: 8px 4px;
  }
  .stat_tab_style1 li.cur a::after { display: none; }
  .stat_search_box .select_box { width: 110px; }
  .stat_btn.link_excel { margin-left: 0; }
  .stat_chart_box {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
  }
  .stat_chart_box .chart {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100%;
    height: 340px;
  }
  .stat_content,
  .stat_box {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }
  .data_portal_area {
    flex-direction: column;
    gap: 12px;
  }
  .portal_left {
    padding: 10px;
    background: transparent;
  }
  .portal_right { width: 100%; }
  .portal_gov { min-height: 100px; }
  .portal_feature {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 8px;
  }
  .feature_item + .feature_item::before { display: none; }
  .feature_item {
    flex: 1 1 0;
    min-width: 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 14px 6px 12px;
    background: #eff7ff;
    border-radius: 8px;
    box-sizing: border-box;
  }
  .feature_icon {
    width: 52px;
    height: 52px;
    margin: 0 0 10px;
  }
  .feature_icon img {
    width: 28px;
    height: 28px;
  }
  .feature_text h3 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 700;
  }
  .feature_text p {
    font-size: 16px;
    line-height: 1.45;
    color: #888;
    max-width: none;
  }
  .field_list { padding: 0; }
  .field_list .field_arrow { display: none !important; }
  .field_list.is-static .field_viewport.swiper-container {
    overflow: visible;
  }
  .field_list.is-static .field_items.swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    transform: none !important;
    width: 100% !important;
  }
  .field_list.is-static .field_viewport .swiper-slide {
    width: 25% !important;
    margin: 0 !important;
    flex-shrink: 0;
    box-sizing: border-box;
  }
  .field_list.is-static .field_viewport .swiper-slide img {
    width: 40px;
    height: 40px;
  }
  .field_list.is-static .field_viewport .swiper-slide span {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .stat_tab_style1 > li { width: 50%; }
  .feature_item { padding: 12px 4px 10px; }
  .feature_icon {
    width: 46px;
    height: 46px;
  }
  .feature_icon img {
    width: 24px;
    height: 24px;
  }
  .feature_text h3 { font-size: 16px; }
  .feature_text p { font-size: 16px; }
  .field_list.is-static .field_viewport .swiper-slide {
    width: 33.333% !important;
  }
  .field_list.is-static .field_viewport .swiper-slide a {
    padding: 8px 2px;
  }
  .field_list.is-static .field_viewport .swiper-slide img {
    width: 36px;
    height: 36px;
    margin-bottom: 6px;
  }
  .field_list.is-static .field_viewport .swiper-slide span {
    font-size: 16px;
  }
}
