
* {
  outline: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  font-weight: 400;
}
body {
  padding: 0;
  margin: 0 auto;
  color: #666666;
  font-family: arial, sans-serif;
  font-weight: normal;
  -webkit-text-size-adjust: none;
  /*取出点击出现半透明的灰色背景*/
  -webkit-tap-highlight: rgba(0, 0, 0, 0);
  /*控制内容的可选择性*/
  /*-webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;*/
}
section {
  width: 100%;
  margin: 0;
  padding: 0;
}
input[type="button"],
input[type="submit"],
input[type="reset"] {
  -webkit-appearance: none;
}
textarea {
  resize: none!important;
  /* 禁止用户手动拖动调整大小 */
}
.ul,
.ul li {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
table td {
  border-collapse: collapse;
}
select,
input,
textarea {
  font-size: 0.16rem;
  color: #333;
  border-radius: 0;
  -webkit-border-radius: 0;
  font-family: arial, sans-serif;
}
img {
  border: none;
  max-width: 100%;
  vertical-align: middle;
}
a {
  color: #342c2a;
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  color: var(--blue_color);
  text-decoration: none;
}
/* a:focus {color: #000;outline: none;-moz-outline: none;}
a:active {color: #000;} */
pre {
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
  margin: 0;
  font-family: arial, sans-serif;
  text-align: justify;
  text-justify: inter-ideograph;
}
.clear {
  clear: both;
  height: 0px;
  overflow: hidden;
  zoom: 0;
}
.clearfix {
  *zoom: 1;
}
/*IE/7/6*/
.clearfix:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
}
.dot {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
/*多行文本省略号*/
.dot2,
.dot3,
.dot4,
.dot5 {
  display: -moz-box;
  display: box;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  -webkit-box-orient: vertical;
}
/*2行文本省略号*/
.dot2 {
  -webkit-line-clamp: 2;
}
/*3行文本省略号*/
.dot3 {
  -webkit-line-clamp: 3;
}
/*4行文本省略号*/
.dot4 {
  -webkit-line-clamp: 4;
}
/*5行文本省略号*/
.dot5 {
  -webkit-line-clamp: 5;
}
.Ispic {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.Isimg {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease-in-out;
}
.Isimg_2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}
/*:before,
:after{ position:absolute; content:'';}*/
:after,
:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
select {
  /*Chrome和Firefox里面的边框是不一样的，所以复写了一下*/
  border: solid 1px #000;
  /*很关键：将默认的select选择框样式清除*/
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  /*在选择框的最右侧中间显示小箭头图片*/
  background: url(../images/select.svg) no-repeat scroll 98% center transparent;
  /*为下拉小箭头留出一点位置，避免被文字覆盖*/
  padding-right: 14px;
}
/*清除ie的默认选择框样式清除，隐藏下拉箭头*/
select::-ms-expand {
  display: none;
}
.w1680 {
  max-width: 16.8rem;
  margin: 0 auto;
  width: 92%;
}
.w1600 {
  max-width: 16rem;
  margin: 0 auto;
  width: 92%;
}
.w1300 {
  max-width: 13rem;
  margin: 0 auto;
  width: 92%;
}
.w1280 {
  max-width: 12.8rem;
  margin: 0 auto;
  width: 92%;
}
.w1200 {
  max-width: 12rem;
  margin: 0 auto;
  width: 92%;
}
.w1100 {
  max-width: 11rem;
  margin: 0 auto;
  width: 92%;
}
.w1440 {
  max-width: 14.4rem;
  margin: 0 auto;
  width: 92%;
}
@media screen and (max-width: 1600px) {
  .w1680 {
    max-width: 1680px;
  }
  .w1600 {
    max-width: 1600px;
  }
  .w1280 {
    max-width: 1280px;
  }
  .w1200 {
    max-width: 1200px;
  }
  .w1440 {
    max-width: 1440px;
  }
  .w1300 {
    max-width: 1300px;
  }
  .w1100 {
    max-width: 1100px;
  }
}
/* 设置滚动条的样式 */
.scroll {
  overflow-y: auto;
}
.scroll::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}
/* 滚动槽 */
.scroll::-webkit-scrollbar-track {
  -webkit-box-shadow: inset006pxrgba(0, 0, 0, 0.3);
  background: #e5e5e5;
}
/* 滚动条滑块 */
.scroll::-webkit-scrollbar-thumb {
  background: var(--hover_color);
}
i {
  font-style: normal;
}
a.box:hover img.ani {
  transform: scale(1.1);
}
.after {
  content: '';
  display: inline-block;
}
.after_a {
  content: '';
  position: absolute;
}
.el-color-picker__icon,
.el-input,
.el-textarea {
  display: block;
}
.el-form-item__content {
  line-height: 0.5rem;
}
[class*=flex_] {
  display: flex;
}
[class*=_ac] {
  align-items: center;
}
[class*=_ae] {
  align-items: flex-end;
}
[class*=_as] {
  align-items: flex-start;
}
[class*=_jc] {
  justify-content: center;
}
[class*=_js] {
  justify-content: space-between;
}
[class*=_je] {
  justify-content: flex-end;
}
[class*=_jf] {
  justify-content: flex-start;
}
[class*=_row] {
  flex-flow: row wrap;
}
.flex {
  display: -webkit-box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
}
:root {
  --ww: 1920 * 100vw;
  --yellow_color: #fed806;
  --blue_color: #003c96;
  --white_color: #fff;
  --red_color: #d41005;
  --blue_color_rgb: 0, 64, 152;
  --medium: 600;
  --light: 100;
  --f14: 0.14rem;
  --f16: 0.16rem;
  --f18: 0.18rem;
  --f20: 0.2rem;
  --f22: 0.22rem;
  --f24: 0.24rem;
  --f26: 0.26rem;
  --f28: 0.28rem;
  --f30: 0.3rem;
  --f32: 0.32rem;
  --f34: 0.34rem;
  --f36: 0.36rem;
  --f38: 0.38rem;
  --f40: 0.4rem;
  --f42: 0.42rem;
  --f44: 0.44rem;
  --f46: 0.46rem;
  --f48: 0.48rem;
  --f50: 0.5rem;
  --f52: 0.52rem;
  --f54: 0.54rem;
  --f56: 0.56rem;
  --f58: 0.58rem;
  --f60: 0.6rem;
  --f62: 0.62rem;
}
@media (max-width: 1600px) {
  :root {
    --ww: 1600 * 100vw;
  }
}
@media (max-width: 1024px) {
  :root {
    --ww: 1200 * 100vw;
  }
}
@media (max-width: 768px) {
  :root {
    --ww: 1024 * 100vw;
  }
}
@media (max-width: 640px) {
  :root {
    --ww: 600 * 100vw;
    --f14: 0.18rem;
    --f16: 0.2rem;
    --f18: 0.22rem;
    --f20: 0.24rem;
    --f22: 0.26rem;
    --f24: 0.28rem;
    --f40: 0.3rem;
    --f42: 0.32rem;
    --f44: 0.36rem;
    --f46: 0.36rem;
    --f48: 0.36rem;
    --f50: 0.38rem;
    --f52: 0.38rem;
    --f54: 0.38rem;
    --f56: 0.4rem;
    --f58: 0.4rem;
    --f60: 0.4rem;
    --f62: 0.4rem;
  }
}
.block {
  display: block;
  width: 100%;
}
html {
  font-size: calc(100 / var(--ww));
}
body {
  font-size: 0.18rem;
  overflow-x: hidden;
  word-break: break-all;
  color: #342c2a;
}
@media (min-width: 1921px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 1024px) {
  body {
    overflow-x: inherit;
  }
}
@media (max-width: 640px) {
  body {
    font-size: 0.22rem;
  }
}
.hidden {
  overflow: hidden;
}
.re {
  position: relative;
  z-index: 3;
}
.ani {
  transition: all 0.5s;
}
a:hover .ani {
  transform: scale(1.15);
}
.color {
  color: var(--hover_color);
}
.line_em {
  width: 1px;
  height: 0.2rem;
  display: inline-flex;
  vertical-align: middle;
  background-color: #e2e2e2;
  margin: 0 0.3rem;
}
.imgblock {
  display: block;
}
.pt120 {
  padding-top: 1.2rem;
}
.pb120 {
  padding-bottom: 1.2rem;
}
.header {
  width: 100%;
  z-index: 10;
  position: fixed;
  left: 0;
  top: 0;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
}
.header .logo {
  display: flex;
  align-items: center;
}
.header .logo img {
  max-width: 3.6rem;
}
.header .logo .img2 {
  display: none;
}
.header .right {
  display: inline-flex;
  align-items: center;
  position: relative;
}
.header .menuIcon {
  display: none;
}
.header .search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.header .search.search_show .top_search {
  opacity: 1;
  top: 150%;
  pointer-events: auto;
}
.header .open_search {
  display: inline-flex;
  align-items: center;
  color: #666666;
  position: relative;
  z-index: 11;
}
.header .open_search i {
  width: 0.17rem;
  height: 0.17rem;
  background: url(../images/search.svg) no-repeat center;
  display: inline-block;
  background-size: contain;
  filter: brightness(0) invert(1);
}
.header .open_search.on i {
  background: none;
  position: relative;
}
.header .open_search.on i:before,
.header .open_search.on i:after {
  position: absolute;
  content: '';
  width: 0.2rem;
  left: 50%;
  height: 1px;
  top: 50%;
  margin-left: -0.12rem;
  margin-top: -1.5px;
  background: #000;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}
.header .open_search.on i:after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
}
.header .top_search {
  width: 3.5rem;
  z-index: 10;
  transition: all 0.5s ease-in-out;
  position: absolute;
  right: 0;
  opacity: 0;
  top: 200%;
  pointer-events: none;
}
.header .top_search .warp {
  position: relative;
}
.header .top_search .btn {
  width: 0.5rem;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: url(../images/search.svg) no-repeat center;
  background-size: 0.2rem;
}
.header .top_search .text {
  width: 100%;
  height: 0.5rem;
  line-height: 0.5rem;
  padding-left: 0.2rem;
  padding-right: 0.5rem;
  border: none;
  background-color: #ffffff;
}
.header .top_search .text::placeholder {
  color: #999999;
}
.header .lang {
  flex-shrink: 0;
  align-items: center;
  display: inline-flex;
  position: relative;
  margin-left: 0.2rem;
  padding-left: 0.2rem;
}
.header .lang a {
  display: flex;
  align-items: center;
  filter: brightness(0) invert(1);
  line-height: 1rem;
}
.header .lang a::before {
  content: '';
  width: 0.16rem;
  height: 0.16rem;
  background: url(../images/lang.svg) no-repeat center;
  background-size: contain;
  margin-right: 0.05rem;
}
.header .navTop li span {
  display: block;
  position: relative;
}
.header .navTop li span a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
  height: 1rem;
  color: #fff;
  font-size: var(--f18);
}
@media (min-width: 1025px) {
  .header .navTop li {
    margin-right: 0.6rem;
  }
  .header .navTop li.aon span a::after,
  .header .navTop li:hover span a::after {
    opacity: 1;
  }
  .header .navTop li span a::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 0.2rem;
    height: 0.03rem;
    top: 70%;
    background-color: var(--yellow_color);
    opacity: 0;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s;
  }
}
.header .navTop li .sub {
  position: absolute;
  left: 50%;
  top: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -10px, 0);
  -webkit-transform: translate3d(-50%, -10px, 0);
  -moz-transform: translate3d(-50%, -10px, 0);
  -o-transform: translate3d(-50%, -10px, 0);
  -ms-transform: translate3d(-50%, -10px, 0);
  backface-visibility: hidden;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  overflow: hidden;
  width: 100%;
  background-color: #f1f4fb;
  padding: 0.5rem 0;
}
.header .navTop li .sub a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #555555;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
  font-size: var(--f18);
  margin-top: 0.25rem;
}
.header .navTop li .sub a::after {
  content: '';
  display: inline-flex;
  width: 0.08rem;
  height: 0.08rem;
  margin-left: 0.15rem;
  flex-shrink: 0;
  border: solid #999999;
  border-width: 1px 1px 0 0;
  transform: rotate(45deg);
}
.header .navTop li .sub a:hover {
  color: var(--blue_color);
}
.header .navTop li .sub a:hover::after {
  border-color: var(--blue_color);
}
.header .navTop li .box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.header .navTop li .box a {
  width: 50%;
  align-items: center;
  justify-content: flex-start;
}
.header .navTop li .titbox {
  color: #999999;
  font-size: var(--f18);
  margin-bottom: 0.1rem;
}
.header .navTop li .titbox .tit {
  color: #333333;
  font-size: var(--f30);
  line-height: 1;
  margin-right: 0.1rem;
  display: inline-flex;
}
.header .navTop li .titbox span {
  display: inline-flex;
}
.header .navTop li .leftbox {
  width: calc(560 / 1020 * 100%);
  padding-left: 0.95rem;
}
.header .navTop li .list {
  padding-right: 0.9rem;
}
.header .navTop li .rightbox {
  flex: 1;
  min-width: 0;
  padding-right: 0.6rem;
}
.header .navTop li .pic {
  position: relative;
  padding-top: calc(240 / 400 * 100%);
}
.header .navTop li.hover .sub {
  opacity: 1;
  transform: translate3d(-50%, 0px, 0);
  -webkit-transform: translate3d(-50%, 0px, 0);
  -moz-transform: translate3d(-50%, 0px, 0);
  -o-transform: translate3d(-50%, 0px, 0);
  -ms-transform: translate3d(-50%, 0px, 0);
  backface-visibility: hidden;
  pointer-events: auto;
}
@media screen and (max-width: 1024px) {
  .header .logo {
    height: 0.8rem;
  }
  .header .navTop li span a {
    color: #fff;
  }
  .header .menuIcon {
    display: inline-flex;
    align-items: center;
    margin-left: 0.3rem;
  }
  .header #open_menu {
    z-index: 100;
    width: 0.25rem;
    height: 0.18rem;
    cursor: pointer;
    position: relative;
  }
  .header #open_menu i {
    display: inline-block;
    width: 80%;
    height: 2px;
    transform: translateY(-50%);
    background-color: var(--blue_color);
    position: absolute;
    left: 0;
    top: 50%;
    border-radius: 5px;
  }
  .header #open_menu::before,
  .header #open_menu::after {
    width: 100%;
    height: 2px;
    background-color: var(--blue_color);
    border-radius: 5px;
    left: 0;
    content: '';
    position: absolute;
  }
  .header #open_menu::before {
    top: 0;
  }
  .header #open_menu::after {
    bottom: 0;
    top: auto;
  }
  .header #open_menu.open_menu_on i {
    opacity: 0;
  }
  .header #open_menu.open_menu_on:before {
    transform: rotate(45deg);
    top: 0.1rem;
  }
  .header #open_menu.open_menu_on:after {
    transform: rotate(-45deg);
    bottom: auto;
    top: 0.1rem;
  }
  .header .search {
    width: auto;
    border: none;
  }
  .header .navTop {
    display: none;
    -webkit-overflow-scrolling: touch;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow-y: auto;
    visibility: hidden;
    position: fixed;
    right: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    line-height: 40px;
    margin-left: 0;
    display: block;
    padding: 0;
    transition: all 0.5s;
    opacity: 0;
    background-image: none;
    margin-right: 0;
    z-index: 106;
    padding-top: 0.8rem;
    background-color: transparent;
  }
  .header .navTop::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% - 0.8rem);
    background-color: rgba(0, 0, 0, 0.5);
  }
  .header .navTop.show {
    visibility: visible;
    right: 0;
    opacity: 1;
  }
  .header .navTop .ul {
    position: relative;
    height: 100%;
    max-height: 100%;
    width: 3rem;
    margin: 0 0 0 auto;
    background-color: #fff;
    margin-right: 0;
    overflow: auto;
    display: block;
  }
  .header .navTop .ul li {
    float: none;
    height: auto;
    text-align: left;
    border-bottom: 1px solid #eee;
    margin: 0;
    width: 100%;
  }
  .header .navTop .ul li:hover span a,
  .header .navTop .ul li.aon span a {
    color: #333;
  }
  .header .navTop .ul li span {
    display: block;
    line-height: 0.8rem;
  }
  .header .navTop .ul li span a {
    padding-bottom: 0;
    line-height: normal;
    height: 0.8rem;
    justify-content: flex-start;
    display: inline-flex;
    color: #333;
    padding: 0 10%;
  }
  .header .navTop .ul li span a::before {
    display: none;
  }
  .header .navTop .ul li .sub {
    position: relative;
    transform: none;
    left: 0;
    top: 0;
    color: #999999;
    width: 100%;
    background-color: transparent;
    text-align: left;
    padding: 0 0 0.2rem;
    min-width: auto;
    display: none;
    opacity: 1;
    white-space: normal;
    backface-visibility: hidden;
    pointer-events: auto;
  }
  .header .navTop .ul li .box {
    top: 0;
    box-shadow: none;
    text-align: left;
    display: block;
  }
  .header .navTop .ul li .box::before {
    display: none;
  }
  .header .navTop .ul li .box a {
    margin: 0;
    padding: 0;
    line-height: 0.46rem;
    text-align: center;
    display: block;
    color: #333;
    background-color: transparent;
    min-height: auto;
  }
  .header .navTop .ul li .box .ul {
    width: 100%;
  }
  .header .navTop .ul li .box li {
    width: 100%;
    text-align: center;
  }
  .header .navTop .ul li .rightbox,
  .header .navTop .ul li .titbox {
    display: none;
  }
  .header .navTop .ul li .leftbox {
    width: 100%;
    padding-left: 0;
  }
  .header .navTop .ul li .list {
    padding-right: 0;
  }
  .header .navTop .ul li .list a {
    width: 100%;
    text-align: left;
    padding-left: 0.5rem;
  }
  .header .navTop .ul .li_sub span {
    position: relative;
    display: block;
    padding-right: 0.2rem;
  }
  .header .navTop .ul .li_sub .op {
    position: absolute;
    width: 0.14rem;
    height: 0.14rem;
    right: 0.2rem;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.5s;
  }
  .header .navTop .ul .li_sub .op::before,
  .header .navTop .ul .li_sub .op::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: #333;
    transform: translate(-50%, -50%);
  }
  .header .navTop .ul .li_sub .op::before {
    width: 100%;
    height: 0.02rem;
  }
  .header .navTop .ul .li_sub .op::after {
    width: 0.02rem;
    height: 100%;
  }
  .header .navTop .ul .li_sub.hover .op::after {
    opacity: 0;
  }
}
@media screen and (max-width: 768px) {
  .header .top_search {
    width: 4rem;
  }
}
@media screen and (max-width: 640px) {
  .header .logo img {
    max-width: 2rem;
  }
  .header .search {
    position: static;
    line-height: normal;
  }
  .header .top_search {
    width: 100%;
    top: 100%;
  }
  .header .top_btn,
  .header .menuIcon {
    margin-left: 0.2rem;
  }
  .header .line_em {
    margin: 0 0.15rem;
  }
}
.header_white .logo .img1,
.header_on .logo .img1,
.header_hover .logo .img1 {
  display: none;
}
.header_white .logo .img2,
.header_on .logo .img2,
.header_hover .logo .img2 {
  display: block;
}
.header_white .lang a,
.header_on .lang a,
.header_hover .lang a {
  filter: none;
  color: #111111;
}
.header_white .search::before,
.header_on .search::before,
.header_hover .search::before {
  filter: none;
}
.header_white .search .open_search i,
.header_on .search .open_search i,
.header_hover .search .open_search i {
  filter: none;
}
.header_white .navTop li span a,
.header_on .navTop li span a,
.header_hover .navTop li span a {
  color: #111111;
}
.header_white,
.header_hover {
  background-color: #ffffff;
}
.footer {
  background-color: #0f1d37;
  color: #8d9099;
}
.footer .bg {
  background: url(../images/footer_bg.png) no-repeat right bottom;
  background-size: contain;
  padding-top: 0.8rem;
}
.footer a {
  color: #8d9099;
}
.footer a:hover {
  color: #fff;
}
.footer .foot_contact {
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.footer .foot_contact li {
  padding-right: 0.1rem;
}
.footer .foot_contact li p {
  font-size: var(--f18);
  color: #fff;
  margin-top: 0.1rem;
}
.footer .foot_contact li span {
}
.footer .navbox {
  padding: 0.55rem 0;
}
.footer .navbox nav {
  width: calc(1140 / 1600 * 100%);
}
.footer .navbox dt {
  font-size: var(--f20);
  margin-bottom: 0.15rem;
}
.footer .navbox dt a {
  color: var(--white_color);
}
.footer .navbox dd a {
  line-height: calc(30 / 16);
  display: block;
  color: rgba(255, 255, 255, 0.5);
}
.footer .navbox .right .ewm {
  margin-left: 0.3rem;
  text-align: center;
}
.footer .navbox .right .pic {
  margin: 0 auto 0.1rem;
  width: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.1rem;
}
.footer .navbox .right .pic img {
  width: 100%;
}
.footer .foot_link {
  padding-bottom: 0.4rem;
}
.footer .foot_link a {
  color: #fff;
}
.footer .foot_link em {
  margin: 0 0.15rem;
  font-style: normal;
  opacity: 0.2;
  color: #dcdcdc;
  font-size: var(--f14);
}
.footer .foot_link em:last-child {
  display: none;
}
.footer .Copyright {
}
.footer .Copyright .w1600 {
  border-top: 1px solid rgba(115, 134, 152, 0.3);
  padding: 0.25rem 0 0.45rem;
}
.footer .Copyright em {
  margin: 0 0.15rem;
  font-style: normal;
  opacity: 0.2;
  color: #dcdcdc;
  font-size: var(--f14);
}
.footer .Copyright em:last-child {
  display: none;
}
@media screen and (max-width: 1600px) {
  .footer nav {
    width: 7.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .footer .right {
    justify-content: flex-end;
  }
  .footer nav {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .footer .foot_contact .ul {
    flex-wrap: wrap;
  }
  .footer .foot_contact li {
    width: 100%;
    margin-bottom: 0.2rem;
  }
  .footer .navbox {
    justify-content: center;
  }
  .footer .right {
    padding: 0;
    justify-content: center;
  }
  .footer .link_b {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
  }
  .footer .Copyright {
    text-align: center;
    padding: 0.15rem 0;
  }
  .footer .Copyright .w1600 {
    justify-content: center;
  }
}
.right_fixed {
  position: fixed;
  right: calc(60 / 1920 * 100%);
  bottom: 30%;
  z-index: 5;
}
.right_fixed .item {
  background-color: var(--blue_color);
  position: relative;
  display: flex;
  width: 0.6rem;
  height: 0.6rem;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.right_fixed .item:first-child {
  border-radius: 4px 4px 0 0;
}
.right_fixed .item:last-child {
  border-radius: 0 0 4px 4px;
  border-bottom: none;
}
.right_fixed .item .icon {
  max-width: 50%;
}
.right_fixed .item:hover {
  background-color: var(--yellow_color);
}
.right_fixed .hover {
  position: absolute;
  right: 100%;
  top: 0;
  background-color: var(--blue_color);
  color: #fff;
  padding: 0.1rem;
  white-space: nowrap;
  display: none;
  font-size: var(--f18);
}
.right_fixed .hover .txt {
  display: flex;
  align-items: center;
  min-height: 0.4rem;
}
.right_fixed .hover .ewm,
.right_fixed .hover img {
  width: 1.2rem;
}
.poImg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-object-fit: cover;
}
.swiper-button {
  opacity: 1;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
  width: 24px;
  height: 24px;
  border: solid 1px var(--blue_color);
  background-color: #fff;
  border-radius: 100%;
  top: 50%;
  margin: 0;
  transform: translateY(-50%);
}
.swiper-button::after {
  font-size: 12px;
  color: var(--blue_color);
  font-weight: bold;
}
.swiper-button:hover {
  opacity: 1;
  background-color: var(--yellow_color);
  border-color: var(--yellow_color);
}
.swiper-button:hover::after {
  color: var(--blue_color);
}
.swiper-button-prev {
  left: -9%;
}
.swiper-button-next {
  right: -9%;
}
.pagebtn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  width: 100%;
  z-index: 5;
  gap: 0.2rem;
  bottom: 0.1rem;
}
.pagebtn .swiper-button {
  position: relative;
  top: auto;
  margin-top: auto;
  right: auto;
  left: auto;
}
.swiper-pagination {
  bottom: 0.2rem;
}
.swiper-pagination .swiper-pagination-bullet {
  background-color: #fff;
  width: 0.1rem;
  height: 0.1rem;
  border-radius: 0.25rem;
  margin: 0 0.1rem;
  opacity: 0.4;
}
.swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 0.2rem;
}
.Hbanner {
  position: relative;
  overflow: hidden;
}
.Hbanner .swiper {
  width: 100%;
}
.Hbanner .swiper-slide {
  overflow: hidden;
  width: 100%;
}
.Hbanner .pic img {
  width: 100%;
  display: block;
  transition-delay: .3s;
}
.Hbanner .swiper-slide-active .pic img{ animation: picImg 4s linear}
.Hbanner .other {
  position: absolute;
  left: 50%;
  bottom: 0.45rem;
  color: #fff;
  max-width: 1600px;
  transform: translateX(-50%);
  z-index: 3;
  width: 92%;
}
.Hbanner .other .mouse {
  display: inline-flex;
  background: url(../images/icon_mouse.svg) no-repeat center;
  background-size: contain;
  width: 0.21rem;
  height: 0.39rem;
  flex-shrink: 0;
  animation: mouseMove 2s infinite ease-in-out;
}
.Hbanner .pagebtn {
  position: relative;
  width: auto;
}
.Hbanner .pagebtn .swiper-button {
  width: 0.4rem;
  height: 0.4rem;
  position: relative;
  transform: none;
  top: auto;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 100%;
  background-color: transparent;
  margin-right: 0.2rem;
}
.Hbanner .pagebtn .swiper-button::after {
  font-size: var(--f16);
  color: #fff;
}
.Hbanner svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 115.5%;
  height: 115.5%;
  transform: translate(-50%, -50%) rotate(-90deg);
}
.Hbanner .circle-path {
  stroke: transparent;
  /* 蓝色实线 */
  stroke-width: 4;
  fill: transparent;
  /* 透明填充 */
  stroke-dasharray: 283;
}
.Hbanner .swiper-button:hover::after {
  color: var(--blue_color);
}
.Hbanner .swiper-button:hover .circle-path {
  stroke: var(--blue_color);
  /* 激活状态深蓝色 */
  animation: progress 2.5s ease-in-out;
}
.Hbanner .swiper-button-prev {
  left: calc(70 / 1920 * 100%);
}
.Hbanner .swiper-button-next {
  right: calc(70 / 1920 * 100%);
}

@media screen and (max-width: 1024px) {
  .Hbanner .pic {
    height: auto;
  }
  .Hbanner .pic img {
    height: auto;
  }
  .Hbanner .other {
    bottom: 0.2rem;
  }
}
@media screen and (max-width: 640px) {
  .Hbanner .pic .img {
    min-height: 5.5rem;
  }
}
@keyframes progress {
  0% {
    stroke-dashoffset: 283;
    /* 圆周长=2πr=2*3.14*45≈283 */
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes mouseMove {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
@-webkit-keyframes picImg {
	0% {
	  -webkit-transform: scale(1.2);
	}
	100% {
	  -webkit-transform: scale(1);
	}
}
@keyframes picImg {
	0% {
		transform: scale(1.2);
	}
	100% {
		transform: scale(1);
	}
}
.NYbanner {
  position: relative;
}
.NYbanner img {
  width: 100%;
  object-fit: cover;
  -webkit-object-fit: cover;
}
.NYbanner .textwarp {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  color: #fff;
  align-items: center;
}
.NYbanner .textwarp .cn {
  font-size: var(--f48);
}
.NYbanner .textwarp .des {
  font-size: var(--f18);
  margin-top: 0.2rem;
  max-width: 7.56rem;
  line-height: calc(32 / 18);
}
@media screen and (max-width: 640px) {
  .NYbanner .banner img {
    min-height: 3rem;
  }
}
.current_line {
  border-bottom: 1px solid #ebebeb;
}
.current {
  background-color: #f8f8f8;
}
.current_search .w1440{ height:.9rem;}
.nymenu li:not(:last-child) {
  margin-right: 0.45rem;
}
.nymenu a {
  display: inline-flex;
  align-items: center;
  height: 0.9rem;
  position: relative;
  font-size: var(--f18);
}
.nymenu a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0;
  height: 2px;
  background-color: var(--blue_color);
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
}
.nymenu a:hover {
  color: var(--blue_color);
}
.nymenu a:hover::after {
  opacity: 1;
  width: 100%;
}
.nymenu .onLi a {
  color: var(--blue_color);
}
.nymenu .onLi a::after {
  opacity: 1;
  width: 100%;
}
@media screen and (min-width: 1025px) {
 .current  .swiper{ margin:0}
.nymenu li{ height:auto; width:auto;}
}
@media screen and (max-width: 1024px) {
  .nymenu {
    order: 2;
    width: 100%;
  }
  .nymenu{ flex-flow:initial;}
  .nymenu li:not(:last-child) {
    margin-right: 0.25rem;
  }
  .nymenu a {
    height: 0.6rem;
  }
  .current_search .w1440{ height:.6rem;}
}
.location {
  color: #666666;
  text-align: right;
}
.location em {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 0.27rem;
  background: url(../images/home.svg) no-repeat left center;
  background-size: 0.16rem;
  height: 0.9rem;
  font-style: normal;
}
.location i {
  display: inline-flex;
  margin: 0 0.1rem;
}
.location span {
  color: var(--blue_color);
}
.location a {
  color: #666666;
}
.location a:hover {
  color: var(--blue_color);
}
@media screen and (max-width: 1024px) {
  .location {
    text-align: right;
    width: 100%;
    padding: 0.1rem 0;
  }
  .location em {
    height: auto;
  }
}
.link_list {
  gap: 0.2rem;
}
.link_list li {
  width: calc((100% - 0.2rem * 4) / 5);
}
.link_list .box {
  border: 1px solid #eeeeee;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
}
.link_list .box img {
  max-height: 100%;
  max-width: 90%;
}
.link_list .box:hover {
  border-color: var(--hover_color);
}
.web_link ul li {
  padding: 0.1rem 0;
  border-bottom: dotted 1px #e4e4e4;
}
.web_link ul li b {
  display: block;
  font-weight: normal;
  font-size: var(--f18);
}
.web_link ul li span {
  opacity: 0.8;
  display: inline-block;
  white-space: nowrap;
  padding-right: 0.2rem;
}
.video-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 300;
  background: rgba(0, 0, 0, 0.65);
}
.video-box .close {
  cursor: pointer;
  width: 0.36rem;
  height: 0.36rem;
  position: absolute;
  z-index: 4;
  right: 0.1rem;
  top: 0.1rem;
  border-radius: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.video-box .close::before,
.video-box .close::after {
  position: absolute;
  content: '';
  width: 50%;
  left: 50%;
  height: 2px;
  top: 50%;
  margin-top: -1px;
  background: #fff;
  transform: translateX(-50%) rotate(-45deg);
  -webkit-transform: translateX(-50%) rotate(-45deg);
  -ms-transform: translateX(-50%) rotate(-45deg);
}
.video-box .close::before {
  transform: translateX(-50%) rotate(45deg);
  -webkit-transform: translateX(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) rotate(45deg);
}
.video-box .flex_jc_ac {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-box .inner {
  width: 90%;
  max-width: 10.8rem;
  position: relative;
}
.video-box video {
  width: 100%;
}
.Pages {
  text-align: center;
  line-height: 0.5rem;
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.Pages em {
  display: flex;
  justify-content: center;
  align-content: center;
}
.Pages em {
  font-style: normal;
}
.Pages a {
  color: #aaadb3;
  display: inline-block;
  min-width: 0.5rem;
  margin: 0 0.07rem;
  border-radius: 0.04rem;
  overflow: hidden;
  position: relative;
  border: solid 1px #c8cacc;
}
.Pages a.back{padding: 0 .1rem;}
.Pages a:not(.no):hover,
.Pages .a_cur {
  background-color: var(--blue_color);
  color: #ffffff;
}
.Pages .a_prev,
.Pages .a_next {
  text-indent: -200px;
  height:.5rem;
}
.Pages .a_prev:before,
.Pages .a_next:before {
  content: '';
  left: 50%;
  position: absolute;
  top: 50%;
  width: 0.1rem;
  height: 0.1rem;
  border: solid #999999;
  border-width: 0 0.02rem 0.02rem 0;
  transform: translate(-50%, -50%) rotate(-45deg);
  margin-left: -0.025rem;
}
.Pages .a_prev:before {
  border-width: 0.02rem 0 0 0.02rem;
  margin-left: 0.025rem;
}
.Pages .a_prev {
  margin-right: 0.37rem;
}
.Pages .a_next {
  margin-left: 0.37rem;
}
.Pages .p_jump {
  margin-left: 0.25rem;
}
.Pages .p_jump b {
  font-weight: normal;
  color: #aaadb3;
  font-size: var(--f18);
}
.Pages .p_jump input {
  width: 0.5rem;
  height: 0.5rem;
  text-align: center;
  border-radius: 0.04rem;
  border: solid 1px #c8cacc;
  margin: 0 0.15rem;
}
.Pages a.no {
  cursor: default;
}
@media (max-width: 768px) {
  .Pages {
    line-height: 0.46rem;
  }
  .Pages a {
    min-width: 0.46rem;
    margin: 0px 0.02rem;
  }
  .Pages .a_prev {
    margin-right: 0.05rem;
  }
  .Pages .a_next {
    margin-left: 0.05rem;
  }
  .Pages .p_jump {
    margin-left: 0.05rem;
  }
}
.Hmore {
  display: inline-flex;
  align-items: center;
  color: #666666;
  font-size: var(--f18);
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
}
.Hmore i {
  display: inline-flex;
  width: 0.25rem;
  height: 0.25rem;
  border: solid 1px #666666;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin-left: 0.1rem;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
}
.Hmore i::before {
  content: '';
  display: block;
  width: 0.08rem;
  height: 0.08rem;
  border: solid #666666;
  border-width: 1px 1px 0 0;
  transform: rotate(45deg);
  margin-left: -0.02rem;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
}
.Hmore:hover {
  color: var(--blue_color);
}
.Hmore:hover i {
  border-color: var(--yellow_color);
  background-color: var(--yellow_color);
}
.Hmore:hover i::before {
  border-color: var(--blue_color);
}
.Hmore_blue {
  color: var(--blue_color);
}
.Hmore_blue i {
  border-color: var(--blue_color);
  background-color: transparent;
}
.Hmore_blue i::before {
  border-color: var(--blue_color);
}
.Hmore_blue:hover i {
  background-color: var(--yellow_color);
  border-color: var(--yellow_color);
}
a.box:hover .Hmore {
  color: var(--blue_color);
}
a.box:hover .Hmore i {
  border-color: var(--yellow_color);
  background-color: var(--yellow_color);
}
a.box:hover .Hmore i::before {
  border-color: var(--blue_color);
}
a.box:hover .Hmore_blue i {
  background-color: var(--yellow_color);
  border-color: var(--yellow_color);
}
.news_top {
  position: relative;
  margin-bottom: 0.6rem;
}
.news_top .box {
  background-color: #f7f8fa;
}
.news_top .pic {
  width: 50%;
}
.news_top .pic i {
  display: block;
  padding-top: calc(405 / 720 * 100%);
  position: relative;
}
.news_top .textwarp {
  width: 50%;
  padding: 0.4rem 0.6rem;
}
.news_top .time {
  display: inline-flex;
  line-height: 0.2rem;
  color: #999999;
  width: 0.7rem;
  background-color: var(--blue_color);
  color: #fff;
  border-radius: 0.04rem;
  flex-flow: column wrap;
  justify-content: space-evenly;
  align-items: center;
  height: 0.7rem;
  font-size: var(--f14);
}
.news_top .time span {
  font-size: var(--f30);
}
.news_top .title {
  font-size: var(--f24);
  line-height: calc(36 / 24);
  margin: 0.25rem 0 0.2rem;
}
.news_top .des {
  color: #342c2a;
  line-height: calc(28 / 16);
  margin-bottom: 0.45rem;
}
.news_top .more {
  display: inline-flex;
  color: var(--blue_color);
  align-items: center;
}
.news_top .more::after {
  content: '';
  display: inline-flex;
  width: 0.16rem;
  height: 0.08rem;
  background: url(../images/icon_arrow2.svg) no-repeat center;
  margin-left: 0.1rem;
  background-size: contain;
}
.news_top .swiper-pagination {
  width: auto;
  text-align: right;
  padding: 0 0.6rem;
  bottom: 0.5rem;
  z-index: 3;
  right: 0;
  left: auto;
}
.news_top .swiper-pagination .swiper-pagination-bullet {
  width: 0.1rem;
  height: 0.1rem;
  background-color: var(--blue_color);
  opacity: 0.2;
  border: none;
  border-radius: 0.25rem;
}
.news_top .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 0.2rem;
}
@media (max-width: 768px) {
  .news_top .pic,
  .news_top .textwarp {
    width: 100%;
  }
  .news_top .swiper-pagination {
    bottom: 0.2rem;
  }
}
@media (max-width: 640px) {
  .news_top .textwarp {
    padding: 0.3rem;
  }
  .news_top .swiper-pagination {
    bottom: 0.3rem;
  }
  .news_top .time {
    width: 1rem;
  }
}
.news_top_party .textwarp {
  background: url(../images/Party_bg3.jpg) no-repeat center bottom;
  background-size: cover;
  border: 1px solid #dfc8cc;
}
.selectBox {
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #eaeaea;
  font-size: var(--f18);
}
.selectBox select {
  width: calc(400 / 1440 * 100%);
  margin-right: 0.2rem;
  background-image: url(../images/select2.svg);
  background-position: 95% center;
  background-color: #f7f8fa;
  height: 0.5rem;
  padding: 0 0.2rem;
  border: none;
  color: #666666;
}
.selectBox .search {
  position: relative;
  width: calc(400 / 1440 * 100%);
  margin-right: 0.2rem;
}
.selectBox .search .text {
  width: 100%;
  background-color: #f7f8fa;
  height: 0.5rem;
  line-height: 0.5rem;
  padding: 0 0.2rem;
  padding-right: 0.5rem;
  border: none;
  font-size: var(--f18);
  color: #666666;
}
.selectBox .search .text::placeholder {
  color: #666;
}
.selectBox .search .btn {
  position: absolute;
  right: 0.15rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.2rem;
  height: 0.2rem;
  background: url(../images/search2.svg) no-repeat center;
  background-size: contain;
}
.selectBox .other {
  flex: 1;
  text-align: right;
  color: #999999;
}
.selectBox .other .color {
  color: var(--blue_color);
}
@media (max-width: 640px) {
  .selectBox {
    flex-wrap: wrap;
  }
  .selectBox select,
  .selectBox .search {
    width: 100%;
    margin-bottom: 0.2rem;
    margin-right: 0;
  }
}
.news_list {
  border-top: 1px solid #e8ebf2;
}
.news_list li {
  border-bottom: 1px solid #e8ebf2;
}
.news_list .box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  padding: 0.55rem 0 0.25rem;
}
.news_list .textwarp {
  flex: 1;
  min-width: 0;
  max-width: 1020px;
}
.news_list .time {
  color: #999999;
  margin: 0.15rem 0 0.25rem;
  display: block;
}
.news_list .title {
  font-size: var(--f24);
}
.news_list .des {
  color: #342c2a;
  opacity: 0.7;
  line-height: calc(30 / 16);
  margin: 0.14rem 0;
}
@media (max-width: 640px) {
  .news_list li {
    width: 100%;
  }
  .news_list .textwarp {
    height: auto;
    flex: auto;
    width: 100%;
    margin-bottom: 0.2rem;
  }
  .news_list .time {
    margin-top: 0.1rem;
  }
}
.party_list li {
  width: calc(690 / 1440 * 100%);
  margin-bottom: 0.4rem;
}
.party_list .box {
  display: flex;
  border: 1px solid #dfc8cc;
  background: url(../images/Party_bg4.jpg) no-repeat center bottom;
  background-size: cover;
  height: 100%;
  padding: 0.3rem 0;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
}
.party_list .box:hover {
  border-color: #e9001a;
}
.party_list .box:hover .timebox span {
  color: #e9001a;
}
.party_list .box:hover .title {
  color: #e9001a;
  font-weight: bold;
}
.party_list .box:hover .Hmore {
  color: #e9001a;
}
.party_list .box:hover .Hmore i {
  border-color: #e9001a;
  background-color: #e9001a;
}
.party_list .box:hover .Hmore i::before {
  border-color: #fff;
}
.party_list .timebox {
  width: 1.2rem;
  padding-left: 0.35rem;
  flex-shrink: 0;
  color: #666666;
}
.party_list .timebox span {
  display: block;
  color: #333333;
  font-size: var(--f48);
  line-height: 1;
  margin-bottom: 0.05rem;
}
.party_list .textwarp {
  flex: 1;
  min-width: 0;
  position: relative;
  padding-left: 0.3rem;
  padding-right: 0.45rem;
}
.party_list .textwarp::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 0.92rem;
  background-color: #e8ebf2;
}
.party_list .title {
  font-size: var(--f24);
}
.party_list .des {
  margin: 0.2rem 0 0.4rem;
  line-height: calc(28 / 16);
  color: #666666;
}
@media (max-width: 768px) {
  .party_list li {
    width: 100%;
  }
  .party_list .timebox {
    width: 1.4rem;
  }
}
.notice_list .box {
  display: flex;
  height: 100%;
  padding: 0.3rem 0;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
  border-color: #e8ebf2;
  background: #fff;
}
.notice_list .box:hover {
  border-color: var(--blue_color);
}
.notice_list .box:hover .timebox span {
  color: var(--blue_color);
}
.notice_list .box:hover .title {
  color: var(--blue_color);
  font-weight: bold;
}
.notice_list .box:hover .Hmore {
  color: var(--blue_color);
}
.notice_list .box:hover .Hmore i {
  border-color: var(--yellow_color);
  background-color: var(--yellow_color);
}
.notice_list .box:hover .Hmore i::before {
  border-color: var(--blue_color);
}
.notice_list .textwarp {
  display: flex;
  flex-flow: column wrap;
  min-height: 2.05rem;
}
.notice_list .textwarp::before {
  height: 100%;
}
.notice_list .textwarp > * {
  width: 100%;
}
.notice_list .more {
  margin-top: auto;
}
.job_list li {
  width: 100%;
  margin-bottom: 0.2rem;
}
.job_list .box {
  display: flex;
  border: 1px solid #e8ebf2;
  height: 100%;
  padding: 0.35rem 0;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
  align-items: center;
}
.job_list .box:hover {
  border-color: var(--blue_color);
}
.job_list .box:hover .title {
  color: var(--blue_color);
  font-weight: bold;
}
.job_list .timebox {
  width: 1.25rem;
  padding-left: 0.35rem;
  flex-shrink: 0;
  color: #666666;
  position: relative;
}
.job_list .timebox::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 0.7rem;
  background-color: #e8ebf2;
}
.job_list .timebox span {
  display: block;
  color: #333333;
  font-size: var(--f48);
  line-height: 1;
  margin-bottom: 0.05rem;
}
.job_list .textwarp {
  flex: 1;
  min-width: 0;
  position: relative;
  padding-left: 0.3rem;
  padding-right: 0.45rem;
}
.job_list .title {
  font-size: var(--f24);
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
}
.job_list .des {
  margin: 0.15rem 0 0;
  line-height: calc(28 / 16);
  color: #666666;
}
.job_list .more {
  flex-shrink: 0;
  margin-left: 0.1rem;
  padding-right: 0.4rem;
}
@media (max-width: 640px) {
  .job_list .timebox {
    width: 1.4rem;
  }
  .job_list .more {
    display: none;
  }
}
.news_details .details_title {
  border-bottom: 1px solid #ebebeb;
  position: relative;
  color: #999999;
  margin-bottom: 0.45rem;
}
.news_details .details_title .title {
  font-size: var(--f32);
  font-weight: var(--bold);
  line-height: calc(50 / 36);
  color: #342c2a;
  margin-bottom: 0.2rem;
}
.news_details .details_title .other {
  color: #666666;
  border-bottom: 2px solid #ebebeb;
  padding-bottom: 0.2rem;
  margin-bottom: 0.03rem;
}
.news_details .details_title .other span:not(:last-child) {
  margin-right: 0.6rem;
}
.news_details .Single {
  line-height: calc(24 / 16);
  color: #666666;
  padding-bottom: 0.5rem;
}
.news_details .Single img {
  height: auto!important;
}
.news_details .Single p {
  margin: 1.5em 0;
}
.news_details .dotBox {
  padding-top: 0.35rem;
  border-top: 1px solid #ebebeb;
}
.news_details .dotBox .right {
  flex-shrink: 0;
  margin-left: 0.1rem;
}
.news_details .dotBox .left {
  flex: 1;
  min-width: 0;
  line-height: calc(32 / 16);
}
.news_details .dotBox .left .dot {
  color: #666666;
}
.news_details .dotBox .left a {
  color: #666666;
}
.news_details .dotBox .left a:hover {
  text-decoration: underline;
  color: var(--blue_color);
}
.news_details .dotBox .back {
  color: var(--blue_color);
}
.news_details .dotBox .back i {
  border-color: var(--blue_color);
}
.news_details .list{ margin-bottom:.5rem;}
.news_details .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    opacity: 0.5;          /* 更低的透明度，突出大图 */
    transform: scale(0.85); /* 缩小到50%（原0.7），小图更小巧 */
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    //height: 60%;           /* 高度降到60%（原80%） */
    z-index: 1;
}

/* 激活项（中间大图）- 最大化展示 */
.news_details .swiper-slide-active {
    opacity: 1;
    transform: scale(1); /* 放大到110%（原1），大图更大 */
    //height: 100%;
    z-index: 10;
}
.news_details .swiper-slide .pic{ position:relative; overflow:hidden; width:100%;}
.news_details .swiper-slide img {
    width: 100%;
    object-fit: cover;
}
.business_tab.news_details{ padding:0 5%; text-align:center;}
.business_tab.news_details .swiper-slide .box{ display:block; width:100%;}
.business_tab.news_details .swiper-slide .pic{ padding-top:100%;}
.business_tab.news_details .swiper-slide img {
    width: 100%;
    object-fit: contain;
}
@media (max-width: 640px) {
  .news_details {
    margin-bottom: 0.5rem;
  }
  .news_details .right {
    margin-left: 0;
    text-align: center;
    width: 100%;
    margin-bottom: 0.2rem;
  }
  .news_details .left {
    width: 100%;
    flex: auto;
    order: 2;
  }
}
.center {
  text-align: center;
}
.about_box .left {
  width: calc(667 / 1440 * 100%);
  color: #333333;
  line-height: calc(36 / 18);
  font-size: var(--f18);
}
.about_box .right {
  width: calc(691 / 1440 * 100%);
}
.about_box .right .pic {
  position: relative;
}
.about_box .right .pic img {
  width: 100%;
}
.about_box .right_two {
  width: calc(720 / 1440 * 100%);
}
.about_box .numbox {
  background: url(../images/about_bg.png) no-repeat center;
  background-size: cover;
  padding: 0.4rem;
}
.about_box .numbox li {
  display: flex;
  flex-flow: column wrap;
}
.about_box .numbox .icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #999999;
  margin-bottom: 0.1rem;
}
.about_box .numbox .icon img {
  max-width: 0.2rem;
  flex-shrink: 0;
  margin-left: 0.1rem;
}
.about_box .numbox .num {
  color: #222222;
  font-size: var(--f42);
  margin-right: 0.1rem;
}
@media screen and (max-width: 768px) {
  .about_box .left,
  .about_box .right {
    width: 100%;
  }
  .about_box .numbox li {
    margin-bottom: 0.2rem;
    width: 100%;
  }
}
.leaderList {
  margin-left: -0.2rem;
  margin-right: -0.2rem;
  color: #333333;
}
.leaderList:last-child {
  margin-bottom: 0.6rem;
}
.leaderList li {
  margin: 0 0.2rem;
  width: calc(33.33% - 0.4rem);
  margin-bottom: 0.6rem;
}
.leaderList .box {
  height: 100%;
  background: url(../images/leader_bg.png) no-repeat right bottom #f7f8fa;
  background-size: cover;
  padding: 0.3rem 0.3rem 0.3rem 0.3rem;
}
.leaderList .pic {
  width: 1.65rem;
}
.leaderList .pic img {
  width: 100%;
}
.leaderList .textwarp {
  padding: 0.35rem 0 0 0.3rem;
  flex: 1;
  min-width: 0;
}
.leaderList .title {
  font-size: var(--f24);
  margin-bottom: 0.15rem;
}
.leaderList .des {
  font-size: var(--f20);
  line-height: calc(36 / 20);
  white-space: pre-wrap;
}
@media screen and (max-width: 768px) {
  .leaderList {
    margin-left: 0;
    margin-right: 0;
  }
  .leaderList li {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.organization {
    overflow-x:auto;
    overflow-y:hidden;
}
.organization .title {
  text-align: center;
  display: flex;
  justify-content: center;
  padding-bottom: 0.4rem;
  position: relative;
}
.organization .title span {
  min-width: 4rem;
  padding: 0 0.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 0.6rem;
  color: #fff;
  font-size: var(--f24);
  color: var(--white_color);
  background-color: var(--blue_color);
}
.organization .title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 1px;
  height: 0.4rem;
  background-color: #99b3d6;
  transform: translateX(-50%);
}
.organization .list {
  text-align: center;
}
.organization .ul {
  display: inline-flex;
  position: relative;
  padding-top: 0.4rem;
}
.organization .ul::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: calc(100% - 0.9rem);
  transform: translateX(-50%);
  height: 1px;
  background-color: #99b3d6;
}
.organization li {
  width: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue_color);
  font-size: var(--f18);
  padding: 0.1rem 0.05rem;
  background-color: #f2f5fa;
  margin: 0 0.15rem;
  writing-mode: vertical-lr;
  min-height: 2.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}
.organization li::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 100%;
  width: 1px;
  height: 0.4rem;
  background-color: #99b3d6;
  transform: translateX(-50%);
}
.organization .sub{flex-flow: column wrap;}
.organization .sub .title {
  padding-bottom: 0.3rem;
}
.organization .sub .title span {
  min-width: 3rem;
  min-height: 0.5rem;
  background-color: var(--yellow_color);
  color: var(--blue_color);
  font-size: var(--f18);
}
.organization .sub .title::after {
  height: 0.3rem;
}
.organization .sub .ul {
  padding-top: 0.3rem;
}
.organization .sub .ul::before {
  width: calc(100% - 0.6rem);
}
.organization .sub li {
  width: 0.5rem;
  background-color: var(--white_color);
  border: 1px solid rgba(var(--blue_color_rgb), 0.2);
  margin: 0 0.05rem;
  color: var(--blue_color);
  justify-content: flex-start;
  min-height: 4rem;
  padding: 0.3rem 0.05rem;
  font-size: var(--f16);
  margin-bottom: 0.5rem;
}
.organization .sub li::after {
  height: 0.3rem;
}
@media screen and (max-width: 768px) {
  .organization .top {
    width: max-content;
  }
}
.development .titlebox {
  text-align: center;
  color: var(--white_color);
  background-color: var(--blue_color);
  padding: 0.6rem 0.2rem 0.3rem;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.development .titlebox .title {
  font-size: var(--f42);
  margin-bottom: 0.2rem;
}
.development .titlebox .des {
  font-size: var(--f20);
  width: 70%;
  margin: 0 auto;
}
.development .item {
  margin-top: 0.1rem;
}
.development .item .title {
  text-align: center;
  padding: 0.12rem;
  background-color: rgba(var(--blue_color_rgb), 0.2);
  color: var(--blue_color);
  font-size: var(--f20);
}
.development .item li {
  background-color: #f2f5fa;
  color: #333333;
  font-size: var(--f18);
  line-height: calc(32 / 18);
  margin-top: 0.1rem;
}
.development .item_path li {
  display: flex;
  padding: 0.3rem;
  flex-wrap: wrap;
  width: 49.653%;
}
.development .item_path .tit {
  flex-shrink: 0;
  margin-right: 0.3rem;
}
.development .item_path .tit span {
  display: flex;
  width: 1rem;
  align-items: center;
  padding: 0.1rem;
  justify-content: center;
  color: var(--blue_color);
  font-size: var(--f18);
  line-height: calc(32 / 18);
  background-color: var(--yellow_color);
  min-height: 1.08rem;
  position: relative;
}
.development .item_path .tit span::before {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border: 0.08rem solid transparent;
  border-left-color: var(--yellow_color);
}
.development .item_path .info {
  display: flex;
  flex: 1;
  min-width: 0;
  align-items: center;
  margin-top: -0.05rem;
}
.development .item_work .ul {
  margin-left: -0.05rem;
  margin-right: -0.05rem;
}
.development .item_work li {
  width: calc(33.33% - 0.1rem);
  margin-left: 0.05rem;
  margin-right: 0.05rem;
  text-align: center;
  padding: 0.14rem 0.2rem;
}
.development .item_work .ul_row_one {
  margin-left: 0;
  margin-right: 0;
}
.development .item_work .ul_row_one li {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
@media screen and (max-width: 640px) {
  .development .titlebox {
    padding-left: 0.55rem;
    padding-right: 0.55rem;
  }
  .development .item_path li {
    width: 100%;
  }
  .development .item_work li {
    width: calc(50% - 0.1rem);
  }
}
.culture_item:not(:last-child) {
  margin-bottom: 0.6rem;
}
.culture_item:nth-child(2n) {
  flex-direction: row-reverse;
}
.culture_item .pic {
  width: calc(720 / 1440 * 100%);
}
.culture_item .textwarp {
  width: calc(640 / 1440 * 100%);
  color: #333333;
  position: relative;
  display: flex;
  justify-content: center;
  flex-flow: column wrap;
}
.culture_item .icon {
  position: relative;
}
.culture_item .icon span {
  display: inline-flex;
  width: 0.7rem;
  background-color: var(--blue_color);
  border-radius: 100%;
  height: 0.7rem;
  margin-bottom: 0.35rem;
}
.culture_item .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.culture_item .icon::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 0.69rem;
  height: 0.62rem;
  background: url(../images/dou.svg) no-repeat center;
  background-size: contain;
}
.culture_item .title {
  font-size: var(--f20);
  color: var(--blue_color);
}
.culture_item .subtit {
  font-size: var(--f42);
  margin: 0.1rem 0 0.35rem;
}
.culture_item .info {
  font-size: var(--f18);
  line-height: calc(36 / 18);
  min-height: 1.65rem;
}
@media screen and (max-width: 640px) {
  .culture_item:nth-child(2n) {
    flex-direction: row;
  }
  .culture_item .pic {
    width: 100%;
  }
  .culture_item .textwarp {
    width: 100%;
    padding: 0.2rem 0.2rem 0.4rem;
  }
}
.Partybuilding {
  background: url(../images/Party_bg.png) no-repeat center bottom #fff;
  background-size: cover;
}
.Partybuilding .ul {
  margin: 0.5rem -0.2rem 0;
}
.Partybuilding li {
  width: calc(33.33% - 0.4rem);
  margin: 0 0.2rem;
  min-height: 4rem;
  background: url(../images/Party_bg2.jpg) no-repeat center bottom;
  background-size: cover;
  position: relative;
}
.Partybuilding li::before {
  content: '';
  position: absolute;
  right: -0.17rem;
  bottom: -0.08rem;
  width: 1.19rem;
  height: 0.87rem;
  background: url(../images/Party_icon.png) no-repeat center;
  background-size: contain;
}
.Partybuilding .icon {
  width: 1rem;
  height: 1rem;
  margin: -0.5rem auto 0.65rem;
  background-color: #fcd511;
  border: 2px solid var(--white_color);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.Partybuilding .icon img {
  max-width: 100%;
  max-height: 100%;
}
.Partybuilding .title {
  text-align: center;
  font-size: var(--f30);
  margin-bottom: 0.45rem;
}
.Partybuilding .title span {
  background: linear-gradient(180deg, rgba(254, 216, 6, 0.9), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.Partybuilding .info {
  display: flex;
  justify-content: center;
  padding: 0 0.45rem 0.2rem;
}
.Partybuilding .txt {
  background: linear-gradient(135deg, #fff, #fbf2d9, #fceca6, #fceca6, #fceca6, #fff, #fff, #fceca6, #fceca6, #fceca6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: var(--f18);
  line-height: calc(32 / 18);
}
.Partybuilding li:nth-child(2n) .txt {
  background: linear-gradient(125deg, #fbf2d9, #fceca6, #fceca6, #fceca6, #fceca6, #fff, #fff);
  -webkit-background-clip: text;
}
.Partybuilding li:nth-child(3n) .txt {
  background: linear-gradient(140deg, #fffce1, #fbf2d9, #fceca6, #fceca6, #fffce1, #fffce1, #fffce1, #fceca6, #fffce1, #fffce1);
  -webkit-background-clip: text;
}
@media screen and (max-width: 640px) {
  .Partybuilding li {
    width: 100%;
    margin-bottom: 0.7rem;
  }
}
.video_top {
  margin-bottom: 0.6rem;
}
.video_top .box {
  background-color: #f5f7fa;
}
.video_top .pic {
  width: calc(860 / 1440 * 100%);
}
.video_top .pic i {
  position: relative;
  display: block;
  padding-top: calc(484 / 860 * 100%);
  overflow: hidden;
}
.video_top .pic i::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/play.svg) no-repeat center rgba(0, 0, 0, 0.1);
  background-size: 0.62rem;
  z-index: 2;
}
.video_top .textwarp {
  width: calc(580 / 1440 * 100%);
  display: flex;
  flex-flow: column wrap;
  padding: 0.6rem;
  align-items: flex-start;
}
.video_top .label {
  display: inline-flex;
  padding: 0 0.1rem;
  min-width: 0.64rem;
  background-color: #fed806;
  color: #fff;
  line-height: 0.28rem;
  width: auto;
  justify-content: center;
}
.video_top .title {
  margin: 0.55rem 0 0.3rem;
  color: var(--blue_color);
  font-size: var(--f30);
}
.video_top .des {
  width: 100%;
  max-width: 4.4rem;
  color: #333333;
  line-height: calc(24 / 16);
}
.video_top .more {
  margin-top: auto;
}
@media (max-width: 768px) {
  .video_top .pic {
    width: 100%;
  }
  .video_top .textwarp {
    width: 100%;
    padding: 0.4rem;
  }
}
.video_index_list {
  margin-bottom: 0.75rem;
}
.video_index_list li {
  margin-right: 0.45rem;
  width: calc((100% - 0.45rem * 2) / 3);
  margin-bottom: 0.45rem;
}
.video_index_list li:nth-child(3n) {
  margin-right: 0;
}
.video_index_list .pic {
  position: relative;
  padding-top: calc(253 / 450 * 100%);
  overflow: hidden;
  margin-bottom: 0.25rem;
  background-color: #000;
}
.video_index_list .pic img {
  opacity: 0.8;
}
.video_index_list .title {
  font-size: var(--f20);
  text-align: center;
  color: #333;
}
.video_index_list .box:hover .title {
  color: var(--blue_color);
}
@media (max-width: 768px) {
  .video_index_list li {
    margin-right: 0.2rem;
    width: calc((100% - 0.2rem * 1) / 2);
  }
  .video_index_list li:nth-child(3n) {
    margin-right: 0.2rem;
  }
  .video_index_list li:nth-child(2n) {
    margin-right: 0;
  }
}
.video_list li {
  margin-right: 0.2rem;
  width: calc((100% - 0.2rem * 2) / 3);
  margin-bottom: 0.25rem;
}
.video_list li:nth-child(3n) {
  margin-right: 0;
}
.video_list .pic {
  position: relative;
  padding-top: calc(262 / 466 * 100%);
  overflow: hidden;
  margin-bottom: 0.15rem;
}
.video_list .pic::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/play.svg) no-repeat center rgba(0, 0, 0, 0.2);
  background-size: 0.43rem;
  z-index: 3;
}
.video_list .title {
  font-size: var(--f18);
  text-align: center;
  color: #333;
  letter-spacing: -0.005rem;
}
.video_list .box:hover .title {
  color: var(--blue_color);
}
@media (max-width: 768px) {
  .video_list li {
    margin-right: 0.2rem;
    width: calc((100% - 0.2rem * 1) / 2);
  }
  .video_list li:nth-child(3n) {
    margin-right: 0.2rem;
  }
  .video_list li:nth-child(2n) {
    margin-right: 0;
  }
}
.layout_main {
  background: url(../images/layout_bg.jpg) no-repeat center bottom;
  background-size: contain;
}
.layout_main .left {
  width: calc(260 / 1440 * 100%);
}
.layout_main .right {
  width: calc(1110 / 1440 * 100%);
}
.layout_main .top {
  margin-bottom: 0.7rem;
}
.layout_main .top .title {
  font-size: var(--f42);
  color: var(--blue_color);
}
.layout_main .top .right {
  color: #333333;
  line-height: 2;
  font-size: var(--f18);
  text-indent: 2em;
}
.layout_main .content .left li {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0.15rem 0;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid #e8ebf2;
}
.layout_main .content .left .icon {
  width: 0.3rem;
  text-align: right;
  flex-shrink: 0;
}
.layout_main .content .left .numbox {
  display: flex;
  align-items: center;
}
.layout_main .content .left .numbox b {
  font-size: var(--f62);
  color: #222222;
  margin-right: 0.1rem;
}
.layout_main .content .left .numbox p {
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
}
.layout_main .content .left .numbox .ico {
  font-size: var(--f24);
}
.layout_main .content .left aside {
  color: #666666;
}
.layout_main .map {
  position: relative;
  margin-top: 1.3rem;
  width: calc(713 / 1110 * 100%);
  padding-top: calc(713 / 1110 * 100%);
  margin-left: auto;
}
.layout_main .map .circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-color: rgba(254, 216, 6, 0.04);
  left: 0;
  top: 0;
  top: 0.45rem;
  margin-left: 0.08rem;
}
.layout_main .map .circle_two {
  width: calc(342 / 713 * 100%);
  height: calc(342 / 713 * 100%);
  background-color: rgba(254, 216, 6, 0.1);
  left: 50%;
  top: calc(50% + 0.45rem);
  transform: translate(-50%, -50%);
}
.layout_main .map li {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(81 / 713 * 100%);
  padding-top: calc(81 / 713 * 100%);
  margin-top: 0.45rem;
  margin-left: 0.05rem;
}
.layout_main .map li .title {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--blue_color);
  color: #fff;
  border-radius: 100%;
  border: 2px solid #fff;
  font-size: var(--f20);
  cursor: pointer;
}
.layout_main .map li::before,
.layout_main .map li::after {
  content: '';
  position: absolute;
  right: 100%;
  top: 60%;
  width: 3.9rem;
  height: 1px;
  border-top: 1px dashed var(--yellow_color);
  opacity: 0;
}
.layout_main .map li::after {
  width: 1px;
  height: 100%;
  border-bottom: none;
  border-left: 1px dashed var(--yellow_color);
  bottom: 41%;
  top: auto;
  margin-right: 3.9rem;
}
.layout_main .map li:hover {
  z-index: 3;
}
.layout_main .map li:hover .hover {
  display: block;
}
.layout_main .map li:hover::before,
.layout_main .map li:hover::after {
  opacity: 1;
}
.layout_main .map .hover {
  position: absolute;
  right: 3.4rem;
  bottom: 100%;
  background-color: #fff;
  width: 2.6rem;
  padding: 0.25rem;
  box-shadow: 0px 0px 14.24px 1.76px rgba(32, 45, 139, 0.09);
  margin-bottom: 0.3rem;
  display: none;
}
.layout_main .map .hover::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0.1rem;
  height: 0.1rem;
  background-color: var(--yellow_color);
  border-radius: 100%;
  bottom: 0;
}
.layout_main .map .guangdong {
  width: calc(110 / 713 * 100%);
  padding-top: calc(110 / 713 * 100%);
}
.layout_main .map .guangdong .title {
  background-color: var(--yellow_color);
  font-size: var(--f30);
}
.layout_main .map .guangdong .hover {
  right: 3.7rem;
}
.layout_main .map .grey .title {
  background-color: #b1bccc;
}
@media (max-width: 640px) {
  .layout_main .left,
  .layout_main .right {
    width: 100%;
  }
  .layout_main .map {
    display: none;
  }
  .layout_main .map li .title {
    font-size: 0.1rem;
  }
  .layout_main .map .guangdong .title {
    font-size: 0.16rem;
  }
}
.business_list {
  margin-left: -0.2rem;
  margin-right: -0.2rem;
}
.business_list li {
  width: calc(33.33% - 0.4rem);
  margin: 0 0.2rem 0.35rem;
}
.business_list .pic {
  position: relative;
  padding-top: calc(302 / 454 * 100%);
  overflow: hidden;
}
.business_list_kjcx .pic{
    padding-top: calc(454 / 454 * 100%);
}
.business_list_kjcx .pic img{ object-fit:contain;}
.business_list .title {
  margin: 0.25rem 0 0.1rem;
  font-size: var(--f22);
  font-weight: bold;
}
.business_list .des {
  color: #333333;
  opacity: 0.7;
  display: -moz-box;
    display: box;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
@media (max-width: 640px) {
  .business_list {
    margin: 0;
  }
  .business_list li {
    width: 100%;
    margin: 0 0 0.35rem;
  }
}
.business_nav {
  margin: 0 0 0.5rem;
}
.business_nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.8rem;
  line-height: 0.58rem;
  border: 1px solid #e5e5e5;
  color: #666666;
  font-size: var(--f20);
  margin: 0.1rem;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
}
.business_nav a:hover,
.business_nav a.onLi {
  background-color: var(--blue_color);
  color: #fff;
  border-color: var(--blue_color);
}
.contact_box .list .ul {
  margin: 0 -0.1rem;
}
.contact_box .list li {
  width: calc(33.33% - 0.2rem);
  background: url(../images/contact_bg.png) no-repeat right bottom #f1f4fb;
  background-size: contain;
  margin: 0 0.1rem;
  padding: 0.4rem 0.2rem 0.35rem;
  text-align: center;
  color: #666666;
  font-size: var(--f20);
  margin-bottom: 0.2rem;
}
.contact_box .list li:nth-child(4),
.contact_box .list li:nth-child(5) {
  width: calc(50% - 0.2rem);
}
.contact_box .list li:hover .icon {
  background-color: var(--yellow_color);
}
.contact_box .icon {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 auto 0.35rem;
  background-color: var(--blue_color);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
}
.contact_box .icon img {
  max-width: 50%;
}
.contact_box .txt {
  color: #333333;
  font-size: var(--f20);
  margin-top: 0.2rem;
}
.contact_box .ewm_list{ padding:.1rem;background: url(../images/contact_bg.png) no-repeat right bottom #f1f4fb; background-size: contain;width: calc(100% - .2rem); margin-left: auto; margin-right: auto; }
.contact_box .ewm_list li{ width: calc(100% / 6); text-align:center; padding:.2rem;}
.contact_box .ewm_list li img{ width:100%; margin-bottom:.1rem;}
@media (max-width: 640px) {
  .contact_box .ul {
    margin: 0;
  }
  .contact_box li {
    width: 100%!important;
  }
}
.honor_index {
  background: url(../images/honor_bg3.png) no-repeat center bottom;
  background-size: 100% auto;
  padding-bottom: 4.5%;
}
.honorBox .swiper {
  height: 5.8rem;
}
.honorBox li {
  text-align: center;
  padding: 0.5rem 0;
}
.honorBox .pic {
  width: 100%;
  padding-top: calc(452 / 339 * 100%);
  position: relative;
  max-width: 452px;
  margin: 0 auto;
  transform: scale(0.75);
  transform-origin: center bottom;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
}
.honorBox .pic figure {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 9%;
  background: url(../images/honor_bg1.png) no-repeat center;
  background-size: 100% 100%;
}
.honorBox .pic figure img {
  max-height: 100%;
  max-width: 100%;
}
.honorBox .pic::before {
  content: '';
  position: absolute;
  left: 0;
  top: 95%;
  width: 150%;
  height: 10%;
  background: url(../images/honor_bg2.png) no-repeat center;
  background-size: contain;
}
.honorBox .pic::after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 10%;
  background: linear-gradient(to bottom, rgba(77, 77, 77, 0.1), rgba(0, 0, 0, 0));
  border-radius: 0.1rem 0.1rem 0 0;
}
.honorBox .title {
  color: #333333;
  font-size: var(--f18);
  text-align: center;
  padding: 0.2rem 0;
}
.honorBox .swiper-slide-prev .pic,
.honorBox .swiper-slide-next .pic {
  transform: scale(0.9);
}
.honorBox .swiper-slide-prev .box,
.honorBox .swiper-slide-next .box {
  transform: translateX(11.5%);
}
.honorBox .swiper-slide-prev .box {
  transform: translateX(-11.5%);
}
.honorBox .swiper-slide-active .pic {
  transform: scale(1.2);
  transform-origin: center;
  margin-bottom: 0.4rem;
}
.honorBox .swiper-button {
  top: 45%;
}
.honorBox .swiper-button-next {
  right: 35.5%;
}
.honorBox .swiper-button-prev {
  left: 35.5%;
}
@media screen and (max-width: 768px) {
  .honorBox .swiper-button-next {
    right: 25.5%;
  }
  .honorBox .swiper-button-prev {
    left: 25.5%;
  }
}
@media screen and (max-width: 640px) {
  .honorBox .swiper {
    height: auto;
    width: 80%;
    margin: 0 auto;
  }
  .honorBox .pic {
    transform: scale(1);
  }
  .honorBox .swiper-slide-active .pic {
    transform: scale(1);
    transform-origin: center;
    margin-bottom: 0;
  }
  .honorBox .swiper-button-next {
    right: 0;
  }
  .honorBox .swiper-button-prev {
    left: 0;
  }
}
.Htitle {
  margin-bottom: 0.45rem;
}
.Htitle .en {
  color: #e8ebf2;
  font-size: var(--f62);
  line-height: 1;
  font-style: italic;
}
.Htitle .cn {
  color: var(--blue_color);
  font-size: var(--f42);
  margin-top: -7%;
}
.Hnews {
  padding: 0.8rem 0 1rem;
  background-color: #f1f4fb;
}
.Hnews .leftbox {
  width: calc(800 / 1600 * 100%);
}
.Hnews .leftbox .pic {
  position: relative;
  padding-top: calc(450 / 800 * 100%);
  overflow: hidden;
}
.Hnews .leftbox .textwarp {
  background-color: var(--white_color);
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0.3rem 0.2rem;
}
.Hnews .leftbox .time {
  display: inline-flex;
  line-height: 0.2rem;
  color: #999999;
  width: 0.7rem;
  background-color: var(--blue_color);
  color: var(--white_color);
  border-radius: 0.04rem;
  flex-flow: column wrap;
  justify-content: space-evenly;
  align-items: center;
  height: 0.7rem;
  font-size: var(--f14);
  text-align: center;
  flex-shrink: 0;
  margin-right: 0.2rem;
}
.Hnews .leftbox .time span {
  font-size: var(--f30);
}
.Hnews .leftbox .warp {
  flex: 1;
  min-width: 0;
}
.Hnews .leftbox .title {
  color: #000000;
  font-size: var(--f24);
  line-height: 1;
}
.Hnews .leftbox .des {
  color: #666666;
  line-height: calc(24 / 16);
  margin-top: 0.15rem;
}
.Hnews .leftbox .swiper-pagination {
  left: 0;
  top: 69%;
  width: 100%;
  bottom: auto;
}
.Hnews .leftbox .box:hover .title {
  color: var(--blue_color);
}
.Hnews .rightbox {
  width: calc(760 / 1600 * 100%);
}
.Hnews .rightbox .tab_nav {
  display: flex;
  flex-wrap: wrap;
}
.Hnews .rightbox .item_a {
  width: calc((100% - 0.13rem * 3) / 4);
  margin-right: 0.13rem;
  background-image: linear-gradient(0deg, #f1f4fb 0%, #ffffff 100%);
  min-height: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #333333;
  font-size: 0.2rem;
  position: relative;
}
.Hnews .rightbox .item_a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0.02rem;
  background-color: var(--blue_color);
}
.Hnews .rightbox .item_a:last-child {
  margin-right: 0;
}
.Hnews .rightbox .item_a.on {
  background: var(--blue_color);
  color: var(--white_color);
  font-size: var(--f24);
  font-weight: bold;
}
.Hnews .rightbox .tab_list {
  background-color: #fff;
  padding: 0.35rem 0.3rem 0.2rem;
  margin-bottom: 0.1rem;
}
.Hnews .rightbox .list {
  display: none;
}
.Hnews .rightbox .list .title {
  position: relative;
  padding-left: 0.14rem;
  background: url(../images/arrow.svg) no-repeat left center;
  background-size: 0.06rem;
  padding-right: 0.5rem;
}
.Hnews .rightbox .list .des {
  padding-left: 0.14rem;
  color: #666666;
  line-height: calc(24 / 16);
  margin-top: 0.1rem;
}
.Hnews .rightbox .list ol {
  padding-bottom: 0.15rem;
  border-bottom: 1px solid #e8ebf2;
}
.Hnews .rightbox .list .box {
  position: relative;
  display: block;
}
.Hnews .rightbox .list .box .more {
  position: absolute;
  right: 0;
  top: 0;
}
.Hnews .rightbox .list .box:hover .more {
  background-color: var(--yellow_color);
  border-color: var(--yellow_color);
}
.Hnews .rightbox .list li {
  margin: 0.19rem 0;
}
.Hnews .rightbox .list li .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.Hnews .rightbox .list li .title {
  flex: 1;
  min-width: 0;
  font-size: var(--f18);
}
.Hnews .rightbox .list li .time {
  flex-shrink: 0;
  color: #999999;
}
.Hnews .rightbox .more {
  display: inline-flex;
  width: 0.24rem;
  height: 0.24rem;
  border: 1px solid var(--blue_color);
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
}
.Hnews .rightbox .more::before {
  content: '';
  display: block;
  width: 0.08rem;
  height: 0.08rem;
  border: solid var(--blue_color);
  border-width: 1px 1px 0 0;
  transform: rotate(45deg);
  margin-left: -0.03rem;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
}
.Hnews .rightbox .more:hover {
  background-color: var(--yellow_color);
  border-color: var(--yellow_color);
}
@media (max-width: 1024px) {
  .Hnews .leftbox,
  .Hnews .rightbox {
    width: 100%;
  }
  .Hnews .rightbox {
    margin-top: 0.2rem;
  }
}
@media screen and (max-width: 640px) {
  .Hnews .leftbox .time {
    width: 1rem;
  }
  .Hnews .leftbox .swiper-pagination {
    top: 58%;
  }
}
.Hvideo {
  padding: 0.25rem 0.3rem 0.35rem;
  background-color: var(--white_color);
}
.Hvideo .title {
  margin-bottom: 0.15rem;
}
.Hvideo .title b {
  font-size: var(--f20);
}
.Hvideo .box {
  display: block;
  position: relative;
}
.Hvideo .pic {
  padding-top: calc(124 / 220 * 100%);
  position: relative;
  overflow: hidden;
}
.Hvideo .pic::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/play.svg) no-repeat center 43% rgba(0, 0, 0, 0.2);
  background-size: 0.3rem;
  z-index: 2;
}
.Hvideo .tit {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 0.1rem 0.25rem;
  color: var(--white_color);
  z-index: 3;
}
.Hbusiness {
  padding: 1rem 0 0;
  background: url(../images/business_bg.jpg) no-repeat center top;
  background-size: cover;
}
.Hbusiness .Htitle .en {
  color: #e8ebf2;
  opacity: 0.08;
}
.Hbusiness .Htitle .cn {
  color: #fff;
}
.Hbusiness .Hmore {
  color: var(--white_color);
}
.Hbusiness .Hmore i {
  border-color: var(--white_color);
  background-color: transparent;
}
.Hbusiness .Hmore i::before {
  border-color: var(--white_color);
}
.Hbusiness .Hmore:hover {
  color: var(--yellow_color);
}
.Hbusiness .Hmore:hover i {
  background-color: var(--yellow_color);
  border-color: var(--yellow_color);
}
.Hbusiness .Hmore:hover i::before {
  border-color: var(--blue_color);
}
.Hbusiness .item {
  width: calc(350 / 1600 * 100%);
  position: relative;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
}
.Hbusiness .box {
  position: relative;
  display: block;
}
.Hbusiness .pic {
  position: relative;
  padding-top: 7.2rem;
  overflow: hidden;
}
.Hbusiness .pic::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background-image: -moz-linear-gradient(90deg, rgba(15, 29, 55, 0.7) 0%, rgba(15, 29, 55, 0) 100%);
  background-image: -webkit-linear-gradient(90deg, rgba(15, 29, 55, 0.7) 0%, rgba(15, 29, 55, 0) 100%);
  background-image: -ms-linear-gradient(90deg, rgba(15, 29, 55, 0.7) 0%, rgba(15, 29, 55, 0) 100%);
}
.Hbusiness .textwarp {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  color: var(--white_color);
  min-height: 2.2rem;
  padding: 0 0.2rem 0.2rem;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
}
.Hbusiness .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.6rem;
  height: 0.6rem;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  border-radius: 100%;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
}
.Hbusiness .icon::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/business_icon.png) no-repeat center;
  background-size: 100% 100%;
}
.Hbusiness .icon img {
  max-width: 60%;
}
.Hbusiness .more {
  position: absolute;
  right: 0.8rem;
  top: 0.85rem;
  width: 0.5rem;
  height: 0.5rem;
  border: 0.02rem solid var(--white_color);
  border-radius: 100%;
  background: url(../images/arrow2.svg) no-repeat center;
  background-size: 0.12rem;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
  transform: translateX(-0.2rem);
}
.Hbusiness .title {
  font-size: var(--f30);
  margin: 0.1rem 0;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
}
.Hbusiness .des {
  font-size: var(--f18);
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
  opacity: 0;
  transform: translateY(0.1rem);
}
.Hbusiness .hover {
  width: calc(100% - (350 / 1600 * 100% * 2));
}
.Hbusiness .hover .textwarp {
  text-align: left;
  padding-left: 0.8rem;
  padding-right: 1.4rem;
}
.Hbusiness .hover .des {
  transform: translate(0);
  opacity: 1;
  transition-delay: 0.2s;
  margin-bottom:.5rem;
}
.Hbusiness .hover .more {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.3s;
}

.Hbusiness_ny{ background:none; padding:0;}
.Hbusiness_ny .icon::before{ display:none;}
.Hbusiness_ny .icon img {
  max-width: 100%;
}
@media (min-width: 1025px) {
    .Hbusiness_ny .list{ gap:2px; }
    .Hbusiness_ny .item{flex: 1;  transition: all .6s cubic-bezier(.4, 0, .2, 1);}
    .Hbusiness_ny .pic{ padding-top:5rem;}
    .Hbusiness_ny .pic::after{ height:100%; background-color: rgba(0, 10, 30, .5);}
    .Hbusiness_ny .item:hover{  flex: 4; transition: all .6s cubic-bezier(.4, 0, .2, 1);}
    .Hbusiness_ny .item:hover .textwarp{text-align: left;  padding-left: 0.8rem; padding-right: .8rem;}
    .Hbusiness_ny .item:hover .des{transform: translate(0); opacity: 1; transition-delay: 0.2s; margin-bottom:.5rem;}
}

@media (max-width: 1024px) {
  .Hbusiness .item {
    width: 33.33% !important;
  }
  .Hbusiness .item:nth-child(4),
  .Hbusiness .item:nth-child(5) {
    width: 50%!important;
  }
  .Hbusiness .textwarp {
    text-align: left;
    padding-left: 0.3rem !important;
    padding-right: 0.8rem !important;
  }
  .Hbusiness .des {
    transform: translate(0);
    opacity: 1;
    transition-delay: 0.2s;
  }
  .Hbusiness .more {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.3s;
    right: 0.2rem;
  }
  .Hbusiness .pic {
    padding-top: 5rem;
  }
}
@media screen and (max-width: 640px) {
  .Hbusiness .item {
    width: 100%!important;
  }
  .Hbusiness .item:nth-child(4),
  .Hbusiness .item:nth-child(5) {
    width: 100%!important;
  }
}
.Hparty {
  padding: 1rem 0 1.4rem;
  background: url(../images/HParty_bg.jpg) no-repeat center top;
  background-size: cover;
}
.Hparty .Htitle .en {
  color: #e8ebf2;
}
.Hparty .Htitle .cn {
  color: #e9001a;
}
.Hparty .leftbox {
  background: url(../images/HParty_bg2.jpg) no-repeat center bottom;
  background-size: cover;
  padding: 0.3rem;
  width: calc(1000 / 1600 * 100%);
}
.Hparty .leftbox ol {
  margin-bottom: 0.35rem;
  position: relative;
}
.Hparty .leftbox ol::before {
  content: '';
  position: absolute;
  width: 1.19rem;
  height: 0.87rem;
  background: url(../images/b1c.png) no-repeat center;
  background-size: contain;
  left: -0.3rem;
  top: -0.6rem;
}
.Hparty .leftbox ol .box {
  display: flex;
  position: relative;
}
.Hparty .leftbox ol .pic {
  width: calc(240 / 940 * 100%);
}
.Hparty .leftbox ol .pic i {
  display: block;
  overflow: hidden;
  padding-top: calc(160 / 240 * 100%);
  position: relative;
}
.Hparty .leftbox ol .textwarp {
  width: calc(670 / 940 * 100%);
  border-bottom: 1px solid #e8ebf2;
  padding-top: 0.2rem;
}
.Hparty .leftbox ol .textwarp .title {
  display: flex;
  align-items: center;
}
.Hparty .leftbox ol .textwarp .tit {
  font-size: 0.2rem;
}
.Hparty .leftbox ol .textwarp .label {
  width: 0.4rem;
  height: 0.2rem;
  background: url(../images/new.svg) no-repeat center;
  background-size: contain;
  color: var(--white_color);
  font-size: var(--f14);
  text-align: center;
  line-height: 0.18rem;
  margin-left: 0.1rem;
  transform: translateY(-0.1rem);
  flex-shrink: 0;
  margin-right: 0.1rem;
}
.Hparty .leftbox ol .textwarp .more {
  display: inline-flex;
  width: 0.24rem;
  height: 0.24rem;
  border: 1px solid var(--blue_color);
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
  margin-left: auto;
  flex-shrink: 0;
}
.Hparty .leftbox ol .textwarp .more::before {
  content: '';
  display: block;
  width: 0.08rem;
  height: 0.08rem;
  border: solid var(--blue_color);
  border-width: 1px 1px 0 0;
  transform: rotate(45deg);
  margin-left: -0.03rem;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
}
.Hparty .leftbox ol .textwarp .des {
  color: #666666;
  line-height: calc(24 / 16);
  margin: 0.1rem 0 0.1rem;
}
.Hparty .leftbox ol .textwarp .time {
  color: #999999;
}
.Hparty .leftbox li {
  margin: 0.15rem 0;
}
.Hparty .leftbox li:last-child {
  margin-bottom: 0;
}
.Hparty .leftbox li .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.Hparty .leftbox li .box:hover {
  color: #e9001a;
}
.Hparty .leftbox li .time {
  flex-shrink: 0;
  color: #999999;
}
.Hparty .leftbox li .title {
  position: relative;
  padding-left: 0.14rem;
  background: url(../images/arrow.svg) no-repeat left center;
  background-size: 0.06rem;
  padding-right: 0.5rem;
  flex: 1;
  min-width: 0;
  font-size: var(--f18);
}
.Hparty .leftbox li .des {
  padding-left: 0.14rem;
  color: #666666;
  line-height: calc(24 / 16);
  margin-top: 0.1rem;
}
.Hparty .rightbox {
  width: calc(560 / 1600 * 100%);
}
.Hparty .rightbox .item {
  width: 100%;
  height: 5rem;
  position: relative;
  padding: 0.8rem 0.4rem;
  background: url(../images/HParty_bg3.jpg) no-repeat center bottom;
  background-size: cover;
  font-size: var(--f24);
  line-height: calc(45 / 24);
}
.Hparty .rightbox .textwarp {
  background: linear-gradient(135deg, #fff, #fff, #fbf2d9, #fceca6, #fceca6, #fff, #fff, #fff, #fceca6, #fceca6, #fceca6, #fceca6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
  position: relative;
}
.Hparty .rightbox .textwarp::before,
.Hparty .rightbox .textwarp::after {
  content: '';
  position: absolute;
  width: 0.61rem;
  height: 0.49rem;
  background: url(../images/dou2.svg) no-repeat center;
  background-size: contain;
  left: -0.2rem;
  top: -0.25rem;
}
.Hparty .rightbox .textwarp::after {
  right: 0;
  left: auto;
  top: auto;
  bottom: -0.25rem;
  background-image: url(../images/dou3.svg);
}
@media screen and (max-width: 640px) {
  .Hparty .leftbox,
  .Hparty .rightbox {
    width: 100%;
  }
  .Hparty .rightbox {
    margin-top: 0.2rem;
  }
  .Hparty .leftbox ol .pic {
    width: 100%;
  }
  .Hparty .leftbox ol .textwarp {
    width: 100%;
    margin-top: 0.2rem;
    padding-bottom: 0.2rem;
  }
}

main.pt120{ padding-top:.8rem;}

#content {
    scroll-margin-top: 1rem;
}

.business_tab .more{display: inline-flex; min-width: 1.4rem; line-height: .46rem; border: 1px solid var(--blue_color);  align-items: center;  justify-content: center; color: var(--blue_color);  border-radius: .25rem;  margin-top: .5rem;}
.business_tab .more:hover{ background-color:var(--blue_color);color:#fff;}

.job_top{ margin-bottom: .6rem; padding:1.2rem 0;background-size: cover; background-repeat:no-repeat;}
.job_top .pic{ width:calc(755 / 1440 * 100%);}
.job_top .textwarp{ flex:1; padding-left:.8rem; font-size:var(--f24); color:#333333; }
.job_top .title{ font-size:var(--f42); margin-bottom:.35rem;}
@media screen and (max-width: 640px) {
    .job_top .pic{ width:100%;}
    .job_top .textwarp{ width:100%; flex:auto; padding:.3rem;}
}

.job_list_pic{ display:flex; justify-content:space-between; flex-wrap:wrap;}
.job_list_pic li{ width:48%;}
.job_list_pic li .pic{ position:relative; overflow:hidden;padding-top: calc(124 / 220 * 100%);}

.news_Introduction{ margin-bottom:.8rem;}
.news_Introduction_part{ padding:1rem 0; background-size:cover; background-repeat:no-repeat;}
.news_Introduction .left {
  width: calc(400 / 1440 * 100%);
}
.news_Introduction .left img{ width:100%;}
.news_Introduction .right {
  width: calc(990 / 1440 * 100%);
  
}
.news_Introduction_part{ margin-bottom:1rem;}
.news_Introduction_part .right{position:relative;width: calc(950 / 1440 * 100%);
  padding-right:2.1rem;font-size: var(--f20); line-height:calc(36 / 20); color:#342c2a; z-index:1;}
.news_Introduction_part .right .icon{ position:absolute; right:.2rem; top:50%; transform:translateY(-50%); width:1.36rem; z-index:-1;}
.news_Introduction .top {
  margin-bottom: 0.7rem;
}
.news_Introduction .top .right {
  color: #333333;
  line-height: 2;
  font-size: var(--f18);
  text-indent: 2em;
}
@media screen and (max-width: 640px) {
    .news_Introduction .left {
    width:100%;
    }
    .news_Introduction .right {
  width: 100%; padding:.3rem 0;
}
}

.left_fixed{ position:fixed; left:0; bottom:0; width:3.5rem; z-index:10;}
.left_fixed img{ width:100%;}
.left_fixed .close{ position: absolute; right: 0; top: 0; width: .3rem; height: .3rem; background: rgba(0, 0, 0, .3); cursor:pointer;}
.left_fixed .close:before,
.left_fixed .close:after{ content:''; position:absolute; left:50%; top:50%; width:1px; height:90%; background-color:#fff; transform:translate(-50%,-50%) rotate(45deg); }
.left_fixed .close:after{ transform:translate(-50%,-50%) rotate(-45deg);}