* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "PingFangSC", "微软雅黑", "Microsoft YaHei", "Helvetica Neue",
    "Helvetica", "Arial", "sans-serif";
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: top;
}

.img-widthFill {
  display: block;
  width: 100%;
}

.line1 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.line2 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.line3 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.line4 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.container {
  /* 版心大小自己设置 */
  /* width: ; */
  width: 1620px;
  margin: auto;
}


/*nav 开始*/
/*pc 导航*/
.nav_pc {
  width: 100%;
  position: fixed;
  top: 0;
  left: 50%;
  height: 120px;
  transform: translateX(-50%);
  z-index: 99;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.01);
  box-shadow: inset 0px -2px 0px 0px rgba(255, 255, 255, 0.3);
  transition: 0.6s
}

.nav_pc::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 100%;
  width: 100%;
  height: 310px;
  background: url(../images/nav_bg.png) no-repeat center/cover #f5f5f5;
  transform: scaleY(0);
  transform-origin: 0 0;
  transition: transform 0.5s cubic-bezier(0.25, 0.74, 0.22, 0.99);
}

.nav_pc.active::after {
  transform: scaleY(1);
}

.nav_pc_box {
  width: 92%;
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0 auto;
  box-sizing: border-box;
  justify-content: space-between;
}

.nav_pc_box .logo {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav_pc_box .logo a>img:last-child,
.nav-fixed .logo a>img:first-child,
.nav_pc.active .logo a>img:first-child {
  display: none;
}

.nav_pc_box .nav_title {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav_pc_box .nav_title>ul {
  display: flex;
  height: 100%;
  justify-content: space-between;
  flex: 1;
}

.nav_pc_box .nav_title>ul>li {
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-right: 65px;
}

.nav_pc_box .nav_title>ul>li:last-child {
  padding-right: 0;
}

.nav_pc_box .nav_title>ul>li>a {
  display: flex;
  align-items: center;
  height: 100%;
  color: #fff;
  font-size: 20px;
  transition: 0.3s;
  position: relative;
}

.nav_pc_box .nav_title>ul>li>a::after {
  content: "";
  position: absolute;
  left: 0%;
  bottom: 0%;
  width: 0;
  height: 4px;
  background-color: #fff;
  transition: 0.3s;
}

.nav_pc_box .nav_title>ul>li.active>a::after {
  width: 100%;
  left: 0;
}


.nav_pc_box .nav_pc_btn {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 60px;
}

.nav_pc_box .nav_pc_btn form {
  display: flex;
  position: relative;
  padding-right: 15px;
}

.nav_pc_box .nav_pc_btn form::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  height: 80%;
  transform: translateY(-50%);
  width: 1px;
  background-color: #fff;
}

.nav_pc_box .nav_pc_btn form>div {
  width: 300px;
  position: absolute;
  top: 50%;
  right: 20px;
  border: none;
  outline: none;
  background-color: rgba(255, 255, 255, 1);
  display: none;
  transform: translateY(-50%);
  margin-right: 25px;
  padding: 15px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
}

.nav_pc_box .nav_pc_btn form>div>input {
  width: 100%;
  border: none;
  outline: none;
  border-bottom: 1px solid #999;
}

.nav_pc_box .nav_pc_btn form>button {
  line-height: 25px;
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.nav_pc_box .nav_pc_btn .toggle {
  margin-left: 15px;
  position: relative;
}

.nav_pc_box .nav_pc_btn .toggle span {
  line-height: 22px;
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.nav_pc_box .nav_pc_btn .toggle .lang {
  display: none;
  position: absolute;
  left: 50%;
  top: 35px;
  transform: translateX(-50%);
  width: 50px;
  background: #fff;
  z-index: 99;
}

.nav_pc_box .nav_pc_btn .toggle .lang::after {
  content: "\e631";
  font-family: iconfont;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  top: -14px;
  color: #fff;
  font-size: 14px;
  z-index: -1;
}

.nav_pc_box .nav_pc_btn .toggle .lang p {
  text-align: center;
  padding: 8px 0;
  font-size: 16px;
  color: #000;
  transition: 0.3s;
}

.nav_pc_box .nav_pc_btn .toggle .lang p:hover,
.nav_pc_box .nav_pc_btn .toggle .lang p.active {
  background-color: #000;
  color: aqua;
}


.nav_pc_box .nav_contact {
  position: absolute;
  z-index: 999;
  top: 100%;
  left: 0;
  height: 200px;
  display: none;
  flex-direction: column;
  justify-content: end;
}

.nav_pc_box .nav_contact>.tip {
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  margin-bottom: 10px;
}

.nav_pc_box .nav_contact>.phone {
  font-weight: bold;
  font-size: 36px;
  color: #0348A6;
  margin-bottom: 10px;

}

.nav_pc_box .nav_contact>.place {
  font-weight: 400;
  font-size: 16px;
  color: #333333;

}


.nav_pc_box .nav_title_second {
  position: absolute;
  z-index: 999;
  top: 100%;
  left: 0;
  width: 100px;
  margin-top: 70px;
  max-height: 130px;
  display: none;
  text-align: left;
  overflow: auto;
}

/* 自定义整个滚动条 */
.nav_pc_box .nav_title_second::-webkit-scrollbar {
  width: 2px;
  /* 设置滚动条的宽度 */
}

/* 自定义滚动条轨道 */
.nav_pc_box .nav_title_second::-webkit-scrollbar-track {
  background: transparent;
  /* 设置轨道的背景颜色 */
}

/* 自定义滚动条的滑块（thumb） */
.nav_pc_box .nav_title_second::-webkit-scrollbar-thumb {
  background: #0348A6;
  /* 设置滑块的背景颜色 */
}

.nav_pc_box .nav_title_second li>a {
  font-weight: 400;
  font-size: 14px;
  color: #555555;
  display: block;
  transition: 0.3s;
}

.nav_pc_box .nav_title_second li>a:hover {
  color: #0D53C5;
}

.nav_pc_box .nav_title_second li:not(:first-child) {
  margin-top: 18px;
}


/*pc导航高亮*/

.nav_pc.active,
.nav-fixed {
  box-shadow: 0px 8px 50px 0px rgba(135, 151, 192, 0.12), inset 0px -2px 0px 0px rgba(217, 217, 217, 0.6);
  background-color: #fff;
  height: 100px;
}

.nav-fixed .logo a>img:last-child,
.nav_pc.active .logo a>img:last-child {
  display: block;
}

.nav-fixed .nav_title>ul>li>a,
.nav_pc.active .nav_title>ul>li>a {
  color: #333;
}

.nav-fixed .nav_pc_box .nav_pc_btn form>button,
.nav-fixed .nav_pc_box .nav_pc_btn .toggle span,
.nav_pc.active .nav_pc_box .nav_pc_btn form>button,
.nav_pc.active .nav_pc_box .nav_pc_btn .toggle span {
  color: #999999;
}

.nav-fixed .nav_pc_box .nav_pc_btn form::after,
.nav_pc.active .nav_pc_box .nav_pc_btn form::after {
  background-color: #999999;
}

.nav-fixed .nav_title>ul>li:hover>a,
.nav-fixed .nav_title>ul>li.active>a,
.nav_pc.active .nav_title>ul>li:hover>a,
.nav_pc.active .nav_title>ul>li.active>a {
  color: #0D53C5;
}

.nav-fixed .nav_title>ul>li:hover>a::after,
.nav-fixed .nav_title>ul>li.active>a::after,
.nav_pc.active .nav_title>ul>li:hover>a::after,
.nav_pc.active .nav_title>ul>li.active>a::after {
  background-color: #0D53C5;
  width: 100%;
  left: 0;
}

.nav_pc.active .nav_pc_box .nav_pc_btn .toggle .lang::after,
.nav-fixed .nav_pc_box .nav_pc_btn .toggle .lang::after {
  color: #000;
}

.nav_pc.active .nav_pc_box .nav_contact {
  display: flex;
}

.nav_pc.active .nav_pc_box .nav_title_second {
  display: block;
}



/* 手机导航 */
.nav_phone {
  display: none;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 20px;
  box-sizing: border-box;
  transition: 0.3s;
}

.nav_phone.show {
  background-color: #fff;
  box-shadow: 0px 0px 28px 0px rgba(156, 156, 156, 0.25);
}

.nav_phone.show .phone_logo img:last-child {
  display: block;
}

.nav_phone_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  z-index: 999;
}

.menu,
.menu>ul ul {
  overflow: hidden;
  max-height: 0;
  background-color: #fff;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.active_menu {
  min-height: 100vh;
  overflow: auto;
  padding: 10px 20px;
  box-sizing: border-box;
  line-height: 1.5;
  padding-top: 80px;
}

.menu>ul>li>a {
  position: relative;
  padding: 15px 0;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  letter-spacing: 1px;
  border-bottom: 1px solid #ececec;
}

.menu>ul>li>a span {
  font-size: 14px;
  color: #333;
  -webkit-text-fill-color: #333;
}

.menu>ul>li>a span.iconfont {
  font-size: 18px;
  transition: 0.3s;
}


.sub-menu li {
  padding: 8px 18px;
  border-bottom: 1px solid #ececec;
  background-color: #fff;
}

.sub-menu li a {
  color: #333;
  font-size: 12px;
}

.active_submenu {
  display: unset;
}

.active_submenu .iconfont {
  transform: rotate(90deg);
}

.active_sub-menu {
  visibility: visible;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  max-height: 55em !important;
}

/* logo */
.phone_logo img {
  width: 396px;
}

.phone_logo img:last-child,
.nav_phone.show .phone_logo img:first-child {
  display: none;
}

.nav_right {
  display: flex;
  align-items: center;
}

.nav_right .nav_phone_btn {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav_right .nav_phone_btn button {
  line-height: 25px;
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  padding-right: 15px;
  position: relative;
}

.nav_right .nav_phone_btn button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  height: 80%;
  transform: translateY(-50%);
  width: 1px;
  background-color: #fff;
}

.nav_right .nav_phone_btn .toggle {
  margin-left: 15px;
  position: relative;
}

.nav_right .nav_phone_btn .toggle span {
  line-height: 22px;
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.nav_right .nav_phone_btn .toggle .lang {
  display: none;
  position: absolute;
  left: 50%;
  top: 35px;
  transform: translateX(-50%);
  width: 50px;
  background: #fff;
}

.nav_right .nav_phone_btn .toggle .lang::after {
  content: "\e631";
  font-family: iconfont;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  top: -14px;
  color: #fff;
  font-size: 14px;
  z-index: -1;
}

.nav_right .nav_phone_btn .toggle .lang p {
  text-align: center;
  padding: 8px 0;
  font-size: 16px;
  color: #000;
  transition: 0.3s;
}

.nav_right .nav_phone_btn .toggle .lang p:hover,
.nav_right .nav_phone_btn .toggle .lang p.active {
  background-color: #000;
  color: aqua;
}

.nav_phone.show .nav_right .nav_phone_btn button,
.nav_phone.show .nav_right .nav_phone_btn .toggle span {
  color: #999999;
}

.nav_phone.show .nav_right .nav_phone_btn button::after {
  background-color: #999999;
}

/* 列表按钮 */
.spinner-master {
  position: relative;
  width: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: transparent;
  height: 46px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 3px;
  z-index: 9999;
}

.spinner-master * {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  box-sizing: border-box;
}

.spinner-spin {
  width: 22px;
  text-indent: -99999px;
}

.spinner-master .spinner {
  height: 2px;
  width: 100%;
  background-color: #fff;
}

.spinner-master .spinner.active {
  background-color: #000;
}

.spinner:nth-child(2n) {
  width: 100% !important;
}

.spinner-master .horizontal {
  margin-top: 6px;
}

.spinner-master .diagonal.part-2 {
  margin-top: 6px;
}

.spinner_active .spinner-spin>.diagonal.part-1 {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  margin-top: 3px;
}

.spinner_active .spinner-spin>.horizontal {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.spinner_active .spinner-spin>.diagonal.part-2 {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  margin-top: -10px;
}

.spinner_active .spinner {
  background-color: #000;
}


.search {
  display: none;
  width: 100%;
  margin-top: 20px;
  /* position: absolute;
  top: 100%;
  left: 0; */
}

.search form {
  border: none;
  outline: none;
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  align-items: center;
  padding: 15px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
}

.search form>input {
  width: 100%;
  border: none;
  outline: none;
  border-bottom: 1px solid #999;
  height: 40px;
}

.search form>button {
  line-height: 20px;
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0);
  color: #000;
  font-size: 20px;
  cursor: pointer;
  margin-left: 25px;
  flex-shrink: 0;
}

/*nav 结束*/

/*banner 开始 内页*/
.banner {
  width: 100%;
  position: relative;
}

.banner>.container:first-of-type {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.banner>.container:last-of-type {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  justify-content: end;
}

.banner>.container>.text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-transform: uppercase;
}

.banner>.container h2 {
  font-weight: bold;
  font-size: 48px;
  color: #FFFFFF;
  text-shadow: 0px 4px 4px rgba(69, 71, 91, 0.54);
  margin-bottom: 20px;
}

.banner>.container h3 {
  font-weight: bold;
  font-size: 24px;
  color: #FFFFFF;
  text-shadow: 0px 4px 4px rgba(69, 71, 91, 0.24);
}

.banner>.container .banner_location {
  display: flex;
  align-items: center;
}

.banner>.container .banner_location>.icon-home-filling {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.banner>.container .banner_location>a,
.banner>.container .banner_location>.fg {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.banner>.container .banner_location>a.active {
  color: #FFF;
}
.banner>.container .banner_location>a br{
    display: none;
}

.banner>.container .banner_location>.fg {
  margin: 0 8px;
}


/*banner 结束*/


/*面包屑 开始*/
.crumbs {
  width: 100%;
  height: 80px;
  position: relative;
  box-shadow: inset 0px -2px 0px 0px rgba(217, 217, 217, 0.6);
}

.crumbs>.container {
  height: 100%;
  position: relative;
}

.crumbs .locationWrapper {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  /* justify-content: space-between */
}

.crumbs .locationWrapper .swiper .scroll-tip {
  position: absolute;
  right: 0;
  top: 0;
  width: 80px;
  height: 100%;
  background: linear-gradient(to right, white, #0348A6);
  z-index: -1;
  transition: 0.3s;
  opacity: 0;
}

.crumbs .locationWrapper .swiper .scroll-tip>span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-weight: 400;
  font-family: iconfont;
  color: #fff;
  z-index: 2;
  animation: sway 1.25s infinite;
}

@keyframes sway {
  0% {
    transform: translate(-50%, -50%);
  }

  50% {
    transform: translate(0, -50%);
  }

  100% {
    transform: translate(-50%, -50%);
  }
}

.crumbs .locationWrapper::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.crumbs .locationWrapper .swiper-slide {
  position: relative;
  width: auto;
  height: 100%;
  display: flex;
  align-items: center;
}

.crumbs .locationWrapper .swiper-slide:last-of-type {
  margin: 0 !important;
}

.crumbs .locationWrapper .swiper-slide::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #0348A6;
  transition: 0.5s;
}

.crumbs .locationWrapper .swiper-slide a {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.crumbs .locationWrapper .swiper-slide a span {
  font-size: 20px;
  color: #999999;
  font-weight: 400;
  transition: 0.3s;
}

.crumbs .locationWrapper .swiper-slide a p {
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  transition: 0.3s;
  text-align: center;
  margin-left: 12px;
}

.crumbs .locationWrapper .swiper-slide:hover::after,
.crumbs .locationWrapper .swiper-slide.active::after {
  width: 100%;
  left: 0;
}

.crumbs .locationWrapper .swiper-slide:hover a span,
.crumbs .locationWrapper .swiper-slide.active a span,
.crumbs .locationWrapper .swiper-slide:hover a p,
.crumbs .locationWrapper .swiper-slide.active a p {
  color: #0348A6;
}



.crumbs .secondNav {
  height: 100%;
  display: flex;
  align-items: center;
}

.crumbs .secondNav>li:not(:last-of-type) {
  margin-right: 80px;
}

.crumbs .secondNav>li {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.crumbs .secondNav>li::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #0348A6;
  transition: 0.3s;
}

.crumbs .secondNav>li:hover::after,
.crumbs .secondNav>li.active::after {
  width: 100%;
}

.crumbs .secondNav>li>a {
  font-weight: 400;
  font-size: 20px;
  color: #666666;
  transition: 0.3s;
  display: flex;
  align-items: center;
}

.crumbs .secondNav>li>a img {
  width: 30px;
  height: 30px;
  transition: 0.3s;
  margin-right: 12px;
}

.crumbs .secondNav>li>a img:nth-child(2n) {
  display: none;
}

.crumbs .secondNav>li:hover>a,
.crumbs .secondNav>li.active>a {
  color: #0348A6;
}

.crumbs .secondNav>li:hover>a img,
.crumbs .secondNav>li.active>a img {
  display: none;
}

.crumbs .secondNav>li:hover>a img:nth-child(2n),
.crumbs .secondNav>li.active>a img:nth-child(2n) {
  display: block;
}

/* 面包屑   结束 */



/*page 翻页 开始*/

.page {
  padding-bottom: 80px;
}

.page .container {
  display: flex;
  justify-content: center;
  font-family: Source Han Sans CN;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  flex-wrap: wrap;
}

.page .container>.pageblock:not(:last-child) {
  margin-right: 11px;
  margin-bottom: 11px;
}

.page .container>.index,
.page .container>.total {
  background: #EBEBEB;
  line-height: 35px;
  transition: 0.3s;
  font-weight: 400;
  font-size: 16px;
  color: #666666;
}

.page .container>.index:first-of-type,
.page .container>.index:last-of-type {
  width: 78px;
  height: 37px;
  flex-shrink: 0;
  transition: 0.3s;
}

.page .container>.index {
  width: 38px;
  height: 37px;
  transition: 0.3s;
  flex-shrink: 0;
}

.page .container>.total {
  width: 126px;
  height: 37px;
  flex-shrink: 0;
}

.page .container>.pageblock:hover {
  background: #0348A6;
  color: #FFF;
}

/*page 翻页 结束*/



/*footer*/

.footer .footer_top {
  width: 100%;
  padding: 80px 0 70px;
  background: #FFF;
  position: relative;
  border-top: 1px solid #EAEAEA;
}

.footer .footer_top::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 521px;
  height: 306px;
  background: url(../images/footer_bg.png) no-repeat center/cover;
}

.footer .footer_top .footer_logo {
  margin-bottom: 60px;
}

.footer .footer_top .container .footer_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer .footer_top .container .footer_list .left {
  display: flex;
}

.footer .footer_top .container .footer_list .left li:not(:last-child) {
  padding-right: 100px;
  position: relative;
}
.footer .footer_top .container .footer_list .left li:not(:last-child):after{
    content: '';
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 90%;
    background: #EAEAEA;
}

.footer .footer_top .container .footer_list .left li>a {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
}

.footer .footer_top .container .footer_list .left li>a span:first-child {
  font-weight: 400;
  font-size: 20px;
  color: #333;

}

.footer .footer_top .container .footer_list .left li>a span:last-child {
  font-weight: 400;
  font-size: 14px;
  color: #333;
  margin-left: 5px;
}

.footer .footer_top .container .footer_list .left li:nth-child(2)>.list_item {
  max-width: 125px;
  max-height: 140px;
  position: relative;
  overflow: auto;
}
.footer .footer_top .container .footer_list .left li:nth-child(3)>.list_item{
    max-width: 140px;
}

.footer .footer_top .container .footer_list .left li:nth-child(2)>.list_item::after {
  content: '\e668';
  position: absolute;
  left: 45%;
  bottom: 0;
  transform: translateX(-50%) rotate(90deg);
  font-size: 18px;
  font-family: iconfont;
  color: #555;
  animation: shifting 1s linear infinite;
}

.footer .footer_top .container .footer_list .left li:nth-child(2)>.list_item.active::after {
  display: none;
}

@keyframes shifting {
  0% {
    bottom: 0px;
  }

  50% {
    bottom: 10px;
  }

  100% {
    bottom: 0px;
  }
}

.footer .footer_top .container .footer_list .left li:nth-child(2)>.list_item::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.footer .footer_top .container .footer_list .left li>.list_item>a {
  font-weight: 400;
  font-size: 16px;
  color: #555555;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.footer .footer_top .container .footer_list .left li>.list_item>a br,
.nav_pc_box .nav_title_second li>a br,
.sub-menu li a br{
    display: none;
}

.footer .footer_top .container .footer_list .left li>.list_item>a:not(:first-child) {
  margin-top: 18px;
}

.footer .footer_top .container .footer_list .left li>.list_item .contact_mether {
  display: flex;
  align-items: center;
}

.footer .footer_top .container .footer_list .left li>.list_item .contact_mether:not(:first-child) {
  margin-top: 35px;
}

.footer .footer_top .container .footer_list .left li>.list_item .contact_mether .iconfont {
  font-size: 20px;
  font-weight: 400;
  color: #555;
  margin-right: 10px;
}

.footer .footer_top .container .footer_list .left li>.list_item .contact_mether span {
  font-weight: 400;
  font-size: 16px;
  color: #555;
}

.footer .footer_top .container .footer_list .left li>.list_item .contact_mether p {
  font-weight: bold;
  font-size: 16px;
  color: #555;
}

.footer .footer_top .container .footer_list .right {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.footer .footer_top .container .footer_list .right p {
  font-weight: 400;
  font-size: 16px;
  color: #999999;
  margin-top: 15px;
}

.footer .footer_bottom {
  background: #fff;
  padding: 25px 0;
  border-top: 1px solid #EAEAEA ;
}

.footer .footer_bottom .container {
  text-align: center;
}

.footer .footer_bottom .container p a {
  font-weight: 400;
  font-size: 14px;
  color: #999999;
}

@media(max-width:1760px) {
  .container {
    width: 90%;
  }
}

@media(max-width:1680px) {
  .nav_pc::after {
    height: 280px;
  }

  .nav_pc {
    height: 90px;
  }

  .nav_pc.active,
  .nav-fixed {
    height: 85px;
  }

  .nav_pc_box .logo a>img {
    width: 400px;
  }

  .nav_pc_box .nav_title>ul>li>a {
    font-size: 18px;
  }

  .nav_pc_box .nav_title>ul>li {
    padding-right: 50px;
  }

  .nav_pc_box .nav_pc_btn {
    margin-left: 50px;
  }

  .nav_pc_box .nav_title_second {
    width: 90px;
  }

  .nav_pc_box .nav_pc_btn form>button,
  .nav_pc_box .nav_pc_btn .toggle span {
    font-size: 20px;
  }



  .footer .footer_top .container .footer_list .left li:not(:last-child) {
    padding-right: 70px;
  }
  
  .footer .footer_top .container .footer_list .left li:not(:last-child):after {
    right: 35px;
  }

  .footer .footer_top .container .footer_list .left li:nth-child(2)>.list_item {
    max-width: 113px;
  }

  .footer .footer_top .container .footer_list .left li>a span:first-child {
    font-size: 18px;
  }

  .footer .footer_top .container .footer_list .left li>a span:last-child {
    font-size: 12px;
  }

}

@media (max-width: 1490px) {
  .nav_pc {
    height: 85px;
  }

  .nav_pc.active,
  .nav-fixed {
    height: 80px;
  }

  .nav_pc_box .nav_title>ul>li {
    padding-right: 40px;
  }

  .nav_pc_box .nav_pc_btn {
    margin-left: 40px
  }

  .nav_pc_box .nav_title_second {
    width: 80px;
  }

  .crumbs .locationWrapper .swiper .scroll-tip {
    opacity: 1;
    z-index: 1;
  }

}



@media(max-width:1440px) {
  .nav_pc_box .logo a>img {
    width: 340px;
  }

  .nav_pc_box .nav_title>ul>li>a {
    font-size: 16px;
  }



  .banner>.container h2 {
    font-size: 42px;
    margin-bottom: 15px;
  }

  .banner>.container h3 {
    font-size: 22px;
  }


  .crumbs {
    height: 70px;
  }

  .crumbs .secondNav>li:not(:last-of-type) {
    margin-right: 60px;
  }



  .page {
    padding-bottom: 60px;
  }







  .footer .footer_top {
    padding: 60px 0;
  }

  .footer .footer_top .footer_logo {
    margin-bottom: 40px;
  }

  .footer .footer_top .container .footer_list .left li:not(:last-child) {
    padding-right: 50px;
  }
  
  .footer .footer_top .container .footer_list .left li:not(:last-child):after {
    right: 25px;
  }

  .footer .footer_top .container .footer_list .left li:nth-child(2)>.list_item {
    max-width: 105px;
  }

  .footer .footer_top .container .footer_list .left li>a span:first-child {
    font-size: 16px;
  }

  .footer .footer_top .container .footer_list .left li>.list_item>a,
  .footer .footer_top .container .footer_list .left li>.list_item .contact_mether span,
  .footer .footer_top .container .footer_list .left li>.list_item .contact_mether p {
    font-size: 14px;
  }

  .footer .footer_top .container .footer_list .left li>.list_item .contact_mether .iconfont {
    font-size: 18px;
  }

  .footer .footer_top::after {
    width: 416px;
    height: 245px;
  }

  .footer .footer_top .container .footer_list .left li>.list_item .contact_mether:not(:first-child) {
    margin-top: 25px;
  }

}

@media(max-width:1280px) {
  .nav_pc {
    height: 75px;
  }

  .nav_pc.active,
  .nav-fixed {
    height: 70px;
  }

  .nav_pc::after {
    height: 200px;
  }

  .nav_pc_box .logo a>img {
    width: 248px;
  }

  .nav_pc_box .nav_title>ul>li {
    padding-right: 30px;
  }


  .nav_pc_box .nav_title>ul>li>a {
    font-size: 14px;
  }

  .nav_pc_box .nav_pc_btn form>button,
  .nav_pc_box .nav_pc_btn .toggle span {
    font-size: 18px;
  }

  .nav_pc_box .nav_contact {
    height: 158px;
  }

  .nav_pc_box .nav_contact>.tip,
  .nav_pc_box .nav_contact>.place {
    font-size: 14px;
  }

  .nav_pc_box .nav_contact>.phone {
    font-size: 28px;
  }

  .nav_pc_box .nav_title_second {
    margin-top: 40px;
    width: 70px;
    max-height: 118px;
  }

  .nav_pc_box .nav_title_second li>a {
    font-size: 12px;
  }





  .banner>.container h2 {
    font-size: 38px;
    margin-bottom: 10px;
  }

  .banner>.container h3 {
    font-size: 20px;
  }


  .crumbs .locationWrapper .swiper .scroll-tip {
    width: 60px;
  }

  .crumbs .secondNav>li>a {
    font-size: 16px;
  }

  .crumbs .secondNav>li:not(:last-of-type) {
    margin-right: 40px;
  }

  .crumbs .secondNav>li>a>img {
    margin-right: 10px;
  }






  .footer .footer_top {
    padding: 50px 0;
  }

  .footer .footer_top::after {
    width: 332px;
    height: 196px;
  }

  .footer .footer_logo>img {
    width: 340px;
  }

  .footer .footer_top .footer_logo {
    margin-bottom: 30px;
  }

  .footer .footer_top .container .footer_list .left li>a span:first-child,
  .footer .footer_top .container .footer_list .right p {
    font-size: 14px;
  }

  .footer .footer_top .container .footer_list .left li>a span:last-child {
    font-size: 10px;
  }

  .footer .footer_top .container .footer_list .left li:not(:last-child) {
    padding-right: 35px;
  }
  
  .footer .footer_top .container .footer_list .left li:not(:last-child):after {
    right: 17.5px;
  }

  .footer .footer_top .container .footer_list .left li:nth-child(2)>.list_item {
    max-height: 118px;
    max-width: 91px;
  }

  .footer .footer_top .container .footer_list .left li>.list_item>a,
  .footer .footer_top .container .footer_list .left li>.list_item .contact_mether span,
  .footer .footer_top .container .footer_list .left li>.list_item .contact_mether p {
    font-size: 12px;
  }

  .footer .footer_top .container .footer_list .right>img {
    width: 100px;
  }


}

@media(max-width:1024px) {
  .nav_pc {
    display: none;
  }

  .nav_phone {
    display: block;
  }





  .banner>.container h2 {
    font-size: 34px;
  }

  .banner>.container h3 {
    font-size: 18px;
  }




  .crumbs .secondNav>li:not(:last-of-type) {
    margin-right: 20px;
  }

  .page {
    padding-bottom: 50px;
  }


  .footer .footer_top .container .footer_list .left li:not(:last-child) {
    display: none;
  }

  .footer .footer_top {
    padding: 40px 0;
  }

  .footer .footer_top .container .footer_list .left li>a span:first-child {
    font-size: 16px;
  }

  .footer .footer_top .container .footer_list .left li>.list_item>a,
  .footer .footer_top .container .footer_list .left li>.list_item .contact_mether span,
  .footer .footer_top .container .footer_list .left li>.list_item .contact_mether p {
    font-size: 14px;
  }
}

@media(max-width:768px) {
  .nav_phone {
    padding: 15px 20px;
  }

  .phone_logo img {
    width: 320px;
  }

  .active_menu {
    padding-top: 60px;
  }





  .banner {
    height: 255px;
    overflow: hidden;
  }

  .banner>img {
    height: 100%;
    width: auto;
    object-fit: cover;
  }


  .crumbs {
    height: 60px;
  }

  .crumbs .locationWrapper .swiper-slide a p {
    margin-left: 8px;
  }


  .footer .footer_top .container .footer_list .left li>.list_item .contact_mether:not(:first-child) {
    margin-top: 20px;
  }
}

@media(max-width:600px) {
  .phone_logo img {
    width: 290px;
  }

  .nav_right .nav_phone_btn button {
    padding-right: 10px;
  }

  .nav_right .nav_phone_btn .toggle {
    margin-left: 10px;
  }




  .banner {
    height: 215px;
  }

  .banner>.container h2 {
    font-size: 28px;
    margin-bottom: 5px;
  }




  .crumbs .locationWrapper .swiper .scroll-tip {
    width: 46px;
  }

  .crumbs .locationWrapper .swiper .scroll-tip>span {
    font-size: 16px;
  }

  .crumbs .locationWrapper .swiper-slide a span {
    font-size: 16px;
  }

  .crumbs .locationWrapper .swiper-slide a p {
    font-size: 12px;
  }


  .crumbs .secondNav>li>a {
    font-size: 14px;
  }

  .crumbs .secondNav>li>a>img {
    width: 24px;
    height: 24px;
    margin-right: 5px;
  }



  .page {
    padding-bottom: 30px;
  }



  .footer .footer_top {
    padding: 30px 0;
  }

  .footer .footer_top::after {
    width: 265px;
    height: 156px;
  }

  .footer .footer_top .footer_logo {
    margin-bottom: 20px;
  }

  .footer .footer_logo>img {
    width: 290px;
  }

  .footer .footer_top .container .footer_list .left li>a {
    margin-bottom: 15px;
  }

  .footer .footer_top .container .footer_list .left li>.list_item .contact_mether:not(:first-child) {
    margin-top: 15px;
  }


  .footer .footer_bottom {
    background: #282828;
    padding: 20px 0;
  }

}

@media(max-width:480px) {
  .nav_phone {
    padding: 15px 10px;
  }

  .phone_logo img {
    width: 260px;
  }


  .nav_right .nav_phone_btn button {
    padding-right: 5px;
  }

  .nav_right .nav_phone_btn .toggle {
    margin-left: 5px;
  }

  .nav_right .nav_phone_btn button,
  .nav_right .nav_phone_btn .toggle span {
    line-height: 22px;
    font-size: 18px;
  }


  .spinner-spin {
    width: 20px;
  }

  .spinner-master {
    width: 30px;
    height: 30px;
  }

  .spinner-master .horizontal,
  .spinner-master .diagonal.part-2 {
    margin-top: 5px;
  }

  .spinner_active .spinner-spin>.diagonal.part-2 {
    margin-top: -9px;
  }

  .banner>.container:last-of-type {
    bottom: 18px;
  }

  .banner>.container .banner_location>a,
  .banner>.container .banner_location>.fg {
    font-size: 12px;
  }

  .banner>.container .banner_location>.fg {
    margin: 0 5px;
  }

  .crumbs .secondNav>li:not(:last-of-type) {
    margin-right: 15px;
  }



  .footer .footer_top::after {
    width: 212px;
    height: 125px;
  }

  .footer .footer_top .container .footer_list .left li>a span:first-child {
    font-size: 14px;
  }

  .footer .footer_top .container .footer_list .left li>.list_item>a,
  .footer .footer_top .container .footer_list .left li>.list_item .contact_mether span,
  .footer .footer_top .container .footer_list .left li>.list_item .contact_mether p {
    font-size: 12px;
  }

  .footer .footer_top .container .footer_list .right>img {
    width: 90px;
  }

  .footer .footer_top .container .footer_list .right p {
    font-size: 12px;
    margin-top: 5px;
  }



}

@media(max-width:430px) {

  .banner>.container .banner_location>.fg {
    margin: 0 2px;
  }

  .footer .footer_bottom {
    padding: 15px 0;
  }

  .page {
    padding-bottom: 18px;
  }

  .page .container>.index:first-of-type,
  .page .container>.index:last-of-type {
    width: 65px;
    height: 30px;
  }

  .page .container>.index,
  .page .container>.total {
    background: #EBEBEB;
    line-height: 16px;
    transition: 0.3s;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .page .container>.total {
    width: 100px;
    height: 30px;
    flex-shrink: 0;
  }

  .page .container>.index {
    width: 30px;
    height: 30px;
    transition: 0.3s;
    flex-shrink: 0;
  }
}

@media(max-width:390px) {
  .crumbs .secondNav>li:not(:last-of-type) {
    margin-right: 10px;
  }
}