/* ================================================
   Base Styles and Utility Classes
   ================================================ */
.w1510 {
  width: 100%;
  /*max-width: 1770px;*/
  max-width: 1405px; /* 1500px; */
  margin: 0 auto;
  padding: 0 20px;
}

#scrollTop {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 999;
}
#scrollTop:hover {
    background: rgba(0,0,0,0.8);
}
#scrollTop i {
    font-size: 24px;
}
/* ================================================
   Header and Navigation Styles
   ================================================ */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  height: 8.2rem;
  padding: 0 1.875rem;
  transition: background-color 0.3s ease;

}

.header.on {
  background: #fff;
  border-bottom: 1px solid #ccc;
  z-index: 999;
}

.header .left {
  width: 12%;
  height: auto;
  margin-top: 10px;
  align-self: flex-start; /* logo左对齐 */
  margin-bottom: auto; /* 将logo推到底部 */
}

.header .left .img2 {
  display: none;
}

.header.on .left .img1 {
  display: none;
}

.header.on .left .img2 {
  display: block;
}

/* Navigation Menu */
.header .nav {
  transition: 0.5s;
  height: 100%;
  line-height: 83px;
  display: flex;
}

.header.inner .nav {
  display: flex;
  flex-direction: column; /* 改为垂直布局 */
  align-items: flex-end; /* 整体右对齐 */
  /* height: auto !important;
  line-height: auto !important; */
  line-height: 55px;
  padding-bottom: 0;
}

.header.inner .navbar_nav {
  display: flex;
  justify-content: flex-end; /* 菜单项右对齐 */
  width: 100%;
  margin-top: auto; /* 将菜单推到底部 */
  height: 48px;
}

.header .navbar_nav li {
  float: left;
  position: relative;
  display: block;
}

.header .navbar_nav li:after {
  content: "";
  width: 0;
  height: 2px;
  background: orangered;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.5s ease;
}

.header .navbar_nav li:hover:after {
  width: 100%;
}

.header .navbar_nav li a {
  text-decoration: none;
  height: 100%;
  padding: 0 0.9375rem;
  display: block;
  transition: 0.5s;
  color: #fff;
  font-size: 2rem;
}

.header.inner .navbar_nav li a {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  /* height: 30px; */
  /* padding: 0 0.9375rem;
  font-size: 2rem; */
}

.header .navbar_nav li:hover a {
  color: orangered;
}

.header.on .navbar_nav li a {
  color: #333;
}

.header.on .navbar_nav li:hover a {
  color: orangered;
}

/* Dropdown Menu */
.header .navbar_nav li.dropdown {
  display: inherit;
  position: relative;
}

.header .navbar_nav li.dropdown .dropdown_menu {
  display: none;
  position: absolute;
  top: 82px;
  width: 140%;
  left: -20%;
  background: #fff;
  box-shadow: 0 15px 27px 0 rgba(167, 165, 165, 0.38);
}

.header.inner .navbar_nav li.dropdown .dropdown_menu {
  top: 47px;
}

.header .navbar_nav li.dropdown:hover .dropdown_menu {
  display: block;
  background: #f3f3f3;
  transition: 0.5s;
}

.header .navbar_nav li.dropdown .dropdown_menu a {
  font-size: 1.5rem;
  color: #666;
  padding: 0.5rem 0.8rem;
  line-height: 2.5rem;
  text-align: center;
  margin-bottom: 2px;
  vertical-align: bottom;
}

.header .navbar_nav li.dropdown:hover .dropdown_menu a {
  color: #666;
}

.header .navbar_nav li.dropdown:hover .dropdown_menu a:hover {
  color: #fff;
  background: orange;
}

/* Header Box Styles */
.header_box {
  display: flex;
  align-items: center;
  color: #fff;
  font-family: "alipuhui-R";
  height: 83px;
}

.header.inner .header_box {
  order: -1;
  width: 100%;
  justify-content: flex-end;
  /* margin-bottom: 10px;  */
  height: 35px;
  padding-bottom: 0;
  text-align: right;
}

.header_box span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.header_box .iconfont {
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s;
}

.header_box .iconfont:hover {
  color: orangered;
}

.header_box .separator {
  font-size: 1.5625rem;
  margin: 0 0.625rem;
}

.header.inner .header_box .separator:first-child {
  visibility: hidden;
}

.header_box .phone-label {
  font-size: 1.3rem;
  margin: 0 0.3125rem;
}

.header_box .phone-number {
  font-size: 2.3rem;
}

.header_box .weixin-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.header.on .header_box {
  color: #08437a;
}

/* WeChat QR Code */
.weixin-qrcode {
  position: absolute;
  right: 0;
  bottom: -120px;
  width: 145px;
  height: 145px;
  /* padding: 10px; */
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1000;
}

.weixin-qrcode img {
  width: 100%;
  height: auto;
}

.icon-weixin:hover + .weixin-qrcode,
.weixin-qrcode:hover {
  display: block;
}

/* Mobile Navigation */
#navToggle {
  display: none;
}

.m_nav {
  position: fixed;
  top: 0px;
  box-shadow: 0 15px 27px 0 rgba(167, 165, 165, 0.38);
  width: 100%;
  height: 100%;
  background: #fff;
  transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  z-index: 1000;
  opacity: 1;
  visibility: visible;
  margin-top: 0;
  overflow-y: auto;
  transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  top: 0;
  transform: translateX(100%);
}

.m_nav.open {
  transform: translateX(0);
}

.m_nav .top {
  height: 60px;
  padding: 20px;
  box-sizing: border-box;
}

.m_nav .top .closed {
  width: 30px;
  height: 30px;
  vertical-align: middle;
  float: right;
  cursor: pointer;
}

.m_nav .logo {
  width: 100%;
  margin: 0 auto;
}

.m_nav .logo img {
  height: 50px;
  display: block;
  margin: 30px auto;
}

.m_nav .ul {
  margin-top: 30px;
}

.m_nav .ul li {
  padding: 0 20px;
  border-bottom: 1px solid #f5f5f5;
  transform: translateY(0);
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  opacity: 0;
}

.m_nav.open .ul li {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.m_nav .ul li:nth-child(1) {
  -webkit-transition: all 0.2s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 0.2s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
}

.m_nav .ul li:nth-child(2) {
  -webkit-transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
}

.m_nav .ul li:nth-child(3) {
  -webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
}

.m_nav .ul li:nth-child(4) {
  -webkit-transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
}

.m_nav .ul li:nth-child(5) {
  -webkit-transition: all 1s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 1s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
}

.m_nav .ul li:nth-child(6) {
  -webkit-transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
  transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
}

.m_nav .ul li a {
  display: block;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  height: 83px;
  line-height: 83px;
  width: 100%;
}

.m_nav .ul li .dropdown_menu {
  display: none;
}

.m_nav .ul li.dropdown.active .dropdown_menu {
  display: block;
}

.m_nav .ul li .dropdown_menu a {
  display: block;
  height: 83px;
  line-height: 83px;
  padding: 0 40px;
  box-sizing: border-box;
  border-bottom: 1px solid #f5f5f5;
}

.m_nav .ul li .dropdown_menu a:last-child {
  border: none;
}

.banner {
  width: 100%;
}
.banner img {
  width: 100%;
}

/* ================================================
   Search Styles
   ================================================ */
.fix-sear.active {
  opacity: 1;
  display: block;
}

.transOne {
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

.fix-sear {
  position: fixed;
  z-index: 99999;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(35, 35, 35, 0.9);
  opacity: 0;
  display: none;
}

.fix-sear .fix-box.active {
  opacity: 1;
  display: block;
}

.fix-sear .fix-box {
  background-color: #fff;
  padding: 100px 0 160px;
  position: relative;
  opacity: 0;
  transition: all 0.7s !important;
}

.fix-sear .fix-box > a {
  position: absolute;
  display: block;
  width: 40px;
  height: 40px;
  right: 50px;
  top: 50px;
  color: #000;
  font-size: 30px;
  transform: rotateX(0deg);
}

.fix-box form {
  display: block;
  width: 50%;
  position: relative;
  margin: 0 auto;
  border-bottom: 1px solid #666;
}

.fix-sear .fix-box #key-inp {
  background-color: #fff;
  outline: unset;
  border: unset;
  color: #454545;
  height: 65px;
  line-height: 65px;
  padding-left: 15px;
  display: block;
  width: 75%;
  font-size: 18px;
}

#open_sub {
  position: absolute;
  display: block;
  float: right;
  background-color: unset;
  top: 15px;
  right: 20px;
  outline: unset;
  border: unset;
  color: #000;
}

#top .search_form a:hover {
  color: #03234b;
}

#top .search_form a .img2 {
  display: none;
}

#top .search_form a:hover .img1 {
  display: none;
}

#top .search_form a:hover .img2 {
  display: block;
  margin-top: -7px;
}

/* ================================================
   Banner Styles
   ================================================ */
.slick-slider {
  position: relative;

  display: block;
  box-sizing: border-box;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;

  display: block;
  overflow: hidden;

  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;

  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  display: table;

  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;

  height: 100%;
  min-height: 1px;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;

  height: auto;

  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}

.slick-dots {
  position: absolute;
  bottom: -25px;

  display: block;

  width: 100%;
  padding: 0;
  margin: 0;

  list-style: none;

  text-align: center;
}
.slick-dots li {
  position: relative;

  display: inline-block;

  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;

  cursor: pointer;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;

  display: block;

  width: 20px;
  height: 20px;
  padding: 5px;

  cursor: pointer;

  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
/*.slick-dots li button:focus:before
{
    opacity: 1;
}*/
.slick-dots li button:before {
  font-family: "alipuhui-R";
  font-size: 6px;
  line-height: 20px;

  position: absolute;
  top: 0;
  left: 0;

  width: 20px;
  height: 20px;

  content: "•";
  text-align: center;

  /*   opacity: .25;*/
  color: black;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/*.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}*/
@-webkit-keyframes scale-bg {
  from {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scale-bg {
  from {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.index_main {
  background: #f7f7f7;
}

.index_main .section1 {
  position: relative;
}

.index_main .section1 .index_banner .item {
  background-size: cover;
  -webkit-background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  position: relative;
}

/* ================================================
   Banner Styles
   ================================================ */
/*.index_main .section1 .index_banner .item:nth-child(1) .items {
  background-image: url(../images/banner1.jpg);
}

.index_main .section1 .index_banner .item:nth-child(2) .items {
  background-image: url(../images/banner2.jpg);
}

.index_main .section1 .index_banner .item:nth-child(3) .items {
  background-image: url(../images/banner3.jpg);
}

.index_main .section1 .index_banner .item:nth-child(4) .items {
  background-image: url(../images/banner4.jpg);
}

.index_main .section1 .index_banner .item:nth-child(5) .items {
  background-image: url(../images/2.jpg);
}*/

.index_main .section1 .index_banner .item.slick-current .scaleBg {
  visibility: visible;
  -webkit-animation: scale-bg 6s linear forwards;
  animation: scale-bg 6s linear forwards;
}

.index_main .section1 .index_banner .items {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.index_main .section1 .index_banner .items:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  /*background: rgba(0, 0, 0, 0.2);*/
}

.index_main .section1 .index_banner .item .inner .block_txt {
  position: absolute;
  top: 44%;
  right: 10px;
  left: 10px;
  opacity: 0;
  transform: translateY(40px);
  -webkit-transform: translateY(40px);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.index_main .section1 .index_banner .item.active .inner .block_txt {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 100ms;
  transition-delay: 100ms;
}

.index_main .section1 .index_banner .item .inner .block_txt h4 {
  font-size: 30px;
  color: #fff;
  text-align: center;
  font-family: "alipuhui-R";
}

.index_main .section1 .index_banner .item .inner .block_txt h2 {
  color: #fff;
  font-size: 4.375rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 5px;
}

.index_main .section1 .index_banner .item .inner .block_txt h2 span {
  color: #f5c920;
  display: inline-block;
  letter-spacing: 5px;
}

.index_main .section1 .index_banner .item .inner .block_txt h3 {
  color: #fff;
  font-size: 1.375rem;
  text-align: center;
  margin-top: 10px;
  letter-spacing: 3px;
}

.index_main .section1 .slick_txt {
  width: 30%;
  height: 100%;
  background-color: transparent;
  transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  font-size: 0;
  outline: none;
  border: 0;
}

.index_main .section1 .left {
  left: 0;
}

.index_main .section1 .fr {
  right: 0;
}

.index_main .section1 .slick_txt:hover .slick_arrow {
  opacity: 1;
  visibility: visible;
}

.index_main .section1 .slick_txt .slick_arrow {
  width: 20px;
  height: 36px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: -18px;
  position: absolute;
  top: 50%;
  cursor: pointer;
  transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  opacity: 0;
  visibility: hidden;
}

.index_main .section1 .slick_txt .prev {
  background-image: url(../images/ban_prev.png);
  left: 60px;
}

.index_main .section1 .slick_txt .next {
  background-image: url(../images/ban_next.png);
  right: 60px;
}

.index_main .section1 .slick_txt .prev:hover {
  background-image: url(../images/ban_prev_hover.png);
}

.index_main .section1 .slick_txt .next:hover {
  background-image: url(../images/ban_next_hover.png);
}

.index_main .section1 .number {
  position: absolute;
  bottom: 8%;
  left: 50%;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: table;
  padding: 0 20px;
  width: auto;
  text-align: center;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

.index_main .section1 .number span {
  font-family: "alipuhui-R";
  font-size: 14px;
  color: #fff;
  margin-right: 100px;
  display: inline-block;
  cursor: pointer;
  position: relative;
  transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
}

.index_main .section1 .number span:last-child {
  margin-right: 0;
}

.index_main .section1 .number span:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  bottom: -20px;
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
}

.index_main .section1 .number span.active:after {
  width: 100%;
  opacity: 1;
  visibility: visible;
}

.index_main .section2 {
  background: url("../images/section2.jpg") 100% 100% no-repeat;
}

.index_main .section2 h3 {
  text-align: center;
}

.index_main .section3 {
  width: 100%;
  height: 100%;
  background: url(../images/section3.jpg) no-repeat;
  background-size: 100% 100%;
}

.index_main .section3 h3 {
  text-align: center;
}

.index_main .section4 {
  width: 100%;
  height: 100%;
  background: url(../images/section4.jpg) no-repeat;
  background-size: 100% 100%;
}

.index_main .section4 h3 {
  text-align: center;
}

.index_main .section5 {
  width: 100%;
  height: 100%;
  background: url(../images/section5.jpg) no-repeat;
  background-size: 100% 100%;
}
/* ================================================
   About Section Styles
   ================================================ */
#about-index-jt {
  position: relative;
}

#about-index-jt .pos-tit {
  padding: 220px 20px 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.module-tit h1 {
  font-size: 3rem;
  line-height: 45px;
  color: #fff;
  text-transform: uppercase;
}

.module-tit hr {
  width: 90px;
  height: 7px;
  background-image: linear-gradient(90deg, #c38210, #917839, #646f5e);
  display: block;
  border: none;
  margin-bottom: 30px;
}

.module-tit.black h1 {
  color: #15346d;
}

.module-tit.black hr {
  background-image: linear-gradient(90deg, #180ca6, #5c0c6d, #a10c34);
}

.module-tit p {
  font-size: 1.8rem;
  line-height: 3.5rem;
  margin-bottom: 3rem;
  text-align: justify;
}

#about-index-jt * {
  color: #fff;
}

#about-index-jt .pos-tit p {
  width: 50%;
}

#about-index-jt .pos-num {
  padding: 40px 0;
  position: absolute;
  bottom: 0;
  width: 100%;
}

#about-index-jt .pos-num::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-image: linear-gradient(90deg, #07ad2d, #0935a5);
  opacity: 0.7;
}

#about-index-jt .pos-num .w1510 {
  display: flex;
  text-align: center;
  position: relative;
  z-index: 3;
}

#about-index-jt .pos-num .list {
  flex: 1;
  border-left: 2px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 25px;
  padding-left: 25px;
  padding-right: 25px;
}

#about-index-jt .pos-num .list:first-child {
  border-left: 0;
  padding-left: 0;
}

  #about-index-jt .pos-num .list img {
    width: 20%;
    height: auto;
  }

#about-index-jt .pos-num .list .num {
  font-size: 1.8rem;
  font-family: "alipuhui-R";
  letter-spacing: 0.5rem;
}

#about-index-jt .pos-num .list p {
  font-size: 1.4rem;
  line-height: 3rem;
}

#about-index-jt .url {
  display: block;
  font-size: 18px;
  padding: 15px 0px;
  width: 280px;
  text-align: center;
  margin-top: 45px;
  color: #fff;
  background-color: #bb840f;
  border-radius: 30px;
  font-family: "alipuhui-R";
  font-weight: normal;
  position: relative;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

#about-index-jt .url::before {
  content: "";
  border: 0;
  display: block;
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(-90deg, #6db80f, #06a3db);
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
  z-index: 0;
  opacity: 0;
}

#about-index-jt .url font {
  position: relative;
  z-index: 333;
}

#about-index-jt .url:hover::before {
  width: 100%;
  opacity: 1;
}

/*关于我们*/
#about-index-jt > img {
  width: 100%;
}

/* ================================================
   News Section Styles
   ================================================ */
.focusBox {
  overflow: hidden;
}

.focusBox .pic {
  width: 100% !important;
  height: 100% !important;
}

.focusBox .pic li,
.focusBox .pic a,
.focusBox .pic img {
  display: block;
  width: 100% !important;
  height: 100%;
}

.focusBox .txt-bg {
  position: absolute;
  bottom: 0;
  z-index: 1;
  height: 80px;
  width: 100%;
  background: #193761;
  filter: alpha(opacity=90);
  opacity: 0.9;
  overflow: hidden;
}

.focusBox .txt {
  position: absolute;
  bottom: 0;
  z-index: 2;
  height: 80px;
  width: 100%;
  overflow: hidden;
}

.focusBox .txt ul {
  position: relative;
  height: 100%;
  width: 100%;
}

.focusBox .txt li {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: -82px;
  transition: bottom 0.3s ease;
}

.focusBox .txt li.active {
  bottom: 0;
}

.focusBox .txt li .list {
  width: 100%;
  display: flex;
  padding: 2% 1%;
  position: relative;
}

.focusBox .txt li .list .date {
  color: #fff;
  width: 80px;
}

.focusBox .txt li .list .date:after {
  content: "";
  width: 2px;
  height: 60%;
  background-color: rgba(255,255,255,0.1);
  position: absolute;
  left: 76px;
  top: 13px;
  transition: all 0.5s;
}

.focusBox .txt li .list .date .day {
  font-size: 24px;
  line-height: 30px;
}

.focusBox .txt li .list .date .year {
  font-size: 16px;
  margin-top: 7px;
}

.focusBox .txt li .list .con {
  flex: 1;
  overflow: hidden;
}

.focusBox .txt li .list .con a {
  display: block;
}

.focusBox .txt li .list .con .tit {
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  width: 92%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  margin-bottom: 1%;
}

.focusBox .txt li .list .con .tit:hover {
  text-decoration-line: underline;
}

.focusBox .txt li .list .con .nr {
  font-size: 14px;
  color: #fff;
}

.focusBox .num {
  position: absolute;
  z-index: 3;
  bottom: 90px;
  left: 8px;
}

.focusBox .num li {
  float: left;
  position: relative;
  width: 15px;
  height: 15px;
  line-height: 15px;
  overflow: hidden;
  text-align: center;
  margin-right: 10px;
  cursor: pointer;
  background-color: #1f5261;
  border-radius: 50%;
}

.focusBox .num li.on {
  background-color: #f60;
}

#news-index-jt {
  padding: 0;
}

#news-index-jt hr {
  margin-bottom: 70px;
}

#news-index-jt .app-cate-box {
  margin: 30px 0 26px;
  display: block;
}

#news-index-jt .app-cate-box a {
  display: inline-block;
  color: #fff;
  font-size: 20px;
  width: 95px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}

#news-index-jt .app-cate-box a font {
  position: relative;
  z-index: 3;
}

#news-index-jt .app-cate-box a.active::before,
#news-index-jt .app-cate-box a:hover::before {
  width: 100%;
  opacity: 1;
}

#news-index-jt .app-cate-box a.active,
#news-index-jt .app-cate-box a:hover {
  color: #fff;
}

#news-index-jt .app-con-box .con-box-list {
  display: none;
}

#news-index-jt .app-con-box .con-box-list.active {
  display: block !important;
}

#news-index-jt .module-box .fl {
  width: 45%;
  position: relative;
  height: 500px;
}

#news-index-jt .module-box .fr {
  width: 54%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
  background-color: #fff;
  overflow: hidden;
}

#news-index-jt .module-box .fr .flex {
  width: 100%;
  vertical-align: top;
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  padding-top: 3%;
  padding-left: 4%;
  padding-right: 4%;
}

#news-index-jt .module-box .fr .list {
  margin-bottom: 3.8%;
  padding-bottom: 1%;
  padding-left: 2%;
  border-bottom: 1px solid #b4b4b4;
  position: relative;
}

#news-index-jt .module-box .fr .list:last-child {
  border-bottom: 0;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

#news-index-jt .module-box .fr .date {
  color: #0c2c75;
  float: left;
}

#news-index-jt .module-box .fr .date:after {
  content: "";
  width: 1px;
  height: 71%;
  background-color: rgba(193,111,15,0.5);
  position: absolute;
  left: 85px;
  bottom: 12px;
  transition: all 0.5s;
}

#news-index-jt .module-box .fr .date .day {
  font-size: 24px;
}

#news-index-jt .module-box .fr .date .year {
  font-size: 16px;
}

#news-index-jt .module-box .fr .list .con {
  float: right;
  width: 86%;
}

#news-index-jt .module-box .fr .list .con a {
  display: block;
}

#news-index-jt .module-box .fr .con .tit {
  font-size: 1.8rem;
  line-height: 25px;
  color: #000;
  width: 92%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  margin-bottom: 0.5%;
}

#news-index-jt .module-box .fr .con .tit:hover {
  text-decoration-line: underline;
}

#news-index-jt .module-box .fr .con .nr {
  font-size: 1.4rem;
  color: #4d4d4d;
}

/* ================================================
   品质体系
   ================================================ */
/* Runpic Box Styles */
.runpic-box {
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
}

.runpic-words ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
}

.runpic-words li {
  width: 32%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  margin-bottom: 15px;
  box-sizing: border-box;
}

.runpic-words-pic {
  margin-bottom: 10px;
  perspective: 1000px;
}

.runpic-words-pic .iconfont {
  font-size: 8rem;
  color: #fff;
  display: inline-block;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}

/* 悬停时图标翻转效果 */
.runpic-words li:hover .iconfont,
.runpic-words li:active .iconfont {
  transform: rotateY(180deg);
}

.runpic-words h4 {
  font-size: 2rem;
  color: #fff;
  margin: 0 !important;
  font-weight: normal;
}

.runpic-words p {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 !important;
  font-family: "alipuhui-R";
}

/* Active state */
.runpic-words li.runpic-words-active {
}

/* Hover effects */
.runpic-words li:hover {
  /* transform: translateY(-5px); */
}

/* ================================================
   联系我们
   ================================================ */
.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-top: 30px;
}

.contact-info {
  flex: 1;
}

.company-name {
  font-size: 3rem;
  color: #ffff00;
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 15px !important;
}

.contact-item p {
  margin: 0 !important;
  line-height: 20px;
  padding: 2px 4px;
  border-radius: 5px;
  background-color: #fff;
  margin-right: 5px !important;
}

.contact-item .iconfont {
  color: #1a73e8;
  text-align: center;
}

.qr-codes {
  display: flex;
  gap: 20px;
}

.qr-item {
  text-align: center;
}

.qr-item img {
  width: 150px;
  height: 150px;
  display: block;
  margin: 0 auto;
}

.qr-item p {
  margin-top: 8px;
  color: #fff;
  font-size: 1.7rem;
  line-height: 22px;
  margin-bottom: 0 !important;
  text-align: center;
}

/* ================================================
   内页
   ================================================ */
/* 内页banner */
.inner-banner-container {
  overflow: hidden;
  position: relative;
  min-height: 380px;
  position: relative;
  margin-top: 82px !important;
  background-size: 100% 100% !important;
}

.inner-banner-content {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%); /* 同时偏移X和Y轴实现完全居中 */
  text-align: center;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  width: 100%; /* 确保容器宽度足够 */
}

.inner-banner-content h1 {
  font-size: 3.8rem;
  margin-bottom: 10px !important;
  letter-spacing: 2rem;
  opacity: 0; /* 初始隐藏，动画会显示 */
  font-weight: normal;
}

.inner-banner-content h2 {
  font-size: 1.8rem;
  opacity: 0; /* 初始隐藏，动画会显示 */
  letter-spacing: 1rem;
  font-family: system-ui, -apple-system, "Segoe UI Variable Display", "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 100;
}

/* 内页内容区 */
.content-wrapper {
  background: url(../images/inner-bottom-bg.jpg) no-repeat left bottom;
  min-height: 950px;

  padding-bottom: 200px;
  box-sizing: border-box;
  position: relative;
}

/* 内页桌面端导航 */
.content-in-wrapper {
  margin-top: -90px;
  background: #fff;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 90px;
  border-bottom: 6px solid #154f90;
}

.headline {
  height: 100px;
  line-height: 100px;
  padding: 0 30px;
}

.crumb-list {
  /*height: 90px;*/
  /*overflow: hidden;*/
  height: 100px;
  overflow: visible;
  padding-left: 0;
  padding-right: 0;
}

.crumb-list-out {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  float: none;
}

.crumb-list-out li {
  float: none;
  padding: 0 10px;
  font-size: 16px;
  color: #4a4a4a;
  text-align: center;
  vertical-align: middle;
  height: 140px;
  line-height: 140px;
}

.crumb-list-out li:last-child {
  background: none;
}

.crumb-list-out li a {
  color: #444;
}

.crumb-list-out li.linked,
.crumb-list-out li:hover {
  background-color: #134bb1;
}

.crumb-list-out li.linked a,
.crumb-list-out li:hover a {
  color: #fff;
}

/* 内页移动端导航 */
.m-ins-navbox {
  width: 100%;
  height: 38px;
  background-color: #fff;
  display: none;
  position: relative;
  z-index: 11;
  border-bottom: 1px solid #e5e5e5;
}

.m-ins-navbox.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
}

.m-ins-navbox .left {
  width: 10%;
  cursor: pointer;
}

.m-ins-navbox .left .ico {
  display: block;
  width: 100%;
  height: 31px;
  background: url(../images/icon5.png) no-repeat center 0.8em #ffffff;
  background-size: auto 50%;
}

.m-ins-navbox .ret-subbox {
  position: absolute;
  top: 38px;
  width: 100%;
  background-color: #086ac4;
  left: 0;
  z-index: 2;
  display: none;
}

.m-ins-navbox .ret-subbox a {
  display: block;
  width: 95%;
  padding-left: 5%;
  height: 38px;
  line-height: 38px;
  border-bottom: 1px solid #4882b6;
  color: #fff;
  font-size: 16px;
  background: url(../images/ico_38.png) no-repeat 92% center;
  background-size: auto 35%;
}

.m-ins-navbox .right {
  width: 90%;
  position: relative;
}

.m-ins-navbox .right .tit {
  display: block;
  width: 100%;
  font-size: 16px;
  color: #000;
  line-height: 38px;
  background: url(../images/icon6.png) no-repeat 93% center;
  background-size: auto 50%;
  cursor: pointer;
}

.m-ins-navbox .right .subbox {
  width: 100%;
  position: absolute;
  top: 38px;
  background-color: #fff;
  z-index: 2;
  display: none;
  left: 0;
  border: 1px solid #e5e5e5;
  border-top: 0;
}

.m-ins-navbox .right .subbox a {
  display: block;
  width: 95%;
  padding-left: 5%;
  line-height: 38px;
  height: 38px;
  border-top: 1px solid #e5e5e5;
  background: url(../images/ico_37.png) no-repeat 92% center;
  background-size: auto 35%;
  font-size: 14px;
}

/* 内页主内容显示 */
.inner-main-wrapper {
  padding-top: 30px;
  margin-bottom: 40px;
}
.inner-main-content {
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 30px;
}
.inner-main-content .cn-title {
  font-size: 35px;
  color: #134bb1;
  text-align: center;
}
.inner-main-content .en-title {
  letter-spacing: 1rem;
  text-align: center;
}

/* 内页单页样式 */
.entry p {
  line-height: 30px;
}
.entry img {
  max-width: 100% !important;
  height: auto !important;
}

/* 内页图片 */
.imglist {
  margin-bottom: 30px;
}

.imglist ul li {
  overflow: hidden;
  display: block;
  position: relative;
  width: calc(25% - 20px);
  width: -webkit-calc(25% - 20px);
  width: -moz-calc(25% - 20px);
  float: left;
  margin: 10px;
}

.imglist ul li .tit {
  transition: all 0.5s;
  height: 45px;
  line-height: 45px;
  z-index: 1;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  color: #fff;
  font-size: 16px;
  position: absolute;
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  left: 0;
  bottom: 0;
}

.imglist ul li .pic {
  overflow: hidden;
}

.imglist ul li .pic img {
  width: 100%;
  height: 232px;
  transition: all 0.5s;
}

.imglist ul li:hover .pic img {
  transform: scale(1.1, 1.1);
}

/* 内页新闻 党建 */
.news-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.news-item {
  background: #429db4;
  border: 15px solid #429db4;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.news-list.party .news-item {
  background: #f3e8d5;
  border: 15px solid #f3e8d5;
}

.news-list.cases .news-item {
  background: #fff;
  border: 2px solid #429db4;
  padding: 8px;
}

.news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-content {
  padding: 10px 0;
}

.news-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #80bdcd;
}

.news-list.party .news-header {
  border-bottom: 1px solid #a39c8f;
}

.news-list.cases .news-header {
  border-bottom: 0px;
  margin-bottom: 0;
  padding-bottom: 0;
}

.news-date {
  text-align: center;
  min-width: 60px;
  position: relative; /* 为伪元素定位提供参考 */
  padding-right: 15px; /* 为竖线留出空间 */
}

.news-date:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 1px;
  background-color: #ddd;
}

.news-list.party .news-date:after {
  background-color: #333;
}

.news-list.cases .news-date:after {
  background-color: #14587b;
}

.news-day {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

.news-month {
  font-size: 14px;
  color: #fff;
}

.news-list.party .news-day,
.news-list.party .news-month {
  color: #000000;
}

.news-list.cases .news-day,
.news-list.cases .news-month {
  color: #14587b;
}

.news-title {
  flex: 1;
  padding-left: 15px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

.news-list.party .news-title {
  color: #401d1d;
}

.news-list.cases .news-title {
  color: #14587b;
}

.news-summary {
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
  text-align: justify;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-list.party .news-summary {
  color: #000000;
}

/* 内页资质证书 */
.qualification-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

.qualification-item {
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 15px;
  background: #fff;
}

.qualification-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.qualification-image {
  height: auto; /*357px*/
  overflow: hidden;
  margin-bottom: 15px;
}

.qualification-image img {
  width: 100%;
  height: auto;/*100%;*/
  object-fit: cover;
  transition: transform 0.3s ease;
}

.qualification-item:hover .qualification-image img {
  transform: scale(1.05);
}

.qualification-content {
  padding: 0 10px;
}

.qualification-title {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.4;
}

.qualification-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  text-align: justify;
}

/* 内页招聘岗位 */
.jobpc {
}

.jobmobile {
  display: none;
}

.jobSideMenu {
  width: 100%;
  margin: 30px auto 20px auto;
}

.jobSideMenu .job-title {
  clear: both;
  height: 60px;
  line-height: 60px;
  border-top: 3px solid #233f81;
  background: #f4f4f4;
  cursor: pointer;
  text-align: left;
  overflow: hidden;
}

.jobSideMenu .job-title p {
  float: left;
  width: 16%;
  text-align: center;
  color: #233f81;
  margin: 0;
  line-height: 60px;
  font-size: 16px;
}

.jobSideMenu .job-title p:first-child {
  width: 20%;
}

.jobSideMenu .accordion-title {
  clear: both;
  height: 60px;
  line-height: 60px;
  border-top: 1px solid #e3e3e3;
  background: #f4f4f4;
  cursor: pointer;
  text-align: left;
}

.jobSideMenu .accordion-title p {
  float: left;
  width: 16%;
  text-align: center;
  margin: 0;
  line-height: 60px;
  font-size: 16px;
}

.jobSideMenu .accordion-title p:first-child {
  width: 20%;
}

.jobSideMenu ul {
  clear: both;
  padding: 40px 25px;
  color: #999;
  border-top: 1px solid #e3e3e3;
  display: none;
  font-size: 16px;
  line-height: 33px;
  text-align: left;
}

.human {
  padding: 10px 0% 10px;
}

.human li {
  background: #fff;
  border-radius: 5px;
  margin-bottom: 10px;
}

.human_tit {
  background-image: linear-gradient(-90deg, #6db80f, #06a3db);
  padding: 6px 15px;
  color: #fff;
  overflow: hidden;
  clear: both;
  display: block;
}

.tit_l {
  float: left;
  font-size: 16px;
}

.tit_r {
  float: right;
  font-size: 20px;
}

.describe {
  padding: 4% 0%;
  border-bottom: 1px solid #ddd;
}

.ckxq {
  text-align: center;
  padding: 5px 0;
}

.showxq {
  line-height: 25px;
  margin-top: 10px;
}

.showxq p,
.showxq span {
  font-size: 14px !important;
}

/* 内页联系我们 */
.pc-contact {
  display: block;
}

.wap-contact {
  display: none;
}

.pc-contact .contact-info {
  background: url("../images/contact-bg.jpg") no-repeat;
  background-size: cover;
  width: 100%;
  height: 540px;
  padding: 60px 40px 0;
}

.pc-contact .contact-info .company-name {
  color: #fff;
  font-size: 3.3rem;
  margin-top: 30px;
}

.pc-contact .contact-info div {
  font-size: 2.1rem;
}

/* 内页在线留言 */
.contact-form-wrapper {
  background-color: #f0f0f0;
}

.contact-form-section {
  display: flex;
  padding: 30px;
  gap: 30px;
}

.image-section {
  flex: 1;
  background: url("../images/feedback1.jpg") no-repeat center center;
  background-size: cover;
}

.contact-form-section form {
  flex: 1;
}

.contact-form-group {
  margin-bottom: 20px;
}

.contact-form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form-control {
  flex: 1;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #2c3e50;
}

label.required:after {
  content: " *";
  color: #e74c3c;
}

input,
textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: border 0.3s;
}

input:focus,
textarea:focus {
  border-color: #3498db;
  outline: none;
}

textarea {
  height: 120px;
  resize: vertical;
}

.submit-btn {
  background-color: #3498db;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-weight: 500;
}

.submit-btn:hover {
  background-color: #2980b9;
}

/* 内页底部 */
footer {
  background-color: #163c8a;
}

footer.pcfooter {
  display: block;
}

footer.wapfooter {
  display: none;
}

.footernew {
  padding: 60px 0 40px;
  position: relative;
}

.footernew .bottom .footer-cate-box {
  display: flex;
  float: left;
  position: relative;
  width: 45%;
}

.footernew .bottom .footer-cate-box .list {
  flex: 1;
}

.footernew .bottom .footer-cate-box .list a {
  margin-top: 16px;
  display: block;
  color: #fff;
}

.footernew .bottom .footer-cate-box .list a.first-url {
  font-size: 18px;
  font-weight: bold !important;
  margin-top: 0;
}

.footernew .bottom .footer-contact-box {
  float: left;
  width: 23%;
}

.footernew .bottom .footer-contact-box .contact-title {
  font-size: 26px;
  color: #ffff00;
  line-height: 28px;
}

.contact-icon {
  margin-top: 15px;
}

.footernew .bottom .footer-contact-box p {
  font-size: 18px;
  color: #fff;
}

#copyr {
  padding: 10px 0 ;
  background-color: #102c65;
}

#copyr p {
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 28px;
  margin: 0 !important;
}

#copyr a {
  color: #fff;
}

.footernew .bottom .footer-code-box {
  float: right;
  width: 26%;
}

.footernew .bottom .footer-contact-box br {
  height: 1px;
}

.codelist {
  float: left;
  width: 50%;
  padding: 0 10px;
}

.codelist img {
  width: 100%;
}

.codelist p {
  color: #fff;
  text-align: center;
}

/* 内页查询 */

.searchlist {
  margin: 30px auto;
  width: 100%;
}
.searchlist li {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  border-bottom: 1px dotted #ddd;
  height: 44px;
  line-height: 44px;
  list-style: disc outside;
}
.searchlist li a {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 10px;
}
.searchlist li span {
  color: gray;
  white-space: nowrap;
}
.searchlist li i.iconfont {
  margin-right: 5px;
}
.searchlist li:last-child {
  border: 0;
}

/* 内页分页 */

div.page {
  height: 35px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}

div.page a {
  text-decoration: none;
  color: #666;
  background: #fff;
  padding: 0 6px;
  margin-right: 5px;
  line-height: 21px;
}

div.page a:hover {
  text-decoration: none;
  color: #f8921d;
}

div.page a:active {
  color: #f8921d;
}

div.page span.current {
  padding: 0 6px;
  color: #f8921d;
  margin-right: 3px;
}

div.page span.disabled {
  padding: 0 6px 0;
  color: #adaaad;
  margin-right: 3px;
  margin-top: 10px;
  vertical-align: middle;
}
/* ================================================
   Media 查询
   ================================================ */
@media screen and (max-width: 1680px) {
  /* About section adjustments */
  #about-index-jt .pos-num .list .num {
    font-size: 47px;
  }

  .module-tit h1 {
    font-size: 26px;
    line-height: 35px;
  }
}

@media screen and (max-width: 1920px) and (min-resolution: 120dpi) {
  .w1510 {
    max-width: 1100px;
  }

  /* Header adjustments */
  .header_box .separator {
    font-size: 1.25rem;
  }

  .header_box .phone-label {
    font-size: 1rem;
  }

  .header_box .phone-number {
    font-size: 2rem;
  }

  .header_box .iconfont {
    font-size: 0.5rem;
  }

  /* About section adjustments */
  .module-tit h1 {
    font-size: 2rem;
  }

  #about-index-jt .pos-tit {
    padding: 150px 0 0;
  }

  #about-index-jt .pos-num {
    padding: 20px 0 10px;
  }

  .module-tit p {
    font-size: 1.5rem;
    line-height: 3rem;
    margin-bottom: 3rem;
  }

  .module-tit hr {
    margin-bottom: 30px;
  }

  #about-index-jt .pos-num .list .num {
    font-size: 1.6rem;
  }

  #about-index-jt .pos-num .list p {
    font-size: 11px;
    line-height: 2.5rem;
  }

  /* Banner text adjustments */
  .index_main .section1 .index_banner .item .inner .block_txt h2 {
    font-size: 3.5rem;
  }

  .index_main .section1 .index_banner .item .inner .block_txt h3 {
    font-size: 1.125rem;
  }

  .header .navbar_nav li a {
    font-size: 1.6rem;
    padding: 0 0.65rem;
  }

  /* News section adjustments */

  #news-index-jt hr {
    margin-bottom: 30px;
  }

  #news-index-jt .app-cate-box a {
    font-size: 1.6rem;
  }

  #news-index-jt .module-box .fl {
    margin-bottom: 25px;
    height: 400px;
    width:50%;
  }

  #news-index-jt .module-box .fr .list {
    margin-bottom: 2%;
    padding-bottom: 2%;
    padding-left: 1%;
    border-bottom: 1px solid #b4b4b4;
    position: relative;
  }

  .focusBox .txt li .list .con .tit {
    font-size: 16px;
  }

  .focusBox .txt li .list .con .nr {
    font-size: 12px;
  }

  .focusBox .txt li .list .date {
    width: 70px;
  }

  .focusBox .txt li .list .date .day {
    font-size: 1.8rem;
    line-height: 30px;
  }

  .focusBox .txt li .list .date:after {
    left: 60px;
  }

  #news-index-jt .module-box .fr {
    height: 400px;
    width: 49%;
    overflow: hidden;
  }
  #news-index-jt .module-box .fr .list .con {
    width: 85%;
  }

  #news-index-jt .module-box .fr .date .day {
    font-size: 1.8rem;
  }

  #news-index-jt .module-box .fr .date:after {
    left: 60px;
    bottom: 14px;
  }

  #news-index-jt .module-box .fr .date .year {
    font-size: 1.4rem;
  }

  #news-index-jt .module-box .fr .con .tit {
    font-size: 1.6rem;
    margin-bottom: 0;
  }

  #news-index-jt .module-box .fr .con .nr {
    font-size: 1.2rem;
  }

  /* 品质体系 */
  .runpic-words li {
    width: 32%;
  }
  .runpic-words-pic .iconfont {
    font-size: 6rem;
  }
  .runpic-words h4 {
    font-size: 2rem;
  }
  .runpic-words p {
    font-size: 1.5rem;
  }

  .contact-item {
    font-size: 1.5rem;
  }

  .jobSideMenu .job-title p {
    width: 14%;
    line-height: 60px;
  }

  .jobSideMenu .job-title p:first-child {
    width: 30%;
  }

  .jobSideMenu .accordion-title p {
    width: 14%;
  }

  .jobSideMenu .accordion-title p:first-child {
    width: 30%;
  }
  /* 内页底部 */

  .footernew {
    padding: 30px 0 20px;
    position: relative;
  }

  .footernew .bottom .footer-cate-box {
    display: flex;
    float: left;
    position: relative;
    width: 45% !important;
  }

  .footernew .bottom .footer-cate-box .list {
    flex: 1;
  }

  .footernew .bottom .footer-cate-box .list a {
    margin-top: 16px;
    display: block;
    color: #fff;
    font-size: 14px;
  }

  .footernew .bottom .footer-cate-box .list a.first-url {
    font-size: 14px;
    font-weight: bold !important;
    margin-top: 0;
  }

  .footernew .bottom .footer-contact-box {
    float: left;
    width: 25% !important;
  }

  .footernew .bottom .footer-contact-box .contact-title {
    font-size: 20px;
    color: #ffff00;
    line-height: 25px;
  }

  .contact-icon {
    margin-top: 10px;
  }

  .footernew .bottom .footer-contact-box p {
    font-size: 14px;
    line-height: 20px;
    color: #fff;
  }

  #copyr {
    padding: 5px 0 5px;
  }

  #copyr p {
    text-align: center;
    color: #fff;
    font-size: 14px;
  }

  #copyr a {
    color: #fff;
  }

  .footernew .bottom .footer-code-box {
    float: right;
    width: 24% !important;
  }

  .footernew .bottom .footer-contact-box br {
    height: 1px;
  }

  .codelist {
    float: left;
    width: 50%;
    padding: 0 5px;
  }

  .codelist img {
    width: 100%;
  }

  .codelist p {
    color: #fff;
    text-align: center;
    font-size: 14px;
  }
}

@media screen and (max-width: 1440px) {
  .w1510 {
    max-width: 1100px;
  }

  /* Header adjustments */
  .header_box {
    margin-left: 15px;
  }

  .header_box .separator {
    font-size: 1.125rem;
    margin: 0 0.5rem;
  }

  .header_box .phone-label {
    font-size: 1.2rem;
  }

  .header_box .phone-number {
    font-size: 2rem;
  }

  .header_box .iconfont {
    font-size: 1rem;
  }

  .header_box span {
    font-size: 0.75rem;
  }

  /* About section adjustments */
  #about-index-jt .pos-tit {
    padding: 180px 20px 0;
  }

  #about-index-jt .pos-num {
    padding: 20px 0 10px;
  }

  #about-index-jt .pos-num .list .num {
    font-size: 1.6rem;
  }

  #about-index-jt .pos-num .list p {
    font-size: 11px;
    line-height: 24px;
  }

  .module-tit h1 {
    font-size: 2rem;
  }

  .module-tit p {
    font-size: 1.5rem;
    line-height: 3rem;
    margin-bottom: 25px;
  }

  
  .jobSideMenu .job-title p {
    width: 13%;
    line-height: 60px;
  }

  .jobSideMenu .job-title p:first-child {
    width: 35%;
  }

  .jobSideMenu .accordion-title p {
    width: 13%;
  }

  .jobSideMenu .accordion-title p:first-child {
    width: 35%;
  }

  /* Banner text adjustments */
  .index_main .section1 .index_banner .item .inner .block_txt h2 {
    font-size: 2.5rem;
  }

  .index_main .section1 .index_banner .item .inner .block_txt h3 {
    font-size: 1rem;
  }

  .header .navbar_nav li a {
    font-size: 1.7rem;
    padding: 0 0.5rem;
  }

  /* News section adjustments */
  #news-index-jt hr {
    margin-bottom: 30px;
  }

  #news-index-jt .app-cate-box a {
    font-size: 1.6rem;
  }
  #news-index-jt .module-box .fr .list {
    margin-bottom: 3%;
    padding-bottom: 3%;
    padding-left: 1%;
    padding-top: 1%;
    border-bottom: 1px solid #b4b4b4;
    position: relative;
  }
  #news-index-jt .module-box .fl {
    width: 55%;
    height: 450px;
  }

  #news-index-jt .module-box .fr {
    width: 44%;
  }
  .focusBox .txt li .list .date .day{
      font-size:20px;
  }
    .focusBox .txt li .list .con .tit {
    font-size: 16px;
  }
    .focusBox .txt li .list .con .nr{
        font-size:12px;
    }
    .focusBox .txt li .list .date {
    width: 85px;
  }
     .focusBox .txt li .list .date:after {
    left: 77px;
  }
  .focusBox .num li {
    width: 12px;
    height: 12px;
  }

  #news-index-jt .module-box .fr {
    height: 450px;
    overflow:hidden;
  }
  #news-index-jt .module-box .fr .list .con {
    width: 84%;
  }

  #news-index-jt .module-box .fr .date .day {
    font-size: 2rem;
  }

  #news-index-jt .module-box .fr .date:after {
    left: 65px;
    bottom: 10px;
  }

  #news-index-jt .module-box .fr .date .year {
    font-size: 1.4rem;
  }

  #news-index-jt .module-box .fr .con .tit {
    font-size: 1.6rem;
    margin-bottom: 0;
  }

  #news-index-jt .module-box .fr .con .nr {
    font-size: 1.2rem;
  }

  #news-index-jt .module-box .fr .list:last-child {
    padding-bottom: 0px;
  }

  /* 品质体系 */
  .runpic-words-pic .iconfont {
    font-size: 5rem;
  }
  .runpic-words h4 {
    font-size: 2rem;
  }
  .runpic-words p {
    font-size: 1.5rem;
  }
  .runpic-words li {
    width: 31%;
  }

  .contact-item {
    font-size: 1.4rem;
  }

  /* 内页底部 */
  .footernew {
    padding: 40px 0 30px;
    position: relative;
  }

  .footernew .bottom .footer-cate-box {
    /* display: none; */
    float: left;
    position: relative;
    width: 45%;
  }
  .footernew .bottom .footer-cate-box .list a.first-url
  {
      font-size:14px;
  }
  .footernew .bottom .footer-cate-box .list a{
      font-size:14px;
  }
  .footernew .bottom .footer-contact-box {
    float: left;
    width: 24%; 
  }

  .footernew .bottom .footer-contact-box .contact-title {
    font-size: 22px;
    color: #ffff00;
    line-height: 25px;
  }

  .contact-icon {
    margin-top: 15px;
  }

  .footernew .bottom .footer-contact-box p {
    font-size: 14px;
    color: #fff;
  }

  #copyr {
    padding: 5px 0 5px;
    background-color: #102c65;
  }

  #copyr p {
    text-align: center;
    color: #fff;
    font-size: 14px;
  }

  #copyr a {
    color: #fff;
  }

  .footernew .bottom .footer-code-box {
    float: right;
    width: 26%;
  }

  /* .footernew .bottom .footer-contact-box br {
			height: 1px;
		} */

  .codelist {
    float: left;
    width: 50%;
    padding: 0 10px;
  }

  .codelist img {
    width: 145px;
    height: 145px;
  }

  .codelist p {
    color: #fff;
    text-align: center;
    font-size: 14px;
  }

  .pc-contact .contact-info {
    background: url("../images/contact-bg.jpg") no-repeat;
    background-size: cover;
    width: 100%;
    height: 420px;
    padding: 60px 40px 0;
  }
}

@media screen and (max-width: 1280px) {
  /* About section adjustments */
  #about-index-jt .pos-num {
    padding: 40px 0 40px;
  }

  #about-index-jt .pos-num .list .num {
    font-size: 34px;
  }

  #about-index-jt .pos-num .list p {
    font-size: 15px;
    line-height: 24px;
  }

  .module-tit h1 {
    font-size: 20px;
    line-height: 35px;
  }

  /* 品质体系 */
  .runpic-words-pic .iconfont {
    font-size: 2.5rem;
  }
  .runpic-words h4 {
    font-size: 1.4rem;
  }
  .runpic-words p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 1182px) {
  #about-index-jt {
    background-image: url(../images/section2-m.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  #about-index-jt > img {
    display: none;
  }

  #about-index-jt .pos-tit {
    padding: 0 20px 60px;
    position: relative;
  }

  #about-index-jt .pos-tit p {
    width: 80%;
  }

  #about-index-jt .pos-num {
    padding: 10px 0 0;
    position: absolute;
    bottom: 0;
  }

  #about-index-jt .pos-num .list {
    flex-direction: column;
    gap:0;
    padding-right: 5px;
    padding-left: 5px !important;
  }

  #about-index-jt .pos-num .list img {
    width: 40%;
    height: auto;
  }

  .w1510 {
    padding: 0 5px;
  }
  #about-index-jt .pos-num .list .num {
    font-size: 14px;
    letter-spacing: 0;
    /*margin-top: 10px;*/
  }

  #about-index-jt .pos-num .list p {
    font-size: 12px;
    line-height: 18px;
    margin-top: 5px;
    height: 36px;
    overflow: hidden;
  }

  #about-index-jt .url {
    font-size: 12px;
    width: 155px;
  }

  .module-tit hr {
    width: 60px;
    height: 3px;
    margin: 15px 0 30px;
  }

  .module-tit p {
    font-size: 14px;
    line-height: 27px;
    margin-bottom: 15px;
  }

  .jobSideMenu .job-title p {
    width: 13%;
    line-height: 60px;
  }

  .jobSideMenu .job-title p:first-child {
    width: 35%;
  }

  .jobSideMenu .accordion-title p {
    width: 13%;
  }

  .jobSideMenu .accordion-title p:first-child {
    width: 35%;
  }
}

@media screen and (max-width: 992px) {
  .header {
    padding: 0 10px;
  }

  .header #navToggle {
    height: 100%;
    padding: 25px 15px;
    margin-right: -15px;
    display: inline-block;
    float: right;
  }

  .header #navToggle span {
    position: relative;
    width: 25px;
    height: 1px;
    margin-top: 19px;
  }

  .header #navToggle span:before,
  .header #navToggle span:after {
    content: "";
    position: relative;
    width: 100%;
    height: 1px;
    left: 0;
  }

  .header #navToggle span,
  .header #navToggle span:before,
  .header #navToggle span:after {
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    display: block;
    background: #fff;
  }

  .header.on #navToggle span,
  .header.on #navToggle span:before,
  .header.on #navToggle span:after {
    background: #4f4f4f;
  }

  .header #navToggle span:before {
    top: 8px;
  }

  .header #navToggle span:after {
    bottom: 10px;
  }

  .header #navToggle.open span:before {
    top: 10px;
    -webkit-transform: translateY(-11px) rotate(-45deg);
    -moz-transform: translateY(-11px) rotate(-45deg);
    -ms-transform: translateY(-11px) rotate(-45deg);
    -o-transform: translateY(-11px) rotate(-45deg);
    transform: translateY(-11px) rotate(-45deg);
  }

  .header #navToggle.open span:after {
    bottom: 12px;
    -webkit-transform: translateY(10px) rotate(45deg);
    -moz-transform: translateY(10px) rotate(45deg);
    -ms-transform: translateY(10px) rotate(45deg);
    -o-transform: translateY(10px) rotate(45deg);
    transform: translateY(10px) rotate(45deg);
  }

  .header #navToggle.open span {
    background: none;
  }

  .header #navToggle.open span:before,
  .header #navToggle.open span:after {
    background: #4f4f4f;
  }

  .header .nav,
  .header.inner .nav {
    display: none;
  }

  .banner img {
    height: 600px;
    object-fit: cover;
  }

  /* Banner adjustments */
  .index_main .section1 .index_banner .item {
    height: 100vh;
  }

  .index_main .section1 .index_banner .item .inner .block_txt {
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 0 20px;
    top: 42%;
  }

  .index_main .section1 .index_banner .slick-arrow {
    display: none !important;
  }

  .index_main .section1 .index_banner .slick-dots {
    position: absolute;
    bottom: 12px;
  }

  .index_main .section1 .index_banner .slick-dots li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
  }

  .index_main .section1 .index_banner .slick-dots li button {
    display: none;
  }

  .index_main .section1 .index_banner .slick-dots li.slick-active {
    background: #fff;
  }

  .index_main .section1 .number {
    bottom: 12%;
    display: none;
  }

  .index_main .section1 .number span {
    margin-right: 22px;
  }

  .index_main .section1 .number span:after {
    bottom: -14px;
  }

  .jobSideMenu .job-title p {
    width: 15%;
    line-height: 60px;
  }

  .jobSideMenu .job-title p:first-child {
    width: 22%;
  }

  .jobSideMenu .accordion-title p {
    width: 15%;
  }

  .jobSideMenu .accordion-title p:first-child {
    width: 22%;
  }
}

@media screen and (max-width: 768px) {
  .header.on .left.wap .img2 {
    width: 174px;
    height: 50px;
    /* margin-top: 15px !important; */
  }
  .header .left.wap .img2,
  .header .left.wap .img1 {
    width: 174px;
    height: 50px;
    /* margin-top: 15px !important; */
  }
  .fix-box form {
    width: 90%;
  }

  .fix-sear .fix-box > a {
    width: 20px;
    height: 20px;
    right: 10px;
    top: 25px;
    font-size: 20px;
  }

  #news-index-jt {
    padding: 60px 0 0 0;
  }
  #news-index-jt hr {
    margin-bottom: 0;
  }
  #news-index-jt .app-cate-box {
    /*margin: 17px 0 0 0;*/
  }
  #news-index-jt .app-cate-box a{
      width:75px;
  }
  #about-index-jt .pos-num .list {
    padding-left: 0;
  }

  #news-index-jt .module-box .fl {
    display: none;
  }

  #news-index-jt .module-box .fr {
    width: 100%;
    margin: 0 auto;
    height: 440px;
  }
  #news-index-jt .module-box .fr .date:after {
    left: 65px;
    bottom: 5px;
  }

  #news-index-jt .module-box .fr .list {
        margin-bottom: 4%;
        padding-bottom: 4%;
        padding-left: 1%;
        padding-top: 2%;
        border-bottom: 1px solid #b4b4b4;
        position: relative;
    }

  #news-index-jt .module-box .fr .list .con {
    width: 80%;
  }
  #news-index-jt .module-box .fr .con .tit {
    font-size: 16px;
  }
  /* 品质体系 */
  .runpic-words ul {
    align-items: center;
  }
  .runpic-words li {
    width: 100%;
    flex-direction: column;
    text-align: center;
    margin-bottom: 10px;
  }
  .runpic-words-pic {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .runpic-words-content {
    text-align: left;
  }

  .runpic-words-pic .iconfont {
    font-size: 3.5rem;
  }

  .runpic-words h4 {
    font-size: 1.4rem;
  }

  .runpic-words p {
    font-size: 1.2rem;
  }

  .company-name {
    font-size: 2.5rem;
  }

  .section5 {
    padding: 50px 0 0 0;
  }

  .qr-codes {
    display: none;
  }

  .cpr {
    font-size: 1.2rem;
  }

  /* 内页banner */
  .inner-banner-container {
    min-height: 200px;
  }

  .inner-banner-content h1 {
    font-size: 2rem;
  }

  .inner-banner-content h2 {
    letter-spacing: 0.8rem;
    font-size: 1.2rem;
  }

  /* 内页内容区 */
  .content-wrapper {
    background: none !important;
    min-height: 0 !important;
    padding-bottom: 0;
  }
  .inner-main-wrapper {
    padding-top: 10px;
    margin-bottom: 20px;
  }
  .inner-main-content {
    padding-left: 0;
    padding-right: 0;
    padding-top: 20px;
  }
  /* 内页移动端导航 */
  .content-in-wrapper {
    margin-top: 0;
    border-bottom: 0;
    margin-bottom: 0;
  }

  .inner-main-content .cn-title{
    font-size: 25px;
  }

  .inner-main-content .en-title{
    display: none;
  }

  /* 内页图片列表 */
 .imglist ul li {
    width: calc(50% - 10px);
    width: -webkit-calc(50% - 10px);
    width: -moz-calc(50% - 10px);
    margin: 5px;
  }

  .imglist ul li .pic img{
    height: 132px;
  }
  .imglist {
    margin-bottom: 20px;
  }

  /* 内页新闻 */
  .news-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .news-header {
    flex-direction: column;
  }

  .news-date {
    margin-bottom: 10px;
    text-align: left;
    display: flex;
    align-items: center;
    padding-right: 0;
    flex-direction: row;
    margin-bottom: 10px;
  }

  .news-date:after {
    display: none; /* 移动端隐藏竖线 */
  }

  .news-day {
    margin-right: 10px;
  }

  .news-title {
    padding-left: 0;
  }

  /* 内页招聘 */
  .jobmobile {
    display: block;
  }

  .jobpc {
    display: none;
  }

  /* 内页底部 */
  footer.pcfooter {
    display: none;
  }

  footer.wapfooter {
    display: block;
    color: #fff;
  }

  footer.wapfooter .wapfooter-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4% 2% 3%;
  }

  footer.wapfooter .wapfooter-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  footer.wapfooter p {
    margin-top: 10px;
  }

  /* 内页联系我们 */
  .pc-contact {
    display: none;
  }

  .wap-contact {
    display: block;
  }

  .wap-contact .contact-info {
    background: #2854ae;
    width: 100%;
    height: 300px;
    padding: 10% 4%;
  }

  .wap-contact .contact-info .company-name {
    color: #fff;
    font-size: 2.2rem;
  }

  .wap-contact .contact-info div {
    font-size: 1.5rem;
  }

  /* 内页在线留言 */
  .image-section {
    display: none;
  }

  .contact-form-row {
    flex-direction: column;
    gap: 15px;
  }

  .contact-form-control {
    width: 100%;
  }

  input,
  textarea {
    padding: 10px 12px;
  }

  /* 内页查询 */
  .searchlist {
    margin: 15px auto;
  }
  .searchlist li {
    font-size: 14px;
    height: 40px;
    line-height: 40px;
  }
}
