/*全局初始化样式*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
table {
    width: 100%;
    border-collapse:collapse;
    border-spacing: 0; /*去掉单元格间隙*/
}
body {
  position: relative;
  padding: 0;
  margin: 0 auto;
  font-size: .16rem;
  font-family: '微软雅黑';
  line-height: 1.4;
  min-width: 320px;
  width: 100%;
  zoom: 1;
  background: #fff;
  /*禁用Webkit内核浏览器的文字大小调整功能*/
  -webkit-text-size-adjust: none;
  /*取出点击出现半透明的灰色背景*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight: rgba(0, 0, 0, 0);
  /*设置字体的抗锯齿或者说光滑度*/
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
* {
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*word-break: break-all;*/
  word-wrap: break-word;
}
/*默认去除ul、li的默认样式*/
.p,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin: 0;
  padding: 0;
}
.ul,
.ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
ul,
ul li,
dl,
dl dt,
dl dd {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*初始化下拉菜单、单行输入框、多行输入框的样式*/
select,
input,
textarea {
  border-radius: 0;
  -webkit-border-radius: 0;
  color: #333;
}
/*表单元素获得焦点时不显示虚线框*/
input:focus {
  outline: none;
}
input,
button,
select,
textarea {
  outline: none;
  /*-webkit-appearance:none;*/
  /*强制去除表单自带的样式*/
}
/*不允许多行输入文本框有滚动条*/
textarea {
  resize: none;
  /*-webkit-appearance:none;*/
  /*强制去除textarea自带的样式*/
}
/*初始化表单元素样式*/
textarea,
input,
select {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
}
/*初始化HTML5标签样式*/
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
article,
aside,
footer,
header,
hgroup,
nav,
section,
figure,
figcaption {
  display: block;
}
/*去除figure边距*/
figure,
figcaption {
  margin: 0px;
  padding: 0px;
}
/*初始化图片样式*/
img {
  border: none;
  border: 0;
  max-width: 100%;
  vertical-align: middle;
}
/*初始化a的样式和字体样式*/
a {
  color: #333;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
em {
  font-style: normal;
}
/*清除浮动*/
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
  clear: both;
  font-size: 0px;
}
.clearfix {
  zoom: 1;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.w14 {
  width: 14rem;
  margin: 0 auto;
}
/* 滚动条 */
/* * {scrollbar-width: thin;scrollbar-color: #8b8b8b;} */
*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
*::-webkit-scrollbar-thumb {
  background: #8b8b8b;
  border-radius: 3px;
}
.animHide {
  opacity: 0;
}
.animated {
  visibility: visible;
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes move {
  0% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(10px);
  }
}
@keyframes menu_animation {
  0% {
    opacity: 0;
    transform: scale(0.04) translateY(300%);
  }
  40% {
    transform: scale(0.04) translateY(0);
    transition: ease-out;
  }
  40% {
    transform: scale(0.04) translateY(0);
  }
  60% {
    opacity: 1;
    transform: scale(0.02) translateY(0);
  }
  61% {
    opacity: 1;
    transform: scale(0.04) translateY(0);
  }
  99.9% {
    opacity: 1;
    height: 0;
    padding-bottom: 100%;
    border-radius: 100%;
  }
  100% {
    opacity: 1;
    transform: scale(2) translateY(0);
    height: 100%;
    padding-bottom: 0;
    border-radius: 0;
  }
}
@keyframes gradient {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 100%;
  }
}
@keyframes ripple {
  0% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.5);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.75);
    opacity: 0;
  }
}
@keyframes ripple2 {
  0% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
@keyframes spin {
  100% {
    transform: rotate(1turn);
  }
}
@keyframes spin2 {
  100% {
    transform: rotate(-1turn);
  }
}
/*** 公共颜色 ***/
.blue {
  color: #0184d4;
}
.blue {
  color: #4da8df;
}
.gray {
  color: #4b4c4d;
}
.bgColor {
  background: #f2f2f2;
}
.bgColor2 {
  background: #f9f9f9;
}
.font14 {
  font-size: 0.14rem;
}
.font15 {
  font-size: 0.15rem;
}
.font16 {
  font-size: 0.16rem;
}
.font17 {
  font-size: 0.17rem;
}
.font18 {
  font-size: 0.18rem;
}
.font19 {
  font-size: 0.19rem;
}
.container {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
/* .wrapper {
  flex: 1;
} */
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  height: 1.06rem;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.logo {
  margin-left: 10%;
  width: 1.97rem;
  float: left;
  padding-top: 0.1rem;
}
.logo img {
  width: 100%;
}
.sjlogo {
  width: 1.77rem;
  display: none;
}
.sjlogo img {
  width: 100%;
}
.head_nav {
  float: right;
  display: flex;
  align-items: center;
}
.head_nav li {
  padding: 0 0.25rem;
}
.head_nav a {
  display: block;
  color: #fff;
  font-weight: bold;
  font-size: 0.18rem;
  position: relative;
  padding: 0.52rem 0 0.27rem;
}
.head_nav a:after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  background: #fff;
  width: 0;
  bottom: 0.19rem;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.head_nav a:hover:after,
.head_nav a.active:after {
  width: 100%;
}
.head_func {
  display: flex;
  align-items: center;
  padding-top: 0.22rem;
  height: 100%;
  float: right;
}
.head_func .langua {
  color: #fff;
  font-size: 18px;
  position: relative;
  cursor: pointer;
  padding-right: 0.16rem;
  line-height: 0.22rem;
  border-right: 1px solid #fff;
}
.head_func .langua i {
  font-size: 19px;
}
.head_func .seah {
  padding: 0.02rem 0.16rem;
  color: #fff;
  height: 0.24rem;
  line-height: 0.22rem;
  cursor: pointer;
}
.head_func .seah i {
  font-size: 24px;
}
#menu_btn {
  width: 1.06rem;
  height: 1.06rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.19);
  cursor: pointer;
  margin-left: 6%;
  position: relative;
  z-index: 100;
  float: right;
}
#menu_btn span {
  position: relative;
  width: 42px;
  height: 4px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  background: #fff;
}
#menu_btn span:before,
#menu_btn span:after {
  content: '';
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 4px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  background: #fff;
}
#menu_btn span:before {
  top: 15px;
}
#menu_btn span:after {
  top: -15px;
}
#menu_btn.active span {
  background: transparent;
}
#menu_btn.active span:before {
  top: 0;
  transform: rotate(45deg);
}
#menu_btn.active span:after {
  top: 0;
  transform: rotate(-45deg);
}
header.active {
  background: #fff;
}
header.active .head_nav a {
  color: #333;
}
header.active .head_nav a:after {
  background: #0184d4;
}
header.active .head_func .langua {
  color: #999;
  border-right-color: #999;
}
header.active .head_func .seah {
  color: #999;
}
header.active #menu_btn {
  background: #0184d4;
}
header.sticky {
  position: sticky;
  background: #fff;
  border-bottom: 1px solid #DDDDDD;
}
header.sticky .head_nav a {
  color: #333;
}
header.sticky .head_nav a:after {
  background: #0184d4;
}
header.sticky .head_func .langua {
  color: #999;
  border-right-color: #999;
}
header.sticky .head_func .seah {
  color: #999;
}
header.sticky #menu_btn {
  background: #0184d4;
}
.model {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10600;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.model span {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
  font-size: 72px;
  text-align: center;
  overflow: hidden;
  color: #fff;
  z-index: 10;
}
.model .search_box {
  width: 6rem;
  height: 0.6rem;
  overflow: hidden;
  background: #fff;
  border-radius: 5px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 9;
  margin: -0.3rem 0 0 -3rem;
  transition: all 0.4s linear;
  -webkit-transition: all 0.4s linear;
  display: flex;
}
.model .search_box input {
  flex: 1;
  height: 100%;
  line-height: 1;
  color: #333;
  font-size: 0.16rem;
  padding: 0 0.2rem;
}
.model .search_box input::placeholder {
  color: #999;
}
.model .search_box input::-webkit-placeholder {
  color: #999;
}
.model .search_box .btn {
  width: 0.6rem;
  height: 100%;
  background: #0184d4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.model .search_box .btn i {
  font-size: 0.3rem;
}
.model .search_box .btn:hover {
  opacity: 0.9;
}
.model:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.87);
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  border-radius: 100%;
  transform: scale(0.04) translateY(9999px);
  overflow: hidden;
  z-index: 9;
}
.model.show {
  display: block;
}
.model.show::before {
  animation: menu_animation 0.8s ease-out forwards;
  transform: scale(2) translateY(0);
}
.ban_swiper {
  width: 100%;
  height: 100vh;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  transition: all 2.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition: all s cubic-bezier(0.165, 0.84, 0.44, 1);
  clip-path: circle(0vw at 50vw 50vh);
  -webkit-clip-path: circle(0vw at 50vw 50vh);
}
.ban_swiper .swiper-slide {
  width: 100%!important;
  overflow: hidden;
}
.ban_swiper .img_box {
  display: block;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
}
.ban_swiper .ban_btm {
  position: absolute;
  right: 0.63rem;
  z-index: 11;
  top: 33%;
}
.ban_swiper .ban_btm .down {
  color: #fff;
  font-size: 0.14rem;
  text-align: center;
  transform-origin: center top;
  animation: move 2s linear infinite;
}
.ban_swiper .ban_btm .down i {
  font-size: 0.45rem;
  display: block;
  margin: 0.1rem auto 0;
}
.ban_swiper .ban_btm .down span {
  writing-mode: vertical-rl;
}
.ban_swiper .swiper-pagination-bullet {
  display: block;
  border: 1px solid #fff;
  width: 0.1rem;
  height: 0.1rem;
  background: transparent;
  opacity: 1;
  position: relative;
  margin: 0.35rem auto;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ban_swiper .swiper-pagination-bullet:before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  width: 1px;
  height: 0.23rem;
  top: 0.15rem;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ban_swiper .swiper-pagination-bullet-active {
  width: 0.26rem;
  height: 0.26rem;
}
.ban_swiper .swiper-pagination-bullet-active:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: url(../image/ico1.png) no-repeat center / 100% 100%;
  width: 0.12rem;
  height: 0.14rem;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.ban_swiper .swiper-pagination-bullet-active:before {
  top: 0.3rem;
}
.ban_swiper .swiper-pagination-bullet:last-child {
  margin: 0.35rem auto 0;
}
.ban_swiper .swiper-pagination-bullet:last-child:before {
  display: none;
}
.ban_swiper.active {
  -webkit-transform: scale(1);
  transform: scale(1);
  clip-path: circle(70vw at 50vw 50vh);
  -webkit-clip-path: circle(70vw at 50vw 50vh);
}
.navigate {
  background: #fff;
  width: 0;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -ms-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
}
.navigate::before {
  content: '';
  width: 0;
  height: 100%;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  background: #0184d4;
  z-index: -2;
  visibility: hidden;
  transform-origin: left top;
  animation: gradient 2s ease infinite;
  animation-direction: alternate;
  -webkit-transition: all 0.9s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 0.9s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.9s cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
  pointer-events: none !important;
}
.navigate_mark {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
}
.navigate_list {
  width: 100%;
  height: 100%;
  position: fixed;
  padding: 1.8rem 0 0.8rem;
}
.navigate_list .w14 {
  height: 100%;
  overflow-y: auto;
  display: flex;
  justify-content: space-between;
}
.navigate_list .navi_l {
  height: 100%;
  width: 59%;
}
.navigate_list .navi_l > ul {
  width: 100%;
}
.navigate_list .navi_l .drop {
  position: absolute;
  left: 3.4rem;
  top: 0.05rem;
  z-index: 9;
}
.navigate_list .navi_l .drop:before {
  content: '';
  position: absolute;
  opacity: 0;
  height: 1px;
  width: 0;
  background: #fff;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  top: 0.12rem;
  left: -0.6rem;
}
.navigate_list .navi_l .drop .sub_item {
  opacity: 0;
  display: grid;
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -ms-transition: 0.8s;
  -o-transition: 0.8s;
  transition: 0.8s;
}
.navigate_list .navi_l .drop .sub_item a {
  display: block;
  font-size: 0.18rem;
  padding-bottom: 0.22rem;
  color: rgba(255, 255, 255, 0.5);
  opacity: 0;
}
.navigate_list .navi_l .drop .sub_item a:last-child {
  padding: 0;
}
.navigate_list .navi_l .drop .sub_item a:nth-child(1) {
  transition-delay: 0.1s;
}
.navigate_list .navi_l .drop .sub_item a:nth-child(2) {
  transition-delay: 0.2s;
}
.navigate_list .navi_l .drop .sub_item a:nth-child(3) {
  transition-delay: 0.3s;
}
.navigate_list .navi_l .drop .sub_item a:nth-child(4) {
  transition-delay: 0.4s;
}
.navigate_list .navi_l .drop .sub_item a:nth-child(5) {
  transition-delay: 0.5s;
}
.navigate_list .navi_l .drop .sub_item a:nth-child(6) {
  transition-delay: 0.6s;
}
.navigate_list .navi_l .drop .sub_item a:nth-child(7) {
  transition-delay: 0.7s;
}
.navigate_list .navi_l .drop .sub_item a:nth-child(n+8) {
  transition-delay: 0.7s;
}
.navigate_list .navi_l .drop .sub_item a:hover,
.navigate_list .navi_l .drop .sub_item a.on {
  color: #fff;
}
.navigate_list .navi_l .drop.m_hover::before {
  opacity: 1;
  width: 0.59rem;
}
.navigate_list .navi_l .drop.m_hover .sub_item {
  opacity: 1;
  transform: translateX(20px);
}
.navigate_list .navi_l .drop.m_hover .sub_item a {
  opacity: 1;
}
.navigate_list .navi_l .item {
  position: relative;
  padding-bottom: 0.48rem;
}
.navigate_list .navi_l .item:last-child {
  padding: 0;
}
.navigate_list .navi_l .item > a {
  display: inline-block;
  position: relative;
  color: #4da8df;
  font-size: 0.36rem;
  font-weight: bold;
  line-height: 1;
  min-width: 3.4rem;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.navigate_list .navi_l .item:hover > a,
.navigate_list .navi_l .item.on > a {
  color: #fff;
}
.navigate_list .navi_r {
  width: 41%;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 0.65rem;
  height: 88%;
  -webkit-animation: mfadeIn 1s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.8s 1 both;
  animation: mfadeIn 1s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0.8s 1 both;
  padding-top: 0.6rem;
}
.navigate_list .navi_r li {
  padding-bottom: 0.4rem;
}
.navigate_list .navi_r li:last-child {
  padding: 0;
}
.navigate_list .navi_r li .tit {
  color: #fff;
  font-size: 0.2rem;
  padding-bottom: 0.28rem;
}
.navigate_list .navi_r li p {
  display: flex;
  font-size: 0.15rem;
  line-height: 0.3rem;
  color: #fff;
}
.navigate_list .navi_r li p span {
  color: #97bad6;
  margin-right: 0.26rem;
}
.navigate_list .navi_r li p img {
  width: 0.12rem;
  margin-right: 0.1rem;
}
.navigate_list .navi_r .ewm_box {
  display: flex;
  margin-top: 0.86rem;
}
.navigate_list .navi_r .ewm_box .item {
  width: 25%;
  margin-right: 0.25rem;
}
.navigate_list .navi_r .ewm_box .item:last-child {
  margin-right: 0;
}
.navigate_list .navi_r .ewm_box .item img {
  width: 100%;
}
.navigate_list .navi_r .ewm_box .item p {
  color: #fff;
  text-align: center;
  line-height: 1.4;
  padding-top:.1rem;
}
.navigate.show {
  width: 100%;
  visibility: visible;
  opacity: 1;
}
.navigate.show::before {
  width: 100%;
  opacity: 1;
  visibility: visible;
}
.more {
  display: flex;
  align-items: center;
  color: #666;
  font-size: 0.16rem;
  line-height: 0.29rem;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.more i {
  font-size: 0.2rem;
  margin-left: 0.05rem;
}
.more:hover {
  color: #0184d4;
  transform: translateX(10px);
}
.homeF1 {
  width: 100vw;
  height: 100vh;
  background: url(../image/bg1.jpg) no-repeat center;
  background-size: cover;
  padding-top: 1.3rem;
  position: relative;
  z-index: 2;
}
.homeF1 .mess {
  position: absolute;
  right: 0.42rem;
  top: 80%;
  border-radius: 50%;
  background: #0184d4;
  width: 0.62rem;
  height: 0.62rem;
  text-align: center;
  line-height: 0.62rem;
}
.homeF1 .mess img {
  width: 0.3rem;
}
.homeF1 .mess::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 100%;
  background: #e6f6ff;
  z-index: -1;
  animation-delay: 0.3s;
  -webkit-animation-delay: 0.3s;
  animation: ripple2 1.6s linear infinite;
  -webkit-animation: ripple2 1.6s linear infinite;
}
.homeF1 .hd {
  padding-top: 0.24rem;
  display: flex;
  justify-content: space-between;
}
.homeF1 .hd_l {
  width: 50%;
  height: 3.9rem;
  position: relative;
  z-index: 2;
}
.homeF1 .hd_l .bg1 {
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 0% 0, 0% 100%, 0% 100%);
  clip-path: polygon(0 0, 0% 0, 0% 100%, 0% 100%);
  transition: clip-path 1.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition: clip-path 1.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.homeF1 .hd_l .bg2 {
  position: absolute;
  right: -0.28rem;
  bottom: -0.48rem;
  width: 2.31rem;
  height: 1.46rem;
  -webkit-clip-path: polygon(0 0, 0% 0, 0% 100%, 0% 100%);
  clip-path: polygon(0 0, 0% 0, 0% 100%, 0% 100%);
  transition: clip-path 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
  -webkit-transition: clip-path 1s cubic-bezier(0.215, 0.61, 0.355, 0.2s) 2s;
}
.homeF1 .hd_l:after {
  content: '';
  position: absolute;
  right: -0.49rem;
  bottom: -0.26rem;
  z-index: -1;
  background: #e6f6ff;
  width: 2.28rem;
  height: 1.82rem;
  opacity: 0;
  transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
  -webkit-transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}
.homeF1 .hd_r {
  width: 50%;
  padding-left: 1.58rem;
  opacity: 0;
  transform: translateX(200px);
  transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.homeF1 .hd_r .scroll {
  height: 3.98rem;
  overflow-y: auto;
}
.homeF1 .hd_r .tit {
  line-height: 1.2;
  font-size: 0.34rem;
  color: #0184d4;
  padding-bottom: 0.2rem;
  font-weight: 400;
}
.homeF1 .hd_r p {
  font-size: 0.16rem;
  color: #666;
  line-height: 0.29rem;
}
.homeF1 .bd {
  padding-top: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(200px);
  transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.homeF1 .bd .item {
  width: 33.3%;
  position: relative;
  padding-left: 1.54rem;
}
.homeF1 .bd .item p {
  font-size: 0.18rem;
  color: #666;
}
.homeF1 .bd .item p:first-child {
  padding-bottom: 0.18rem;
}
.homeF1 .bd .item span {
  line-height: 0.9rem;
  font-size: 0.7rem;
  font-weight: normal;
  font-family: 'Bahnschrift';
  letter-spacing: -2px;
  display: inline-block;
  position: relative;
  color: #000;
  margin-left: -0.05rem;
}
.homeF1 .bd .item span:first-child:before {
  content: '';
  position: absolute;
  left: 0.1rem;
  bottom: 0;
  width: 0.23rem;
  height: 0.05rem;
  background: #0184d4;
}
.homeF1 .bd .item:after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 0.95rem;
  background: #e2e2e2;
}
.homeF1 .bd .item:last-child:after {
  display: none;
}
.homeF1.active .hd_l .bg1 {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.homeF1.active .hd_l .bg2 {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.homeF1.active .hd_l:after {
  opacity: 1;
}
.homeF1.active .hd_r {
  opacity: 1;
  transform: translateX(0);
}
.homeF1.active .bd {
  opacity: 1;
  transform: translateX(0);
}
.homeF1 .sjbd {
  display: none;
}
.homeF2 {
  width: 100%;
  height: 100vh;
  display: flex;
}
.homeF2 .tit {
  display: none;
  text-align: center;
  font-size: 0.44rem;
  font-weight: normal;
}
.homeF2 .tit a {
  position: relative;
  display: inline-block;
  padding-bottom: 0.24rem;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.homeF2 .tit a:after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 0.42rem;
  height: 0.05rem;
  background: #0184d4;
}
.homeF2 .tab_swiper {
    display:none;
    width: 100%;
    padding-bottom: 1.4rem;
}
.homeF2 .box {
  width: 2.26rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
}
.homeF2 .box .img {
  width: 100%;
  height: 100vh;
}
.homeF2 .box .img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.homeF2 .inbox {
  background: url(../image/bg7.png) no-repeat center;
  background-size: cover;
  width: 58%;
  height: 2.56rem;
  position: absolute;
  padding: 0.4rem 0.64rem;
  left: 50%;
  margin-left: -29%;
  bottom: 0.88rem;
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -ms-transition: 0.8s;
  -o-transition: 0.8s;
  transition: 0.8s;
  transition-delay: 0.4s;
  opacity: 0;
  transform: translateY(100%);
}
.homeF2 .inbox .scroll {
  height: 1.5rem;
  overflow-y: auto;
}
.homeF2 .inbox .t {
  color: #0184d4;
  font-size: 0.44rem;
  padding-bottom: 0.14rem;
  white-space: nowrap;
  word-wrap: break-word;
  word-break: break-all;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
}
.homeF2 .inbox p {
  font-size: 0.18rem;
  color: #666;
  line-height: 0.31rem;
}
.homeF2 .inbox .more {
  color: #0184d4;
  margin-top: 0.18rem;
}
.homeF2 .box.act {
  width: 14.27rem;
}
.homeF2 .box.act .inbox {
  opacity: 1;
  transform: translateY(0);
}
.homeF2.active .box {
  opacity: 1;
}
.xwlist {
  display: flex;
  flex-wrap: wrap;
  padding-top: 1.12rem;
}
.xwlist li {
  width: 33.33%;
  margin-bottom: 0.5rem;
}
.xwlist li a {
  display: block;
  margin:0 .2rem;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.xwlist .pic{
    padding-top:63%;
    height:0;
    position:relative;
    overflow:hidden;
}
.xwlist .pic img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    transition: .5s;
    -ms-transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    -o-transition: .5s;
}

.xwlist .txt {
    padding:.26rem .32rem .08rem;
    background:#f8f8f8;
}
.xwlist .tit{
    font-size:.2rem;
    line-height:1.6;
    height:3em;
    color:#333;
    font-weight:400;
    margin-bottom: .4rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.xwlist .info{
    border-top: 1px solid #eaeaea;
    font-size: .14rem;
    font-family: arial;
    color: #666;
    line-height: 1.5;
    padding: .15rem 0 .1rem;
    overflow: hidden;
}
.xwlist .info span{
    float:left;
    margin-right:.33rem;
    padding-left:.28rem;
    background-position:left center;
    background-repeat:no-repeat;
}
.xwlist .info .date{
    background-image:url(../image/i-33.png);
}
.xwlist .info .num{
    background-image:url(../image/i-34.png)

}
.xwlist a:hover{
    box-shadow:0 20px 32px 0 rgba(0,0,0,.1)
}
.xwlist a:hover .pic img{
    -webkit-transform:scale(1.08);
    -moz-transform:scale(1.08);
    -o-transform:scale(1.08);
    -ms-transform:scale(1.08);
    transform:scale(1.08)
}
.homeF3 {
  background: url(../image/bg8.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  padding-top: 1.6rem;
}
.homeF3 .t {
  text-align: center;
  font-size: 0.44rem;
  font-weight: normal;
  opacity: 0;
  transform: translateY(200px);
  transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.homeF3 .t a {
  position: relative;
  display: inline-block;
  padding-bottom: 0.14rem;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.homeF3 .t a:after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 0.42rem;
  height: 0.05rem;
  background: #0184d4;
}
.homeF3 .t a:hover {
  color: #0184d4;
}
.homeF3 .xwlist li {
  opacity: 0;
  transform: translateY(200px);
  transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  -webkit-transition: all 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.homeF3.active .t {
  opacity: 1;
  transform: translateY(0);
}
.homeF3.active .xwlist li {
  opacity: 1;
  transform: translateY(0);
}
.homeF3.active .xwlist li:nth-child(2) {
  transition-delay: 0.2s;
}
.homeF3.active .xwlist li:nth-child(3) {
  transition-delay: 0.3s;
}
.homeF3.active .xwlist li:nth-child(4) {
  transition-delay: 0.4s;
}
.fp-watermark {
  display: none!important;
}
.section5 {
  height: auto!important;
}
footer {
  position: relative;
  z-index: 2;
  background: #0667b8 url(../image/bg10.jpg) no-repeat center;
  background-size: cover;
}
footer:before,
footer:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 0.05rem;
}
footer:before {
  width: 60%;
  background: #0184d4;
}
footer:after {
  z-index: 2;
  width: 36%;
  background: #00bff2;
}
footer .hd {
  padding-top: 0.52rem;
  width: 14rem;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding-bottom: 0.1rem;
}
footer .hd .tit {
  color: #fff;
  font-size: 0.2rem;
  min-width:26%;
}
footer .hd .hd_l{
    width:24%;
}
footer .hd .ewm_box {
  display: flex;
  justify-content:space-around;
}
footer .hd .ewm_box .item {
  width: 30%;
}
footer .hd .ewm_box .item img {
  width: 100%;
}
footer .hd .ewm_box .item p {
  color: #fff;
  text-align: center;
  line-height: 1.2;
  font-size: 0.16rem;
  padding-top:.1rem;
}
footer .hd_r {
  width:100%;
  display:flex;
  justify-content:center;
}
footer .hd_r li{
  display:flex;
  padding-bottom: 0.14rem;
  width:48%;
}
footer .hd_r li .con{
    display:inline-flex;
    flex:1;
    justify-content:end;
}
footer .hd_r p {
  display: flex;
  font-size: 0.15rem;
  line-height: 0.3rem;
  color: #fff;
  max-height: 1.5rem;
  overflow-y: auto;
  padding-right:.2rem;
  min-width:30%;
}
footer .hd_r p::-webkit-scrollbar-thumb{
    background:rgba(255,255,255,.7);
}
footer .hd_r p span {
  color: #97bad6;
  margin-right: 0.1rem;
}
footer .hd_r p em {
  font-style: normal;
}
footer .hd_r p em img {
  width: 0.12rem;
  margin-right: 0.05rem;
}
footer .hd_r p a {
  display: block;
  color: #fff;
  font-size: 0.15rem;
  line-height: 1.4;
  padding:.08rem 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
footer .hd_r p a:hover {
  color: #00bff2;
}
footer .hd_r .col {
  display: block;
}
footer .bd {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.18rem 0;
  text-align: center;
}
footer .bd a {
  color: #97bad6;
  font-size: 0.15rem;
}
footer .bd a:hover {
  color: #fff;
}
footer .bd .ico1 {
  width: 0.15rem;
}
footer .bd .ico2 {
  width: 1.09rem;
}
.sjfooot {
  display: none;
  position: relative;
  z-index: 2;
}
.sjfooot::before,
.sjfooot::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 0.05rem;
  width: 60%;
  background: #0184d4;
}
.sjfooot::before {
  width: 40%;
  background: #00bff2;
  z-index: 1;
}
.sjfooot .hd {
  background: #0667b8 url(../image/footBj.jpg) no-repeat center;
  background-size: cover;
  padding: 0.5rem 0.6rem;
}
.sjfooot .hd .ewm_box {
  display: flex;
  justify-content: space-between;
  padding: 0 0.4rem;
  margin-bottom: 0.36rem;
}
.sjfooot .hd .ewm_box .item {
  color: #fff;
  width: 30%;
  text-align: center;
}
.sjfooot .hd .ewm_box .item img {
  width: 100%;
}
.sjfooot .hd .ewm_box .item p {
  line-height: 1.5;
  font-size: 0.24rem;
  padding-top: 0.1rem;
}
.sjfooot .hd_cen {
  color: #fff;
  font-size: 0.26rem;
}
.sjfooot .hd_cen .con {
  padding: 0.1rem 0;
}
.sjfooot .hd_cen .con p {
  padding: 0.1rem 0;
}
.sjfooot .hd_cen .con span {
  color: #97bad6;
  padding-right: 0.3rem;
}
.sjfooot .hd_cen .bord {
  padding-bottom: 0.16rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}
.sjfooot .hd .drop {
  background: rgba(255, 255, 255, 0.13);
  margin-top: 0.24rem;
  position: relative;
}
.sjfooot .hd .drop_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 0.7rem;
  color: #fff;
  font-size: 0.24rem;
  padding: 0 0.32rem;
}
.sjfooot .hd .drop_item span {
  max-width: 80%;
}
.sjfooot .hd .drop_item i {
  font-size: 0.3rem;
  color: #83aed2;
}
.sjfooot .hd .drop_menu {
  position: absolute;
  left: 0;
  bottom: 0.73rem;
  width: 100%;
  height: 3rem;
  background: #fff;
  overflow-y: auto;
  display: none;
}
.sjfooot .hd .drop_menu a {
  display: block;
  line-height: 0.5rem;
  padding: 0.08rem 0.2rem;
  color: #323232;
  font-size: 0.24rem;
}
.sjfooot .bd {
  background: #fff;
  text-align: center;
  font-size: 0.24rem;
  color: #323232;
  padding: 0.16rem 0.24rem;
}
.bannerNy {
  width: 100%;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.bannerNy img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.bannerNy .topinf {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.3rem;
}
.crumb {
  color: #fff;
  display: flex;
  align-items: center;
  line-height: 0.52rem;
}
.crumb i {
  font-size: 0.18rem;
}
.crumb a {
  font-size: 0.16rem;
  color: #fff;
  padding-left: 0.3rem;
  position: relative;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.crumb a:before {
  content: '';
  position: absolute;
  width: 0.06rem;
  height: 0.06rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  left: 0.1rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.crumb a:hover {
  color: #0184d4 !important;
}
.crumb_bg .crumb {
  color: #999;
}
.crumb_bg .crumb a {
  color: #333;
}
.crumb_bg .crumb a:before {
  border-color: #333;
}
.nav {
  display: flex;
  background: rgba(0, 0, 0, 0.3);
  margin-top: 0.28rem;
}
.nav a {
  width: calc(100% / 3);
  height: 0.5rem;
  text-align: center;
  color: #fff;
  line-height: 0.5rem;
  font-size: 0.18rem;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
.nav a:before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 0.14rem;
  background: rgba(255, 255, 255, 0.41);
}
.nav a:after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  background: #0184d4;
  width: 0;
  bottom: 0;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.nav a:last-child:before {
  display: none;
}
.nav a:hover,
.nav a.on {
  font-weight: bold;
}
.nav a:hover:after,
.nav a.on:after {
  width: 100%;
}
.hov_btn {
  position: relative;
  width: 0.3rem;
  height: 0.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  border: 1px solid #c7c7c7;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  color: #c7c7c7;
  z-index: 2;
}
.hov_btn i {
  font-size: 0.14rem;
  width: 0.14rem;
  height: 0.14rem;
  line-height: 0.14rem;
}
.hov_btn:before,
.hov_btn:after {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 100%;
  border: 1px solid transparent;
  z-index: -1;
}
.hov_btn:hover {
  border-color: #075691;
  color: #075691;
}
.hov_btn:hover:before {
  border: 1px solid rgba(7, 86, 145, 0.5);
  animation: ripple 2s linear infinite;
  -webkit-animation: ripple 2s linear infinite;
}
.hov_btn:hover:after {
  border: 1px solid rgba(7, 86, 145, 0.2);
  animation: ripple 2s linear 1s infinite;
  -webkit-animation: ripple 2s linear 1s infinite;
}
.sec_nav {
  background: #fff;
  width: 100%;
  height: 1.43rem;
}
.sec_nav .sec_swiper {
  width: 14rem;
  margin: 0 auto;
  height:100%;
}
.sec_nav .sec_swiper .swiper-slide {
  cursor: pointer;
  width: auto!important;
  margin-right: 1rem!important;
}
.sec_nav .sec_swiper .swiper-slide:last-child {
  margin-right: 0.3rem !important;
}
.sec_nav .box {
  padding: 0 0.2rem;
  height:100%;
  display:block;
  overflow: hidden;
}
.sec_nav .box .img_box {
  width: 0.34rem;
  height: 0.45rem;
  margin: 0.34rem auto 0;
  position: relative;
}
.sec_nav .box .img_box img {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  max-width: 0.34rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.sec_nav .box .img_box .icos {
  opacity: 0;
}
.sec_nav .box p {
  padding-top: 0.08rem;
  text-align: center;
  color: #333;
  font-size: 0.16rem;
  padding-bottom: 0.34rem;
  position: relative;
  z-index: 2;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.sec_nav .box p:after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 0;
  height: 3px;
  background: #0184d4;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.sec_nav .w14 {
  position: relative;
  height:100%;
}
.sec_nav .prev,
.sec_nav .next {
  width: 0.5rem;
  height: 0.5rem;
  line-height: 0.5rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.sec_nav .prev i,
.sec_nav .next i {
  font-size: 0.2rem;
}
.sec_nav .prev {
  left: -0.5rem;
}
.sec_nav .next {
  right: -0.5rem;
}
.sec_nav .swiper-slide:hover .icoh,
.sec_nav .swiper-slide.on .icoh {
  opacity: 0;
}
.sec_nav .swiper-slide:hover .icos,
.sec_nav .swiper-slide.on .icos {
  opacity: 1;
}
.sec_nav .swiper-slide:hover p,
.sec_nav .swiper-slide.on p {
  color: #0184d4;
}
.sec_nav .swiper-slide:hover p:after,
.sec_nav .swiper-slide.on p:after {
  width: 100%;
}
.cp_list {
  min-height: 5rem;
  _height: 5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 0.78rem;
  margin-bottom:.7rem;
}
.cp_list .item {
  background: #fff;
  border-radius: 0.1rem;
  width: 48%;
  height: 3.55rem;
  padding: 0.4rem;
  margin-bottom: 0.36rem;
  display: flex;
  justify-content: space-between;
}
.cp_list .item .img {
  width: 1.95rem;
  max-height:2.8rem;
  text-align:center;
}
.cp_list .item .img img {
  max-width: 100%;
  max-height:100%;
}
.cp_list .item .con {
  padding-left: 0.54rem;
  width: calc(100% - 1.95rem);
}
.cp_list .item .con .t {
  font-weight: bold;
  color: #333;
  font-size: 0.22rem;
  padding: 0.08rem 0 0.16rem;
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 0.16rem;
  white-space: nowrap;
  word-wrap: break-word;
  word-break: break-all;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
}
.cp_list .item .con .scroll {
  height: 1.2rem;
  overflow-y: auto;
}
.cp_list .item .con .scroll p {
  font-size: 0.14rem;
  color: #999;
  line-height: 0.26rem;
  padding-left: 0.12rem;
  position: relative;
}
.cp_list .item .con .scroll p:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.11rem;
  border-radius: 100%;
  width: 0.04rem;
  height: 0.04rem;
  background: #dadada;
}
.cp_list .item .con .bet {
  padding-top: 0.16rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cp_list .item .con .bet .down {
  width: 0.64rem;
}
.cp_list .item .con .bet .hov_btn {
  margin-top: 0.22rem;
}
.cp_list .item:hover .hov_btn {
  border-color: #075691;
  color: #075691;
}
.cp_list .item:hover .hov_btn:before {
  border: 1px solid rgba(7, 86, 145, 0.5);
  animation: ripple 2s linear infinite;
  -webkit-animation: ripple 2s linear infinite;
}
.cp_list .item:hover .hov_btn:after {
  border: 1px solid rgba(7, 86, 145, 0.2);
  animation: ripple 2s linear 1s infinite;
  -webkit-animation: ripple 2s linear 1s infinite;
}
.fy {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem auto 0.8rem;
  flex-wrap: wrap;
}
.fy li {
  margin-bottom: 0.5rem;
}
.fy a {
  background: #fff;
  color: #333;
  font-size: 0.18rem;
  border-radius: 0.03rem;
  padding: 0.05rem 0.12rem;
  margin: 0 0.05rem 0.2rem;
}
.fy a:hover,
.fy a.on {
  color: #0184d4;
}
.fy i {
  font-size: 0.18rem;
}
.fy input {
  width: 0.6rem;
  color: #333;
  font-size: 0.18rem;
  border-radius: 0.03rem;
  padding: 0.07rem 0.12rem;
  margin: 0 0.05rem;
  background: #fff;
}
.d_wrap {
  margin-top: 0.38rem;
}
.d_wrap .crumb {
  color: #333;
}
.d_wrap .crumb a {
  color: #333;
}
.d_wrap .crumb a:before {
  border-color: #333;
}
.d_wrap .box {
  display: flex;
  margin-top: 0.54rem;
}
.d_wrap .box_l {
  width: 50%;
}
.d_wrap .d_Swiper2 {
  width: 100%;
  height: 3.8rem;
}
.d_wrap .img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.d_wrap .img img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}
.d_wrap .gal {
  position: relative;
}
.d_wrap .gal .prev,
.d_wrap .gal .next {
  position: absolute;
  top: 0;
  background: #f5f5f5;
  width: 0.32rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #373737;
  cursor: pointer;
}
.d_wrap .gal .prev i,
.d_wrap .gal .next i {
  font-size: 0.2rem;
  font-weight: bold;
}
.d_wrap .gal .prev {
  left: 0;
}
.d_wrap .gal .next {
  right: 0;
}
.d_wrap .d_Swiper1 {
  width: 85%;
  height: 1.16rem;
  margin: 0.52rem auto 0;
}
.d_wrap .d_Swiper1 .img {
  width: 1.16rem;
  height: 1.16rem;
  border-radius: 0.05rem;
  padding: 0.05rem;
  border: 2px solid transparent;
  cursor: pointer;
  margin: 0 auto;
}
.d_wrap .d_Swiper1 .swiper-slide-thumb-active .img {
  border-color: #00bff2;
}
.d_wrap .box_r {
  width: 50%;
  padding-left: 0.66rem;
}
.d_wrap .box_r .hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.18rem;
  border-bottom: 1px solid #e0e4e9;
}
.d_wrap .box_r .hd .t {
  font-size: 0.3rem;
  color: #333;
  max-width: 75%;
}
.d_wrap .box_r .hd .back {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #dcdcdc;
  border-radius: 0.5rem;
  color: #999;
  font-size: 0.18rem;
  height: 0.42rem;
  padding: 0 0.14rem;
  display: inline-flex;
  align-items: center;
  flex-shrink:0;
}
.d_wrap .box_r .hd .back i {
  color: #d8d8d8;
  font-size: 0.16rem;
  margin-right: 0.08rem;
}
.d_wrap .box_r .hd .back:hover {
  border-color: #0184d4;
  background: #0184d4;
  color: #fff;
}
.d_wrap .box_r .hd .back:hover i {
  color: #fff;
}
.d_wrap .box_r .bd {
  margin-top: 0.4rem;
}
.d_wrap .box_r .bd .tit {
  color: #333;
  font-size: 0.22rem;
  font-weight: bold;
  padding-bottom: 0.15rem;
}
.d_wrap .box_r .bd .tit img {
  width: 0.17rem;
}
.d_wrap .box_r .bd .info {
  line-height: 1.9;
  font-size: 0.18rem;
  color: #333;
  margin-bottom: 0.26rem;
  min-height: 2rem;
  max-height: 3rem;
  overflow-y: auto;
}
.d_wrap .box_r .bd .spac span {
  line-height: 0.28rem;
  padding: 0.03rem 0.2rem;
  border-radius: 0.05rem;
  border: 0.02rem solid #ebebeb;
  background: #f9f9f9;
  font-size: 0.18rem;
  color: #333;
  margin: 0 0.08rem 0.1rem 0;
}
.d_wrap .c_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: #f9f9f9;
  height: 0.62rem;
  padding: 0 0.24rem;
  margin: 0.9rem 0;
}
.d_wrap .c_head h3 {
  color: #333;
  font-size: 0.24rem;
}
.d_wrap .c_head .lks a {
  display: inline-block;
  width: 1.04rem;
  height: 0.36rem;
  line-height: 0.32rem;
  border-radius: 0.5rem;
  font-size: 0.18rem;
  border: 1px solid #dcdcdc;
  color: #999;
  margin-left: 0.12rem;
  text-align: center;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.d_wrap .c_head .lks a:hover {
  color: #fff;
  background: #0184d4;
  border-color: #0184d4;
}
.d_wrap .con {
  min-height: 5rem;
  _height: 5rem;
  font-size: 0.18rem;
  color: #333;
  margin-bottom: 0.4rem;
}
.d_wrap .con img {
  display: block;
  margin: 0.2rem auto;
  max-width: 100%;
}
.abt_box1 {
  display: flex;
  justify-content: space-between;
  padding-top: 1.18rem;
  margin-bottom: 1.3rem;
}
.abt_box1 > div {
  width: 50%;
}
.abt_box1 .tit {
  font-size: 0.34rem;
  color: #0184d4;
  line-height: 0.3rem;
  padding-bottom: 0.23rem;
  border-bottom: 1px solid #00bff2;
  position: relative;
  margin-bottom: 0.32rem;
}
.abt_box1 .tit:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.03rem;
  width: 0.42rem;
  height: 0.06rem;
  background: #0184d4;
}
.abt_box1 .con {
  color: #333;
  line-height: 0.3rem;
  font-size: 0.18rem;
  max-height: 3.66rem;
  overflow-y: auto;
}
.abt_box1__r {
  position: relative;
  padding-left: 0.7rem;
}
.abt_box1__r img {
  width: 100%;
  border-bottom-left-radius: 0.9rem;
  -webkit-clip-path: polygon(91% 0, 100% 0, 100% 100%, 90% 100%);
  clip-path: polygon(91% 0, 100% 0, 100% 100%, 90% 100%);
  transition: 1.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition: 1.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.abt_box1__r:after {
  content: '';
  position: absolute;
  right: 0.48rem;
  top: 0.38rem;
  width: 6.08rem;
  height: 4.04rem;
  background: #0184d4;
  z-index: -1;
  border-bottom-left-radius: 0.9rem;
  -webkit-clip-path: polygon(91% 0, 100% 0, 100% 100%, 90% 100%);
  clip-path: polygon(91% 0, 100% 0, 100% 100%, 90% 100%);
  transition: 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
  -webkit-transition: 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
}
.abt_box1__r.aos-animate img {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.abt_box1__r.aos-animate:after {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.abt_box2 {
  position: relative;
  margin-bottom: 1rem;
}
.abt_box2 .abt_swiper {
  width: 100%;
  height: 8rem;
}
.abt_box2 .abt_swiper .swiper-slide {
  background-size: cover;
  background-position: center;
}
.abt_box2 .waves {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 1.1rem;
}
.abt_box2 .waves .parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
  -webkit-animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
.abt_box2 .waves .parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.abt_box2 .waves .parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.abt_box2 .waves .parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.abt_box2 .waves .parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
.abt_box3{
    margin-bottom:.55rem;
}
.abt_box3 .top{
    background:#f9f9f9;
    padding:.22rem .32rem;
    display:flex;
    margin-bottom:.5rem;
}
.abt_box3 .top .item{
    margin-right:.48rem;
}
.abt_box3 .top .item:last-child{
    margin-right:0;
}
.abt_box3 .top h3{
    color:#0184d4;
    font-size:.2rem;
    font-weight:bold;
    display:flex;
    align-items:center;
}
.abt_box3 .top h3 img{
    width:.24rem;
    margin-right:.06rem;
}
.abt_box3 .top a,.abt_box3 .top span{
    color:#999;
    font-size:.2rem;
    line-height:1.5;
}
.abt_box3 .top a:hover{
    color:#0184d4;
}
.abt_box3 .top span{
    margin-right:.44rem;
}
.abt_box3 .btm ul{
    overflow:hidden;
    min-height:2rem;
}
.abt_box3 .btm ul li{
    float:left;
    width:3.15rem;
    margin-right:.46rem;
    margin-bottom:.42rem;
    background:#f5f5f5;
}
.abt_box3 .btm ul li .img_box{
    padding:.24rem;
    width:100%;
    overflow:hidden;
    height:100%;
    height:3.22rem;
}

.abt_box3 .btm ul li .img_box img{
    display:block;
    margin: 0 auto;
    max-height:100%;
}
.abt_box3 .btm ul li:nth-child(4n){
    margin-right:0;
}
.abt_box3 .btm ul p{
    color:#333;
    font-weight:bold;
    font-size:.18rem;
    text-align:center;
    padding:.2rem .24rem;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}
.abt_box3 .btm .up_more{
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #e1e1e1;
    height:.49rem;
    width:1.78rem;
    color:#333;
    margin:.3rem auto;
    cursor:pointer;
    font-size:.16rem;
    transition:all .3s;
}
.abt_box3 .btm .up_more:hover{
    border-color:#0184d4;
    background:#0184d4;
    color:#fff;
}
.cult_box1 {
  background: url(../image/bg14.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 8.2rem;
}
.cult_box1 .box {
  float: right;
  width: 56%;
  padding-top: 0.76rem;
}
.cult_box1 .box .t {
  font-size: 0.44rem;
  color: #0184d4;
  padding-bottom: 0.64rem;
}
.cult_box1 .box .scroll {
  height: 5.7rem;
  overflow-y: auto;
  display: flex;
  justify-content: space-between;
}
.cult_box1 .box .scroll .t1 {
  color: #333;
  font-size: 0.22rem;
  font-weight: bold;
  padding-bottom: 0.08rem;
}
.cult_box1 .box .scroll ul {
  width: 3.5rem;
  margin-right: 0.4rem;
}
.cult_box1 .box .scroll li {
  padding-bottom: 0.14rem;
}
.cult_box1 .box .scroll .t2 {
  color: #333;
  font-size: 0.18rem;
}
.cult_box2 {
  background: url(../image/bg15.jpg) no-repeat bottom;
  background-size: 100% 6.06rem;
  width: 100%;
  padding-top: 0.68rem;
}
.cult_box2 .t {
  font-size: 0.34rem;
  color: #0184d4;
  line-height: 0.3rem;
  padding-bottom: 0.23rem;
  border-bottom: 1px solid #00bff2;
  position: relative;
  margin-bottom: 0.32rem;
}
.cult_box2 .t:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.03rem;
  width: 0.42rem;
  height: 0.06rem;
  background: #0184d4;
}
.cult_box2 .con {
  min-height: 5rem;
  _height: 5rem;
  padding-bottom: 1.2rem;
}
.cult_box2 .con p {
  padding-bottom: 0.28rem;
  color: #333;
  line-height: 1.5;
  font-size: 0.18rem;
}
.cult_box2 .con .img {
  float: right;
  clear: both;
  margin-top: 0.26rem;
  margin-left: 0.1rem;
}
.cult_box2 .con .img img {
  width: 4.85rem;
}
.abt2 {
  min-height: 5rem;
  _height: 5rem;
  position: relative;
  z-index: 2;
  padding-bottom: 0.5rem;
}
.abt2 .bubble_bg {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 8rem;
}
.abt2 .bubble_bg .bubble {
  position: absolute;
  border-radius: 100%;
  animation: spin 8s infinite linear;
  transform-origin: 50% 45%;
}
.abt2 .bubble_bg .sm_bubble {
  transform-origin: 30% 30px;
}
.abt2 .bubble_bg .bubble1 {
  border-radius: 50%;
  background: #e8f5fd;
  width: 0.74rem;
  height: 0.74rem;
  top: 8%;
  left: 55%;
}
.abt2 .bubble_bg .bubble2 {
  border-radius: 50%;
  background: #f4f7fc;
  width: 0.16rem;
  height: 0.16rem;
  top: 3%;
  left: 65%;
  animation: spin2 8s infinite linear;
}
.abt2 .bubble_bg .bubble3 {
  border-radius: 50%;
  background: #ecf3fb;
  width: 0.22rem;
  height: 0.22rem;
  top: 8%;
  right: 5%;
}
.abt2 .bubble_bg .bubble4 {
  width: 11.15rem;
  height: 6.15rem;
  top: 19%;
  right: 1%;
  background: url(../image/bg17.jpg) no-repeat center / 100% 100%;
  animation: initial;
  z-index: -2;
}
.abt2_box1 {
  overflow: hidden;
  padding-top: 1.86rem;
  position: relative;
  padding-bottom: 0.8rem;
}
.abt2_box1__l {
  width: 6.4rem;
  float: left;
}
.abt2_box1__l .tit {
  color: #0184d4;
  font-size: 0.26rem;
  font-weight: bold;
  padding-bottom: 0.14rem;
}
.abt2_box1__l .con {
  max-height: 4.8rem;
  overflow-y: auto;
}
.abt2_box1__l .con p {
  font-size: 0.18rem;
  line-height: 0.34rem;
  color: #333;
}
.abt2_box1__r {
  float: right;
  width: 6.84rem;
  position: relative;
}
.abt2_box1__r .bg {
  width: 100%;
  display: block;
  border-radius: 0.1rem 0.95rem 0.1rem 1.5rem;
}
.abt2_box1__r .btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.39rem;
  background: linear-gradient(to right, #00a0dc, #0066b2);
  height: 1.2rem;
  width: 85%;
  border-bottom-left-radius: 0.7rem;
  display: flex;
  align-items: center;
  font-size: 0.26rem;
  color: #fff;
  padding: 0 0.5rem;
  cursor: pointer;
}
.abt2_box1__r .btn img {
  width: 0.78rem;
  height: 0.78rem;
  margin-right: 0.22rem;
}
.abt2_box1__r .btn span {
  white-space: nowrap;
  word-wrap: break-word;
  word-break: break-all;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
}
.abt2_box2 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0.6rem;
}
.abt2_box2 li {
  width: 33.3%;
  position: relative;
  padding-left: 1.54rem;
}
.abt2_box2 li:after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 0.95rem;
  background: #e2e2e2;
}
.abt2_box2 li:last-child:after {
  display: none;
}
.abt2_box2 li span {
  line-height: 0.9rem;
  font-size: 0.7rem;
  font-weight: normal;
  font-family: 'Bahnschrift';
  letter-spacing: -2px;
  display: inline-block;
  position: relative;
  color: #000;
  margin-left: -0.05rem;
}
.abt2_box2 li span.counter::before {
  content: '';
  position: absolute;
  left: 0.1rem;
  bottom: 0;
  width: 0.23rem;
  height: 0.05rem;
  background: #0184d4;
}
.abt2_box2 p {
  font-size: 0.18rem;
  color: #666;
}
.abt2_box2 p:first-child {
  padding-bottom: 0.18rem;
}
.abt2_box3 p {
  color: #333;
  font-size: 0.18rem;
  line-height: 0.34rem;
  margin-bottom: 0.38rem;
}
.xw {
  min-height: 5rem;
  height: auto!important;
  _height: 5rem;
}
.xw .xwlist {
  min-height: 5rem;
  _height: 5rem;
  margin-bottom:.6rem;
}
.xw .fy a {
  background: #f2f2f2;
}
.xw .fy a:hover,
.xw .fy a.on {
  background: #0184d4;
  color: #fff;
}
.xw .fy input {
    background: #f2f2f2;
}
.vlightBox {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0%;
  top: 0%;
  z-index: 200;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(15px);
  padding: 0px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  -webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  visibility: hidden;
  opacity: 0;
}
.vlightBox.active {
  opacity: 1;
  visibility: visible;
}
.vlightBox .pro_close {
  cursor: pointer;
  background: #0059b5;
  color: #fff;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 5%;
  right: 5%;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.vlightBox .pro_close i {
  font-size: 0.3rem;
}
.vlightBox .pro_close:hover {
  transform: rotate(90deg);
}
.vlightBox .player {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.vlightBox video,
.vlightBox iframe {
  display: block;
  width: 70%;
  height: auto;
  max-height: 80%;
}
.dqwz {
  color: #fff;
  display: flex;
  align-items: center;
  height: 0.7rem;
  line-height: 0.7rem;
}
.dqwz i {
  font-size: 0.18rem;
  color: #999999;
}
.dqwz a {
  font-size: 0.16rem;
  color: #333333;
  padding-left: 0.3rem;
  position: relative;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.dqwz a:before {
  content: '';
  position: absolute;
  width: 0.06rem;
  height: 0.06rem;
  border-top: 1px solid #999999;
  border-right: 1px solid #999999;
  left: 0.1rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.dqwz a:hover,
.dqwz a.on {
  color: #0184d4;
}
.wzdt {
  height: 9.4rem;
  background: url(../image/bg8.jpg) no-repeat center;
  background-size: 100% 100%;
}
.zy_wzdt ul {
  margin-top: 1rem;
  padding-bottom: 0.8rem;
}
.zy_wzdt ul li {
  overflow:hidden;
  margin-bottom: 0.42rem;
}
.zy_wzdt ul li > a {
  min-width: 1.4rem;
  padding: 0.12rem 0.2rem;
  text-align: center;
  background-color: #fff;
  color: #333333;
  font-size: 0.2rem;
  font-weight: 700;
  display: inline-block;
  margin-right: 0.3rem;
  position: relative;
  z-index: 2;
  float:left;
}
.zy_wzdt ul li > a::before {
  content: '';
  display: block;
  width: 0;
  height: 100%;
  background-color: #0184d4;
  transition: all 0.5s;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.zy_wzdt ul li > a:hover {
  color: #fff;
}
.zy_wzdt ul li > a:hover::before {
  width: 100%;
}
.zy_wzdt ul li .dt_nav {
  float:right;
  width:calc(100% - 2.4rem);
}
.zy_wzdt ul li .dt_nav a {
  line-height: 0.56rem;
  display: inline-block;
  color: #333333;
  font-size: 0.18rem;
  margin-right: 0.46rem;
  position: relative;
  padding-left: 0.1rem;
}
.zy_wzdt ul li .dt_nav a::before {
  content: '';
  display: block;
  width: 0.05rem;
  height: 0.05rem;
  background-color: #e2e2e2;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.zy_wzdt ul li .dt_nav a:hover {
  color: #0184d4;
  color: #4da8df;
  font-weight: 700;
}
.zy_wzdt ul li .dt_nav a:hover::before {
  background: #0184d4;
}
.zy_tpbd ul {
  margin-top: 0.94rem;
  overflow: hidden;
  min-height: 6rem;
  _height: 6rem;
  margin-bottom:.6rem;
}
.zy_tpbd ul li {
  float: left;
  border-radius: 0.2rem;
  margin-bottom: 0.3rem;
  margin-right: 0.46rem;
  width: 4.36rem;
}
.zy_tpbd ul li:nth-child(3n+3) {
  margin-right: 0;
}
.zy_tpbd ul li a {
  display: block;
}
.zy_tpbd ul li a .img {
  width: 100%;
  height: 2.68rem;
  overflow: hidden;
  border-top-left-radius: 0.2rem;
  border-top-right-radius: 0.2rem;
}
.zy_tpbd ul li a .img img {
  width: 100%;
  height: 100%;
  transition: all 0.5s;
  overflow: hidden;
}
.zy_tpbd ul li a .nr {
  background-color: #f2f4f7;
  border-bottom-left-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
  padding: 0.12rem 0.16rem;
  box-sizing: border-box;
  overflow: hidden;
}
.zy_tpbd ul li a .nr p {
  color: #999999;
  font-size: 0.16rem;
  padding: 0.14rem 0 0.2rem;
}
.zy_tpbd ul li a .nr h2 {
  white-space: nowrap;
  word-wrap: break-word;
  word-break: break-all;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 0.2rem;
  color: #333333;
  font-weight: 400;
  padding-bottom: 0.56rem;
}
.zy_tpbd ul li a .nr em {
  display: inline-block;
  color: #999999;
  font-size: 0.16rem;
  line-height: 0.36rem;
  border-radius: 0.2rem;
  transition: all 0.5s;
}
.zy_tpbd ul li a .nr em img {
  width: 0.14rem;
}
.zy_tpbd ul li a:hover .img img {
  transform: scale(1.1);
}
.zy_tpbd ul li a:hover .nr em {
  padding: 0 0.14rem;
  background-color: #0184d4;
  color: #fff;
}
.zy_tpbd ul li a:hover .nr em img {
  filter: brightness(200);
  transform: rotate(45deg);
}
.zy_tpbd .fy a,.zy_tpbd .fy input {
  background-color: #f3f3f3;
}
.zy_tpbd .fy a:hover,
.zy_tpbd .fy a.on {
  color: #fff;
  background-color: #0184d4;
}
.zy_splx ul {
  margin-top: 0.94rem;
  overflow: hidden;
  min-height: 6rem;
  _height: 6rem;
  margin-bottom: 1rem;
}
.zy_splx ul li {
  float: left;
  border-radius: 0.2rem;
  margin-bottom: 0.3rem;
  margin-right: 0.22rem;
  overflow: hidden;
  height: 2.77rem;
  width: 4.51rem;
}
.zy_splx ul li:nth-child(3n+3) {
  margin-right: 0;
}
.zy_splx ul li a {
  display: block;
  height: 100%;
  position: relative;
}
.zy_splx ul li a .img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.2rem;
}
.zy_splx ul li a .img > img {
  width: 100%;
  height: 100%;
  transition: all 0.5s;
  overflow: hidden;
}
.zy_splx ul li a .img .bg {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.zy_splx ul li a .img .bg img {
  width: 35px;
  height: 35px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.zy_splx ul li a:hover .img > img {
  transform: scale(1.1);
}
.zy_splx ul li a:hover .img .bg {
  display: block;
}
.zy_splx .fy a, .zy_splx .fy input {
    background-color: #f3f3f3;
}
.zy_splx .fy a:hover,
.zy_splx .fy a.on {
  color: #fff;
  background-color: #0184d4;
}
.zy_lxwm {
  position: relative;
  overflow: hidden;
  padding-bottom: 0.7rem;
}
.zy_lxwm .lxwm_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  object-fit: cover;
}
.zy_lxwm .crumb {
  margin-top: 0.3rem;
}
.zy_lxwm .lxwm_content {
  width: 50%;
  overflow: hidden;
  float: right;
  margin-top: 0.68rem;
}
.zy_lxwm .lxwm_content .tel {
  color: #fff;
  display: flex;
  align-items: flex-start;
  padding-bottom: 0.32rem;
  margin-bottom: 0.32rem;
  border-bottom: 1px solid #f5f5f5;
}
.zy_lxwm .lxwm_content .tel img {
  width: 0.63rem;
  margin-right: 0.18rem;
  margin-top: 0.08rem;
}
.zy_lxwm .lxwm_content .tel h3 {
  font-size: 0.34rem;
}
.zy_lxwm .lxwm_content .box {
  display: flex;
}
.zy_lxwm .lxwm_content .box .left {
  width: 50%;
}
.zy_lxwm .lxwm_content .box .right {
  width: 50%;
}
.zy_lxwm .lxwm_content .box h2 {
  color: #ffffff;
  font-size: 0.2rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
  height: 0.53rem;
}
.zy_lxwm .lxwm_content .box p {
  color: #fff;
  font-size: 0.15rem;
  margin-bottom: 0.1rem;
}
.zy_lxwm .lxwm_content .box p img {
  width: 0.12rem;
  margin-right: 0.1rem;
}
.zy_lxwm .lxwm_content .lxwm_add {
  margin-top: 0.3rem;
  display: flex;
}
.zy_lxwm .lxwm_content .lxwm_add .add_ress {
  margin-right: 0.24rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.1rem;
  border-top-right-radius: 0;
  border: 0.01rem solid #fff;
  padding: 0.1rem;
  cursor: pointer;
  min-width:2.5rem;
}
.zy_lxwm .lxwm_content .lxwm_add .add_ress span {
  color: #fff;
  font-size: 0.15rem;
  transition: all 0.5s;
}
.zy_lxwm .lxwm_content .lxwm_add .add_ress img {
  margin-left: 0.34rem;
  filter: brightness(200);
  transition: all 0.5s;
}
.zy_lxwm .lxwm_content .lxwm_add .add_ress:hover span {
  transform: translateX(0.06rem);
}
.zy_lxwm .lxwm_content .lxwm_add .add_ress:hover img {
  transform: translateX(0.06rem);
}
.zy_lxwm .lxwm_content .table {
  width: 4.9rem;
  margin-top: 0.6rem;
}
.zy_lxwm .lxwm_content .table h2 {
  color: #ffffff;
  font-size: 0.34rem;
  font-weight: 400;
  margin-bottom: 0.2rem;
}
.zy_lxwm .lxwm_content .table .boxz {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.14rem;
}
.zy_lxwm .lxwm_content .table .boxz .ipt {
  width: 2.35rem;
  position: relative;
}
.zy_lxwm .lxwm_content .table .boxz .ipt p {
  color: #fff;
  font-size: 0.16rem;
  margin-bottom: 0.04rem;
}
.zy_lxwm .lxwm_content .table .boxz .ipt input {
  width: 100%;
  height: 0.34rem;
  padding: 0 0.2rem;
  color: #fff;
  font-size: 16px;
  font-family: '微软雅黑';
  background: rgba(255, 255, 255, 0.2);
}
.zy_lxwm .lxwm_content .table .boxz .ipt textarea {
  resize: none;
  width: 100%;
  height: 0.66rem;
  padding: 0.1rem 0.2rem;
  color: #fff;
  font-size: 16px;
  font-family: '微软雅黑';
  background: rgba(255, 255, 255, 0.2);
}
.zy_lxwm .lxwm_content .table .boxz .ipt .an_btn {
  display: inline-block;
  width: 100%;
  height: 0.34rem;
  background: rgba(255, 255, 255, 0.2);
  line-height: 0.34rem;
  text-align: center;
  color: #fff;
  font-size: 0.16rem;
  cursor: pointer;
  transition: all 0.5s;
}
.zy_lxwm .lxwm_content .table .boxz .ipt .an_btn.submit {
  background-color: #0184d4;
}
.zy_lxwm .lxwm_content .table .boxz .ipt .an_btn:hover {
  transform: translateY(0.1rem);
}
.zy_lxwm .lxwm_content .table .boxz .ipt.ly {
  width: 100%;
}
.zy_lxwm .lxwm_content .table .boxz .ipt.yzm {
  width: 100%;
}
.zy_lxwm .lxwm_content .table .boxz .ipt.yzm img {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 0.34rem;
  width: 0.72rem;
  cursor: pointer;
}
.zy_lxwm .lxwm_content .table .boxz.ok {
  margin-top: 0.24rem;
}
.new_lxwm_phone h2{
    font-weight:bold;
    font-size:.3rem;
    line-height:1.4;
    padding:.2rem 0;
    text-align:center;
}
.new_lxwm_phone td {
    padding:7px 0;
    border: 1px solid #d9d9d9;
    margin-top: -1px;
    margin-left: -1px;
}
.pop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 99;
  background: rgba(0, 0, 0, 0.6);
}
.pop .pop_nr {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9.6rem;
  height: 5rem;
  background-color: #fff;
  padding: 0.48rem 0.24rem 0.48rem 0.48rem;
}
.pop .pop_nr img {
  display: block;
  margin: 0 auto;
}
.pop .scroll {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding-right: 0.24rem;
}
.pop .scroll::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.pop .scroll::-webkit-scrollbar-thumb {
  background: #0070c0;
}
.pop .scroll::-webkit-scrollbar-track {
  background: #e6e6e6;
}
.pop .clo {
  position: absolute;
  top: -10%;
  right: 0%;
  cursor: pointer;
}
.pop .clo i {
  font-size: 0.3rem;
  color: #fff;
}
.zy_xwxq {
  padding-top: 0.8rem;
}
.zy_xwxq .lef {
  width: 72%;
  position: relative;
  float: left;
  margin-bottom: 2rem;
}
.zy_xwxq .lef .padd_rt {
  border-right: 0.01rem solid #ececec;
  padding-right: 0.5rem;
}
.zy_xwxq .lef .x_head {
  padding-bottom: 0.18rem;
  border-bottom: 0.01rem solid #ececec;
}
.zy_xwxq .lef .x_head h2 {
  color: #333333;
  font-size: 0.3rem;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 0.34rem;
}
.zy_xwxq .lef .x_head .bd {
  display: flex;
  align-items: center;
  color: #999;
  font-size: 0.16rem;
}
.zy_xwxq .lef .x_head .bd span {
  margin-right: 0.38rem;
}
.zy_xwxq .lef .x_head .font {
  display: flex;
  align-items: center;
  color: #999999;
}
.zy_xwxq .lef .x_head .font .big {
  padding: 0.03rem 0.06rem;
  cursor: pointer;
}
.zy_xwxq .lef .x_head .font .big:hover {
  background-color: #0184d4;
  color: #fff;
}
.zy_xwxq .lef .xq_con {
  min-height: 6rem;
  padding: 0.6rem 0 1.2rem;
  text-align: center;
}
.zy_xwxq .lef .xq_con p {
  color: #333333;
  font-size: 0.18rem;
  line-height: 1.5;
  text-align: justify;
  margin-bottom: 0.3rem;
}
.zy_xwxq .lef .xq_con img,
.zy_xwxq .lef .xq_con table,
.zy_xwxq .lef .xq_con video,
.zy_xwxq .lef .xq_con iframe {
  max-width: 100%;
}
.zy_xwxq .rig {
  float: right;
  padding-left: 0.4rem;
  width: calc(100% - 72%);
}
.zy_xwxq .rig .t {
  font-size: 0.24rem;
  color: #0184d4;
  padding-bottom: 0.28rem;
}
.zy_xwxq .rig a {
  display: block;
}
.zy_xwxq .rig .first_item {
  padding-bottom: 0.2rem;
  border-bottom: 0.07rem solid #f9f9f9;
}
.zy_xwxq .rig .first_item .img {
  width: 100%;
  height: 2.1rem;
  overflow: hidden;
}
.zy_xwxq .rig .first_item .img img {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.zy_xwxq .rig .first_item p {
  color: #999999;
  font-size: 0.16rem;
}
.zy_xwxq .rig .first_item:hover img {
  transform: scale(1.1);
}
.zy_xwxq .rig .first_item:hover .tit {
  color: #0184d4;
  font-weight: 700;
}
.zy_xwxq .rig .tit {
  margin: 0.15rem 0;
  color: #333333;
  font-size: 0.18rem;
  font-weight: 400;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-all;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
}
.zy_xwxq .rig .item {
  border-bottom: 0.01rem solid #f9f9f9;
  padding: 0.2rem 0;
}
.zy_xwxq .rig .item .tit {
  margin: 0;
}
.zy_xwxq .rig .item:hover .tit {
  color: #0184d4;
  font-weight: 700;
}
.sxp {
  background-color: #f9f9f9;
  padding: 0.1rem 0.3rem;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sxp .lt {
  max-width: 80%;
}
.sxp .lt a {
  line-height: 0.44rem;
  white-space: nowrap;
  word-wrap: break-word;
  word-break: break-all;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
}
.sxp .lt a[href]:hover {
  color: #0184d4;
}
.sxp a {
  display: block;
  color: #333;
  font-size: 0.18rem;
}
.sxp a.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 0.18rem;
  background-color: #0184d4;
  transition: all 0.5s;
  padding: 0.11rem 0.2rem;
}
.sxp a.btn:hover {
  transform: translateX(10px);
}
#dszzc {
  padding-bottom: 1.53rem;
}
#dszzc .w14 {
  position: relative;
  display: flex;
  justify-content: end;
}
#dszzc .dsz {
  width: 5.17rem;
  height: 2.9rem;
  position: absolute;
  top: 2.23rem;
  left: 0;
}
#dszzc .dszzc {
  margin-top: 1.34rem;
  background-color: #f9f9f9;
  min-height: 4.6rem;
  padding-left: 3.5rem;
  width: 12rem;
}
#dszzc .dszzc .tit {
  font-weight: 700;
  color: #0066b2;
  font-size: 0.48rem;
  margin: 0.24rem 0;
  text-indent: 0.5em;
}
#dszzc .dszzc .nr {
  padding-right: 0.2rem;
  padding-bottom: 0.3rem;
}
#dszzc .dszzc .nr h5 {
  color: #333333;
  font-size: 0.18rem;
  line-height: 1.5;
  font-weight: 700;
}
#dszzc .dszzc .nr p {
  color: #333333;
  font-size: 0.16rem;
  line-height: 1.7;
}
#ryzz {
  position: relative;
  height: 7.83rem;
  text-align: center;
}
#ryzz .ry_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
#ryzz .title {
  margin-top: 0.78rem;
  display: inline-block;
  color: #333333;
  font-size: 0.44rem;
  font-weight: 400;
  position: relative;
  padding-bottom: 0.1rem;
}
#ryzz .title::before {
  content: '';
  display: block;
  width: 35%;
  height: 0.05rem;
  background-color: #0184d4;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
#ryzz .ry_swi {
  margin-top: 0.74rem;
  position: relative;
}
#ryzz .ry_swi .swiper {
  width: 14rem;
}
#ryzz .ry_swi .swiper .pe {
  width: 3.36rem;
  height: 4.48rem;
  background-color: #fff;
  border-radius: 0.2rem;
  padding: 0 0.22rem;
  box-sizing: border-box;
  cursor: pointer;
}
#ryzz .ry_swi .swiper .pe .img {
  width: 100%;
  height: calc(100% - 0.8rem);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
#ryzz .ry_swi .swiper .pe .img img {
  max-width: 2.95rem;
  max-height: 2.89rem;
  transition: all 0.5s;
}
#ryzz .ry_swi .swiper .pe h3 {
  white-space: nowrap;
  word-wrap: break-word;
  word-break: break-all;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #333333;
  font-size: 0.18rem;
  font-weight: 400;
  line-height: 0.8rem;
  border-top: 0.01rem solid #ebebeb;
}
#ryzz .ry_swi .arrow_down{
    position:absolute;
    display:flex;
    top:50%;
    transform:translateY(-50%);
    width:100%;
}
#ryzz .ry_swi .s_next:after,
#ryzz .ry_swi .swiper-rtl .s_prev:after {
  content: '';
}
#ryzz .ry_swi .s_prev:after,
#ryzz .ry_swi .swiper-rtl .s_next:after {
  content: '';
}
#ryzz .ry_swi .s_next {
  right: 1.5rem;
  width: 0.5rem;
  height: 0.5rem;
  background: url(../image/ry_right.png) no-repeat center;
  background-size: 100% 100%;
  position:absolute;
  cursor:pointer;
}
#ryzz .ry_swi .s_next:hover {
  background: url(../image/ry_right_on.png) no-repeat center;
  background-size: 100% 100%;
}
#ryzz .ry_swi .s_prev {
  left: 1.5rem;
  width: 0.5rem;
  height: 0.5rem;
  background: url(../image/ry_left.png) no-repeat center;
  background-size: 100% 100%;
  position:absolute;
  cursor:pointer;
}
#ryzz .ry_swi .s_prev:hover {
  background: url(../image/ry_left_on.png) no-repeat center;
  background-size: 100% 100%;
}
.zy_dszzc .popup {
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: none;
  background: rgba(0, 0, 0, 0.5);
}
.zy_dszzc .popup .popcon {
  width: 30%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.zy_dszzc .popup .popcon .popimg {
  max-width: 80%;
  max-height: 70%;
}
.zy_dszzc .popup .popcon p {
  font-size: 0.18rem;
  color: #fff;
  margin: 0.2rem auto;
  text-align: center;
}
.zy_dszzc .popup .ry_close {
  color: #fff;
  font-size: 0.3rem;
  cursor: pointer;
}
#ppzl {
  text-align: center;
}
#ppzl .title {
  margin-top: 0.78rem;
  display: inline-block;
  color: #333333;
  font-size: 0.44rem;
  font-weight: 400;
  position: relative;
  padding-bottom: 0.1rem;
  margin-bottom: 0.3rem;
}
#ppzl .title::before {
  content: '';
  display: block;
  width: 35%;
  height: 0.05rem;
  background-color: #0184d4;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
#ppzl .tips {
  color: #333333;
  font-size: 0.18rem;
  line-height: 0.32rem;
  margin-bottom: 0.42rem;
}
#ppzl .ppzl_nr {
  padding-bottom: 0.5rem;
}
#ppzl .ppzl_nr img {
  max-width: 100%;
}
/*人才招聘新加  xzc  */
.post_list {
  margin: 0.65rem auto;
  min-height: 5rem;
}
.post_list .item {
  width: 100%;
  border: 1px solid #e6eaf6;
  margin-bottom: 0.24rem;
}
.post_list .item.on {
  border-bottom: 2px solid #0043c7;
}
.post_list .item.on .item-content {
  height: auto;
}
.post_list .item.on .img1 {
  display: none;
}
.post_list .item.on .img2 {
  display: block!important;
}
.post_list .item-head {
  cursor: pointer;
  height: 0.92rem;
  padding: 0 0.16rem;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  color: #333333;
}
.post_list .item-head h1 {
  font-size: 0.25rem;
  margin-right: 0.82rem;
  min-width: 3.4rem;
}
.post_list .item-head span {
  margin-right: 1.5rem;
  min-width: 2rem;
}
.post_list .item-head .anniu {
  margin-left: auto;
}
.post_list .item-head .anniu img {
  width: 0.27rem;
}
.post_list .item-head .anniu .img2 {
  display: none;
}
.post_list .item-content {
  overflow: hidden;
  transition: 0.5s;
  height: 0;
}
.post_list .item-content .pd {
  padding: 0.18rem 0.16rem 0.45rem;
}
.post_list .item-content div {
  margin-bottom: 0.2rem;
  color: #333;
}
.post_list .item-content div h1 {
  font-weight: normal; 
  margin-bottom: 0.2rem;
  font-size: 0.25rem;
}
.post_list .item-content div p {
  font-size: 0.18rem;
  margin-bottom: 0.14rem;
  line-height: 1.5;
  color: #838383;
}
.post_list .item-content .btn {
  min-width: 1.77rem;
  height: 0.5rem;
  line-height: 0.44rem;
  padding:0 .2rem;
  /*display: block;*/
  color: #fff;
  text-align: center;
  background: #0043c7;
  border-radius: 0.4rem;
  font-weight: bold;
  margin-top: 0.34rem;
  transition: 0.3s;
  box-sizing: border-box;
  border: 2px solid transparent;
  font-size: .23rem;
  letter-spacing: 2px;
}
.post_list .item-content .btn:hover {
  background: #fff;
  border: 2px solid #0043c7;
  color: #0043c7;
}
.post_list .item-content a {
  width: 1.77rem;
  height: 0.5rem;
  line-height: 0.44rem;
  /*display: block;*/
  color: #fff;
  text-align: center;
  background: #0043c7;
  border-radius: 0.4rem;
  font-weight: bold;
  margin-top: 0.34rem;
  transition: 0.3s;
  box-sizing: border-box;
  border: 2px solid transparent;
  font-size: .23rem;
  letter-spacing: 2px;
}
.post_list .item-content a:hover {
  background: #fff;
  border: 2px solid #0043c7;
  color: #0043c7;
}
/* 产品简介 */
.product_about{
    width:8.1rem;
    margin:0 auto;
    margin-top:60px;
}
.product_about h1 {
    font-size: .26rem;
    line-height: .4rem;
    color: #000;
    background: url(../image/ts.png) no-repeat center top;
    padding-top: .5rem;
    padding-bottom: .25rem;
    border-bottom: .05rem solid #e0e0e0;
    padding-right: 3.4rem;
    font-weight: bold;
}
.goTop {
position: fixed;
right: 2%;
bottom: 2.27rem;
z-index: 9999;
border-radius: 0.3rem;
/*background: #fff;*/
width: 0.6rem;
display: none;
padding-top: 0.2rem;
box-sizing: border-box;
}
.goTop .item {
width: .55rem;
height: 0.55rem;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
background:#0184d4;
border-radius:50%;
margin-bottom:.2rem;
}
.goTop .item img{
    width:.32rem;
}

@media (max-width: 1800px) {
    .logo{
      margin-left: 5%;
    }
    #menu_btn {
      margin-left: 4%;
    }
    #ryzz .ry_swi .arrow_down {
        top: initial;
        transform: initial;
        bottom: -.8rem;
        text-align: center;
        justify-content: center;
    }

    #ryzz .ry_swi .s_prev, #ryzz .ry_swi .s_next {
        position: initial;
        margin: 0 .5rem;
    }
}
@media (min-width: 1301px) and (max-width: 1700px ) {
  .logo{
    margin-left: 5%;
  }
  #menu_btn {
    margin-left: 4%;
  }
  .head_nav li{
    padding: 0 .26rem;
  }
}
@media (min-width: 1001px) and (max-width: 1400px ) {
  .head_nav li{
    padding: 0 .26rem;
  }
  .homeF3{
    padding-top: 1.2rem;
  }
  .xwlist {
      padding-top: 0.42rem;
  }
  .navigate_list {
    padding-top: 1.2rem;
  }
  .navigate_list .navi_l .item{
    padding-bottom: 0.38rem;
  }
  .navigate_list .navi_l .item > a{
    font-size: .3rem;
  }
  .homeF1{
    padding-top: 1rem;
  }
  .homeF1 .hd_l {
    width: 45%;
    height: 3.5rem;
  }
  .homeF1 .hd_r{
    padding-left: 0.58rem;
  }
  .homeF1 .hd_r .tit{
    line-height: 0.4rem;
    font-size: .3rem;
  }
  .homeF1 .hd_r .scroll{
    height: 3.5rem;
  }
  .homeF1 .bd{
    padding-top: 0.6rem;
  }
  .homeF2 .inbox .t{
    font-size: .3rem;
  }
  .homeF3 .t{
    font-size: .34rem;
  }
  .xwlist .info span{
    line-height: 1.4;
  }
  .xwlist .info .date{
    background-size: .18rem .19rem;
  }
  .xwlist .info .num {
      background-size: .21rem .14rem;
  }
  .cult_box1 .box .t{
    font-size: .34rem;
  }
  #dszzc .dszzc .tit{
    font-size: .3rem;
  }
  #ryzz .title,#ppzl .title{
    font-size: .34rem;
  }
}
@media only screen and (max-width: 1000px) {
  .head_nav {
    display: none;
  }
  .ban_swiper .ban_btm .down,
  .cp_list .item .con .scroll p {
    font-size: 0.16rem;
  }
  .homeF1 .hd_r p,
  .more,
  .sec_nav .box p,
  .crumb a,
  #dszzc .dszzc .nr p,
  .zy_tpbd ul li a .nr em {
    font-size: 0.18rem;
  }
  .more i {
    font-size: 0.24rem;
  }
  .homeF2 .inbox p,
  .zy_tpbd ul li a .nr p,
  .zy_wzdt ul li .dt_nav a {
    font-size: 0.2rem;
  }
  .homeF1 .bd .item p,
  .cult_box1 .box .scroll .t2,
  .cult_box2 .con p,
  #dszzc .dszzc .nr h5,
  #ppzl .tips,
  .zy_xwxq .lef .x_head .bd {
    font-size: 0.2rem;
  }
  .zy_wzdt ul li .dt_nav a {
    padding-left: 0.14rem;
  }
  .homeF1,
  .homeF3 {
    padding: 0.8rem 0;
    height: auto;
  }
 .xwlist li a{
      margin:0;
  }
  .xwlist .tit{
      font-size:.4rem;
  }
  .xwlist .info{
      font-size:.28rem;
  }
  .xwlist .info span{
      padding-left:.58rem;
  }
  .abt_box1 {
    padding: 0.6rem 0;
    margin: 0;
  }
  .abt_box1__r img {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .abt_box1__r:after {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .zy_splx ul {
    padding: 0.4rem;
    margin: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .zy_splx ul li {
    height: auto;
    width: 49%;
    margin-right: 0;
  }
  .zy_splx ul li:last-child {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 800px) {
  .w14 {
    width: 100%;
  }
  .logo {
    margin-left: 5%;
    width: 2.2rem;
    padding-top: 0.15rem;
    display: none;
  }
  .sjlogo {
    display: block;
    float: left;
    padding-top: 0.1rem;
  }
  header {
    height: 1.02rem;
    padding-left: 0.25rem;
  }
  #menu_btn {
    width: 1rem;
    height: 1.02rem;
    background: transparent!important;
    margin-left: 0;
  }
  #menu_btn span {
    width: 28px;
    height: 3px;
    background: #5e5e5e;
  }
  #menu_btn span:before {
    height: 3px;
    top: 8px;
    background: #5e5e5e;
  }
  #menu_btn span:after {
    top: -8px;
    height: 3px;
    background: #5e5e5e;
  }
  #menu_btn.active span::before,
  #menu_btn.active span:after {
    background: #fff;
  }
  .head_func {
    padding-top: 0;
  }
  .ban_swiper {
    height: 4.5rem;
  }
  .ban_swiper.active {
    clip-path: circle(150vw at 50vw 50vh);
    -webkit-clip-path: circle(150vw at 50vw 50vh);
  }
  .ban_swiper .img_box {
    height: 100%;
  }
  .ban_swiper .ban_btm {
    top: initial;
    right: inherit;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100%;
    height: 0.7rem;
    background: rgba(0, 0, 0, 0.5);
  }
  .ban_swiper .ban_btm .down {
    display: none;
    position: absolute;
    left: 50%;
    margin-left: -18px;
    top: -2rem;
  }
  .ban_swiper .ban_btm .down i {
    font-size: 36px;
  }
  .ban_swiper .ban_btm .down span {
    display: none;
  }
  .ban_swiper .swiper-pagination-bullet {
    display: inline-block;
    margin: 0 0.2rem !important;
    width: 0.2rem;
    height: 0.2rem;
    vertical-align: middle;
  }
  .ban_swiper .swiper-pagination-bullet-active {
    width: 0.32rem !important;
    height: 0.32rem !important;
  }
  .ban_swiper .swiper-pagination-bullet:before {
    display: none;
  }
  .s_pagination {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .navigate_list .w14 {
    flex-direction: column;
    justify-content: initial;
    padding: 0 20px;
  }
  .navigate_list .navi_l {
    height: auto;
  }
  .navigate_list .navi_l .item > a {
    font-size: 0.44rem;
  }
  .navigate_list .navi_l .drop {
    position: initial;
  }
  .navigate_list .navi_l .drop:before {
    display: none;
  }
  .navigate_list .navi_l .drop .sub_item {
    opacity: 1;
    padding-top: 0.4rem;
    transform: translateX(20px);
  }
  .navigate_list .navi_l .drop .sub_item a {
    opacity: 1;
    font-size: 0.3rem;
  }
  .navigate_list .navi_r {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
    padding: 0.6rem 0 0 0;
    margin-top: 0.6rem;
    height: auto;
  }
  .navigate_list .navi_r li .tit {
    font-size: 0.34rem;
    /*display: none;*/
  }
  .navigate_list .navi_r li p {
    line-height: 0.6rem;
    font-size: 0.3rem;
  }
  .navigate_list .navi_r li p img {
    width: 0.32rem;
  }
  .navigate_list .navi_r .ewm_box .item {
    width: 31%;
  }
  .homeF1 {
    height: auto;
    padding: 0;
    background: initial;
  }
  .homeF1 .hd {
    display: block;
    padding-top: 0;
    background: url(../image/sjbg1.jpg) no-repeat center / 100% 100%;
  }
  .homeF1 .hd_l {
    width: 100%;
    height: auto;
    display: none;
  }
  .homeF1 .hd_l .bg2 {
    position: initial;
    width: 50%;
    height: auto;
  }
  .homeF1 .hd_l:after {
    right: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
  }
  .homeF1 .hd_r {
    width: 100%;
    padding: 0.4rem 0.24rem;
  }
  .homeF1 .hd_r .scroll {
    height: auto;
  }
  .homeF1 .hd_r p {
    font-size: 0.3rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    word-break: break-all;
    -o-text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .homeF1 .more {
    border-radius: 0.05rem;
    border: 1px solid #0184d4;
    color: #0184d4;
    display: inline-flex;
    padding: 0.1rem 0.34rem;
    margin-top: 0.4rem;
  }
  .homeF1 .bd {
    display: none;
  }
  .homeF1 .sjbd {
    display: block;
    padding: 0 0.24rem;
  }
  .homeF1 .sjbd .between {
    display: flex;
  }
  .homeF1 .sjbd .item {
    width: 50%;
    text-align: center;
    width: 100%;
    height: 1.84rem;
    padding: 0;
  }
  .homeF1 .sjbd .item img {
    width: 100%;
    height: 100%;
  }
  .homeF1 .sjbd .item p {
    font-size: 0.28rem;
    padding: 0!important;
  }
  .homeF1 .sjbd .item:after {
    display: none;
  }
  .homeF1 .sjbd .item span {
    letter-spacing: -1px;
  }
  .homeF1 .sjbd .item span::before {
    display: none!important;
  }
  .homeF1 .sjbd .txt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #dcebf4;
  }
  .homeF1 .sjbd .txt2 {
    background: #bfddef;
  }
  .homeF1 .sjbd .txt3 {
    background: #8fbcd7;
  }
  .homeF1 .sjbd .txt3 p {
    color: #fff;
  }
  .homeF1 .sjbd .txt3 p span {
    color: #fff;
  }
  .homeF1 .mess {
    z-index: 11;
    width: 1rem;
    height: 1rem;
    line-height: 1rem;
    top: initial;
    bottom: -1.2rem;
    right: 0.2rem;
  }
  .homeF1 .mess img {
    width: 0.55rem;
  }
  .homeF1 .mess:after {
    display: none;
  }
  .more {
    font-size: 0.28rem;
    line-height: 0.5rem;
  }
  .more i {
    font-size: 0.3rem;
    line-height: 0.6rem;
    height: 0.5rem;
  }
  .hov_btn i {
    width: 0.34rem;
    height: 0.34rem;
    line-height: 0.34rem;
  }
  .homeF2 {
    height: auto;
    padding-top: 0.4rem;
    display: block;
  }
  .homeF2 .tit {
    display: block;
    margin-bottom: 0.26rem;
  }
  .homeF2 .box {
    display:none;
    width: 100%;
    height: 5.4rem;
    overflow: initial;
  }
  .homeF2 .tab_swiper,.homeF2 .sjbox{
      display:block;
  }
  .homeF2 .box .img {
    height: 100%;
  }
  .homeF2 .box.act {
    width: 100%;
  }
  .homeF2 .inbox {
    width: 92%;
    margin-left: 0;
    opacity: 1;
    height: auto;
    transform: translate(-50%, 0) !important;
    padding: 0.3rem 0.35rem;
    bottom: -1.4rem;
    background: #fff;
    border-bottom: 0.06rem solid #0066b2;
  }
  .homeF2 .inbox .scroll {
    height: auto;
  }
  .homeF2 .inbox p {
    font-size: 0.28rem;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .homeF2 .inbox .more {
    margin-top: 0.1rem;
  }
  .homeF2 .inbox:before,
  .homeF2 .inbox:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.06rem;
    height: 0.06rem;
    width: 60%;
    background: #0184d4;
  }
  .homeF2 .inbox:before {
    width: 40%;
    background: #00bff2;
    z-index: 1;
  }
  .homeF3 {
    height: auto;
    padding: 1.7rem 0 0.5rem;
    background: url(../image/sjbg8.jpg) no-repeat center / 100% 100%;
    margin-top:-1.4rem;
  }
  .homeF3 .tit a {
    padding-bottom: 0.24rem;
  }
   .xwlist{
        flex-direction:column;
        padding:.5rem .3rem;
    }
    .xwlist li{
        width:100%;
    }
    .xwlist li a {
        margin: 0;
    }
  .xwlist .tit{
      font-size:.4rem;
  }
  .xwlist .info{
      font-size:.28rem;
      padding:.25rem 0 .2rem;
  }
  .xwlist .info span{
      padding-left:.58rem;
  }
  footer {
    display: none;
  }
  .sjfooot {
    display: block;
  }
  footer:before,
  footer:after {
    height: 0.1rem;
  }
  footer .hd {
    width: 100%;
    flex-direction: column;
    padding: 0.54rem 0.54rem;
  }
  footer .hd .tit {
    font-size: 0.4rem;
    display: none;
  }
  footer .hd .ewm_box {
    justify-content: space-between;
  }
  footer .hd .ewm_box .item {
    width: 30%;
  }
  footer .hd .ewm_box .item:last-child {
    margin-right: 0;
  }
  footer .hd .ewm_box .item p {
    line-height: 1.5;
    font-size: 0.24rem;
    padding-top: 0.1rem;
  }
  footer .hd_r {
    flex-direction: column;
    padding-top: 0.4rem;
  }
  footer .hd_r li {
    width: 100%!important;
    padding: 0 0 0.3rem 0 !important;
  }
  footer .hd_r p {
    font-size: 0.24rem;
    line-height: 1.5;
    max-height: none;
  }
  footer .hd_r p em img {
    width: 0.26rem;
    margin-right: 0.15rem;
  }
  footer .hd_r p a {
    font-size: 0.3rem;
    line-height: 1.5;
  }
  footer .bd {
    padding: 0.4rem;
  }
  footer .bd a {
    font-size: 0.3rem;
  }
  footer .bd .ico1 {
    width: 0.3rem;
  }
  footer .bd .ico2 {
    width: 2rem;
  }
  .model span {
    font-size: 50px;
  }
  .model .search_box {
    height: 0.8rem;
    margin: -0.4rem 0 0 -3rem;
  }
  .model .search_box input {
    font-size: 0.3rem;
    padding: 0 0.4rem;
  }
  .model .search_box .btn {
    width: 1rem;
  }
  .model .search_box .btn i {
    font-size: 0.5rem;
  }
  .bannerNy {
    height: 5rem;
  }
  .bannerNy .topinf {
    bottom: 0;
    left: 0;
    transform: initial;
  }
  .crumb {
    display: none;
  }
  .nav {
    flex-wrap: wrap;
  }
  .nav a {
    width: 50%;
    height: 0.8rem;
    font-size: 0.3rem;
    line-height: 0.8rem;
  }
  .nav a:before {
    height: 0.4rem;
    background: #fff;
  }
  .nav a:nth-child(even):before {
    display: none;
  }
  .nav a:last-child::before {
    display: none;
  }
  .abt_box1 {
    flex-direction: column;
    padding: 0.4rem;
    margin: 0;
  }
  .abt_box1 > div {
    width: 100%;
  }
  .abt_box1 .tit {
    font-size: 0.4rem;
    line-height: 1.5;
  }
  .abt_box1 .tit:after {
    bottom: -0.04rem;
  }
  .abt_box1 .con {
    font-size: 0.32rem;
    line-height: 1.5;
    max-height: initial;
  }
  .abt_box1__r {
    padding: 0.4rem 0 0 0;
  }
  .abt_box1__r img {
    -webkit-clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%);
  }
  .abt_box1__r:after {
    width: 100%;
    top: 1rem;
    right: 0.18rem;
    -webkit-clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0% 0, 100% 0, 100% 100%, 0% 100%);
  }
  .abt2 .bubble_bg .bubble1 {
    width: 1rem;
    height: 1rem;
  }
  .abt2 .bubble_bg .bubble2 {
    width: 0.26rem;
    height: 0.26rem;
  }
  .abt2 .bubble_bg .bubble3 {
    width: 0.32rem;
    height: 0.32rem;
  }
  .abt2 .bubble_bg .bubble4 {
    width: 100%;
    right: 0;
  }
  .abt2_box1 {
    padding: 0.4rem;
    flex-direction: column;
  }
  .abt2_box1__l {
    width: 100%;
  }
  .abt2_box1__l .tit {
    font-size: 0.4rem;
  }
  .abt2_box1__l .con {
    max-height: initial;
  }
  .abt2_box1__l .con p {
    font-size: 0.32rem;
    line-height: 1.5;
  }
  .abt2_box1__r {
    margin-top: 0.4rem;
    width: 100%;
  }
  .abt2_box1__r .btn span {
    font-size: 0.28rem;
  }
  .abt2_box2 {
    flex-direction: column;
    padding: 0;
  }
  .abt2_box2 li {
    width: 100%;
    padding: 0.2rem 0;
    text-align: center;
    border-bottom: 1px solid #e2e2e2;
  }
  .abt2_box2 li p {
    font-size: 0.28rem;
  }
  .abt2_box2 li span {
    letter-spacing: -3px;
  }
  .abt2_box2 li span:first-child:before {
    width: 0.45rem;
  }
  .abt2_box2 li:last-child {
    border: 0;
  }
  .abt2_box3 {
    padding: 0.4rem;
  }
  .abt2_box3 p {
    font-size: 0.3rem;
    line-height: 1.5;
  }
  .abt_box2 {
    margin-bottom: 0;
  }
  .abt_box2 .abt_swiper {
    height: 6rem;
  }
  .abt_box2 .waves {
    height: 1.6rem;
  }
  .abt_box3 .top{
      display:block;
  }
  .abt_box3 .top .item{
      margin-right:0;
  }
  .abt_box3 .top .item:first-child{
      margin-bottom:.2rem;
  }
  .abt_box3 .top h3{
      font-size:.4rem;
  }
  .abt_box3 .top h3 img{
      margin-right:.1rem;
      width:.34rem;
  }
   .abt_box3 .top p{
       margin-top:.1rem;
   }
  .abt_box3 .top a, .abt_box3 .top span{
      display:block;
      font-size:.32rem;
      margin:0;
  }
  .abt_box3 .btm ul{
      padding:0 .4rem;
  }
  .abt_box3 .btm ul li{
      float:initial;
      width:100%;
      margin-right:0!important;
  }
  .abt_box3 .btm ul li .img_box{
      height:auto;
      padding:.4rem;
  }
  .abt_box3 .btm ul p{
      padding:0 .3rem .4rem;
      font-size:.36rem;
  }
  .abt_box3 .btm .up_more{
      font-size:.34rem;
      width:2.8rem;
      height:.76rem;
      line-height:.76rem;
  }
  .sec_nav {
    height: auto;
    padding:0 .3rem;
  }
  .sec_nav .prev,
  .sec_nav .next {
    display: none;
  }
  .sec_nav .sec_swiper {
    width: 100%;
    height:100%;
  }
  .sec_nav .box .img_box {
    width: 0.54rem;
    height: 0.75rem;
  }
  .sec_nav .box .img_box img {
    max-width: 0.54rem;
  }
  .sec_nav .box p {
    font-size: 0.3rem;
    padding-bottom: 0.24rem;
  }
  .cp_list {
    margin-top: 0;
    padding: 0.4rem 0.4rem 0;
  }
  .cp_list .item {
    width: 100%;
    height: auto;
    flex-direction: column;
  }
  .cp_list .item:last-child {
    margin-bottom: 0;
  }
  .cp_list .item .img {
    width: 2.95rem;
    margin: 0 auto;
    max-height:initial;
  }
  .cp_list .item .con {
    width: 100%;
    padding: 0.4rem 0 0 0;
  }
  .cp_list .item .con .t {
    font-size: 0.36rem;
  }
  .cp_list .item .con .scroll {
    height: auto;
  }
  .cp_list .item .con .scroll p {
    font-size: 0.3rem;
    line-height: 1.5;
    padding-left: 0;
  }
  .cp_list .item .con .bet {
    padding-top: 0.3rem;
  }
  .cp_list .item .con .bet .down {
    width: 1rem;
  }
  .cp_list .item .con .bet .hov_btn {
    width: 0.6rem;
    height: 0.6rem;
    line-height: 0.6rem;
    margin-top: 0;
  }
  .cp_list .item .con .bet .hov_btn i {
    font-size: 0.34rem;
  }
  .fy a {
    font-size: 0.3rem;
    padding: 0.1rem 0.2rem;
  }
  .fy i {
    font-size: 0.3rem;
  }
  .fy input {
    width: 0.8rem;
    font-size: 0.3rem;
    padding: 0.13rem 0.12rem;
  }
  .fy li:nth-child(1),
  .fy li:nth-child(2),
  .fy li:last-child,
  .fy li:nth-last-child(2),
  .fy li:nth-last-child(3) {
    display: none;
  }
  .d_wrap .box {
    margin-top: 0;
    display: block;
  }
  .d_wrap .box_l {
    width: 100%;
  }
  .d_wrap .box_r {
    width: 100%;
    padding: 0.4rem;
  }
  .d_wrap .box_r .hd .t {
    font-size: 0.4rem;
    max-width:100%;
  }
  .d_wrap .box_r .hd .back {
    font-size: 0.32rem;
    height: auto;
    padding: 0.05rem 0.2rem;
    display:none;
  }
  .d_wrap .box_r .hd .back i {
    font-size: 0.26rem;
    margin-top: 0.05rem;
  }
  .d_wrap .box_r .bd .tit {
    font-size: 0.36rem;
  }
  .d_wrap .box_r .bd .tit img {
    width: 0.37rem;
  }
  .d_wrap .box_r .bd .info {
    font-size: 0.34rem;
    line-height: 1.5;
    max-height: initial;
  }
  .d_wrap .box_r .bd .spac {
    margin-top: 0.3rem;
  }
  .d_wrap .box_r .bd .spac span {
    line-height: 1.5;
    padding: 0.1rem 0.3rem;
    font-size: 0.32rem;
  }
  .d_wrap .d_Swiper2 {
    height: auto;
  }
  .d_wrap .gal {
    display: none;
  }
  .d_wrap .c_head {
    height: 1rem;
    padding: 0 0.4rem;
    margin: 0.4rem 0;
  }
  .d_wrap .c_head h3 {
    font-size: 0.4rem;
  }
  .d_wrap .c_head .lks a {
    font-size: 0.3rem;
    width: auto;
    height: auto;
    padding: 0.1rem 0.2rem;
  }
  .d_wrap .con {
    padding: 0 0.4rem;
    font-size: 0.32rem;
  }
  .zy_lxwm .lxwm_content {
    padding: 0.4rem;
    width: 100%;
    margin: 0;
  }
  .zy_lxwm .lxwm_content .tel img {
    width: 0.83rem;
    margin-top: 0.15rem;
  }
  .zy_lxwm .lxwm_content .tel h3 {
    font-size: 0.4rem;
  }
  .zy_lxwm .lxwm_content .box {
    display: block;
  }
  .zy_lxwm .lxwm_content .box .left {
    width: 100%;
  }
  .zy_lxwm .lxwm_content .box .right {
    width: 100%;
  }
  .zy_lxwm .lxwm_content .box h2 {
    font-size: 0.4rem;
  }
  .zy_lxwm .lxwm_content .box p {
    font-size: 0.3rem;
  }
  .zy_lxwm .lxwm_content .box p img {
    width: 0.24rem;
  }
  .zy_lxwm .lxwm_content .lxwm_add .add_ress {
    padding: 0.1rem 0.2rem;
  }
  .zy_lxwm .lxwm_content .lxwm_add .add_ress span {
    font-size: 0.28rem;
  }
  .zy_lxwm .lxwm_content .table {
    width: 100%;
  }
  .zy_lxwm .lxwm_content .table h2 {
    font-size: 0.4rem;
  }
  .zy_lxwm .lxwm_content .table .boxz {
    margin-bottom: 0.2rem;
    display: block;
  }
  .zy_lxwm .lxwm_content .table .boxz .ipt {
    width: 100%;
    margin-bottom: 0.2rem;
  }
  .zy_lxwm .lxwm_content .table .boxz .ipt p {
    font-size: 0.3rem;
    margin-bottom: 0.1rem;
  }
  .zy_lxwm .lxwm_content .table .boxz .ipt input {
    height: 0.7rem;
  }
  .zy_lxwm .lxwm_content .table .boxz .ipt textarea {
    height: 2rem;
  }
  .zy_lxwm .lxwm_content .table .boxz .ipt.yzm img {
    height: 0.7rem;
    width: auto;
  }
  .zy_lxwm .lxwm_content .table .boxz.ok {
    display: flex;
    justify-content: space-between;
  }
  .zy_lxwm .lxwm_content .table .boxz.ok .ipt {
    margin: 0;
    width: 49%;
  }
  .zy_lxwm .lxwm_content .table .boxz.ok .ipt .an_btn {
    height: 0.7rem;
    line-height: 0.7rem;
    font-size: 0.3rem;
  }
  .cult_box1 {
    height: auto;
  }
  .cult_box1 .box {
    width: 100%;
    padding: 0.4rem;
    float: initial;
  }
  .cult_box1 .box .scroll {
    height: auto;
  }
  .cult_box1 .box .scroll ul {
    width: 49%;
    margin-right: 0;
  }
  .cult_box1 .box .scroll .t1 {
    font-size: 0.32rem;
    padding-bottom: 0.1rem;
  }
  .cult_box1 .box .scroll .t2 {
    font-size: 0.28rem;
  }
  .cult_box2 {
    padding: 0.6rem 0.4rem 0;
    background-size: cover;
  }
  .cult_box2 .t {
    font-size: 0.42rem;
    line-height: 0.4rem;
  }
  .cult_box2 .con p {
    line-height: 1.5;
    font-size: 0.32rem;
  }
  .cult_box2 .con .img {
    margin: 0.26rem 0 0.2rem 0.2rem;
  }
  .pop .pop_nr {
    width: 92%;
    height: auto;
    max-height: 8rem;
    padding: 0.4rem;
  }
  .pop .clo {
    top: -12%;
  }
  .pop .clo i {
    font-size: 0.4rem;
  }
  .pop .scroll {
    max-height: 7rem;
  }
  .pop .pop_nr img {
    max-width: 500%;
  }
  #dszzc {
    padding: 0.4rem 0 0 0;
  }
  #dszzc .w14 {
    display: block;
  }
  #dszzc .dsz {
    width: 100%;
    height: auto;
    position: initial;
  }
  #dszzc .dszzc {
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    padding: 0.4rem;
  }
  #dszzc .dszzc .tit {
    padding: 0 0 0.2rem 0;
    margin: 0;
    font-size: 0.42rem;
    text-indent: 1.6em;
  }
  #dszzc .dszzc .nr {
    padding: 0;
  }
  #dszzc .dszzc .nr h5 {
    font-size: 0.36rem;
    padding-bottom: 0.2rem;
  }
  #dszzc .dszzc .nr p {
    font-size: 0.32rem;
    line-height: 1.5;
  }
  #ryzz {
    height: auto;
  }
  #ryzz .ry_swi {
    padding: 0.4rem;
    margin: 0;
  }
  #ryzz .ry_swi .swiper {
    width: 100%;
  }
  #ryzz .ry_swi .swiper .pe {
    width: 100%;
    height: auto;
    padding: 0.4rem;
  }
  #ryzz .ry_swi .swiper .pe .img {
    height: auto;
  }
  #ryzz .ry_swi .swiper .pe .img img {
    max-width: 100%;
    max-height: 5rem;
  }
  #ryzz .ry_swi .swiper .pe h3 {
    margin-top: 0.4rem;
    font-size: 0.32rem;
  }
  #ryzz .ry_swi .arrow_down{
    display: none;
  }
  .zy_dszzc .popup .popcon{
      width:100%;
  }
  #ppzl {
    padding: 0.4rem;
  }
  #ppzl .title {
    margin: 0;
  }
  #ppzl .tips {
    font-size: 0.32rem;
    line-height: 1.5;
    margin: 0;
    padding: 0.4rem 0;
  }
  #ppzl .ppzl_nr {
    padding: 0.5rem 0;
  }
  .vlightBox video,
  .vlightBox iframe {
    width: 100%;
  }
  .vlightBox .pro_close {
    width: 0.8rem;
    height: 0.8rem;
  }
  .vlightBox .pro_close i {
    font-size: 0.4rem;
  }
  .zy_splx ul {
    padding: 0.4rem;
    margin: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .zy_splx ul li {
    height: auto;
    width: 100%;
    margin-right: 0;
  }
  .zy_splx ul li:last-child {
    margin-bottom: 0;
  }
  .zy_tpbd ul {
    padding: 0.4rem;
    margin-top: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .zy_tpbd ul li {
    width: 100%;
    margin-right: 0;
  }
  .zy_tpbd ul li a .img {
    height: auto;
  }
  .zy_tpbd ul li a .nr {
    padding: 0.1rem 0.4rem;
  }
  .zy_tpbd ul li a .nr p,
  .zy_tpbd ul li a .nr em {
    font-size: 0.3rem;
  }
  .zy_tpbd ul li a .nr h2 {
    font-size: 0.3rem;
  }
  .zy_tpbd ul li a .nr em img {
    width: 0.24rem;
  }
  .wzdt {
    height: auto;
    background-size: cover;
  }
  .zy_wzdt ul {
    padding: 0.8rem 0.4rem;
    margin: 0;
  }
  .zy_wzdt ul li > a {
    font-size: 0.36rem;
  }
  .zy_wzdt ul li .dt_nav {
    width: 100%;
    flex:initial;
    margin-top: 0.3rem;
  }
  .zy_wzdt ul li .dt_nav a {
    font-size: 0.36rem;
    padding-left: 0.2rem;
    margin-bottom: 0.2rem;
    float:initial;
    display:block;
  }
  .zy_wzdt ul li .dt_nav a::before {
    width: 0.1rem;
    height: 0.1rem;
  }
  .zy_xwxq {
    padding: 0.4rem;
  }
  .zy_xwxq .lef {
    margin: 0;
    width: 100%;
    float: initial;
  }
  .zy_xwxq .lef .padd_rt {
    padding: 0;
    border: 0;
  }
  .zy_xwxq .lef .x_head h2 {
    font-size: 0.44rem;
  }
  .zy_xwxq .lef .x_head .bd {
    font-size: 0.32rem;
  }
  .zy_xwxq .lef .font {
    display: none!important;
  }
  .zy_xwxq .lef .xq_con p {
    font-size: 0.32rem;
  }
  .zy_xwxq .rig {
    width: 100%;
    float: initial;
    padding: 0.5rem 0 0;
  }
  .zy_xwxq .rig .t {
    font-size: 0.4rem;
  }
  .zy_xwxq .rig .first_item {
    border-bottom: 0.1rem solid #e9e9e9;
  }
  .zy_xwxq .rig .first_item .img {
    height: auto;
  }
  .zy_xwxq .rig .first_item p {
    font-size: 0.3rem;
  }
  .zy_xwxq .rig .item {
    padding: 0.3rem 0;
  }
  .zy_xwxq .rig .tit {
    font-size: 0.32rem;
  }
  .sxp {
    padding: 0.14rem 0.3rem;
  }
  .sxp .lt {
    max-width: 100%;
  }
  .sxp .lt a {
    font-size: 0.3rem;
    padding: 0.1rem 0;
  }
  .sxp a.btn {
    display: none;
  }
  .zy_dszzc .popup .popcon p {
    font-size: 0.32rem;
  }
  .zy_dszzc .popup .ry_close {
    font-size: 0.4rem;
  }
  .new_lxwm_phone{
      padding:0 .3rem;
  }
  .new_lxwm_phone h2{
      font-size:.42rem;
  }
  .new_lxwm_phone .scroll{
      overflow-x:auto;
  }
    .contact_form {
  padding: 0.4rem 0.3rem 0;
 }
.contact_form .t1 {
  font-size: 0.44rem;
  font-weight: bold;
  color: #005aa9;
}
.contact_form .t2 {
  font-size: 0.44rem;
}
.contact_form .job_title {
  font-size: 0.30rem;
}
.contact_form .list {
  background: #fff;
  padding: 0.08rem 0.3rem;
  margin-top: 0.2rem;
  overflow: hidden;
}
.contact_form .list .text {
  color: #333;
  font-size: 0.28rem;
  padding: 0.32rem 0 0.1rem;
  display: block;
}
.contact_form .list .text i {
  display: inline-block;
  color: #0059b5;
  padding-right: 0.05rem;
}
.contact_form .list .ipt_box {
  height: 0.7rem;
  background: #f8f8f8;
  position: relative;
  border-radius: 0.05rem;
}
.contact_form .list .ipt_box input[type="text"] {
  display: block;
  width: 100%;
  padding: 0 0.2rem;
  height: 0.7rem;
  line-height: 0.7rem;
  font-size: 0.28rem;
}
.contact_form .list .ipt_box input::placeholder {
  color: #999;
}
.contact_form .list .ipt_box select{
    display: block;
    width: 97%;
    padding: 0 0.2rem;
    height: 0.7rem;
    line-height: 0.7rem;
    font-size: 0.28rem;
}
.contact_form .list .rad_box{
    display:flex;
    align-items:center;
    color:#999;
    font-size:.28rem;
    padding:0 .2rem;
}
.contact_form .list .rad_box input{
    margin-right:.15rem;
}
.contact_form .list .rad_box label{
    margin-right:.5rem;
    display:inline-flex;
    align-items:center;
}
.contact_form .list .ipt_box textarea {
  display: block;
  width: 100%;
  padding: 0.2rem;
  font-size: 0.28rem;
  resize: none;
  font-family: '微软雅黑';
}
.contact_form .list .ipt_box textarea::placeholder {
  color: #999;
}
.contact_form .list .w100 {
  width: 100%;
  margin-bottom: 0.28rem;
}
.contact_form .list .h200 {
  height: 1.9rem;
}
.contact_form .list .yzm input {
  padding-right: 1rem;
}
.contact_form .list .yzm img {
  width: 1.4rem;
  position: absolute;
  right: 0.24rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.contact_form button {
  display: block;
  width: 2.5rem;
  height: 0.8rem;
  line-height: 0.8rem;
  text-align: center;
  color: #fff;
  font-size: 0.28rem;
  border-radius: 0.08rem;
  background: #0059b5;
  transition: all 0.2s;
  cursor: pointer;
  border: 0;
  margin: 0.4rem auto 0.64rem;
}
.post_list{
        padding:0 .3rem;
    }
    .post_list .item-head{
        height:auto;
        display:block;
        padding:.2rem .3rem;
        position:relative;
    }
    .post_list .item.on .item-head{
        border-bottom:1px solid #e6eaf6;
    }
    .post_list .item-head h1{
        font-size:.36rem;
        margin-right:0;
        width:90%;
        padding:0 0 .2rem 0;
    }
    .post_list .item-head span{
        display:block;
        font-size:.3rem;
        margin:0;
        padding:.05rem 0;
    }
    .post_list .item-head .anniu{
        position:absolute;
        right:.3rem;
        top:.3rem;
    }
    .post_list .item-head .anniu img{
        width:.45rem;
    }
    .post_list .item-content div h1{
        font-size:.34rem;
    }
    .post_list .item-content div p{
        font-size:.3rem;
    }
    .post_list .item-content .btn{
        width:auto;
        height:auto;
        padding:.1rem .24rem;
        font-size:.34rem;
        margin-right:.3rem;
    }
    .product_about h1 {
        background-size: 100% auto !important;
        padding-top: .6rem;
    }
}
