* {
  box-sizing: border-box;
  outline: 0;
}
@font-face {
  font-family: "myfont";
  src: url("../fonts/Oswald-Regular.woff2") format("woff2"), url("../fonts/Oswald-Regular.woff") format("woff"), url("../fonts/Oswald-Regular.ttf") format("truetype"), url("../fonts/Oswald-Regular.eot") format("embedded-opentype"), url("../fonts/Oswald-Regular.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "myfont2";
  src: url("../fonts/Oswald-Bold.woff2") format("woff2"), url("../fonts/Oswald-Bold.woff") format("woff"), url("../fonts/Oswald-Bold.ttf") format("truetype"), url("../fonts/Oswald-Bold.eot") format("embedded-opentype"), url("../fonts/Oswald-Bold.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "myfont3";
  src: url("../fonts/Oswald-ExtraLight.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "myfont4";
  src: url("../fonts/RIGHTEOUS-REGULAR.TTF");
  font-weight: normal;
  font-style: normal;
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: 0;
}
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
em,
img,
strong,
b,
small,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
sub,
sup,
tt,
var,
del,
dfn,
ins,
kbd,
q,
s,
samp,
strike,
applet,
object,
iframe,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
mark,
audio,
video,
input,
textarea,
select {
  margin: 0;
  padding: 0;
}
a {
  color: #666;
  outline: none;
  text-decoration: none;
}
a:hover {
  color: #003ba3;
}
ol,
ul {
  list-style: none;
}
img {
  border: 0;
  max-width: 100%;
}
table {
  border-collapse: collapse;
  width: 100%;
}
input[type='reset'],
input[type='button'],
input[type='submit'],
input[type='radio'] {
  cursor: pointer;
  outline: none;
}
input[type='checkbox'],
input[type='radio'] {
  position: relative;
  vertical-align: middle;
  margin: -2px 5px 1px;
}
textarea,
input[type='email'],
input[type='date'],
input[type='password'],
input[type='text'] {
  padding: 0;
  color: #ca8189;
  outline: none;
}
html {
  font-size: 100px;
}
@media (max-width: 1600px) {
  html {
    font-size: 80px;
  }
}
@media (max-width: 1450px) {
  html {
    font-size: 75px;
  }
}
@media (max-width: 1400px) {
  html {
    font-size: 72px;
  }
}
@media (max-width: 1300px) {
  html {
    font-size: 68px;
  }
}
.f-l {
  float: left;
}
.f-r {
  float: right;
}
/*清楚浮动*/
.clearfix:after {
  clear: both;
  height: 0;
  content: "";
  line-height: 0;
  font-size: 0;
  display: block;
}
/*图片垂直水平居中*/
.vcenter {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 100%;
  max-height: 100%;
  display: block;
  vertical-align: middle;
  text-align: center;
  margin: auto;
}
.hid {
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ellipsis1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
/*多行省略隐藏*/
.ellipsis2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.ellipsis3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}
.ellipsis4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
}
.ellipsis5 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 5;
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.animated.bounceIn,
.animated.bounceOut,
.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: 0.75s;
}
@keyframes dong {
  0% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp2 {
  from {
    opacity: 0;
    transform: translate3d(0, 100px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp2 {
  animation-name: fadeInUp2;
}
@keyframes fadeInUp3 {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp3 {
  animation-name: fadeInUp3;
}
@keyframes fadeInDown2 {
  from {
    opacity: 0;
    transform: translate3d(0, -200px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown3 {
  animation-name: fadeInDown3;
}
@keyframes fadeInDown3 {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown2 {
  animation-name: fadeInDown2;
}
@keyframes fadeInLeft2 {
  from {
    opacity: 0;
    transform: translate3d(-200px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft2 {
  animation-name: fadeInLeft2;
}
@keyframes fadeInRight2 {
  from {
    opacity: 0;
    transform: translate3d(200px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight2 {
  animation-name: fadeInRight2;
}
.scrollArrow1 {
  animation-name: scrollArrow1;
}

@-webkit-keyframes bmove2 {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	100% {
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
	}
}

@keyframes bmove2 {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	100% {
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
	}
}

@keyframes bmove1 {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes scrollArrow {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes scrollArrow1 {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes xuanzhuan {
  from {
    transform: rotate(0);
  }
  to {
    opacity: 1;
    transform: rotate(180deg);
  }
}
.xuanzhuan {
  animation-name: xuanzhuan;
}
@keyframes xuanzhuan2 {
  from {
    transform: rotate(0);
  }
  to {
    opacity: 1;
    transform: rotate(-180deg);
  }
}
@keyframes xuanzhuan3 {
  from {
    transform: rotate(0);
  }
  to {
    opacity: 1;
    transform: rotate(360deg);
  }
}
.xuanzhuan {
  animation-name: xuanzhuan2;
}
body {
  color: #666;
  background: #fff;
  margin: 0 auto;
  font-size: 0.16rem;
  position: relative;
  line-height: 1.5;
  font-family: "微软雅黑", "arial";
}
@media (max-width: 1023px) {
  body {
    font-size: 14px;
  }
}
img {
  border: 0;
  max-width: 100%;
  vertical-align: top;
}
.f50 {
  font-size: 0.5rem;
}
.f48 {
  font-size: 0.48rem;
  line-height: 0.5rem;
}
.f30 {
  font-size: 0.3rem;
}
.f24 {
  font-size: 0.24rem;
}
.f20 {
  font-size: 0.2rem;
}
.f18 {
  font-size: 0.18rem;
}
@media (max-width: 1023px) {
  .f48 {
    font-size: 30px;
  }
  .f30 {
    font-size: 20px;
  }
  .f24 {
    font-size: 18px;
  }
  .f20 {
    font-size: 16px;
  }
  .f18 {
    font-size: 14px;
  }
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-thumb {
  height: 0px;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.2);
  background-color: #ccc;
}
::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.3);
}
::-webkit-scrollbar-thumb:active {
  background-color: rgba(0, 0, 0, 0.3);
}
.vcenter {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: block;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  vertical-align: middle;
}
.clearfix:after {
  clear: both;
  height: 0;
  content: "";
  line-height: 0;
  font-size: 0;
  display: block;
}
.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1600px) {
  .container {
    max-width: 1200px;
  }
}
@media (max-width: 1200px) {
  .container {
    padding: 0 20px;
  }
}
@media (max-width: 1023px) {
  .container {
    max-width: 640px;
  }
}
@media (max-width: 640px) {
  .container {
    width: 100%;
  }
}
.dw {
  top: -1.08rem;
  z-index: -1;
  position: absolute;
}
.header {
  top: 0;
  left: 0;
  width: 100%;
  height: 0.9rem;
  z-index: 99;
  background: #ffffff;
  line-height: 0.9rem;
  position: fixed;
  box-shadow: 0 0 0.2rem rgba(220, 237, 255, 0.4);
  transition: all 334ms ease;
  background-image: -webkit-linear-gradient(left, #003ba3, #16abd5, #2c7aeb);
}
.header .container {
  max-width: 16rem;
}
.header .logo {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.header .logo img {
  max-height: 0.8rem;
  transition: all 500ms ease;
}
.header .header-search {
  float: right;
  display: inline-block;
}
.header .header-search a {
  transition: all 500ms ease;
}
.header .header-search a:hover {
  opacity: 0.6;
}
.header .header-search img {
  max-height: 0.24rem;
  vertical-align: middle;
  margin-bottom: 0.05rem;
}
.header .nav {
  float: right;
  padding-right: 1.3rem;
}
.header .nav li {
  float: left;
  padding: 0 0.38rem;
}
.header .nav li > a {
  /* color: #222; */
  color: #fff;
  display: block;
  font-weight: 700;
  position: relative;
  font-size: 0.18rem;
}
.header .nav li i {
  display: inline-block;
  font-style: normal;
  width: 0.06rem;
  height: 0.06rem;
  margin-left: 0.15rem;
  vertical-align: middle;
  margin-top: -0.08rem;
  /* border-bottom: solid 1px #9a9a9a; */
  /* border-right: solid 1px #9a9a9a; */
  border-bottom: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg);
  font-family: "宋体";
}
.header .nav li .subnav {
  text-align: center;
  top: 0.9rem;
  left: 0;
  width: 100%;
  display: none;
  position: absolute;
  padding: 0.3rem 0 0rem 0;
  /* background: #f7f7f7; */
  background: #fff;
}
.header .nav li .subnav a {
  height: auto;
  line-height: 0.3rem;
}
.header .nav li dl {
  overflow: hidden;
  padding: 0 0.5rem;
  display: inline-block;
  position: relative;
}
.header .nav li dl:before {
  content: "";
  width: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 0.24rem;
  position: absolute;
  background: #c8c8c8;
}
.header .nav li dl:hover .ico1 {
  opacity: 0;
}
.header .nav li dl:hover .ico2 {
  opacity: 1;
  transform: translate(0);
}
.header .nav li dl:first-child:before {
  display: none;
}
.header .nav li dt {
  margin: 0 auto;
  width: 0.45rem;
  height: 0.45rem;
  overflow: hidden;
  position: relative;
}
.header .nav li dt .ico2 {
  top: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: all 334ms ease;
  transform: translateY(0.2rem);
}
.header .nav li dd {
  overflow: hidden;
  height: 0.3rem;
  line-height: 0.3rem;
  margin-top: 0rem;
}
.header .nav li .drop {
  border-top: solid 1px #e7e6e3;
  text-align: left;
}
.header .nav li .drop .box {
  overflow: hidden;
  display: none;
  padding: 0 1rem;
  line-height: 0.3rem;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}
.header .nav li .drop .box span {
  width: 16.66666667%;
  display: block;
  float: left;
}
.header .nav li .drop .box em {
  font-family: "宋体";
  font-style: normal;
}
.header .nav li .drop .box .sanji {
  padding-top: 0.1rem;
  padding-left: 0.18rem;
}
.header .nav li .drop .box .sanji a {
  padding-left: 0.15rem;
  display: block;
  position: relative;
}
.header .nav li .drop .box .sanji a:before {
  left: 0;
  top: 15px;
  content: "";
  height: 0.04rem;
  width: 0.04rem;
  background: #555;
  border-radius: 100%;
  position: absolute;
}
.header .nav li:nth-child(2) .cur .ico1 {
  opacity: 0;
}
.header .nav li:nth-child(2) .cur .ico2 {
  opacity: 1;
  transform: translate(0);
}
.header .nav li:nth-child(2) .cur .tit {
  color: #003ba3;
}
.header .nav li:hover .subnav {
  display: block;
}
.header .nav li:hover > a,
.header .nav .active > a {
  font-weight: 700;
  /* color: #003ba3; */
}
.header .nav li:hover > a:after,
.header .nav .active > a:after {
  left: 0;
  opacity: 1;
  width: 100%;
}
@media (max-width: 1023px) {
  .header {
    top: 0;
    height: 50px;
    width: 100%;
    z-index: 99;
    line-height: 50px;
    position: fixed;
    background: #fff;
    border-bottom: 0;
    padding: 0 0px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  }
  .header .logo {
    width: auto;
    height: auto;
    margin-left: 0;
    padding-top: 5px;
  }
  .header .logo img {
    max-height: 40px;
  }
  .header .header-search,
  .header .messageBtn {
    display: none;
  }
  .header .hmenu {
    display: block;
  }
  .header .nav {
    display: none;
  }
  .header .language {
    color: #999;
    margin: 0;
    margin-right: 10px;
  }
  .header .language a {
    padding: 0 5px;
    font-size: 14px;
    color: #999;
  }
  .header .language img {
    display: none;
  }
  .header .container {
    max-width: 640px;
  }
}
.header-2 {
  background: transparent;
  box-shadow: none;
  border-bottom: solid 1px rgba(255, 255, 255, 0.4);
}
.header-2 .nav li > a {
  color: #fff;
}
.header-2 .nav li i {
  border-color: #fff;
}
@media (max-width: 1023px) {
  .header-2 {
    background: rgba(0, 0, 0, 0.5);
  }
}
.header-search .pull-right {
  width: 28px;
  height: 28px;
}
.header-search .pull-right a {
  display: block;
  width: 28px;
  height: 28px;
  text-align: center;
  background: url("../images/search.png") no-repeat center center;
  background-size: 16px;
}
.header .header-search .search {
  z-index: 9;
  position: relative;
}
.header-search .search .btn-search-max {
  z-index: 2;
  -webkit-transition: All 0.2s ease-in-out;
  transition: All 0.2s ease-in-out;
  position: relative;
}
.header-search .search .btn-search-max * {
  display: inline-block;
  vertical-align: middle;
}
.header-search .search .search-main {
  top: 0px;
  right: -20px;
  z-index: 9;
  width: 340px;
  display: none;
  padding: 20px;
  position: absolute;
}
@media (max-width: 640px) {
  .header-search .search .search-main {
    right: -140px;
    width: 280px;
  }
}
.header-search .search-container {
  background-color: #fff;
  padding-left: 0;
  overflow: hidden;
  position: relative;
  height: 42px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
}
.header-search .search-container .form-control {
  text-align: left;
  border: 0;
  width: 100%;
  font-size: 14px;
  color: #999;
  line-height: 20px;
  height: 42px;
  vertical-align: top;
  padding: 10px 86px 10px 10px;
  -webkit-appearance: none;
  background-color: #ffffff;
}
.header-search .search-container .btn {
  top: 0;
  right: 0;
  color: #fff;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  position: absolute;
  cursor: pointer;
  border-radius: 0;
  border: 0;
  background: #003ba3;
}
.header-search #search-closed {
  right: 0;
  top: 15px;
  max-width: 30px;
  position: absolute;
  cursor: pointer;
}
.banner {
  position: relative;
  overflow: hidden;
  height: 100vh;
}
.banner .pic {
  position: relative;
}
.banner .tu {
  display: block;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.banner .txtbox {
  left: 0;
  width: 100%;
  z-index: 2;
  color: #fff;
  top: 50%;
  transform: translateY(-40%);
  position: absolute;
}
.banner .item {
  width: 5.3rem;
  float: right;
}
.banner .item1 {
  width: auto;
  float: left;
}

.banner .item1 .t1,.banner .item1 .t2,.banner .item1 .t3{
	color:#fff;
}


.banner .index-arrow {
  text-align: left;
}
.banner .t1 {
  color: #003ba3;
  line-height: 0.6rem;
  font-size: 0.6rem;
  font-weight: 700;
}
.banner .t2 {
  color: #666;
  padding-top: 0.05rem;
}
.banner .t3 {
  color: #000;
  font-weight: 700;
  font-size: 0.3rem;
  padding-top: 0.4rem;
}

.banner .item1 .t3{
	font-size: 0.24rem;
}

.banner .t4 {
  color: #000000;
  font-size: 0.2rem;
}
.banner .arrow {
  width: 0.06rem;
  height: 0.06rem;
  background: #000000;
  display: inline-block;
  border-radius: 50%;
  margin: 0 0.15rem;
  vertical-align: middle;
}
.banner .button {
  margin-top: 0.9rem;
}
.banner .button a {
  color: #fff;
  height: 0.52rem;
  width: 2rem;
  margin-right: 0.15rem;
  display: inline-block;
  padding-left: 0.4rem;
  line-height: 0.52rem;
  background: #00afed;
  transition: all 334ms ease;
}
.banner .button a:hover {
  opacity: 0.85;
  width: 1.7rem;
}
.banner .button a:hover i {
  margin-left: 0.1rem;
}
.banner .button i {
  display: inline-block;
  vertical-align: top;
  margin-left: 0.3rem;
  vertical-align: middle;
  margin-bottom: 0.05rem;
  transition: all 334ms ease;
  border-left: solid 0.08rem #ffffff;
  border-top: solid 0.06rem transparent;
  border-bottom: solid 0.06rem transparent;
}
.banner .button a:last-child {
  margin-right: 0;
  background: #003ba3;
}
.banner .button a:last-child span {
  margin-top: 0.12rem;
  vertical-align: top;
  text-align: center;
  line-height: 0.24rem;
  margin-left: 0.3rem;
  width: 0.26rem;
  height: 0.26rem;
  border-radius: 50%;
  display: inline-block;
  border: solid 1px #fff;
}
.banner .button a:last-child i {
  margin-left: 0;
}
.banner .slick-dots {
  bottom: 0.5rem;
}
.banner .slick-dots li {
  line-height: 0.4rem;
  text-align: center;
  margin-top: 0;
}
.banner .slick-dots li.slick-active button {
  width: 0.3rem;
  background: #00afed;
}
.banner .slick-dots li button {
  width: 0.08rem;
  height: 0.08rem;
  opacity: 1;
  margin: 0 0.05rem;
  position: relative;
  transition: all 500ms ease;
  background: rgba(255, 255, 255, 0.7);
}
.banner .slick-active .tu {
  animation: 4s ease bmove1;
}
.banner .slick-active .t1 {
  animation: 1.5s ease fadeInUp2;
}
.banner .slick-active .t2 {
  animation: 1.5s ease fadeInUp2;
}
.banner .slick-active .t3 {
  animation: 1.5s ease fadeInUp2;
}
.banner .slick-active .t4 {
  animation: 1.5s ease fadeInUp2;
}
@media (max-width: 1023px) {
  .banner {
    height: 60vh;
    margin-top: 50px;
  }
  .banner .tu {
    height: 60vh;
  }
  .banner .button {
    display: none;
  }
}
@media (max-width: 640px) {
  .banner {
    height: 45vh;
  }
  .banner .tu {
    height: 45vh;
  }
  .banner .item {
    width: 100%;
  }
  .banner .index-arrow {
    display: none;
    text-align: center;
  }
  .banner .txtbox {
    top: 30%;
    text-align: center;
  }
  .banner .t1 {
    font-size: 24px;
    line-height: 30px;
  }
  .banner .t3 {
    font-size: 18px;
    padding-top: 10px;
  }
  .banner .t4 {
    display: none;
    font-size: 16px;
  }
}
.index-arrow {
  position: relative;
  text-align: center;
  margin-bottom: 0.1rem;
}
.index-arrow .arr1,
.index-arrow .arr2 {
  z-index: 2;
  position: relative;
  display: inline-block;
  width: 0.24rem;
  height: 0.24rem;
  background: #00afed;
  border-radius: 100%;
}
.index-arrow .arr1 {
  animation: 1.5s scrollArrow ease infinite;
}
.index-arrow .arr2 {
  animation: 1.7s scrollArrow ease infinite;
}
.index-arrow .arr2 {
  top: 0.1rem;
  margin-left: -0.2rem;
  background: #003ba3;
}
@media (max-width: 1000px) {
  .index-arrow {
    margin-bottom: 10px;
  }
  .index-arrow .arr1,
  .index-arrow .arr2 {
    width: 12px;
    height: 12px;
  }
  .index-arrow .arr2 {
    top: 5px;
    margin-left: -10px;
  }
}
.index-title {
  text-align: center;
  position: relative;
}
.index-title .cn {
  z-index: 2;
  color: #000000;
  font-weight: 700;
  position: relative;
  font-size: 0.36rem;
  line-height: 0.4rem;
}
.index-title .en {
  top: 0.2rem;
  width: 100%;
  text-align: center;
  color: #f1f4f8;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 0.8rem;
  text-transform: uppercase;
  position: absolute;
}
@media (max-width: 1023px) {
  .index-title .cn {
    font-size: 24px;
    line-height: 30px;
  }
  .index-title .en {
    font-size: 60px!important;
    line-height: 70px!important;
  }
}
.index-product {
  overflow: hidden;
  background-color: #f7fbff;
}
.index-product .index-title {
  margin-top: 0.6rem;
}
.index-product .index-title .cn {
  color: #fff;
}
.index-product .index-title .en {
  color: #00a5ff30;
}
.index-product .promenu {
  padding-top: 0.4rem;
  text-align: center;
}
.index-product .promenu ul {
  font-size: 0;
}
.index-product .promenu li {
  cursor: pointer;
  margin: 0 0.08rem;
  display: inline-block;
  width: 1.52rem;
  height: 0.4rem;
  font-size: 0.18rem;
  border-radius: 0.3rem;
  line-height: 0.4rem;
  transition: all 334ms ease;
  background: #003ba3;
}
.index-product .promenu li a {
  display: block;
  color: #fff;
}
.index-product .promenu li:hover,
.index-product .promenu .active {
  background: #00afed;
}
.index-product .protab {
  display: none;
  margin-top: 0.6rem;
}
.index-product .protab ul {
  margin: 0 -0.26rem;
  margin-right: -0.2rem;
}
.index-product .protab li {
  padding: 0 0.26rem;
}
.index-product .protab li:hover .txtbox {
  padding-top: 0.6rem;
}
.index-product .protab li:hover .pic img {
  transform: scale(0.95);
}
.index-product .protab li:hover .tit {
  text-decoration: underline;
}
.index-product .protab .item {
  position: relative;
  text-align: center;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: top center;
  background-image: url(../images/probg.jpg);
  height: 5.57rem;
}
.index-product .protab .txtbox {
  padding: 0 0.2rem;
  padding-top: 0.5rem;
  transition: all 500ms ease;
}
.index-product .protab .tit {
  color: #fff;
  height: 0.4rem;
  font-weight: 700;
  line-height: 0.4rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.index-product .protab .txt {
  color: #fff;
  margin: 0.1rem 0;
  line-height: 0.3rem;
  height: 0.3rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.index-product .protab .more {
  color: #fff;
  font-size: 0.14rem;
}
.index-product .protab .more i {
  font-style: normal;
  font-family: "宋体";
  font-size: 0.18rem;
  margin-left: 0.1rem;
}
.index-product .protab .pic {
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  position: absolute;
}
.index-product .protab .pic:after {
  content: "";
  display: block;
  padding-bottom: 86.36363636%;
}
.index-product .protab .pic img {
  transition: all 700ms ease;
}
.index-product .slick-prev,
.index-product .slick-next {
  width: 0.44rem;
  height: 0.44rem;
  border: 0;
  transition: all 334ms ease;
  line-height: 0.44rem;
  margin-top: -0.21rem;
  background: #00afed;
}
.index-product .slick-prev:before,
.index-product .slick-next:before {
  content: "";
  font-size: 0.24rem;
  color: #fff;
  font-family: "宋体";
  font-weight: 700;
  transition: all 334ms ease;
}
.index-product .slick-prev:hover,
.index-product .slick-next:hover {
  background: #003ba3;
}
.index-product .slick-prev:hover:before,
.index-product .slick-next:hover:before {
  font-size: 0.2rem;
}
.index-product .slick-prev {
  left: -0.5rem;
}
.index-product .slick-prev:before {
  content: "<";
}
.index-product .slick-next {
  right: -0.5rem;
}
.index-product .slick-next:before {
  content: ">";
}
@media (max-width: 1300px) {
  .index-product .protab .pic:after {
    padding-bottom: 70%;
  }
  .index-product .slick-prev {
    left: 0;
  }
  .index-product .slick-next {
    right: 0;
  }
}
@media (max-width: 1023px) {
  .index-product {
    padding: 20px 0 40px 0;
  }
  .index-product .index-title {
    margin-top: 0;
  }
  .index-product .promenu {
    padding-top: 20px;
  }
  .index-product .promenu li {
    margin: 0 3px;
    width: auto;
    height: 30px;
    padding: 0 10px;
    display: inline-block;
    font-size: 14px;
    border-radius: 30px;
    line-height: 30px;
  }
  .index-product .protab ul {
    margin: 0;
  }
  .index-product .protab li {
    padding: 0;
  }
  .index-product .protab .more {
    font-size: 14px;
  }
  .index-product .protab .tit {
    height: 40px;
    line-height: 40px;
  }
  .index-product .protab .txt {
    height: 30px;
    line-height: 30px;
    margin: 0;
  }
  .index-product .slick-prev,
  .index-product .slick-next {
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-top: -15px;
  }
  .index-product .slick-prev:before,
  .index-product .slick-next:before {
    font-size: 20px!important;
  }
}
@media (max-width: 640px) {
  .index-product {
    padding-bottom: 0;
  }
  .index-product .container {
    padding-left: 0;
    padding-right: 0;
  }
  .index-product .slick-prev {
    left: 0px;
  }
  .index-product .slick-next {
    right: 0px;
  }
  .index-product .protab {
    margin-top: 30px;
  }
  .index-product .protab ul {
    margin: 0 -5px;
  }
  .index-product .protab li {
    padding: 0 5px;
  }
  .index-product .protab .txtbox {
    padding: 20px;
  }
  .index-product .protab .txtbox .txt {
    display: none;
  }
  .index-product .protab .txtbox .more {
    display: none;
  }
  .index-product .protab .item {
    height: 350px;
  }
}
.index-more {
  width: 2rem;
  height: 0.52rem;
  color: #fff;
  font-size: 0.18rem;
  margin-top: 0.9rem;
  line-height: 0.52rem;
  text-align: center;
  background: #00afed;
  display: inline-block;
}
.index-more a,
.index-more span {
  color: #fff;
  display: block;
}
.index-more img {
  max-height: 0.3rem;
  vertical-align: middle;
  transition: all 500ms ease;
  margin-left: 0.3rem;
  margin-bottom: 0.04rem;
}
.index-more:hover {
  background: #003ba3;
}
.index-more:hover img {
  margin-left: 0.2rem;
}
@media (max-width: 1023px) {
  .index-more {
    width: 140px;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
    margin-top: 30px!important;
  }
  .index-more img {
    margin-left: 10px;
    margin-bottom: 2px;
    max-height: 20px;
  }
}
.index-application {
  position: relative;
  overflow: hidden;
}
.index-application .bigimg .slick-active .item {
  animation: fadeInUp2 1.5s ease;
}
.index-application .bigimg .box {
  height: 100vh;
  color: #fff;
  display: flex;
  align-items: center;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
.index-application .bigimg .item {
  width: 6.5rem;
}
.index-application .bigimg .icon {
  display: block;
  margin-left: -0.2rem;
}
.index-application .bigimg .icon img {
  max-height: 1.2rem;
}
.index-application .bigimg .tit {
  margin-top: 0.2rem;
  font-size: 0.4rem;
  font-weight: 700;
  line-height: 0.5rem;
}
.index-application .bigimg .tit span {
  padding-bottom: 0.15rem;
  display: inline-block;
  position: relative;
}
.index-application .bigimg .tit span:after {
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: #fff;
  position: absolute;
}
.index-application .bigimg .tit span:before {
  bottom: 0px;
  left: 0;
  z-index: 1;
  content: "";
  height: 2px;
  width: 0.3rem;
  position: absolute;
  background: #00afed;
}
.index-application .bigimg .txt {
  overflow: hidden;
  height: 0.9rem;
  margin-top: 0.3rem;
  line-height: 0.3rem;
}
.index-application .bigimg .more {
  margin-top: 0.6rem;
}
.index-application .bigimg .more a {
  color: #fff;
  width: 2.2rem;
  height: 0.52rem;
  line-height: 0.5rem;
  text-align: center;
  display: inline-block;
  border: solid 1px #fff;
  transition: all 500ms ease;
}
.index-application .bigimg .more span {
  margin-top: 0.12rem;
  vertical-align: top;
  text-align: center;
  line-height: 0.24rem;
  margin-left: 0.3rem;
  width: 0.26rem;
  height: 0.26rem;
  border-radius: 50%;
  display: inline-block;
  border: solid 1px #fff;
}
.index-application .bigimg .more i {
  display: inline-block;
  vertical-align: top;
  vertical-align: middle;
  margin-bottom: 0.05rem;
  transition: all 334ms ease;
  border-left: solid 0.08rem #ffffff;
  border-top: solid 0.06rem transparent;
  border-bottom: solid 0.06rem transparent;
}
.index-application .bigimg .more a:hover {
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}
.index-application .smallbox {
  right: 2.4rem;
  top: 0;
  z-index: 9;
  height: 100vh;
  padding-top: 2.5rem;
  padding-bottom: 2rem;
  width: 3.8rem;
  position: absolute;
  border-left: solid 1px rgba(255, 255, 255, 0.2);
  border-right: solid 1px rgba(255, 255, 255, 0.2);
}
.index-application .small li {
  cursor: pointer;
  display: flex;
  color: #fff;
  height: 1.9rem;
  align-items: center;
  font-size: 0.24rem;
  font-weight: 700;
  margin-top: -1px;
  padding-left: 0.4rem;
  background: rgba(255, 255, 255, 0.18);
  position: relative;
}
.index-application .small li:before {
  content: "";
  top: -1px;
  left: -1px;
  position: absolute;
  width: 100.6%;
  height: 100%;
  border: solid 1px rgba(255, 255, 255, 0.5);
  border-top: 0;
}
.index-application .small li img {
  max-height: 1.2rem;
  display: inline-block;
}
.index-application .small .slick-current {
  background: rgba(0, 176, 237, 0.18);
}
.index-application .small .slick-current:before {
  z-index: 3;
  border: solid 1px #3ba5cb;
}
.index-application .slick-prev,
.index-application .slick-next {
  width: 0.4rem;
  height: 0.4rem;
  left: 50%;
  border: 0;
  margin-left: -0.2rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.index-application .slick-prev {
  top: -1rem;
  margin-top: 0;
  background-image: url(../images/arrow-top.png);
  animation: 1s fadeInUp3 linear infinite;
}
.index-application .slick-next {
  top: auto;
  bottom: -1rem;
  background-image: url(../images/arrow-bot.png);
  animation: 1s fadeInDown3 linear infinite;
}
.index-application .slick-dots {
  opacity: 0;
}
@media (max-width: 1000px) {
  .index-application .bigimg .box {
    height: 55vh;
  }
  .index-application .bigimg .item {
    text-align: center;
    width: 100%;
  }
  .index-application .bigimg .icon {
    width: 60px;
    margin-left: 0;
    margin: 0 auto;
  }
  .index-application .bigimg .icon img {
    max-height: 60px;
  }
  .index-application .bigimg .more {
    margin-top: 20px;
  }
  .index-application .bigimg .more a {
    width: 140px;
    height: 40px;
    line-height: 38px;
  }
  .index-application .bigimg .more span {
    margin-top: 12px;
    vertical-align: top;
    text-align: center;
    line-height: 14px;
    margin-left: 10px;
    width: 16px;
    height: 16px;
  }
  .index-application .bigimg .more i {
    margin-bottom: 3px;
    border-left: solid 6px #ffffff;
    border-top: solid 4px transparent;
    border-bottom: solid 4px transparent;
  }
  .index-application .bigimg .tit {
    margin-top: 10px;
    font-size: 24px;
    line-height: 30px;
  }
  .index-application .bigimg .tit span {
    padding-bottom: 10px;
  }
  .index-application .bigimg .txt {
    line-height: 24px;
    height: 48px;
    margin-top: 20px;
  }
  .index-application .smallbox {
    display: none!important;
  }
  .index-application .slick-dots {
    opacity: 1;
  }
  .index-application .slick-dots li button {
    width: 8px;
    height: 8px;
  }
  .index-application .slick-dots li.slick-active button {
    background: #00afed;
  }
}
.index-youshi {
  overflow: hidden;
  position: relative;
}
.index-youshi .arrowbox {
  top: 0;
  left: 50%;
  width: 12.4rem;
  height: 12.4rem;
  position: absolute;
  border-radius: 50%;
  transform: translateX(-50%);
  border: solid 1px rgba(255, 255, 255, 0.1);
}
.index-youshi .arrimg1 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  width: 9.82rem;
}
.index-youshi .arrimg1 img {
  max-height: 9.82rem;
  animation: 4s xuanzhuan linear infinite;
}
.index-youshi .arrimg2 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  width: 7.82rem;
}
.index-youshi .arrimg2 img {
  max-height: 7.82rem;
  animation: 4s xuanzhuan2 linear infinite;
}
.index-youshi .arrimg3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  width: 6.1rem;
}
.index-youshi .arrimg3 img {
  max-height: 6.1rem;
  animation: 4s xuanzhuan linear infinite;
}
.index-youshi .arrimg4 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  width: 4.04rem;
}
.index-youshi .arrimg4 img {
  max-height: 4.04rem;
}
.index-youshi .arrimg4 .txtbox {
  color: #fff;
  top: 0.5rem;
  left: 1rem;
  position: absolute;
}
.index-youshi .arrimg4 .t1 {
  line-height: 0.46rem;
  font-size: 0.46rem;
  font-weight: 700;
  background-image: -webkit-linear-gradient(bottom, #c0e1f2, #fdfeff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.index-youshi .arrimg4 .t2 {
  margin-top: 0.2rem;
  font-family: arial;
  line-height: 0.32rem;
  font-size: 0.32rem;
}
.index-youshi .arrimg4 .t2 span {
  display: block;
}
.index-youshi .arrimg4 .num {
  top: 0.9rem;
  left: -0.78rem;
  position: absolute;
}
.index-youshi .arrimg4 .num img {
  max-height: 1.62rem;
}
.index-youshi .arrimg4 .index-arrow {
  text-align: left;
}
.index-youshi .tabcot {
  height: 100vh;
  display: none;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
.index-youshi .tabnav {
  top: 0%;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  position: absolute;
}
.index-youshi .tabnav .container {
  height: 100vh;
  position: relative;
}
.index-youshi .tabnav .itemh:hover,
.index-youshi .tabnav .active {
  background: rgba(0, 143, 229, 0.13);
}
.index-youshi .tabnav .itemh:hover .arrow,
.index-youshi .tabnav .active .arrow {
  color: #fff;
  background: #008fe5;
}
.index-youshi .tabnav .itemh:hover .ico .ic1,
.index-youshi .tabnav .active .ico .ic1 {
  opacity: 0;
}
.index-youshi .tabnav .itemh:hover .ico .ic2,
.index-youshi .tabnav .active .ico .ic2 {
  opacity: 1;
  transform: translate(0);
}


.index-youshi .tabnav .itemh {
  background: rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  position: absolute;
}
@media (min-width: 1023px) {
  .index-youshi .tabnav .itemh:hover .text {
    display: block;
  }
}
.index-youshi .tabnav .item {
  left: 2.9rem;
  top: 6.8rem;
  height: 2.4rem;
  width: 2.4rem;
}
.index-youshi .tabnav .item2 {
  top: 6.4rem;
  right: 1.8rem;
  height: 1.5rem;
  width: 1.5rem;
}
.index-youshi .tabnav .item2 .arrow {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.15rem;
}
.index-youshi .tabnav .item2 .text {
  left: 1.5rem;
}
.index-youshi .tabnav .item3 {
  top: 3rem;
  right: 3rem;
  height: 2rem;
  width: 2rem;
}
.index-youshi .tabnav .item3 .arrow {
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.25rem;
}
.index-youshi .tabnav .item3 .text {
  left: 2rem;
}
.index-youshi .tabnav .item4 {
  top: 4rem;
  left: 0.6rem;
  height: 1.5rem;
  width: 1.5rem;
}
.index-youshi .tabnav .item4 .arrow {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.15rem;
}
.index-youshi .tabnav .item4 .text {
  left: 1.5rem;
}
.index-youshi .tabnav .text {
  top: 50%;
  display: none;
  transform: translateY(-50%);
  left: 2.3rem;
  position: absolute;
  width: 3.36rem;
}
.index-youshi .tabnav .text:before {
  content: "";
  left: -0.16rem;
  width: 0.16rem;
  height: 0.25rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/yicon-5.png) no-repeat center center;
  background-size: cover;
}
.index-youshi .tabnav .tit {
  margin-top: 0.05rem;
}
.index-youshi .tabnav .txt {
  overflow: hidden;
  height: 1.6rem;
  background: #fff;
  padding: 0.3rem;
  position: relative;
  border-radius: 0.2rem;
}
.index-youshi .tabnav .txt:after {
  content: "";
  bottom: -0.3rem;
  right: -0.2rem;
  border-radius: 100%;
  position: absolute;
  width: 0.6rem;
  height: 0.6rem;
  background: #008fe5;
}
.index-youshi .tabnav .arrow {
  width: 1.8rem;
  height: 1.8rem;
  margin: 0 auto;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  margin-top: 0.3rem;
  text-align: center;
  color: #00afed;
  animation: 6s xuanzhuan3 linear infinite;
}
.index-youshi .tabnav .juzhong {
  width: 100%;
}
.index-youshi .tabnav .ico {
  overflow: hidden;
  height: 0.5rem;
  width: 0.5rem;
  position: relative;
}
.index-youshi .tabnav .ico img {
  max-height: 0.5rem;
}
.index-youshi .tabnav .ico i {
  display: inline-block;
  font-style: normal;
}
.index-youshi .tabnav .ico .ic2 {
  top: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  transform: translateY(20px);
  transition: all 500ms ease;
}
@media (max-width: 1300px) {
  .index-youshi .tabnav .item {
    top: 6.1rem;
  }
  .index-youshi .tabnav .item4 {
    left: 1.5rem;
  }
  .index-youshi .tabnav .item2 {
    right: 2.8rem;
  }
}
@media (max-width: 1000px) {
  .index-youshi {
    padding: 30px 0;
    background: url(../images/ybg1.jpg) no-repeat top center;
  }
  .index-youshi .arrowbox {
    display: none!important;
  }
  .index-youshi .tabcot {
    display: none!important;
  }
  .index-youshi .itemh:first-child {
    margin-top: 0!important;
  }
  .index-youshi .itemh {
    width: 100%!important;
    float: left;
    display: flex;
    vertical-align: top;
    margin-top: 20px!important;
    bottom: auto!important;
    right: auto!important;
    top: auto!important;
    left: auto!important;
    position: relative!important;
    height: auto!important;
  }
  .index-youshi .itemh .arrow {
    padding: 15px;
    border-radius: 0;
    display: block;
    color: #fff!important;
    margin-top: 0!important;
    width: 30%!important;
    height: auto!important;
    background: #00afed !important;
  }
  .index-youshi .tabnav {
    top: auto;
    left: auto;
    position: relative;
  }
  .index-youshi .tabnav .container {
    height: auto;
  }
  .index-youshi .tabnav .ico img {
    max-height: 50px;
  }
  .index-youshi .tabnav .ico .ic2 {
    opacity: 1!important;
    transform: translateY(0) !important;
  }
  .index-youshi .tabnav .text {
    background: #fff;
    height: 101px!important;
    top: auto!important;
    left: auto!important;
    width: 70%!important;
    transform: translate(0) !important;
    align-items: center;
    display: flex;
    position: relative;
  }
  .index-youshi .tabnav .text:before {
    display: none;
  }
  .index-youshi .tabnav {
    z-index: 1;
  }
  .index-youshi .tabnav .txt {
    height: auto!important;
    line-height: 20px;
    border-radius: 0;
    padding: 0px 15px;
  }
  .index-youshi .tabnav .txt:after {
    width: 20px;
    height: 20px;
    bottom: -10px;
    display: none;
  }
}
.index-about {
  background-repeat: no-repeat;
  background-position: top right;
}
.index-about .container {
  display: flex;
  position: relative;
  padding-top: 0.9rem;
}
.index-about .index-arrow {
  text-align: left;
}
.index-about .index-title {
  text-align: left;
}
.index-about .index-title .en {
  left: 0;
  top: 0;
  width: auto;
  color: #072a3d;
  letter-spacing: -0.1rem;
  font-size: 1.4rem;
  line-height: 1.4rem;
  transform: translateX(0);
  font-family: "myfont2";
}
.index-about .index-title .cn {
  color: #fff;
}
.index-about .index-title .cn span {
  color: #fff;
}
.index-about .index-title .f18 {
  z-index: 3;
  padding-top: 0.1rem;
  font-weight: lighter;
  position: relative;
}
.index-about .txt {
  padding-top: 0.6rem;
  line-height: 0.36rem;
}
.index-about .numlist {
  padding-top: 0.7rem;
}
.index-about .numlist ul {
  width: 120%;
}
.index-about .numlist li {
  float: left;
  width: 33%;
  text-align: left;
  padding-left: 0.9rem;
  font-size: 0.18rem;
  position: relative;
}
.index-about .numlist li .icon {
  top: 0;
  left: 0;
  height: 0.8rem;
  width: 0.8rem;
  position: absolute;
}
.index-about .numlist li p:nth-child(2) {
  font-family: "myfont2";
}
.index-about .numlist li .counter {
  color: #fff;
}
.index-about .numlist li em,
.index-about .numlist li i {
  font-style: normal;
  font-weight: lighter;
}
.index-about .numlist li:before {
  content: "";
  width: 1px;
  height: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  left: -0.6rem;
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
}
.index-about .numlist li:first-child:before {
  display: none;
}
.index-about .numlist .counter {
  font-size: 0.55rem;
  line-height: 0.6rem;
}
.index-about .lefttxt {
  color: #fff;
  width: 53%;
}
.index-about .pic {
  right: -2.4rem;
  top: 1.5rem;
  position: absolute;
  width: 8rem;
  height: 5.34rem;
}
@media (max-width: 1023px) {
  .index-about {
    padding: 50px 0;
  }
  .index-about .container {
    padding-top: 0;
    display: block;
  }
  .index-about .lefttxt {
    width: 100%;
  }
  .index-about .pic {
    display: none;
  }
  .index-about .index-title .f18 {
    padding-top: 0;
  }
  .index-about .txt {
    padding-top: 30px;
    line-height: 24px;
  }
  .index-about .numlist {
    padding-top: 30px;
  }
  .index-about .numlist ul {
    width: 100%;
  }
  .index-about .numlist li .icon {
    width: 50px;
    height: 50px;
  }
  .index-about .numlist li {
    padding-left: 60px;
    font-size: 12px;
  }
  .index-about .numlist .counter {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 420px) {
  .index-about .numlist li {
    width: 50%;
    padding-bottom: 30px;
  }
  .index-about .index-more {
    display: none;
  }
}
.index-hezuo {
  background: #f1f4f6;
}
.index-hezuo .index-title,
.index-hezuo .index-arrow {
  text-align: left;
}
.index-hezuo .f18 {
  padding-top: 0.2rem;
  color: #fff;
}
.index-hezuo .lefttxt {
  width: 42%;
  float: left;
  padding-top: 2.7rem;
}
.index-hezuo .lefttxt .index-more {
  margin-top: 1.5rem;
}
.index-hezuo .text {
  line-height: 0.3rem;
  padding-top: 0.4rem;
  color: #fff;
}
.index-hezuo .rightlist {
  width: 52%;
  float: right;
}
.index-hezuo .rightlist .mains {
  margin: 0 -0.15rem;
}
.index-hezuo .rightlist .g1,
.index-hezuo .rightlist .g2,
.index-hezuo .rightlist .g3,
.index-hezuo .rightlist .g4 {
  padding: 0 0.15rem;
  float: left;
  width: 25%;
}
.index-hezuo .rightlist .g1 li,
.index-hezuo .rightlist .g2 li,
.index-hezuo .rightlist .g3 li,
.index-hezuo .rightlist .g4 li {
  float: none!important;
  border: solid 1px #fff;
  transition: all 335ms ease;
  box-shadow: 0 0 0.28rem rgba(167, 198, 226, 0.24);
  border-radius: 0.1rem;
  background: #fff;
  margin-bottom: 0.3rem;
}
.index-hezuo .rightlist .g1 li span,
.index-hezuo .rightlist .g2 li span,
.index-hezuo .rightlist .g3 li span,
.index-hezuo .rightlist .g4 li span {
  overflow: hidden;
  display: block;
  position: relative;
}
.index-hezuo .rightlist .g1 li span:after,
.index-hezuo .rightlist .g2 li span:after,
.index-hezuo .rightlist .g3 li span:after,
.index-hezuo .rightlist .g4 li span:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.index-hezuo .rightlist .g1 li img,
.index-hezuo .rightlist .g2 li img,
.index-hezuo .rightlist .g3 li img,
.index-hezuo .rightlist .g4 li img {
  transition: all 700ms ease;
}
.index-hezuo .rightlist .g1 li:hover,
.index-hezuo .rightlist .g2 li:hover,
.index-hezuo .rightlist .g3 li:hover,
.index-hezuo .rightlist .g4 li:hover {
  border: solid 1px #00afed;
}
.index-hezuo .rightlist .g1 li:hover img,
.index-hezuo .rightlist .g2 li:hover img,
.index-hezuo .rightlist .g3 li:hover img,
.index-hezuo .rightlist .g4 li:hover img {
  transform: scale(1.05);
}
.index-hezuo .rightlist .g1,
.index-hezuo .rightlist .g2 {
  height: 7rem;
  margin-top: 1.5rem;
}
.index-hezuo .rightlist .g3,
.index-hezuo .rightlist .g4 {
  height: 6.9rem;
  margin-top: 2rem;
}
@media (max-width: 1023px) {
  .index-hezuo {
    padding: 50px 0;
  }
  .index-hezuo .lefttxt {
    padding-top: 0;
  }
  .index-hezuo .text {
    line-height: 24px;
    padding-top: 30px;
  }
  .index-hezuo .rightlist .g1,
  .index-hezuo .rightlist .g2 {
    margin-top: 0;
  }
  .index-hezuo .rightlist .g3,
  .index-hezuo .rightlist .g3 {
    margin-top: 50px;
  }
}
@media (max-width: 640px) {
  .index-hezuo .lefttxt,
  .index-hezuo .rightlist {
    width: 100%;
    float: none;
  }
  .index-hezuo .rightlist .g3,
  .index-hezuo .rightlist .g4 {
    margin-top: 0px;
  }
  .index-hezuo .rightlist {
    margin-top: 30px;
  }
  .index-hezuo .g1,
  .index-hezuo .g2,
  .index-hezuo .g3,
  .index-hezuo .g4 {
    height: 400px!important;
  }
}
.footer {
  padding-top: 0.8rem;
  background: #f7fbff;
}
.footer .listmenu {
  padding-bottom: 0.7rem;
}
.footer .listmenu a {
  color: #282828;
}
.footer .listmenu a:hover {
  color: #003ba3;
}
.footer .listmenu li {
  width: 13%;
  float: left;
}
.footer .listmenu li h3 {
  font-size: 0.18rem;
  padding-bottom: 0.2rem;
}
.footer .listmenu .drop a {
  padding-left: 0.15rem;
  display: block;
  position: relative;
  margin-top: 0.1rem;
}
.footer .listmenu .drop a:before {
  top: 0.12rem;
  left: 0;
  content: "";
  width: 0.04rem;
  height: 0.04rem;
  position: absolute;
  background: #003ba3;
}
.footer .listmenu .last {
  width: 22%;
  text-align: right;
}
.footer .listmenu .last .tel {
  padding-bottom: 0.1rem;
  font-size: 0.3rem;
}
.footer .listmenu .last .tel a {
  color: #003ba3;
  font-family: "myfont2";
}
.footer .listmenu .share {
  margin-top: 0.24rem;
}
.footer .listmenu .fx1,
.footer .listmenu .fx2,
.footer .listmenu .fx3,
.footer .listmenu .fx4 {
  margin-left: 0.02rem;
  position: relative;
  display: inline-block;
}
.footer .listmenu .fx1 a,
.footer .listmenu .fx2 a,
.footer .listmenu .fx3 a,
.footer .listmenu .fx4 a {
  width: 0.38rem;
  height: 0.38rem;
  display: block;
  border-radius: 100%;
  border: solid 1px #595959;
  transition: all 500ms ease;
}
.footer .listmenu .fx1:hover a,
.footer .listmenu .fx2:hover a,
.footer .listmenu .fx3:hover a,
.footer .listmenu .fx4:hover a {
  border-color: #003ba3;
}
.footer .listmenu .fx1:hover .erweima,
.footer .listmenu .fx2:hover .erweima,
.footer .listmenu .fx3:hover .erweima,
.footer .listmenu .fx4:hover .erweima {
  display: block;
}
.footer .listmenu .erweima {
  display: none;
  top: 0.6rem;
  left: -1.5rem;
  line-height: 1.16rem;
  width: 2.3rem;
  position: absolute;
}
.footer .listmenu .erweima:before {
  left: 1.65rem;
  top: -0.12rem;
  content: "";
  position: absolute;
  border-bottom: solid 0.08rem #595959;
  border-left: solid 0.08rem transparent;
  border-right: solid 0.08rem transparent;
}
.footer .listmenu .erweima img {
  max-height: 1.16rem;
}
.footer .link {
  padding-bottom: 0.4rem;
}
.footer .link .tit {
  color: #000;
  font-weight: 700;
}
.footer .link .txt {
  padding-top: 0.2rem;
}
.footer .link .txt a {
  color: #282828;
  padding-left: 0.15rem;
  display: inline-block;
}
.footer .link .txt a:first-child {
  padding-left: 0;
}
.footer .link .txt a:hover {
  color: #003ba3;
  text-decoration: underline;
}
.footer .copy {
  color: #fff;
  font-size: 0.14rem;
  padding: 0.2rem 0;
  background: #0f3fa5;
}
.footer .copy a {
  color: #fff;
}
.footer .copy a:hover {
  text-decoration: underline;
}
.footer .copy .container {
  position: relative;
}
.footer .copy .jg {
  padding-left: 0.2rem;
}
.footer .copy .lj {
  right: 0;
  position: absolute;
}
@media (max-width: 1023px) {
  .footer {
    padding-top: 40px;
  }
  .footer .listmenu {
    padding-bottom: 40px;
  }
  .footer .listmenu li {
    display: none;
  }
  .footer .listmenu .last {
    font-size: 16px;
    display: block;
    width: 100%;
    text-align: center;
  }
  .footer .listmenu .last .tel {
    font-size: 24px;
    padding-bottom: 10px;
  }
  .footer .listmenu .share {
    margin-top: 20px;
  }
  .footer .listmenu .fx1,
  .footer .listmenu .fx2,
  .footer .listmenu .fx3,
  .footer .listmenu .fx4 {
    cursor: pointer;
    margin: 0 2px;
  }
  .footer .listmenu .fx1 a,
  .footer .listmenu .fx2 a,
  .footer .listmenu .fx3 a,
  .footer .listmenu .fx4 a {
    width: 38px;
    height: 38px;
  }
  .footer .listmenu .erweima {
    top: -160px;
    left: -30px !important;
    z-index: 9;
    background: #fff;
    line-height: 24px;
    width: 140px;
    padding: 15px 0;
  }
  .footer .listmenu .erweima:before {
    display: none;
  }
  .footer .listmenu .erweima img {
    max-height: 100px;
  }
  .footer .link {
    display: none;
  }
  .footer .copy {
    font-size: 14px;
    padding: 15px 0;
  }
  .footer .copy .lj {
    right: auto;
    position: relative;
  }
}
.inside-banner {
  margin-top: 0.9rem;
  position: relative;
  text-align: center;
}
.inside-banner img {
  width: 100%;
}
.inside-banner .text {
  top: 50%;
  width: 100%;
  color: #fff;
  position: absolute;
  text-align: center;
  transform: translateY(-50%);
}
.inside-banner .cn {
  font-size: 0.46rem;
  font-weight: 700;
}
.inside-banner .en {
  font-size: 0.2rem;
  font-family: "myfont4";
}
.inside-banner .icon img {
  width: auto;
  max-height: 1.2rem;
}
.inside-banner .f40 {
  padding-top: 0.2rem;
  font-size: 0.4rem;
  font-weight: 700;
}
@media (max-width: 1023px) {
  .inside-banner {
    margin-top: 50px!important;
  }
  .inside-banner .cn {
    font-size: 20px;
  }
  .inside-banner .en {
    font-size: 12px;
  }
  .inside-banner .icon img {
    width: auto;
    max-height: 60px;
  }
  .inside-banner .f40 {
    font-size: 24px;
    line-height: 30px;
  }
}
.inside-news {
  padding-top: 0.8rem;
}
.inside-news .f48 {
  color: #2b2517;
  font-weight: 700;
  text-align: center;
  padding-bottom: 0.45rem;
}
.inside-news .list {
  border-bottom: solid 1px #e1ddda;
}
.inside-news .list li {
  overflow: hidden;
  padding: 0.3rem;
  padding-left: 0;
  padding-bottom: 0.4rem;
  transition: all 334ms ease;
  border-top: solid 1px #e1ddda;
}
.inside-news .list li a {
  display: block;
}
.inside-news .list .info {
  width: 10%;
  float: left;
  color: #555146;
  padding-top: 0.05rem;
  font-size: 0.14rem;
  text-align: center;
}
.inside-news .list .info .tag span {
  color: #fff;
  height: 0.24rem;
  overflow: hidden;
  padding: 0 0.15rem;
  line-height: 0.24rem;
  display: inline-block;
  background: #003ba3;
}
.inside-news .list .info .time {
  margin-top: 0.15rem;
}
.inside-news .list .info .time span {
  display: block;
}
.inside-news .list .text {
  width: 90%;
  float: left;
  padding-left: 0.3rem;
}
.inside-news .list .tit {
  font-weight: 700;
  color: #003ba3;
  height: 0.3rem;
  line-height: 0.3rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.inside-news .list .tig {
  color: #2b2517;
  height: 0.24rem;
  line-height: 0.24rem;
  margin-top: 0.1rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.inside-news .list .txt {
  color: #555146;
  font-size: 0.14rem;
  height: 0.48rem;
  line-height: 0.24rem;
  margin-top: 0.2rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.inside-news .list li:hover .tit {
  color: #003ba3;
}
.inside-news .list li:hover .more {
  color: #003ba3;
}
.inside-news .list li:hover .more i {
  background: url(../images/arrow-6.png) no-repeat center center;
  background-size: cover;
}
.inside-news .list .tit {
  color: #2b2517;
}
.inside-news .list .text {
  padding-left: 0.5rem;
}
.inside-news .list .more {
  margin-top: 0.6rem;
  font-weight: 700;
}
.inside-news .list .more i {
  font-style: normal;
  display: inline-block;
  width: 0.22rem;
  height: 0.16rem;
  margin-left: 0.1rem;
  vertical-align: middle;
  background: url(../images/arrow-7.png) no-repeat center center;
  background-size: cover;
}
@media (min-width: 1023px) {
  .inside-news .list li:hover {
    background: #f0f7fa;
    box-shadow: 0 20px 30px -20px rgba(0, 0, 0, 0.25);
  }
}
@media (max-width: 1023px) {
  .inside-news {
    padding: 40px 0 0 0;
  }
  .inside-news .f48 {
    font-size: 24px;
    padding-bottom: 40px;
  }
  .inside-news .list li {
    padding: 20px 0;
  }
  .inside-news .list .info {
    width: 20%;
    font-size: 12px;
    padding-top: 5px;
  }
  .inside-news .list .info .tag span {
    padding: 0 10px;
    line-height: 20px;
    height: 20px;
  }
  .inside-news .list .text {
    width: 80%;
    padding-left: 10px;
  }
  .inside-news .list .tit {
    height: 30px;
    line-height: 30px;
  }
  .inside-news .list .txt {
    font-size: 14px;
    line-height: 24px;
    height: 48px;
    margin-top: 10px;
  }
}
.inside-xg-news {
  padding-top: 0;
}
.inside-newsshow {
  padding: 0.8rem 0 1rem 0;
}
.inside-newsshow h1 {
  color: #222;
  text-align: center;
  font-size: 0.4rem;
  line-height: 0.5rem;
}
.inside-newsshow .info {
  color: #909191;
  text-align: center;
  font-weight: lighter;
  padding: 0.5rem 0;
  border-bottom: solid 1px #dadada;
}
.inside-newsshow .info span {
  padding: 0 0.2rem;
}
.inside-newsshow .share {
  width: 13%;
  float: left;
  text-align: center;
  padding-top: 0.4rem;
  padding-bottom: 0.65rem;
  border-right: solid 1px #dadada;
}
.inside-newsshow .share ul {
  padding-top: 0.1rem;
}
.inside-newsshow .share li {
  width: 0.5rem;
  height: 0.5rem;
  margin: 0 auto;
  margin-top: 0.2rem;
  line-height: 0.46rem;
  border-radius: 100%;
  background: #666e86;
  text-align: center;
  transition: all 500ms ease;
}
.inside-newsshow .share li img {
  max-height: 0.3rem;
  vertical-align: middle;
}
.inside-newsshow .share li a {
  display: block;
}
.inside-newsshow .share li:hover {
  background: #003ba3;
}
.inside-newsshow .right {
  width: 82%;
  float: right;
}
.inside-newsshow .text {
  color: #000000;
  line-height: 0.36rem;
  padding-top: 0.4rem;
}
.inside-newsshow .text p {
  text-indent: 2em;
}
.inside-newsshow .text .mr20 {
  margin-top: 0.2rem;
}
@media (max-width: 1023px) {
  .inside-newsshow {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .inside-newsshow .share {
    display: none;
  }
  .inside-newsshow h1 {
    font-size: 24px;
    line-height: 30px;
  }
  .inside-newsshow .info {
    padding: 5px 0;
  }
  .inside-newsshow .info span {
    padding: 0;
    display: block;
  }
  .inside-newsshow .right {
    width: 100%;
    float: none;
    padding-top: 30px;
  }
  .inside-newsshow .text {
    padding-left: 0;
    font-size: 14px;
    line-height: 24px;
    padding-right: 0;
  }
  .inside-newsshow .text .tu {
    float: none;
    padding-bottom: 20px;
  }
  .inside-newsshow .text .tu img {
    margin-left: 0;
  }
  .inside-newsshow .text .mr20 {
    margin-top: 20px;
  }
}
.inside-product {
  padding-bottom: 0.5rem;
  margin-top: 1.5rem;
}
.inside-product ul {
  margin: 0 -0.26rem;
}
.inside-product li {
  width: 33.333%;
  float: left;
  padding: 0 0.26rem;
  padding-top: 0.52rem;
}
.inside-product li:hover .txtbox {
  padding-top: 0.6rem;
}
.inside-product li:hover .pic img {
  transform: scale(0.95);
}
.inside-product li:hover .tit,
.inside-product li:hover .txt,
.inside-product li:hover .more {
  color: #fff;
}
.inside-product li:hover .item {
  background-image: url(../images/probg.jpg);
}
.inside-product .item {
  position: relative;
  text-align: center;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: top center;
  background-image: url(../images/probg-2.jpg);
  height: 5.57rem;
}
.inside-product .txtbox {
  padding: 0 0.2rem;
  padding-top: 0.5rem;
  transition: all 500ms ease;
}
.inside-product .tit {
  color: #000;
  height: 0.4rem;
  font-weight: 700;
  line-height: 0.4rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.inside-product .txt {
  color: #555;
  margin: 0.1rem 0;
  line-height: 0.3rem;
  height: 0.3rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.inside-product .more {
  color: #555;
  font-size: 0.14rem;
}
.inside-product .more i {
  font-style: normal;
  font-family: "宋体";
  font-size: 0.18rem;
  margin-left: 0.1rem;
}
.inside-product .pic {
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  position: absolute;
}
.inside-product .pic:after {
  content: "";
  display: block;
  padding-bottom: 86.36363636%;
}
.inside-product .pic img {
  transition: all 700ms ease;
}
@media (max-width: 1300px) {
  .inside-product .pic::after {
    content: "";
    display: block;
    padding-bottom: 70%;
  }
}
@media (max-width: 1023px) {
  .inside-product {
    margin-top: 80px;
    padding-bottom: 0;
  }
  .inside-product ul {
    margin: 0 -10px;
  }
  .inside-product li {
    padding: 0 10px;
    margin-top: 20px;
  }
  .inside-product .tit {
    height: 30px;
    line-height: 30px;
  }
  .inside-product .txt {
    height: 30px;
    line-height: 30px;
    margin-top: 5px;
  }
  .inside-product .more {
    display: none;
  }
}
@media (max-width: 640px) {
  .inside-product li {
    width: 50%;
  }
  .inside-product li .txtbox {
    padding: 20px;
  }
  .inside-product li .item {
    height: 360px;
  }
}
@media (max-width: 420px) {
  .inside-product li {
    width: 100%;
  }
  .inside-product li .item {
    height: 360px;
  }
  .inside-product li:first-child {
    margin-top: 0;
  }
}
.inside-service-1 {
  overflow: hidden;
}
.inside-service-1 .list ul {
  margin: 0 -5px;
}
.inside-service-1 .list li {
  float: left;
  width: 20.3%;
  height: 6.94rem;
  overflow: hidden;
  padding: 0 2px;
  transition: all 500ms ease;
}
.inside-service-1 .list li .box {
  position: relative;
}
.inside-service-1 .list li .item {
  display: block;
  position: relative;
}
.inside-service-1 .list li .txtbox {
  color: #fff;
  width: 75%;
  z-index: 9;
  left: 0.6rem;
  line-height: 0.26rem;
  position: absolute;
  transition: all 334ms ease;
  bottom: 1rem;
}
.inside-service-1 .list li .icon {
  width: 0.9rem;
  height: 0.9rem;
}
.inside-service-1 .list li .tit {
  font-size: 0.24rem;
  color: #fff;
  font-weight: 600;
  margin-top: 0.4rem;
}
.inside-service-1 .list li .txt {
  display: none;
  margin-top: 0.3rem;
}
.inside-service-1 .list li .pic {
  height: 6.94rem;
  position: relative;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
.inside-service-1 .list li .pic:before {
  top: 0;
  left: 0px;
  z-index: 5;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 1;
  position: absolute;
  transition: all 700ms ease;
  background: rgba(0, 0, 0, 0.5);
}
.inside-service-1 .list .active {
  width: 59.22%;
}
.inside-service-1 .list .active .txtbox {
  left: 2.6rem;
  width: 68%;
}
.inside-service-1 .list .active .txt {
  display: block;
}
.inside-service-1 .list .active .pic:before {
  opacity: 0.5;
  width: 100%;
}
@media (max-width: 1023px) {
  .inside-service-1 {
    padding-top: 0px;
  }
  .inside-service-1 .list li {
    width: 100%!important;
  }
  .inside-service-1 .list li .txtbox {
    text-align: center;
    width: 100%!important;
    left: 0!important;
    bottom: 30px;
    padding: 30px!important;
    line-height: 24px;
  }
  .inside-service-1 .list li .icon {
    width: 45px;
    height: 45px;
    margin: 0 auto;
  }
  .inside-service-1 .list li .tit {
    font-size: 20px;
    margin-top: 20px;
  }
  .inside-service-1 .list li .txt {
    padding: 0;
    display: block!important;
    margin-top: 10px;
  }
  .inside-service-1 .list li {
    height: 300px;
  }
  .inside-service-1 .list li .pic {
    height: 300px;
  }
}
.inside-job-1 {
  position: relative;
  text-align: center;
}
.inside-job-1 .box {
  padding: 1.4rem 0 0.3rem 0;
  background-image: url(../images/map-2.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
}
.inside-job-1 .t1 {
  color: #333;
  font-size: 0.4rem;
  font-weight: 700;
}
.inside-job-1 .t1 span {
  color: #003ba3;
}
.inside-job-1 .t2 {
  padding-top: 0.2rem;
  max-width: 8.6rem;
  margin: 0 auto;
  line-height: 0.36rem;
}
.inside-job-1 .t3 {
  padding-top: 0.4rem;
  line-height: 1rem;
  color: #00afed;
  font-size: 0.96rem;
  font-weight: 700;
}
@media (max-width: 1023px) {
  .inside-job-1 .box {
    padding: 40px 0 0 0;
  }
  .inside-job-1 .t1 {
    font-size: 24px;
  }
  .inside-job-1 .t2 {
    padding-top: 20px;
    max-width: 100%;
    line-height: 24px;
  }
  .inside-job-1 .t3 {
    padding-top: 20px;
    font-size: 40px;
    line-height: 40px;
  }
}
.inside-join-4 {
  padding: 0.8rem 0;
}
.inside-join-4 .bt {
  color: #333;
  text-align: center;
  font-size: 0.4rem;
  font-weight: 700;
}
.inside-join-4 ul {
  padding-top: 0.5rem;
  margin: 0 -0.2rem;
}
.inside-join-4 li {
  float: left;
  font-size: 0.18rem;
  padding: 0 0.2rem;
  text-align: center;
  width: 33.3333%;
}
.inside-join-4 li .line {
  width: 1px;
  margin: 0 auto;
  height: 0.6rem;
  background: url(../images/line.jpg) no-repeat top center;
}
.inside-join-4 li .tit {
  color: #333;
  font-weight: 700;
  font-size: 0.3rem;
  text-align: center;
  background: #f1f5f8;
  border-radius: 0.05rem;
  line-height: 0.76rem;
}
.inside-join-4 li .txt {
  text-align: left;
  padding: 0 0.25rem;
  margin-top: 0.25rem;
}
.inside-join-4 li .arrow {
  margin-top: -0.1rem;
}
.inside-join-4 li .icon img {
  max-height: 1.6rem;
}
@media (max-width: 1023px) {
  .inside-join-4 {
    padding: 40px 0;
  }
  .inside-join-4 .bt {
    font-size: 20px;
  }
  .inside-join-4 ul {
    margin: 0 -10px;
    padding-top: 30px;
  }
  .inside-join-4 li {
    padding: 0 10px;
    font-size: 14px;
  }
  .inside-join-4 li .tit {
    font-size: 16px;
    line-height: 40px;
  }
  .inside-join-4 li .arrow {
    margin-top: -10px;
  }
  .inside-join-4 li .txt {
    padding: 0;
    margin-top: 20px;
  }
  .inside-join-4 li .icon img {
    max-height: 80px;
  }
}
@media (max-width: 420px) {
  .inside-join-4 li {
    margin-top: 30px;
    width: 100%;
  }
  .inside-join-4 li .txt {
    text-align: center;
  }
  .inside-join-4 li:first-child {
    margin-top: 0;
  }
}
.inside-join-5 {
  color: #fff;
  text-align: center;
  height: 5.85rem;
  display: flex;
  align-items: center;
  background-position: top center;
  background-repeat: no-repeat;
}
.inside-join-5 .f40 {
  font-size: 0.4rem;
}
.inside-join-5 .btn {
  height: 0.7rem;
  width: 100%;
  margin: 0 auto;
  margin-top: 0.4rem;
  font-weight: 700;
  font-size: 0.24rem;
  vertical-align: middle;
  line-height: 0.7rem;
  max-width: 2.75rem;
  transition: all 700ms ease;
  border-top-left-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
  background: #00afed;
}
.inside-join-5 .btn a {
  display: block;
  color: #fff;
}
.inside-join-5 .btn img {
  margin-right: 0.1rem;
  vertical-align: middle;
  max-height: 0.3rem;
}
.inside-join-5 .btn:hover {
  background: #003694;
}
.inside-join-5 .btn i {
  padding-left: 0.5rem;
  font-style: normal;
  font-family: "宋体";
}
@media (max-width: 1023px) {
  .inside-join-5 {
    height: auto;
    padding: 50px 0;
  }
  .inside-join-5 .f40 {
    font-size: 20px;
  }
  .inside-join-5 .btn {
    height: 40px;
    line-height: 40px;
    margin-top: 20px;
    font-size: 16px;
    max-width: 150px;
  }
  .inside-join-5 .btn img {
    max-height: 20px;
    margin-right: 5px;
    margin-bottom: 3px;
  }
  .inside-join-5 .btn i {
    padding-left: 5px;
  }
}
.inside-join {
  padding-bottom: 0.6rem;
  padding-top: 0.5rem;
  line-height: 0.36rem;
  font-family: arial;
}
.inside-join .txt a {
  color: #00afed;
  font-weight: 700;
  font-family: arial;
  text-decoration: underline;
}
.inside-join .list {
  position: relative;
  padding-bottom: 0.2rem;
}
.inside-join .tit {
  margin-top: 0.3rem;
  padding: 0.25rem;
  padding-right: 0.5rem;
  background: #f3f6fd;
  cursor: pointer;
}
.inside-join .f20 {
  color: #333;
  font-weight: 700;
  padding-top: 0.3rem;
}
.inside-join .date {
  width: 9%;
  float: left;
  color: #fff;
  text-align: center;
  font-family: arial;
  background: #003ba3;
}
.inside-join .date span {
  display: block;
}
.inside-join .date .arrow {
  height: 0.19rem;
  background: url(../images/job-arrow.png) no-repeat right center #d1d1d1;
}
.inside-join .date .riqi {
  font-size: 0.38rem;
  height: 0.46rem;
  line-height: 0.46rem;
  padding-top: 0.05rem;
}
.inside-join .date .nian {
  font-size: 12px;
  line-height: 0.14rem;
  padding-bottom: 0.05rem;
}
.inside-join .wenzi {
  width: 60%;
  float: left;
  margin-top: 0.1rem;
  padding-left: 0.4rem;
  overflow: hidden;
}
.inside-join .wenzi .t1 {
  color: #292e33;
  font-size: 0.24rem;
  line-height: 0.7rem;
  height: 0.7rem;
  overflow: hidden;
  font-weight: 700;
}
.inside-join .add {
  float: right;
  width: 15%;
  height: 0.4rem;
  overflow: hidden;
  line-height: 0.4rem;
  position: relative;
  margin-top: 0.2rem;
}
.inside-join .add:after {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  right: 0;
  top: 0;
  position: absolute;
  vertical-align: top;
  border-radius: 100%;
  background: url(../images/jia.png) no-repeat center center #003ba3;
}
.inside-join .txt {
  display: none;
  position: relative;
  padding: 0px 0.5rem;
  padding-top: 0.2rem;
  padding-bottom: 0.8rem;
  padding-right: 2.2rem;
  background: #fbfbfd;
}
.inside-join .txt p {
  padding-bottom: 0.1rem;
}
.inside-join .active .add:after {
  background: url(../images/jian.png) no-repeat center center #003ba3;
}
.inside-join .active .arrow {
  background: url(../images/job-arrow-2.png) no-repeat right center #d1d1d1;
}
.inside-join .btn {
  right: 0.5rem;
  bottom: 0.95rem;
  position: absolute;
}
.inside-join .btn a {
  color: #fff;
  font-size: 0.16rem;
  display: inline-block;
  height: 0.52rem;
  padding: 0 0.3rem;
  min-width: 1.46rem;
  line-height: 0.4rem;
  background: #003ba3;
  font-weight: normal;
  text-decoration: none;
  border-top: 0.15rem solid #d1d1d1;
}
.inside-join .btn img {
  vertical-align: middle;
  max-height: 0.25rem;
  margin-bottom: 0.02rem;
  margin-left: 0.05rem;
}
@media (max-width: 1023px) {
  .inside-join {
    padding: 20px 0 40px 0;
    line-height: 24px;
  }
  .inside-join .f20 {
    padding-top: 20px;
  }
  .inside-join .tit {
    margin-top: 20px;
    padding: 20px;
    padding-right: 20px;
  }
  .inside-join .tit .add {
    height: 40px;
    line-height: 40px;
    margin-top: 15px;
  }
  .inside-join .tit .add:after {
    width: 30px;
    height: 30px;
  }
  .inside-join .date .arrow {
    height: 20px;
  }
  .inside-join .date {
    width: 25%;
  }
  .inside-join .date .riqi {
    font-size: 14px;
    height: 20px;
    line-height: 20px;
  }
  .inside-join .date .nian {
    line-height: 14px;
    padding-bottom: 5px;
  }
  .inside-join .wenzi {
    margin-top: 15px;
    padding-left: 20px;
  }
  .inside-join .wenzi .t1 {
    height: 40px;
    line-height: 40px;
    font-size: 16px;
  }
  .inside-join .txt {
    padding: 20px;
  }
  .inside-join .txt p {
    padding-bottom: 10px;
  }
  .inside-join .btn {
    top: auto;
    right: 0;
    position: relative;
    margin-top: 30px;
  }
  .inside-join .btn a {
    font-size: 16px;
    min-width: auto;
    padding: 0 15px;
    height: 40px;
    line-height: 40px;
    border-top: 0;
  }
  .inside-join .btn img {
    max-height: 20px;
    margin: 0 0 2px 5px;
  }
}
.contact {
  padding: 0.8rem 0;
}
.contact .lxfs {
  position: relative;
  z-index: 1;
}
.contact .lxfs li {
  width: 33.33333333%;
  padding: 0 0.3rem;
  float: left;
  position: relative;
}
.contact .lxfs li:last-child:before {
  display: none;
}
.contact .lxfs .box {
  display: flex;
  border-radius: 0.1rem;
  padding: 0.4rem 0.3rem;
  box-shadow: 0 0 0.2rem rgba(220, 237, 255, 0.6);
}
.contact .lxfs .pic {
  margin-right: 0.5rem;
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  position: relative;
  transition: all .5s;
}
.contact .lxfs .circle {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background-color: #eff7ff;
  background: linear-gradient(135deg, #ebf6fc, #ffffff);
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .5s;
}
.contact .lxfs .circle:before,
.contact .lxfs .circle:after {
  content: "";
  display: block;
  width: 0.12rem;
  height: 0.12rem;
  border-radius: 50%;
  position: absolute;
}
.contact .lxfs .circle:before {
  background-color: #003ba3;
  bottom: 0;
  left: 0;
}
.contact .lxfs .circle:after {
  background-color: #00afed;
  top: 30px;
  right: -12px;
}
.contact .lxfs .title {
  color: #003ba3;
  font-size: 0.24rem;
  font-weight: 700;
  margin: 0.1rem 0;
}
.contact .lxfs .info {
  color: #666666;
}
.contact .lxfs .info a {
  font-weight: 400;
  color: #666666;
}
.contact .lxfs .info a:hover {
  color: #003ba3;
  text-decoration: underline;
}
.contact .lxfs .a-1 {
  color: #666666;
  font-weight: 700;
}
.contact .lxfs .box:hover .pic {
  transform: translateY(-10px);
}
.contact .lxfs .box:hover .pic .circle {
  transform: rotate(90deg);
}
@media (max-width: 1023px) {
  .contact {
    padding: 40px 0;
  }
  .contact .lxfs li {
    width: 100%;
    padding: 0;
    margin-top: 20px;
  }
  .contact .lxfs li:first-child {
    margin-top: 0;
  }
  .contact .lxfs .box {
    padding: 20px;
  }
  .contact .lxfs .circle {
    width: 60px;
    height: 60px;
  }
  .contact .lxfs .circle:before,
  .contact .lxfs .circle:after {
    width: 6px;
    height: 6px;
  }
  .contact .lxfs .pic {
    width: 60px;
    height: 60px;
    margin-right: 30px;
  }
  .contact .lxfs .title {
    font-size: 18px;
    margin: 10px 0 0 0;
  }
}
.inside-message {
  background: #fafafa;
  position: relative;
  padding: 0.8rem 0;
}
.inside-message .title {
  text-align: center;
  color: #003ba3;
  font-weight: 700;
  font-size: 0.38rem;
  padding-bottom: 0.5rem;
}
.inside-message .nr {
  padding: 0.6rem;
  background: #fff;
  box-shadow: 0 0 0.2rem rgba(220, 237, 255, 0.6);
}
.inside-message .list {
  position: relative;
}
.inside-message li {
  width: 33.33333333%;
  float: left;
  padding: 0 6px 18px 6px;
  position: relative;
}
.inside-message .box {
  position: relative;
}
.inside-message .red {
  position: absolute;
  z-index: 9;
  left: 20px;
  top: 17px;
  color: #c70204;
}
.inside-message .error {
  background: #ff0000;
  color: #fff;
  padding: 0 6px;
  border-bottom-left-radius: 20px;
  position: absolute;
  right: 0;
  top: 0;
}
.inside-message .input-form,
.inside-message .textarea-form,
.inside-message select {
  border: none;
  border-radius: 5px;
  color: #8294a3;
  font-family: arial;
  vertical-align: middle;
  border: #d6d5d3 solid 1px;
  padding: 0 30px;
  height: 55px;
  line-height: 48px;
  font-size: 16px;
  width: 100%;
}
.inside-message .input-form:focus,
.inside-message .textarea-form:focus,
.inside-message select:focus {
  border: #003ba3 solid 1px;
}
.inside-message select {
  color: #8294a3;
  background: url(../images/arrow-8.png) no-repeat center right #ffffff;
  appearance: none;
}
.inside-message .textarea-form {
  line-height: 30px;
  padding: 10px 90px 10px 30px;
  width: 100%;
  padding-right: 90px;
  min-height: 140px;
}
.inside-message .textarea-form:focus {
  border: #003ba3 solid 1px;
}
.inside-message .btn {
  width: 100%;
  margin-top: 22px;
}
.inside-message .btn .col-2 {
  width: 50%;
  float: right;
}
.inside-message .submit {
  float: right;
  background: #003ba3;
  color: #fff;
  width: 100%;
  display: inline-block;
  max-width: 270px;
  text-align: center;
  line-height: 55px;
  height: 55px;
  font-size: 16px;
  border-radius: 10px;
  border: none;
}
.inside-message .submit .icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  vertical-align: middle;
  margin-top: -3px;
  margin-right: 5px;
}
.inside-message .submit:hover {
  background: #003ba3;
}
.inside-message .submit:hover {
  background: #003ba3;
}
.inside-message .verify {
  height: 55px;
  background-color: #e5e5e5;
  position: relative;
}
.inside-message .verify .drag-btn {
  position: absolute;
  left: 0;
  top: 0;
  width: 55px;
  height: 55px;
  border: 1px #e5e5e5 solid;
  background: #ffffff url(../images/drag-arrow.svg) no-repeat center center;
  background-size: 20px 20px;
  z-index: 2;
  cursor: move;
}
.inside-message .verify .suc-drag-btn {
  background: #ffffff url(../images/drag-success.svg) no-repeat center center;
  background-size: 20px 20px;
}
.inside-message .verify .drag-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 55px;
  line-height: 48px;
  width: 0;
  background-color: #7ac23c;
  color: #fff;
  text-align: center;
}
.inside-message .verify .fix-tips,
.inside-message .verify .verify-msg {
  width: 100%;
  position: absolute;
  right: 0;
  left: 0;
  height: 100%;
  color: #333;
  z-index: 1;
  line-height: 55px;
  padding-left: 50px;
  text-align: center;
}
.inside-message .verify .verify-msg {
  padding-left: 0;
  padding-right: 50px;
}
.inside-message .verify .verify-msg {
  background-color: #7ac23c;
  color: #fff;
  display: none;
}
.inside-message .verifyDiv {
  width: 30%;
  vertical-align: middle;
  float: left;
  margin-right: 20px;
  position: relative;
}
.inside-message .col-2 {
  width: 50%;
  float: left;
  position: relative;
  text-align: left;
}
@media screen and (max-width: 1023px) {
  .inside-message {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .inside-message .title {
    font-size: 20px;
    padding-bottom: 20px;
  }
  .inside-message .list:before {
    display: none;
  }
  .inside-message li {
    width: 100%;
    padding: 0 0 10px 0;
  }
  .inside-message li:last-child {
    padding-bottom: 0;
  }
  .inside-message .red {
    top: 14px;
    left: 15px;
  }
  .inside-message .input-form,
  .inside-message .textarea-form {
    font-size: 14px;
    padding-left: 25px;
    padding-right: 15px;
    line-height: 48px;
    height: 50px;
  }
  .inside-message .textarea-form {
    height: 140px;
  }
  .inside-message .verify {
    height: 50px;
  }
  .inside-message .verify .drag-progress {
    height: 50px;
    line-height: 48px;
  }
  .inside-message .verify .drag-btn {
    width: 50px;
    height: 50px;
    background-size: 20px 20px;
  }
  .inside-message .verify .fix-tips,
  .inside-message .verify .verify-msg {
    line-height: 50px;
    padding-left: 50px;
  }
  .inside-message .verifyDiv {
    width: 100%;
    margin-bottom: 20px;
    font-size: 14px;
    padding: 0;
  }
  .inside-message .error {
    font-size: 12px;
    padding: 0 6px;
    border-bottom-left-radius: 6px;
  }
  .inside-message .btn {
    text-align: left;
  }
  .inside-message .btn .col-2 {
    width: 100%;
    padding: 0;
  }
  .inside-message .submit {
    width: 100%;
    font-size: 14px;
    text-align: center;
    line-height: 50px;
    height: 50px;
    border-radius: 3px;
    max-width: 100%;
    padding: 0 10px;
    border: none;
    margin: 0;
  }
  .inside-message .submit:hover {
    background: #eee;
  }
}
.inside-message-2 .input-form,
.inside-message-2 .textarea-form,
.inside-message-2 select {
  border: 0;
  border-radius: 0;
  border-bottom: solid 1px #eaeaea;
}
.inside-message-2 .input-form:focus,
.inside-message-2 .textarea-form:focus,
.inside-message-2 select:focus {
  border: 0;
  border-bottom: solid 1px #003ba3;
}
.inside-message-2 .red {
  left: 0;
}
.inside-message-2 .textarea {
  width: 100%;
  padding-top: 40px;
}
.inside-message-2 .textarea .red {
  top: auto;
  left: auto;
  display: block;
  padding-bottom: 10px;
  padding-left: 30px;
  position: relative;
}
.inside-message-2 .textarea .red span {
  color: #08060b;
}
.inside-message-2 .textarea .textarea-form {
  height: 100px;
  min-height: auto;
}
@media (max-width: 1023px) {
  .inside-message-2 .nr {
    padding: 0 20px;
    padding-bottom: 20px;
  }
}
#allmap {
  height: 5.4rem;
}
#allmap img {
  width: none!important;
  max-height: none!important;
  max-width: none!important;
}
@media (max-width: 1023px) {
  #allmap {
    height: 260px;
  }
}
#allmap .BMap_bubble_title span {
  font-size: 16px!important;
}
#allmap .BMap_bubble_content p {
  font-size: 12px!important;
}
.inside-application {
  color: #fff;
  position: relative;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.inside-application .item {
  text-align: center;
}
.inside-application .icon {
  margin-left: -0.2rem;
}
.inside-application .icon img {
  max-height: 1.2rem;
  transition: all 700ms ease;
}
.inside-application .tit {
  color: #fff;
  height: 0.5rem;
  overflow: hidden;
  line-height: 0.5rem;
  margin: 0.2rem 0 0.4rem 0;
  font-size: 0.4rem;
  font-weight: 700;
}
.inside-application .txt {
  color: #fff;
  height: 0.56rem;
  overflow: hidden;
  line-height: 0.28rem;
  padding: 0 1rem;
}
.inside-application .item:hover .icon img {
  transform: scale(1.05);
}
.inside-application .item:hover .tit {
  text-decoration: underline;
}
@media (max-width: 1022px) {
  .inside-application .fp-tableCell {
    display: table-cell;
  }
  .inside-application .icon {
    margin-left: 0;
  }
  .inside-application .icon img {
    max-height: 60px;
  }
  .inside-application .tit {
    height: 30px;
    line-height: 30px;
    font-size: 20px;
    margin: 20px 0 10px 0;
  }
  .inside-application .txt {
    height: 48px;
    line-height: 24px;
    padding: 0 20px;
  }
}
.inside-case .item {
  width: 6.5rem;
  text-align: left;
}
.inside-case .txt {
  padding: 0;
  height: 0.92rem;
}
.inside-case .index-more {
  width: 2.2rem;
}
.inside-case .index-more img {
  margin-left: 0.1rem;
}
@media (max-width: 1022px) {
  .inside-case .item {
    width: 100%;
    text-align: center;
  }
  .inside-case .txt {
    height: 48px;
  }
  .inside-case .index-more {
    width: 140px;
  }
}
.godown {
  left: 0;
  width: 100%;
  bottom: 0.4rem;
  z-index: 9999;
  position: absolute;
}
.godown .arrow {
  width: 0.35rem;
  height: 0.55rem;
  margin: 0 auto;
  display: block;
  text-align: center;
  border-radius: 0.3rem;
  border: solid 0.04rem #ffffff;
  position: relative;
}
.godown .arrow:before {
  content: "";
  width: 0.03rem;
  height: 0.1rem;
  text-align: center;
  display: inline-block;
  background-color: #fff;
  animation: godown 1s infinite linear;
}
@keyframes godown {
  from {
    transform: translateY(10px);
  }
  to {
    transform: translateY(0);
  }
}
@media (max-width: 1023px) {
  .godown {
    bottom: 30px;
  }
  .godown .arrow {
    width: 20px;
    height: 30px;
    border-radius: 15px;
    border-width: 2px;
  }
  .godown .arrow:before {
    width: 2px;
    height: 10px;
  }
}
.inside-title {
  color: #003ba3;
  font-weight: 700;
  font-size: 0.4rem;
}
@media (max-width: 1023px) {
  .inside-title {
    font-size: 20px;
  }
}
.inside-title-2 {
  color: #222;
  font-weight: 700;
  font-size: 0.3rem;
  text-align: center;
  padding-bottom: 0.2rem;
  position: relative;
}
.inside-title-2:before {
  left: 50%;
  bottom: 0;
  content: "";
  height: 0.04rem;
  width: 0.24rem;
  position: absolute;
  transform: translateX(-50%);
  background: linear-gradient(to right, #00afed, #003ba3);
}
@media (max-width: 1023px) {
  .inside-title-2 {
    font-size: 20px;
    padding-bottom: 15px;
  }
  .inside-title-2:before {
    height: 3px;
    width: 20px;
  }
}
.inside-hyshow-1 {
  padding: 0.8rem 0;
}
.inside-hyshow-1 .inside-title {
  text-align: center;
}
.inside-hyshow-1 .text {
  text-align: center;
  padding-top: 0.4rem;
}
.inside-hyshow-1 .text-2 {
  text-align: left;
}
.inside-hyshow-1 .text-2 p {
  text-indent: 2em;
  padding-top: 0.3rem;
}
.inside-hyshow-1 .page {
  height: 0.3rem;
  line-height: 0.3rem;
  overflow: hidden;
  position: relative;
  margin-top: 0.8rem;
  padding-right: 2rem;
}
.inside-hyshow-1 .page span {
  color: #fff;
  margin-right: 0.1rem;
  padding: 0 0.1rem;
  line-height: 0.3rem;
  display: inline-block;
  background: #a2a2a2;
}
.inside-hyshow-1 .page a {
  right: 0;
  top: 0;
  position: absolute;
}
.inside-hyshow-1 .tigs {
  font-size: 0.14rem;
  margin-top: 0.25rem;
  padding-top: 0.1rem;
  position: relative;
  padding-right: 2rem;
  border-top: solid 1px #003ba3;
}
.inside-hyshow-1 .tigs a {
  padding: 0 0.15rem;
  display: inline-block;
}
.inside-hyshow-1 .tigs .more {
  top: 0;
  right: 0;
  position: absolute;
}
.inside-hyshow-1 .tigs .more a {
  color: #fff;
  line-height: 0.3rem;
  font-size: 0.16rem;
  background: #003ba3;
}
@media (max-width: 1023px) {
  .inside-hyshow-1 {
    padding: 40px 0;
  }
  .inside-hyshow-1 .text {
    padding-top: 20px;
  }
  .inside-hyshow-1 .text-2 p {
    padding-top: 20px;
    text-indent: 0;
  }
  .inside-hyshow-1 .page {
    height: 30px;
    line-height: 30px;
    margin-top: 40px;
    padding-right: 120px;
  }
  .inside-hyshow-1 .page span {
    color: #fff;
    margin-right: 10px;
    padding: 0 10px;
    line-height: 30px;
    display: inline-block;
    background: #a2a2a2;
  }
  .inside-hyshow-1 .tigs {
    font-size: 14px;
    margin-top: 25px;
    padding-top: 10px;
    position: relative;
    padding-right: 0px;
  }
  .inside-hyshow-1 .tigs .more {
    margin-top: 30px;
    top: auto;
    right: auto;
    display: block;
    position: relative;
  }
  .inside-hyshow-1 .tigs .more a {
    line-height: 30px;
    font-size: 16px;
    padding: 0 15px;
  }
}
.inside-hyshow-2 {
  padding: 0.8rem 0;
  background: url(../images/ybg.jpg) no-repeat top center;
}
.inside-hyshow-2 ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.3rem;
}
.inside-hyshow-2 li:hover .icon img {
  transform: rotateY(180deg);
}
.inside-hyshow-2 li {
  width: 25%;
  display: flex;
  padding: 0 0.3rem;
  padding-top: 0.6rem;
}
.inside-hyshow-2 li .item {
  width: 100%;
  overflow: hidden;
  padding: 0.3rem;
  padding-bottom: 0.5rem;
  position: relative;
  border-radius: 0.1rem;
  box-shadow: 0.05rem 0.05rem 0.1rem rgba(11, 140, 224, 0.13);
}
.inside-hyshow-2 li .icon {
  display: block;
  width: 0.74rem;
  height: 0.74rem;
  border-radius: 100%;
  background: linear-gradient(#dbeefa, #f9fcfe);
}
.inside-hyshow-2 li .icon img {
  transition: all 700ms ease;
}
.inside-hyshow-2 li .f24 {
  color: #333;
  font-weight: 700;
  margin-top: 0.05rem;
}
.inside-hyshow-2 li .t1 {
  font-size: 0.14rem;
  font-family: arial;
  padding-bottom: 0.1rem;
}
.inside-hyshow-2 li .t2 {
  color: #333;
  padding-left: 0.2rem;
  position: relative;
  margin-top: 0.2rem;
}
.inside-hyshow-2 li .t2:before {
  content: "";
  top: 0.06rem;
  left: 0;
  width: 0.13rem;
  height: 0.13rem;
  position: absolute;
  background: url(../images/arrow-9.png) no-repeat top center;
  background-size: cover;
}
.inside-hyshow-2 li .num {
  letter-spacing: 0.05rem;
  right: 0.3rem;
  bottom: -0.3rem;
  color: #f5f9fe;
  font-size: 0.65rem;
  font-family: "myfont2";
  position: absolute;
}
@media (max-width: 1023px) {
  .inside-hyshow-2 {
    padding: 40px 0;
  }
  .inside-hyshow-2 ul {
    margin: 0 -10px;
  }
  .inside-hyshow-2 li {
    width: 50%;
    padding: 0 10px;
    padding-top: 20px;
  }
  .inside-hyshow-2 li .icon {
    width: 40px;
    height: 40px;
  }
  .inside-hyshow-2 li .item {
    padding: 20px;
  }
  .inside-hyshow-2 li .f24 {
    margin-top: 10px;
  }
  .inside-hyshow-2 li .t1 {
    font-size: 12px;
    padding-bottom: 10px;
  }
  .inside-hyshow-2 li .t2 {
    margin-top: 10px;
    padding-left: 15px;
  }
  .inside-hyshow-2 li .t2:before {
    width: 8px;
    height: 8px;
    top: 7px;
  }
}
.inside-hyshow-3 {
  overflow: hidden;
  padding: 0.8rem 0;
  background-color: #f7f7f7;
}
.inside-hyshow-3 ul {
  margin: 0 -0.3rem;
}
.inside-hyshow-3 li {
  padding: 0 0.3rem;
  float: left;
  width: 33.333%;
  padding-top: 0.4rem;
}
.inside-hyshow-3 li:hover .pic img {
  transform: scale(1.05);
}
.inside-hyshow-3 li:hover .tit,
.inside-hyshow-3 li:hover .more {
  color: #003ba3;
}
.inside-hyshow-3 .pic {
  border-radius: 0.15rem;
  overflow: hidden;
  position: relative;
}
.inside-hyshow-3 .pic:after {
  content: "";
  display: block;
  padding-bottom: 71.6553288%;
}
.inside-hyshow-3 .pic img {
  border-radius: 0.15rem;
  transition: all 700ms ease;
}
.inside-hyshow-3 .text {
  padding: 0 0.1rem;
  padding-top: 0.35rem;
}
.inside-hyshow-3 .tit {
  font-size: 0.2rem;
  font-weight: 700;
  height: 0.3rem;
  line-height: 0.3rem;
  overflow: hidden;
}
.inside-hyshow-3 .txt {
  margin-top: 0.15rem;
  line-height: 0.24rem;
  height: 0.48rem;
  overflow: hidden;
}
.inside-hyshow-3 .more {
  margin-top: 0.3rem;
}
.inside-hyshow-3 .tit,
.inside-hyshow-3 .txt,
.inside-hyshow-3 .more {
  color: #333;
}
@media (max-width: 1023px) {
  .inside-hyshow-3 {
    padding: 40px 0;
  }
  .inside-hyshow-3 ul {
    margin: 0 -10px;
  }
  .inside-hyshow-3 li {
    padding: 0 10px;
    padding-top: 20px;
  }
  .inside-hyshow-3 .text {
    padding: 0;
    padding-top: 15px;
  }
  .inside-hyshow-3 .tit {
    font-size: 16px;
    height: 30px;
    line-height: 30px;
  }
  .inside-hyshow-3 .txt {
    line-height: 24px;
    height: 48px;
    margin-top: 10px;
  }
}
@media (max-width: 480px) {
  .inside-hyshow-3 li {
    width: 100%;
  }
}
.inside-hyshow-4 {
  overflow: hidden;
  padding: 0.8rem 0;
}
.inside-hyshow-4 ul {
  margin: 0 -0.15rem;
}
.inside-hyshow-4 li {
  width: 25%;
  float: left;
  height: 4.3rem;
  padding: 0 0.15rem;
  margin-top: 0.4rem;
}
@media (min-width: 1023px) {
  .inside-hyshow-4 li:hover .item {
    height: 4.3rem;
  }
  .inside-hyshow-4 li:hover .item:before {
    opacity: 1;
    transform: scale(1);
  }
  .inside-hyshow-4 li:hover .text {
    opacity: 1;
  }
  .inside-hyshow-4 li:hover .bt {
    display: none;
  }
}
.inside-hyshow-4 a {
  display: block;
  width: 100%;
}
.inside-hyshow-4 .item {
  display: flex;
  align-items: center;
  height: 3.7rem;
  border-radius: 0.15rem;
  transition: all 700ms ease;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.inside-hyshow-4 .item:before {
  top: 0;
  left: 0;
  z-index: 1;
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0.5);
  border-radius: 0.15rem;
  position: absolute;
  background: rgba(15, 63, 165, 0.78);
  transition: all 500ms ease;
}
.inside-hyshow-4 .text {
  color: #fff;
  width: 100%;
  z-index: 2;
  opacity: 0;
  position: relative;
  text-align: center;
  transition: all 600ms ease;
}
.inside-hyshow-4 .icon img {
  max-height: 1.2rem;
}
.inside-hyshow-4 .tit {
  font-weight: 700;
  margin-top: 0.3rem;
}
.inside-hyshow-4 .bt {
  color: #333;
  font-weight: 700;
  height: 0.3rem;
  overflow: hidden;
  margin-top: 0.2rem;
  line-height: 0.3rem;
}
@media (max-width: 1023px) {
  .inside-hyshow-4 {
    padding: 40px 0;
  }
  .inside-hyshow-4 ul {
    margin: 0 -10px;
  }
  .inside-hyshow-4 li {
    padding: 0 10px;
    margin-top: 20px;
  }
  .inside-hyshow-4 li .bt {
    height: 30px;
    line-height: 30px;
    margin-top: 10px;
  }
  .inside-hyshow-4 .tit {
    margin-top: 15px;
  }
}
@media (max-width: 480px) {
  .inside-hyshow-4 li {
    width: 100%;
    height: 310px;
  }
  .inside-hyshow-4 li .item {
    height: 270px;
  }
  .inside-hyshow-4 li .bt {
    text-align: center;
  }
}
.inside-hyshow-5 {
  padding: 0.8rem 0 1.4rem 0;
  background: #f7f7f7;
}
.inside-hyshow-5 .list {
  margin-top: 0.5rem;
}
.inside-hyshow-5 .pic {
  width: 50%;
  float: left;
  overflow: hidden;
  position: relative;
}
.inside-hyshow-5 .pic:after {
  content: "";
  display: block;
  padding-bottom: 66.66666667%;
}
.inside-hyshow-5 .text {
  width: 50%;
  float: left;
  padding-top: 0.8rem;
  padding-left: 0.5rem;
}
.inside-hyshow-5 .tit {
  color: #003ba3;
  font-weight: 700;
}
.inside-hyshow-5 .txt {
  color: #fff;
  height: 3.3rem;
  padding: 0.8rem;
  padding-bottom: 0.2rem;
  background: #2d55bc;
  border-radius: 0.15rem;
  margin-top: 0.6rem;
  transform: translateX(-2.2rem);
}
.inside-hyshow-5 .icon {
  width: 0.6rem;
  height: 0.6rem;
  position: relative;
}
.inside-hyshow-5 .icon:after {
  content: "";
  z-index: -1;
  top: -0.2rem;
  right: -0.2rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: #3d62c1;
  border-radius: 100%;
  position: absolute;
  animation: 1.5s scrollArrow ease infinite;
}
.inside-hyshow-5 .sm {
  height: 1.2rem;
  overflow: hidden;
  margin-top: 0.3rem;
  line-height: 0.3rem;
}
.inside-hyshow-5 .slick-prev,
.inside-hyshow-5 .slick-next {
  margin-top: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  line-height: 0.46rem;
  transition: all 700ms ease;
  border: solid 1px #dfdfdf;
}
.inside-hyshow-5 .slick-prev:before,
.inside-hyshow-5 .slick-next:before {
  content: "";
  color: #999;
  font-family: "宋体";
  font-size: 0.3rem;
  font-weight: 700;
}
.inside-hyshow-5 .slick-prev:hover,
.inside-hyshow-5 .slick-next:hover {
  background-color: #003ba3;
  border-color: #003ba3;
}
.inside-hyshow-5 .slick-prev:hover:before,
.inside-hyshow-5 .slick-next:hover:before {
  color: #fff;
}
.inside-hyshow-5 .slick-prev {
  left: auto;
  right: 0.7rem;
}
.inside-hyshow-5 .slick-prev:before {
  content: "<";
}
.inside-hyshow-5 .slick-next {
  right: 0rem;
}
.inside-hyshow-5 .slick-next:before {
  content: ">";
}
.inside-hyshow-5 .tu {
  margin-top: -1.9rem;
  text-align: center;
}
.inside-hyshow-5 .tu img {
  max-height: 1.33rem;
}
@media (max-width: 1023px) {
  .inside-hyshow-5 {
    padding: 40px 0;
  }
  .inside-hyshow-5 .list {
    margin-top: 30px;
  }
  .inside-hyshow-5 .pic,
  .inside-hyshow-5 .text {
    width: 100%;
    float: none;
  }
  .inside-hyshow-5 .text {
    padding-top: 30px;
    padding-left: 0;
  }
  .inside-hyshow-5 .txt {
    color: #666;
    height: auto;
    padding: 0;
    margin-top: 20px;
    border-radius: 0;
    transform: translate(0);
    background: transparent;
  }
  .inside-hyshow-5 .icon {
    display: none;
  }
  .inside-hyshow-5 .sm {
    height: auto;
    margin-top: 0;
    line-height: 24px;
  }
  .inside-hyshow-5 .tu {
    display: none;
  }
  .inside-hyshow-5 .slick-prev,
  .inside-hyshow-5 .slick-next {
    margin-top: -50px;
    line-height: 28px;
    background: rgba(0, 0, 0, 0.5);
    width: 30px;
    height: 30px;
  }
  .inside-hyshow-5 .slick-prev:before,
  .inside-hyshow-5 .slick-next:before {
    font-size: 20px;
  }
  .inside-hyshow-5 .slick-prev {
    left: 20px;
    right: auto;
  }
  .inside-hyshow-5 .slick-next {
    right: 20px;
  }
}
.inside-jjfa-1 {
  padding: 0.8rem 0;
}
.inside-jjfa-1 .pic {
  margin-top: 0.5rem;
  text-align: center;
}
.inside-jjfa-2 {
  background: #f7f7f7;
}
.insinde-proshow1 {
  margin-top: 0.9rem;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #edeff5;
  padding-top: 1.2rem;
}
.insinde-proshow1 .pic {
  width: 36.5%;
  float: left;
  position: relative;
}
.insinde-proshow1 .pic:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.insinde-proshow1 .right {
  width: 50%;
  float: right;
}
.insinde-proshow1 h1 {
  color: #003ba3;
  font-size: 0.4rem;
  line-height: 0.5rem;
  padding-bottom: 0.4rem;
}
.insinde-proshow1 .text {
  color: #333;
  min-height: 3.4rem;
  padding-top: 0.3rem;
  line-height: 0.32rem;
}
.insinde-proshow1 .page {
  padding-top: 0.15rem;
}
.insinde-proshow1 .page li {
  width: 48%;
  float: left;
  height: 0.56rem;
  line-height: 0.54rem;
  overflow: hidden;
  padding: 0 0.15rem;
  border: solid 1px #d6d6d7;
  transition: all 334ms ease;
}
.insinde-proshow1 .page li:last-child {
  float: right;
}
.insinde-proshow1 .page li:hover {
  color: #003ba3;
  border-color: #003ba3;
}
@media (max-width: 1023px) {
  .insinde-proshow1 {
    margin-top: 50px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .insinde-proshow1 .pic {
    width: 100%;
    float: none;
  }
  .insinde-proshow1 .right {
    width: 100%;
    float: none;
  }
  .insinde-proshow1 .text {
    min-height: auto;
    padding-top: 30px;
    line-height: 24px;
  }
  .insinde-proshow1 .page {
    padding-top: 15px;
  }
  .insinde-proshow1 .page li {
    width: 100%;
    padding: 0 15px;
    height: 50px;
    line-height: 48px;
    margin-top: 15px;
  }
}
.insinde-proshow2 {
  padding: 0.8rem 0;
}
.insinde-proshow2 .text {
  line-height: 0.3rem;
  padding-top: 0.4rem;
}
@media (max-width: 1023px) {
  .insinde-proshow2 {
    padding: 50px 0;
  }
  .insinde-proshow2 .text {
    line-height: 24px;
    padding-top: 20px;
  }
}
.insinde-proshow3 {
  background: url(../images/ybg.jpg) no-repeat top center;
  line-height: 0.3rem;
  padding: 0.8rem 0;
}
.insinde-proshow3 ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.insinde-proshow3 li {
  display: flex;
  width: 33.333%;
  padding: 0 0.4rem;
  padding-right: 0.35rem;
  align-items: center;
  min-height: 2rem;
  background-color: #f7fbfd;
}
.insinde-proshow3 li .icon {
  width: 0.91rem;
  height: 0.91rem;
  display: inline-block;
}
.insinde-proshow3 li .icon img {
  transition: all 700ms ease;
}
.insinde-proshow3 li .txt {
  width: 70%;
  padding-left: 0.3rem;
}
.insinde-proshow3 li:hover .icon img {
  transform: scale(1.05);
}
.insinde-proshow3 li:nth-child(2),
.insinde-proshow3 li:nth-child(4),
.insinde-proshow3 li:nth-child(6) {
  background-color: #eff7fb;
}
@media (max-width: 1023px) {
  .insinde-proshow3 {
    line-height: 24px;
    padding: 40px 0;
  }
  .insinde-proshow3 li {
    padding: 30px;
    min-height: auto;
    width: 100%;
  }
  .insinde-proshow3 li .icon {
    width: 50px;
    height: 50px;
  }
  .insinde-proshow3 li .txt {
    width: 85%;
    padding-left: 20px;
  }
}
.insinde-proshow4 {
  padding: 0.8rem 0;
  background-color: #f8f8f8;
}
.insinde-proshow4 .video {
  text-align: center;
  margin-top: 0.5rem;
}
@media (max-width: 1023px) {
  .insinde-proshow4 {
    padding: 50px 0;
  }
  .insinde-proshow4 .video {
    margin-top: 30px;
  }
}
.insinde-proshow5 {
  padding: 0.8rem 0;
}
.insinde-proshow5 .text {
  padding-top: 0.5rem;
  line-height: 0.3rem;
}
.insinde-proshow5 .table {
  margin-top: 0.5rem;
}
.insinde-proshow5 table,
.insinde-proshow5 td,
.insinde-proshow5 th {
  border: 0;
  text-align: center;
}
.insinde-proshow5 th,
.insinde-proshow5 td {
  padding: 0.12rem;
}
.insinde-proshow5 td {
  font-family: arial;
}
.insinde-proshow5 td:first-child {
  font-weight: 700;
}
.insinde-proshow5 th {
  color: #fff;
  background: #003ba3;
}
.insinde-proshow5 tr {
  background: #f4f4f4;
}
.insinde-proshow5 tr:nth-child(2n) {
  background: #fff;
}
@media (max-width: 1023px) {
  .insinde-proshow5 {
    padding: 50px 0;
  }
  .insinde-proshow5 .text {
    padding-top: 30px;
    line-height: 24px;
  }
  .insinde-proshow5 .table {
    margin-top: 30px;
    overflow-x: scroll;
  }
  .insinde-proshow5 .table table {
    width: 1000px;
  }
  .insinde-proshow5 th,
  .insinde-proshow5 td {
    padding: 10px;
  }
}
.insinde-proshow6 {
  margin-top: 0;
  background: #f8f8f8;
  padding: 0.8rem 0;
}
@media (max-width: 1023px) {
  .insinde-proshow6 {
    padding: 50px 0;
  }
  .insinde-proshow6 ul {
    margin-top: 30px;
  }
}
.inside-proshow7 {
  position: relative;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.inside-proshow7 .inside-protitle {
  border-bottom: 0;
  text-align: center;
}
.inside-proshow7 .item {
  margin-top: 0.4rem;
  border: solid 1px #003ba3;
  border-bottom: solid 0.06rem #003ba3;
}
.inside-proshow7 .pic {
  width: 50%;
  float: left;
}
.inside-proshow7 .mess {
  width: 50%;
  float: left;
  padding: 0.5rem;
  padding-bottom: 0.4rem;
}
.inside-proshow7 .mess .tag {
  padding-bottom: 0.15rem;
  font-size: 0.18rem;
  color: #333;
  line-height: 0.3rem;
}
.inside-proshow7 .mess .tag img {
  width: 0.3rem;
  height: 0.3rem;
  margin-right: 0.01rem;
}
.inside-proshow7 .mess li:first-child {
  padding-top: 0;
}
.inside-proshow7 .mess li {
  padding-top: 0.2rem;
  margin: 0 -0.15rem;
}
.inside-proshow7 .mess li p {
  width: 50%;
  float: left;
  padding: 0 0.15rem;
  position: relative;
}
.inside-proshow7 .mess li label {
  color: #080f15;
  display: block;
  margin-bottom: 0.1rem;
}
.inside-proshow7 .mess li em {
  color: #de021c;
  font-style: normal;
}
.inside-proshow7 .mess li input[type="text"],
.inside-proshow7 .mess li textarea,
.inside-proshow7 .mess li select {
  width: 100%;
  height: 0.52rem;
  line-height: 0.5rem;
  border-radius: 0.05rem;
  padding: 0 0.25rem;
  font-size: 0.16rem;
  color: #666;
  font-family: arial;
  background-color: #fff;
  border: solid 1px #cacaca;
  transition: all 334ms ease;
}
.inside-proshow7 .mess li input[type="text"]:focus,
.inside-proshow7 .mess li textarea:focus {
  border-color: #003ba3;
}
.inside-proshow7 .mess li input[type="submit"] {
  color: #fff;
  border: 0;
  width: 1.7rem;
  height: 0.5rem;
  line-height: 0.5rem;
  text-align: center;
  font-size: 0.18rem;
  background: #00afed;
  margin-top: 0.2rem;
}
.inside-proshow7 .mess li input[type="submit"]:hover {
  background: #003ba3;
}
.inside-proshow7 .mess .textarea p {
  width: 100%;
  float: none;
}
.inside-proshow7 .mess .textarea textarea {
  height: 1.2rem;
}
@media (max-width: 1300px) {
  .inside-proshow7 .mess {
    padding-top: 1.2rem;
  }
}
@media (max-width: 1023px) {
  .inside-proshow7 {
    padding: 50px 0;
  }
  .inside-proshow7 .item {
    margin-top: 30px;
  }
  .inside-proshow7 .pic {
    display: none;
  }
  .inside-proshow7 .mess {
    width: 100%;
    float: none;
    padding: 30px 15px;
  }
  .inside-proshow7 .mess .tag {
    padding-bottom: 15px;
    font-size: 14px;
    line-height: 24px;
  }
  .inside-proshow7 .mess .tag img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
  }
  .inside-proshow7 .mess li label {
    margin-bottom: 10px;
  }
  .inside-proshow7 .mess li {
    margin: 0;
  }
  .inside-proshow7 .mess li input[type="text"],
  .inside-proshow7 .mess li select,
  .inside-proshow7 .mess li textarea {
    font-size: 14px;
    height: 40px;
    line-height: 38px;
    padding: 0 15px;
  }
  .inside-proshow7 .mess li p {
    width: 100%;
    float: none;
    padding: 0;
    padding-top: 15px;
  }
  .inside-proshow7 .mess .textarea textarea {
    height: 80px;
  }
  .inside-proshow7 .mess li input[type="submit"] {
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
  }
  .inside-proshow7 .mess li .baojiao {
    width: 100%!important;
    height: 50px!important;
    line-height: 50px!important;
    font-size: 16px!important;
  }
}
.inside-about {
  overflow: hidden;
  padding: 1rem 0;
}
.inside-about .index-title .f18 {

  padding-top: 0.4rem;
}
.inside-about .index-title .cn {
  color: #fff;
}
.inside-about .index-title .cn span {
  color: #003ba3;
}
.inside-about .index-title .en {
  font-size: 1.62rem;
}
.inside-about .numlist li {
  padding-left: 0;
}
.inside-about .numlist li .counter {
  color: #003ba3;
  font-family: "myfont2";
}
.inside-about .numlist li::before {
  background: #d4d4d4;
}
.inside-about .numlist li:first-child:before {
  display: none;
}
.inside-about .lefttxt {
  color: #fff;
  width: 49%;
  padding-right: 0.45rem;
}
.inside-about .pic {
  top: auto;
  right: auto;
  width: 51.6%;
  position: relative;
  margin-top: -0.2rem;
}
.inside-about .vbtn {
  top: 50%;
  left: 50%;
  z-index: 2;
  position: absolute;
  transform: translate(-50%, -50%);
}
.inside-about .vbtn img {
  max-height: 0.7rem;
}
@media (max-width: 1300px) {
  .inside-about {
    padding: 0.7rem 0 0.2rem 0;
  }
  .inside-about .vbtn {
    transform: translate(-50%, 50%);
  }
}
@media (max-width: 1023px) {
  .inside-about {
    padding-top: 20px;
    padding-bottom: 40px;
  }
  .inside-about .lefttxt {
    width: 100%;
    padding-right: 0;
  }
}
.inside-qywh {
  position: relative;
}
.inside-qywh .tabcot {
  color: #fff;
  height: 100vh;
  padding-top: 2rem;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
.inside-qywh .title {
  color: #fff;
  font-size: 0.46rem;
  padding-bottom: 0.2rem;
  font-weight: 700;
  position: relative;
}
.inside-qywh .title:before {
  left: 0;
  bottom: 0;
  content: "";
  height: 0.03rem;
  width: 0.22rem;
  position: absolute;
  background: #00afed;
}
.inside-qywh .title:after {
  bottom: 0;
  left: 0.32rem;
  content: "";
  height: 0.03rem;
  width: 1rem;
  background: #fff;
  position: absolute;
}
.inside-qywh .title-2 {
  padding-top: 0.8rem;
}
.inside-qywh .title-2 .en {
  font-size: 0.25rem;
  font-weight: lighter;
  text-transform: uppercase;
}
.inside-qywh .title-2 .cn {
  font-weight: 700;
  font-size: 0.36rem;
}
.inside-qywh .text {
  padding-top: 0.4rem;
}
.inside-qywh .t1 {
  position: relative;
}
.inside-qywh .t1:before {
  content: "";
  width: 0.45rem;
  height: 1px;
  display: inline-block;
  background: #003ba3;
  background: #fff;
  margin-right: 0.1rem;
  vertical-align: middle;
}
.inside-qywh .tabcot {
  display: none;
}
.inside-qywh .tabnav {
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  position: absolute;
  height: 2.5rem;
}
.inside-qywh .tabnav li:hover,
.inside-qywh .tabnav .active {
  background: #003ba3;
}
.inside-qywh .tabnav li:hover .ic2,
.inside-qywh .tabnav .active .ic2 {
  opacity: 1;
}
.inside-qywh .tabnav li:hover .ic1,
.inside-qywh .tabnav .active .ic1 {
  opacity: 0;
}
.inside-qywh .tabnav li:hover .icon img,
.inside-qywh .tabnav .active .icon img {
  transform: scale(1.1);
}
.inside-qywh .tabnav li {
  float: left;
  width: 20%;
  color: #fff;
  cursor: pointer;
  font-size: 0.24rem;
  text-align: center;
  height: 2.49rem;
  padding-top: 0.6rem;
  border-left: solid 1px #fff;
  border-top: solid 1px #fff;
  background: rgba(255, 255, 255, 0.16);
  transition: all 500ms ease;
}
.inside-qywh .tabnav li:last-child {
  border-right: solid 1px #fff;
}
.inside-qywh .tabnav .icon {
  height: 0.7rem;
  width: 0.7rem;
  position: relative;
  margin: 0 auto;
}
.inside-qywh .tabnav .icon img {
  transition: all 700ms ease;
}
.inside-qywh .tabnav .ic2 {
  top: 0;
  left: 0;
  opacity: 0;
  position: absolute;
}
.inside-qywh .tabnav .bt {
  margin-top: 0.3rem;
}
@media (max-width: 1023px) {
  .inside-qywh .title {
    font-size: 24px;
    padding-bottom: 10px;
  }
  .inside-qywh .title:before {
    width: 20px;
    height: 3px;
  }
  .inside-qywh .title:after {
    left: 24px;
    height: 3px;
    width: 70px;
  }
  .inside-qywh .tabcot {
    height: 50vh;
    padding-top: 50px;
  }
  .inside-qywh .text {
    padding-top: 20px;
  }
  .inside-qywh .title-2 {
    padding-top: 40px;
  }
  .inside-qywh .title-2 .en {
    font-size: 16px;
  }
  .inside-qywh .title-2 .cn {
    font-size: 20px;
  }
  .inside-qywh .tabnav {
    height: auto;
  }
  .inside-qywh .tabnav .icon {
    width: 30px;
    height: 30px;
  }
  .inside-qywh .tabnav .bt {
    margin-top: 5px;
  }
  .inside-qywh .tabnav li {
    font-size: 14px;
    padding-top: 10px;
    height: 80px;
  }
}
@media (max-width: 500px) {
  .inside-qywh .tabcot {
    height: 60vh;
  }
}
.inside-lsjc {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.inside-lsjc .f46 {
  color: #333;
  font-size: 0.46rem;
  font-weight: 700;
  padding: 2.2rem 0 1.3rem 0;
}
@media (max-width: 1023px) {
  .inside-lsjc .f46 {
    padding: 40px 0;
    font-size: 24px;
  }
}
.about-culture {
  height: 100vh;
}
@media (max-width: 1023px) {
  .about-culture {
    height: 50vh;
  }
}
.about-culture-swiper .t1 {
  color: #333;
  font-size: 0.3rem;
  line-height: 0.4rem;
  font-weight: normal;
}
.about-culture-swiper .t1 i {
  font-style: normal;
  font-size: 0.4rem;
  font-weight: 700;
}
.about-culture-swiper .t1 span {
  color: #d7322c;
}
@media (max-width: 1023px) {
  .about-culture-swiper .t1 {
    font-size: 20px;
    line-height: 30px;
  }
  .about-culture-swiper .t1 i {
    font-size: 20px;
  }
  .about-culture-swiper .t1 span {
    display: block;
  }
}
.about-culture-swiper .t2 {
  font-size: 0.2rem;
  color: #333;
  padding-top: 0.4rem;
  max-width: 10rem;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .about-culture-swiper .t2 {
    font-size: 16px;
    padding-top: 20px;
  }
}
.set .corona > li em {
  font-style: normal;
  font-family: "myfont2";
  font-size: 0.24rem;
  color: #666;
}
.set .corona > li.on em {
  font-size: 0.36rem;
  color: #333;
}
.set .corona > li.on span {
  opacity: 0;
}
.set .icon-click {
  position: absolute;
  top: 60%;
  left: 50%;
  width: 0.62rem;
  height: 0.62rem;
  transform: translate(-50%, 0%);
}
@media (max-width: 1023px) {
  .about-culture .set {
    display: none;
  }
  .about-culture-swiper {
    transform: translateX(20px);
  }
  .about-culture-swiper .t2 {
    max-width: 90%;
  }
}
.indhb .indTitle {
  justify-content: space-between;
}
.indhb-svp {
  position: relative;
}
.indhb-svp img.bg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
.indhb-lun {
  display: flex;
  margin: 0.15rem;
  justify-content: center;
  align-items: center;
  padding: 0.1rem;
  border-style: solid;
  border-width: 1px;
  border-color: #e3e4e4;
  position: relative;
  transition: all .4s ease;
  background-color: #fff;
}
.indhb-lun:after {
  content: "";
  display: block;
  padding-bottom: 50%;
}
.indhb-svp .swiper-wrapper {
  transition-timing-function: linear;
  margin: 0 auto;
}
.indhb-svp .Nurm1 {
  padding-left: 2.3rem;
  transform: rotate(180deg);
}
.indhb-svp .Nurm2 {
  padding-left: 2.3rem;
}
.indhb-svp .Nurm4 {
  padding-left: 2.3rem;
}
.indhb-svp .Nurm1 .indhb-lun img {
  transform: rotate(-180deg);
}
.indhb-svp .Nurm3 {
  padding-left: 2.3rem;
  transform: rotate(180deg);
}
.indhb-svp .Nurm3 .indhb-lun img {
  transform: rotate(-180deg);
}
.indhb-svp .nuo:last-child {
  margin-bottom: 0px;
}
.inside-hezuo {
  background-color: #f1f4f6;
}
.inside-hezuo .f46 {
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 0.46rem;
  padding-top: 0.7rem;
  padding-bottom: 0.3rem;
}
@media (max-width: 1023px) {
  .inside-hezuo {
    padding: 40px 0;
  }
  .inside-hezuo .f46 {
    font-size: 24px;
    padding: 0;
    padding-bottom: 20px;
  }
}
@media (max-width: 1023px) {
  .indhb-svp .Nurm1 {
    padding-left: 0;
  }
  .indhb-svp .Nurm2 {
    padding-left: 0;
  }
  .indhb-svp .Nurm3 {
    padding-left: 0;
  }
  .indhb-svp .Nurm4 {
    padding-left: 0;
  }
}
.about03 {
  position: relative;
  padding: 1.5rem 0 2rem 0;
  background-repeat: no-repeat;
  /* background-position: center bottom; */
}
.about03 .nr {
  margin-top: 0.82rem;
  position: relative;
}
.about03 .swiper-wrapper {
  align-items: flex-end;
  min-height: 5.3rem;
}
.about03 .swiper-slide {
  cursor: pointer;
}
.about03 .swiper-slide .pic {
  width: 1.6rem;
  height: 2.2rem;
  position: relative;
}
.about03 .swiper-slide .pic:after {
  display: none;
}
.about03 .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  display: inline-block;
  margin: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all 0.5s;
}
.about03 .swiper-slide .title {
  text-align: center;
  color: #fff;
  font-size: 0.24rem;
  height: 0.4rem;
  line-height: 0.4rem;
  margin-bottom: 0.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: none;
}
.about03 .swiper-slide-active {
  text-align: center;
}
.about03 .swiper-slide-active .pic {
  width: 3.53rem;
  height: 4.78rem;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .about03 .swiper-slide-active .pic {
    width: 200px;
    height: 278px;
  }
}
.about03 .swiper-slide-active {
  margin-right: 1% !important;
}
.about03 .swiper-slide-active .title {
  display: block;
}
.about03 .swiper-prev,
.about03 .swiper-next {
  background: none;
  width: auto;
  height: auto;
  cursor: pointer;
  position: absolute;
  z-index: 999;
  top: 0.24rem;
}
.about03 .swiper-prev:hover .icon:before,
.about03 .swiper-next:hover .icon:before {
  border-color: #003ba3;
}
.about03 .swiper-prev:hover .icon:after,
.about03 .swiper-next:hover .icon:after {
  border-color: #003ba3;
}
.about03 .swiper-prev:hover .icon i:before,
.about03 .swiper-next:hover .icon i:before {
  border-color: #003ba3;
}
.about03 .swiper-prev:hover .icon svg,
.about03 .swiper-next:hover .icon svg {
  fill: #003ba3;
}
.about03 .swiper-prev {
  left: 0;
}
.about03 .swiper-next {
  text-align: right;
  right: 0;
}
.about03 .swiper-next .icon {
  float: right;
}
.about03 .swiper-next .txt {
  padding-left: 0;
  padding-right: 0.2rem;
}
.about03 .icon {
  float: left;
  display: block;
  text-align: center;
  width: 0.74rem;
  height: 0.74rem;
  border-radius: 50%;
  position: relative;
}
.about03 .icon i {
  vertical-align: middle;
  font-family: "宋体";
  font-style: normal;
  display: inline-block;
  font-weight: 700;
  color: #fff;
  padding-top: 0.26rem;
}
@media (max-width: 1024px) {
  .about03 .icon i {
    padding-top: 7px;
  }
}
.about03 .icon:before,
.about03 .icon:after {
  content: '';
  display: block;
  border-radius: 50%;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all 0.5s;
}
.about03 .icon:before {
  width: 0.74rem;
  height: 0.74rem;
  border: 1px #fff solid;
  opacity: 0.27;
  transition: all 0.5s;
  animation: scrollArrow 1.5s ease-in-out infinite;
}
.about03 .icon:after {
  width: 0.6rem;
  height: 0.6rem;
  border: 1px #fff solid;
  transition: all 0.5s;
  animation: scrollArrow 1.6s ease-in-out infinite;
}
.about03 .icon i:before {
  content: '';
  display: block;
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 50%;
  border: 2px #fff solid;
  opacity: 1;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all 0.5s;
  animation: scrollArrow 1.7s ease-in-out infinite;
}
.about03 .icon svg {
  fill: #fff;
  width: 0.3rem;
  height: 0.3rem;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all 0.5s;
}
.about03 .txt {
  float: left;
  font-size: 0.2rem;
  line-height: 0.36rem;
  padding-left: 0.2rem;
}
.about03 .title-1 {
  color: #fff;
}
.about03 .title-2 {
  color: #fff;
}
.about03 .swiper-button-disabled {
  cursor: initial;
}
@media (max-width: 1023px) {
  .about03 {
    padding: 50px 0;
  }
  .about03 .swiper-slide .title {
    font-size: 16px;
    height: 30px;
    line-height: 30px;
    margin-bottom: 20px;
  }
  .about03 .txt {
    display: none;
    font-size: 14px;
    line-height: 24px;
    padding-left: 10px;
  }
  .about03 .icon {
    width: 36px;
    height: 36px;
  }
  .about03 .icon:before {
    width: 36px;
    height: 36px;
  }
  .about03 .icon i:before {
    width: 20px;
    height: 20px;
  }
  .about03 .icon:after {
    width: 26px;
    height: 26px;
  }
}
.inside-caselist {
  padding: 0.8rem 0;
}
.inside-caselist ul {
  margin: 0 -0.2rem;
}
.inside-caselist li {
  float: left;
  width: 33.333%;
  padding: 0 0.2rem;
  text-align: center;
  padding-bottom: 0.4rem;
}
.inside-caselist li:hover .pic img {
  transform: scale(1.05);
}
.inside-caselist .pic {
  overflow: hidden;
  border-radius: 0.1rem;
  position: relative;
}
.inside-caselist .pic img {
  transition: all 700ms ease;
}
.inside-caselist .pic:after {
  content: "";
  display: block;
  padding-bottom: 67.32891832%;
}
.inside-caselist .tit {
  color: #222;
  height: 0.3rem;
  line-height: 0.3rem;
  font-size: 0.2rem;
  overflow: hidden;
  margin-top: 0.3rem;
}
@media (max-width: 640px) {
  .inside-caselist {
    padding: 40px 0;
  }
  .inside-caselist ul {
    margin: 0 -5px;
  }
  .inside-caselist li {
    width: 50%;
    padding: 0 5px;
    padding-bottom: 20px;
  }
  .inside-caselist .tit {
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    margin-top: 10px;
  }
}
.inside-pagelist {
  position: relative;
  margin-top: 0.8rem;
}
.inside-pagelist li {
  width: 40%;
  float: left;
  height: 0.3rem;
  line-height: 0.3rem;
  overflow: hidden;
}
.inside-pagelist li span {
  padding-right: 0.2rem;
  display: inline-block;
}
.inside-pagelist li:last-child {
  float: right;
}
.inside-pagelist .fanhui {
  width: 6%;
  text-align: center;
}
@media (max-width: 1023px) {
  .inside-pagelist {
    margin-top: 40px;
  }
  .inside-pagelist li {
    width: 100%;
    height: 30px;
    line-height: 30px;
  }
  .inside-pagelist li span {
    padding-right: 10px;
  }
  .inside-pagelist .fanhui {
    display: none;
  }
}
.inside-page {
  padding: 0.75rem 1.6rem;
  overflow: hidden;
  text-align: center;
}
.inside-page span {
  color: #2b2517;
  font-weight: 700;
  display: inline-block;
}
.inside-page a {
  color: #2b2517;
  transition: all 334ms ease;
}
.inside-page a:hover {
  color: #003ba3 !important;
}
.inside-page .prev {
  float: left;
}
.inside-page .prev a {
  color: #00afed;
}
.inside-page .next {
  float: right;
}
.inside-page .next a {
  color: #00afed;
}
.inside-page .page a {
  padding-right: 0.15rem;
  display: inline-block;
}
@media (max-width: 1023px) {
  .inside-page {
    padding: 50px 0;
  }
}
.transparent {
  display: none;
  position: fixed;
  z-index: 998;
  top: 0;
  margin: auto;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.inside-map {
  padding: 80px 0;
}
.inside-map li {
  padding: 30px 0;
  font-size: 16px;
  border-bottom: solid 1px #eee;
}
.inside-map li h3 {
  padding-bottom: 10px;
}
.inside-map li a {
  display: inline-block;
  padding-right: 20px;
}
.inside-map li:first-child {
  padding-top: 0;
}
.inside-map li:last-child {
  border-bottom: 0;
}
@media (max-width: 1025px) {
  .inside-map {
    padding: 30px 0;
  }
  .inside-map li {
    font-size: 14px;
  }
}
.verify {
  height: 50px;
  background-color: #e5e5e5;
  position: relative;
}
.verify .drag-btn {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  border: 1px #e5e5e5 solid;
  background: #ffffff url(../images/drag-arrow.svg) no-repeat center center;
  background-size: 20px 20px;
  z-index: 2;
  cursor: move;
}
.verify .suc-drag-btn {
  background: #ffffff url(../images/drag-success.svg) no-repeat center center;
  background-size: 20px 20px;
}
.verify .drag-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 50px;
  line-height: 48px;
  width: 0;
  background-color: #7ac23c;
  color: #fff;
  font-size: 18px;
  text-align: center;
}
.verify .fix-tips,
.verify .verify-msg {
  width: 100%;
  position: absolute;
  right: 0;
  left: 0;
  height: 100%;
  color: #333;
  z-index: 1;
  line-height: 50px;
  padding-left: 50px;
  text-align: center;
}
.verify .verify-msg {
  padding-left: 0;
  padding-right: 50px;
}
.verify .verify-msg {
  background-color: #7ac23c;
  color: #fff;
  display: none;
}
.verifyDiv {
  vertical-align: middle;
  position: relative;
}
.navPhoneBtn {
  display: inline-block;
  cursor: pointer;
  float: right;
  padding-top: 20px;
  text-align: right;
  display: none;
}
.navPhoneBtn span {
  display: block;
  width: 20px;
  height: 2px;
  margin-bottom: 3px;
  position: relative;
  background: #00afed;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 20px;
  transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), width 0.5s, transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}
.navPhoneBtn span:nth-last-child(2) {
  transform: rotate(0);
  transition: width .5s ease;
}
.navPhoneBtn span:last-child {
  margin-bottom: 0;
}
.navPhoneBtn.close,
.navPhoneBtn.closeMember {
  opacity: 1;
  z-index: 10;
}
.navPhoneBtn.close span,
.navPhoneBtn.closeMember span {
  opacity: 1;
  transform: rotate(45deg);
}
.navPhoneBtn.close span:nth-last-child(3),
.navPhoneBtn.closeMember span:nth-last-child(3) {
  opacity: 1;
  transform: rotate(-45deg);
}
.navPhoneBtn.close span:nth-last-child(2),
.navPhoneBtn.closeMember span:nth-last-child(2) {
  width: 0;
  opacity: 0;
  transform: rotate(0);
  transition: width .5s;
}
.navPhoneBtn.close span:last-child,
.navPhoneBtn.closeMember span:last-child {
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  .navPhoneBtn {
    display: block;
  }
}
.navM .transparent {
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  display: none;
}
.navM .navMCon {
  background-color: #f3f3f3;
  width: 80%;
  min-width: 140px;
  max-width: 440px;
  height: 100%;
  border-left: 1px rgba(0, 0, 0, 0.1) solid;
  padding: 10px 20px;
  font-size: 14px;
  line-height: 2;
  position: fixed;
  z-index: 999;
  top: 0;
  bottom: 0;
  right: auto;
  left: -100%;
  transition: all .5s;
}
.navM .navMWrap {
  overflow-y: auto;
  padding: 10px 20px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.navM.open .transparent {
  display: block;
}
.navM.open .closeBtn {
  display: block;
}
.navM.open .navMCon {
  left: 0;
}
.navM .closeBtn {
  display: none;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background: #003ba3;
  color: #fff;
  position: absolute;
  z-index: 999;
  right: -40px;
  top: 0;
}
.navM .closeBtn:before,
.navM .closeBtn:after {
  content: "";
  display: block;
  background: #fff;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: rotate(45deg);
}
.navM .closeBtn:before {
  width: 15px;
  height: 1px;
}
.navM .closeBtn:after {
  width: 1px;
  height: 15px;
}
.navM .titleBig {
  text-align: center;
  padding: 10px 0;
  display: none;
}
.navM .navMWrap > .list .title {
  margin-bottom: 10px;
  padding: 5px;
  font-size: 16px;
  border-bottom: 1px rgba(0, 0, 0, 0.1) solid;
  position: relative;
}
.navM .navMWrap > .list .title .icon {
  width: 40px;
  height: 40px;
  margin: auto;
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(45deg);
  transition: all .3s ease;
}
.navM .navMWrap > .list .title .icon:after {
  content: "";
  margin: auto;
  height: 8px;
  width: 8px;
  border-top: 1px #aaa solid;
  border-right: 1px #aaa solid;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform-origin: center center;
}
.navM .navMWrap > .list .has .title .icon {
  display: block;
}
.navM .navMWrap > .list .active .title .icon {
  transform: rotate(135deg);
}
.navM .child {
  padding: 0 5px 20px 5px;
  display: none;
  position: relative;
}
.navM .child a {
  color: #666;
  display: block;
  font-size: 15px;
  line-height: 24px;
  padding: 5px 0;
  transition: all .5s;
  position: relative;
}
.navM .child a:hover {
  color: #000;
  margin-left: 10px;
}
.navM .mSearch {
  padding: 10px 0;
  text-align: left;
  overflow: hidden;
  height: 56px;
  border-bottom: #f3f3f3 1px solid;
  position: relative;
}
.navM .mSearch .btn {
  width: 40px;
  height: 40px;
  display: inline-block;
  box-sizing: border-box;
  text-align: center;
  position: absolute;
  top: 10px;
  margin-top: 0;
  right: 0px;
  background: #ccc;
}
.navM .mSearch .btn img {
  max-height: 20px;
  margin-top: 4px;
  vertical-align: middle;
}
.navM .mSearch input {
  height: 40px;
  line-height: 38px;
  border: 0;
  vertical-align: middle;
  box-sizing: border-box !important;
  color: #333;
  appearance: none;
  transition: all 0.4s cubic-bezier(0.11393, 0.8644, 0.14684, 1);
  opacity: 1;
  width: 100%;
  padding: 5px 30px 5px 15px;
  border-radius: 2px;
  font-size: 16px;
  background-color: #fff;
  position: static;
  left: 0;
  right: 0;
}
.navM .other {
  padding: 10px;
}
.navM .languageBtn {
  padding: 10px 0;
}
.navM .languageBtn a {
  display: block;
  width: 50%;
  float: left;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px #ccc solid;
  margin-right: -1px;
  background: #003ba3;
}
.topscorll {
  right: 10px;
  bottom: 1rem;
  position: fixed;
  max-width: 0.6rem;
}
@media (max-width: 1024px) {
  .topscorll {
    display: none;
  }
}
.active.inside-application .item {
  animation: 1.5s fadeInDown2 ease;
}
.active.inside-case .item {
  animation: 1.5s fadeInLeft2 ease;
}
.active.index-youshi .tabcot {
  -webkit-animation: fadeInUp2 3s alternate;
  animation: fadeInUp2 3s alternate;
}

.banner .t5 {
  padding-top: 0.4rem;
}

.banner .t5 .pics{
  display:inline-block;
  text-align:center;
    line-height: 1;
    font-weight: bold;  
  margin-right: 0.4rem;
}
.banner .t5 .pics:last-child{margin-right:0;}

.banner .slick-prev, .banner .slick-next {
    width: 0.36rem;
    height: 0.8rem;
    border: 0;
    transition: all 334ms ease;
    line-height:  0.8rem;
    margin-top: -0.4rem;
    background: #00afed;
	border-radius:3px;
}

.banner .slick-prev:before, .banner .slick-next:before {
    content: "";
    font-size: 0.42rem;
    color: rgb(255, 255, 255);
    font-family: 宋体;
    font-weight: 700;
    transition: all 334ms ease 0s;
}

.banner .slick-prev:before {
    content: "<";
}

.banner .slick-next:before {
    content: ">";
}

.index-hezuo .index-title .cn{
	color: #fff;
}
