#note_box {
  height: 2.875rem /* 46/16 */;
  background-color: rgba(241, 240, 240, 0.36);
  font-size: 0.875rem /* 14/16 */;
}

#header_link span {
  color: var(--grey3);
}

/* 头部样式 */
#name_box_w {
  width: 100%;
  height: 11.375rem /* 182/16 */;
  transition: all 0.3s ease;
}

#name_box_w .container {
  height: 100%;
}

#header_logo {
  height: 100%;
  display: flex;
  align-items: center;
}

#header_logo img {
  max-height: 6.3125rem /* 101/16 */;
  transition: all 0.3s ease;
}

.search_box {
  max-width: 100%;
  width: 21.625rem /* 346/16 */;
  height: 2.75rem /* 44/16 */;
  background-color: #ffffff;
  border-radius: 1.5rem /* 24/16 */;
  overflow: hidden;
  border: 2px solid #ffffff;
  margin-bottom: 0.9375rem /* 15/16 */;
}
.search_box .search_key {
  font-size: 0.875rem;
  width: 0;
  border: 0;
  height: 100%;
  line-height: 100%;
  overflow: hidden;
  padding: 0 0.9375rem /* 15/16 */;
  flex-grow: 1;
  background-color: transparent;
}
.search_box .search_key::placeholder {
  color: var(--grey3);
}
.search_box .search_so {
  width: 3.75rem /* 60/16 */;
  height: 100%;
  background-color: var(--base_color);
  border: 0;
  cursor: pointer;
  transition: all 0.3s;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  border-radius: 0 1.5rem /* 24/16 */ 1.5rem /* 24/16 */ 0;
  overflow: hidden;
}

.search p {
  text-shadow: #fff 1px 0 0, #fff 0 1px 0, #fff -1px 0 0, #fff 0 -1px 0;
  font-size: 1.1875rem /* 19/16 */;
  text-align: justify;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--second_color);
}

/* 导航 */
#header_nav {
  background-color: var(--base_color);
  padding: 0 4rem;
}
.navI > li {
  position: relative;
  padding-right: 2px;
}

.navI > li:after {
  content: "";
  position: absolute;
  right: 0;
  width: 2px;
  height: 20px;
  background: url(../images/hnav-xian.png);
  top: 50%;
  transform: translateY(-50%);
}

.navI > li:last-child:after {
  display: none;
}

.navI > li > a {
  display: block;
  padding: 0 1.5rem;
  font-size: 1.125rem /* 18/16 */;
  color: #ffffff !important;
  font-weight: bold;
  position: relative;
  height: 3.25rem /* 52/16 */;
  line-height: 3.25rem /* 52/16 */;
  text-align: center;
}

.navI > li:hover > a,
.navI > li.active > a {
  color: #fff;
}

.navI > li > a:hover,
.navI > li.active a {
  background-color: #043f9f;
}

/* 子导航 */
.navI li .children {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: transparent;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  min-width: 100%;
}

.navI li:hover .children {
  opacity: 1;
  visibility: visible;
}

.navI li .children li {
  margin-bottom: 1px;
}

.navI li .children li a {
  display: block;
  width: 100%;
  height: 3.125rem /* 50/16 */;
  line-height: 3.125rem /* 50/16 */;
  text-align: center;
  color: #ffffff;
  background-color: rgba(0, 114, 216, 0.8);
  white-space: nowrap;
  padding: 0 1rem;
}

.navI li .children li a:hover,
.navI li .children li a.active {
  background-color: var(--base_color);
  color: #ffffff;
}

/* Banner样式 */
.banner_s {
  width: 1920px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}

.banner_s img {
  width: 100%;
  height: auto;
  position: relative;
}

/* 页面Banner */
#page_banner_box {
  position: relative;
}

#banner_cover {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.5)
  );
}

.line_bg {
  height: 3px;
  background: url("../images/line_bg.gif") repeat-x center;
  margin-top: 1.875rem /* 30/16 */;
  margin-bottom: 1.875rem /* 30/16 */;
}
.mainInfo {
  font-size: 1rem /* 16/16 */;
}

/* 页脚样式 */
#footer {
  width: 100%;
  min-height: 15.1875rem /* 243/16 */;
  background: url("../images/footer_bg.jpg") no-repeat top center;
  background-size: cover;
}

#footer_main {
  padding-top: 1.875rem /* 30/16 */;
  padding-bottom: 1.875rem /* 30/16 */;
  color: #ffffff;
}

#selects {
  margin-bottom: 2.5rem /* 40/16 */;
}

/* 隐藏原始的selects 元素的下拉箭头 */
.custom-select {
  position: relative;
  font-size: 0.875rem /* 14/16 */;
}

.custom-select select {
  width: 100%;
  border: 0;
  border-radius: 0;
  padding: 0.75rem /* 12/16 */ 1.25rem /* 20/16 */;
  overflow: hidden;
  background-color: #ffffff;
  color: #000000;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  outline: none;
}

/* 自定义下拉箭头的样式 */
.custom-select .dropdown-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.25rem /* 20/16 */;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #000000;
  pointer-events: none; /* 确保箭头不影响select的交互 */
}

.footer-copy {
  font-size: 0.875rem /* 14/16 */;
  line-height: 2.4;
}

.footer-copy a {
  color: #ffffff;
}
.footer-copy a:hover {
  color: var(--second_color);
}

/* 子页面布局 */

#page_right .page_title {
  margin-bottom: 1.5rem;
}

#page_right .page_title .title {
  font-size: 1.875rem;
  font-weight: bold;
  padding-left: 1rem;
  border-left: 0.3rem solid var(--base_color);
}

/* 通用区块 */
.section_box,
#section_box,
#section_box_1 {
  padding-top: 1.5rem /* 24/16 */;
  padding-bottom: 1.5rem /* 24/16 */;
}

/* 通用标题 */
.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title h2 {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
  color: var(--text_color);
}

.section-title p {
  font-size: 1.125rem;
  color: var(--light_text);
}

/* Swiper样式 */
.flash_all .swiper-pagination {
  bottom: 1.5rem;
}

.flash_all .swiper-pagination .swiper-pagination-bullet {
  width: 0.75rem;
  height: 0.15rem;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 0 0.3rem;
  transition: all 0.3s ease;
}

.flash_all .swiper-pagination-bullet-active {
  background-color: var(--base_color);
  padding: 0 1.25rem;
}

.flash_all .swiper-button-next,
.flash_all .swiper-button-prev {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  color: #fff;
}

.flash_all .swiper-button-next:hover,
.flash_all .swiper-button-prev:hover {
  background-color: var(--base_color);
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 1.25rem;
}

#section_5 {
  padding-top: 0;
  padding-bottom: 2rem /* 32/16 */;
}

#section_5 .container-fluid {
  max-width: 79.5rem /* 1272/16 */;
}

#link-swipe {
  padding: 0.625rem /* 10/16 */ 0;
}
#link-swiper-w .swiper-button-next:after,
#link-swiper-w .swiper-button-prev:after {
  font-size: 1.25rem /* 20/16 */;
}

#link-swiper {
  padding: 0.625rem /* 10/16 */;
}
#link-swiper .swiper-slide .imgbox {
  border-radius: 0.625rem /* 10/16 */;
  overflow: hidden;
  transition: all 0.3s;
}
#link-swiper .swiper-slide:hover .imgbox {
  box-shadow: 0 0 10px #666;
}

/*main*/

#page_left {
  width: 18.3333%;
}

#page_right {
  background: #fff;
  border-radius: 0.3125rem /* 5/16 */;
  box-shadow: 0 0 0.625rem /* 10/16 */ #dedede;
  width: 79.5%;
  margin-left: 2.1667%;
}

.slider_type {
  box-shadow: 0 0 10px #dedede;
}
.slider_type .slider_type_header {
  width: 100%;
  background: url(../images/side-hd-bg.png) center no-repeat;
  background-size: cover;
  text-align: center;
  height: 4.625rem /* 74/16 */;
  line-height: 4.625rem /* 74/16 */;
  font-weight: bold;
  font-size: 1.5rem /* 24/16 */;
  color: #fff;
  border-top-left-radius: 5px;
  border-top-right-radius: 3px;
}
.slider_type .slider_type_list {
  width: 100%;
  padding: 1.5625rem /* 25/16 */ .9375rem /* 15/16 */;
  background: #fff;
  box-sizing: border-box;
}
.slider_type .slider_type_list a {
  width: 100%;
  display: block;
  border: solid 1px #e8e6e6;
  height: 2.5rem /* 40/16 */;
  line-height: 2.5rem /* 40/16 */;
  font-size: 1rem /* 16/16 */;
  color: #333333;
  background: url(../images/s-icon.png) 2.375rem /* 38/16 */ center no-repeat #f7f6f5;
  margin-bottom: .75rem /* 12/16 */;
  transition: all 0.5s;
  text-indent: 3.3125rem /* 53/16 */;
}
.slider_type .slider_type_list a:hover,
.slider_type .slider_type_list a.active {
  background: url(../images/s-icon-hover.png) 2.375rem /* 38/16 */ center no-repeat
    var(--base_color);
  color: #fff;
}

.slider_list {
  box-shadow: 0 0 10px #dedede;
}

.slider_list .slider_list_header {
  width: 100%;
  text-align: center;
  height: 3.4375rem /* 55/16 */;
  background: url(../images/side-hd-bg.png) center no-repeat;
  background-size: cover;
  text-align: center;
  line-height: 3.4375rem /* 55/16 */;
  color: #fff;
  font-size: 1.125rem /* 18/16 */;
  font-weight: bold;
  border-top-left-radius: 5px;
  border-top-right-radius: 3px;
}
.slider_list .slider_list_list {
  width: 100%;
  background-color: #ffffff;
  padding: .9375rem /* 15/16 */ .9375rem /* 15/16 */ 1.5625rem /* 25/16 */;
  box-sizing: border-box;
}
.slider_list .slider_list_list a {
  width: 100%;
  height: 2.5rem /* 40/16 */;
  line-height: 2.5rem /* 40/16 */;
  font-size: .875rem /* 14/16 */;
  color: #333333;
  background: url(../images/s-icon-blue.png) left center no-repeat;
  border-bottom: solid 1px #ebecec;
  transition: all 0.5s;
  padding-left: .9375rem /* 15/16 */;
  box-sizing: border-box;
}
.slider_list .slider_list_list a:hover {
  color: var(--base_color);
  border-color: var(--base_color);
  padding-left: 1.25rem /* 20/16 */;
}

/*postion*/
.location {
  padding: 1.25rem /* 20/16 */ 1.5rem /* 24/16 */;
  border-bottom: solid 1px #dde7f7;
  overflow: hidden;
  line-height: 2rem /* 32/16 */;
}
.location i {
  color: var(--base_color);
  font-size: 1rem /* 16/16 */;
}
.location p {
  color: #999999;
  font-size: 1rem /* 16/16 */;
}
.location p a {
  color: #999999;
  transition: all 0.5s;
}
.location p a:hover {
  color: var(--base_color);
}
.location .goback {
  border: solid 1px #eee;
  width: 5rem /* 80/16 */;
  height: 2rem /* 32/16 */;
  text-align: center;
  line-height: 2rem /* 32/16 */;
  color: #666;
  font-size: 0.875rem /* 14/16 */;
  transition: all 0.5s;
}

.location .goback:hover {
  border-radius: 0.3125rem /* 5/16 */;
  border-color: var(--base_color);
}

/*list-box*/
.list-box {
  font-size: .9375rem /* 15/16 */;
  color: #666;
  padding: 0 1.5rem /* 24/16 */ 1rem /* 16/16 */ 1.25rem /* 20/16 */;
  box-sizing: border-box;
}

.list-title {
  padding-top: 19px;
  border-bottom: 1px solid #d0def6;
  margin-left: 1.875rem /* 30/16 */;
  position: relative;
  line-height: 2.25rem /* 36/16 */;
  width: 96.6%;
  float: left;
}

.list-title:before {
  content: "";
  width: 26px;
  height: 21px;
  background-repeat: no-repeat;
  background-position: center top;
  position: absolute;
  top: 28px;
  left: -31px;
}

.list-title > .l:after {
  content: "";
  width: 1.625rem /* 26/16 */;
  height: 1px;
  background-color: #1c87e3;
  position: absolute;
  bottom: -1px;
  left: -1.875rem /* -30/16 */;
}

.list-title > .l {
  font-size: 1.125rem /* 18/16 */;
  color: #6c6c6c;
  position: relative;
  float: left;
}

.list-title > .r {
  color: #999;
  float: right;
}
.list-title > .r:hover {
  color: var(--base_color);
}

.box-item {
  border-top: 1px solid #e0e8f6;
  overflow: hidden;
}

.box-item:first-child {
  border-top: none;
}
.box-item > ul:last-child {
  border-bottom: none;
}

.box-item:nth-child(1) > .list-title:before {
  background-image: url(../images/policy_icon1.png);
}

#info .box {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 0 .625rem /* 10/16 */ #dedede;
  border-radius: .3125rem /* 5/16 */;
}
#info .content {
}
#info .content .hd {
  width: 100%;
  text-align: center;
  font-size: 1.25rem /* 20/16 */;
  line-height: 1.4;
  font-weight: bold;
  color: var(--base_color);
}
#info .content .md {
  width: 100%;
  background: #f4f7ff;
  margin: 0 auto;
  height: 2.5rem /* 40/16 */;
  line-height: 2.5rem /* 40/16 */;
  text-align: center;
  margin-top: 1.875rem /* 30/16 */;
  font-size: .875rem /* 14/16 */;
  color: var(--grey3);
}
#info .content .bd {
  padding: 1.875rem /* 30/16 */ 0;
  font-size: 110%;
  line-height: 200%;
}
