* {
  box-sizing: border-box;
  outline: 0;
}
@font-face {
  font-family: "myfont";
  src: url("../fonts/Roboto-Bold.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Oswald-Regular";
  src: url("../fonts/Oswald-Regular.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Oswald-Bold';
  src: url('../fonts/Oswald-Bold.ttf');
  src: url('../fonts/Oswald-Bold.eot');
  src: url('../fonts/Oswald-Bold.woff');
  src: url('../fonts/Oswald-Bold.woff2');
  font-weight: normal;
  font-style: normal;
  
  /* IE9 Compat Modes */
}
@font-face {
  font-family: "OPPOSANS-B";
  src: url("../fonts/OPPOSANS-B.TTF");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
*,
*: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;
}
div,
p,
span,
i,
em {
  white-space: inherit !important;
}
a {
  color: #666;
  outline: none;
  text-decoration: none;
}
a:hover {
  color: #1e51a2;
}
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!important;
  }
}
@media (max-width: 1450px) {
  html {
    font-size: 75px!important;
  }
}
@media (max-width: 1400px) {
  html {
    font-size: 72px!important;
  }
}
@media (max-width: 1300px) {
  html {
    font-size: 68px!important;
  }
}
.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, 50px, 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, -50px, 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(-150px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft2 {
  animation-name: fadeInLeft2;
}
@keyframes fadeInRight2 {
  from {
    opacity: 0;
    transform: translate3d(50px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight2 {
  animation-name: fadeInRight2;
}
.scrollArrow1 {
  animation-name: scrollArrow1;
}
@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);
  }
}
.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;
}
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
::-webkit-scrollbar-thumb {
  height: 0px;
  opacity: 0.5;
  -webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.1);
}
::-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: 1520px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1520px) {
  .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: -1rem;
  z-index: -1;
  position: absolute;
}
.button {
  color: #fff;
  display: inline-block;
  height: 0.46rem;
  padding: 0 0.35rem;
  line-height: 0.46rem;
  min-width: 1.94rem;
  background: #1e51a2;
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.button a {
  z-index: 2;
  color: #fff;
  display: block;
  position: relative;
}
.button:hover::before {
  transform: scale(1.05);
}
.button:hover::before {
  animation: shine 1.5s ease-out infinite;
}
.button::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70%);
  top: 0;
  left: -100px;
  opacity: 0.6;
}
@keyframes shine {
  0% {
    left: -100px;
  }
  60% {
    left: 100%;
  }
  to {
    left: 100%;
  }
}
.header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  height: 1rem;
  position: absolute;
  transition: all 500ms ease;
}
.header .container {
  position: relative;
  max-width: 19.2rem;
}
.header .logo {
  margin-left: 0.5rem;
  position: relative;
  display: inline-block;
  padding-top: 0.3rem;
}
.header .logo img {
  max-height: 0.4rem;
  transition: all 500ms ease;
}
.header .header-search {
  float: right;
  margin-right: 0.6rem;
  position: relative;
  margin-top: 0.28rem;
  min-width: 2.2rem;
}
.header .header-search input {
  width: 100%;
  border: 0;
  padding: 0.1rem 0.2rem;
  padding-right: 0.5rem;
  line-height: 0.24rem;
  height: 0.45rem;
  background: #fff;
  font-size: 0.14rem;
  font-family: "微软雅黑";
  border-radius: 0.3rem;
}
.header #search-btn {
  right: 0.03rem;
  top: 0.03rem;
  vertical-align: middle;
  line-height: 0.34rem;
  text-align: center;
  position: absolute;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 100%;
  background: #1e51a2;
}
.header #search-btn img {
  vertical-align: middle;
}
.header .nav {
  float: right;
  width: 50%;
}
.header .nav ul {
  display: flex;
  justify-content: space-between;
}
.header .nav li {
  font-size: 0.18rem;
  line-height: 1rem;
  position: relative;
}
.header .nav li > a {
  color: #fff;
  display: block;
  position: relative;
}
.header .nav li i {
  content: "";
  margin-left: 0.1rem;
  display: inline-block;
  vertical-align: middle;
  border-top: solid 0.08rem #ffffff;
  border-left: solid 0.08rem transparent;
  border-right: solid 0.08rem transparent;
}
.header .nav li:after {
  content: "";
  width: 0%;
  bottom: 0;
  left: 50%;
  opacity: 0;
  height: 0.02rem;
  position: absolute;
  background: #1e51a2;
  transition: all 500ms ease;
}
.header .nav li .subnav {
  font-size: 0.15rem;
  text-align: center;
  top: 0.84rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5rem;
  display: none;
  z-index: 99;
  line-height: 0.3rem;
  position: absolute;
  padding: 0.2rem 0;
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.1);
  border-bottom-left-radius: 0.1rem;
  border-bottom-right-radius: 0.1rem;
  background: rgba(255, 255, 255, 0.95);
  border-top: solid 1px #eee;
}
.header .nav li .subnav a {
  color: #666!important;
  display: block;
}
.header .nav li .subnav a:hover {
  color: #1e51a2 !important;
}
.header .nav li:hover > a,
.header .nav .active > a {
  font-weight: 700;
}
@media (max-width: 1023px) {
  .header {
    top: 0;
    height: 60px;
    width: 100%;
    z-index: 99;
    position: fixed;
    background: #1e51a2;
    border-bottom: 0;
    padding: 0 0px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  }
  .header .logo {
    margin-top: 0px;
    width: auto;
    height: auto;
    margin-left: 0;
    padding-top: 15px;
  }
  .header .logo img {
    max-height: 30px;
  }
  .header .language {
    margin-top: 3px;
  }
  .header .header-search {
    margin-top: 20px;
    display: none;
  }
  .header .nav {
    display: none;
  }
  .header .button {
    display: none;
  }
}
.header-2 {
  background: #194297;
}
.fixed {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  position: fixed;
  background: #194297;
}
.banner {
  overflow: hidden;
  background: #01080e;
  text-align: center;
  position: relative;
  z-index: 9;
}
.banner img {
  vertical-align: top;
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
}
.banner li {
  float: left;
}
.banner .box {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.banner .pic {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  display: block;
  height: 100vh;
  position: relative;
}
.banner .textbox {
  top: 50%;
  left: 0;
  width: 100%;
  z-index: 2;
  text-align: left;
  position: absolute;
  transform: translateY(-50%);
}
.banner .t1 {
  color: #fff;
  text-align: center;
  font-size: 0.4rem;
  line-height: 0.5rem;
}
.banner .swiper-slide-active .pic {
  animation: 4s bmove1 linear;
}
.banner .swiper-pagination {
  width: 100%;
  bottom: 0.3rem;
  text-align: center;
}
.banner .swiper-pagination-bullet {
  opacity: 1;
  margin: 0 0.15rem;
  background: #1e51a2;
  transition: all 335ms ease;
}
.banner .swiper-pagination-bullet-active {
  width: 0.37rem;
  height: 0.06rem;
  border-radius: 0.03rem;
  background: #1e51a2;
}
@media (max-width: 1023px) {
  .banner .pic {
    height: 45vh;
  }
  .banner .textbox {
    left: 0;
    top: 50%;
    bottom: auto;
    transform: ttranslateY(-50%);
  }
  .banner .swiper-pagination-bullet {
    margin: 0 4px;
    vertical-align: middle;
  }
  .banner .swiper-pagination {
    width: 100%;
    left: 0;
    padding-left: 0;
    transform: translateX(0);
    text-align: center;
  }
  .banner .text-1 {
    height: auto;
    padding-top: 0;
    background: transparent;
  }
  .banner .tit {
    text-shadow: 0 0 5px #fff;
    text-align: center;
    padding-left: 0;
    font-size: 24px;
  }
  .banner .tit:after {
    display: none;
  }
}
@media (max-width: 640px) {
  .banner .t1 {
    font-size: 18px;
    line-height: 30px;
  }
}
.index-title {
  color: #1f1f1f;
  font-size: 0.42rem;
  font-weight: 700;
  padding-bottom: 0.3rem;
  line-height: 0.52rem;
  position: relative;
}
.index-title:after {
  content: "";
  bottom: 0;
  left: 0;
  height: 0.04rem;
  width: 2.1rem;
  position: absolute;
  background: linear-gradient(to right, #194297, #ffffff 45%, #1a7639);
}
.index-more a {
  color: #fff;
  height: 0.38rem;
  line-height: 0.38rem;
  text-align: center;
  padding: 0 0.1rem;
  border-radius: 0.3rem;
  min-width: 1.35rem;
  display: inline-block;
  background: #1e51a2;
  transition: background-color 500ms ease;
}
.index-more img {
  margin-left: 0.1rem;
  vertical-align: middle;
  max-height: 0.1rem;
  margin-bottom: 0.03rem;
  transition: all 500ms ease;
}
.index-more:hover a {
  background: #26a063;
}
.index-more:hover img {
  margin-left: 0;
}
@media (max-width: 1023px) {
  .index-more a {
    min-width: 140px;
    height: 38px;
    line-height: 38px;
  }
}
.index-about {
  position: relative;
}
.index-about .drop {
  z-index: 10;
  top: -1rem;
  position: relative;
}
.index-about .drop ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.index-about .drop li {
  padding: 0 0.22rem;
}
.index-about .drop li .item1 {
  font-size: 0.18rem;
  padding: 0.1rem;
  text-align: center;
  padding-top: 0.3rem;
  background-image: url(../images/abg-1.png);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  width: 1.7rem;
  height: 1.55rem;
}
.index-about .drop li .icon img {
  max-height: 0.7rem;
}
.index-about .drop li .tit {
  color: #333;
  height: 0.3rem;
  overflow: hidden;
  line-height: 0.3rem;
}
.index-about .drop li:hover .tit {
  color: #1e51a2;
}
.index-about .drop li:first-child .item1 {
  background-image: url(../images/abg-2.png);
}
.index-about .drop li:first-child .tit {
  color: #fff!important;
}
@media (max-width: 1023px) {
  .index-about .drop {
    display: none;
  }
}
@media (max-width: 640px) {
  .index-about .drop ul {
    justify-content: flex-start;
  }
  .index-about .drop li {
    width: 33.333%;
    padding: 0 5px;
    margin-top: 10px;
  }
}
.index-about .item {
  display: flex;
  color: #27303d;
  padding-top: 0rem;
  line-height: 0.32rem;
  padding-bottom: 3.6rem;
  justify-content: space-between;
}
.index-about .leftbox {
  width: 30%;
  padding-top: 0.5rem;
}
.index-about .leftbox .tit {
  color: #27303d;
  font-size: 0.32rem;
  line-height: 0.46rem;
  margin-top: 0.6rem;
}
.index-about .index-more {
  margin-top: 0.5rem;
}
.index-about .numlist {
  width: 60%;
}
.index-about .numlist ul {
  display: flex;
  margin-left: -1.1rem;
  margin-top: 0.6rem;
  justify-content: space-around;
}
.index-about .numlist li {
  color: #888;
  padding-left: 0.8rem;
  border-left: dashed 1px #dddddd;
}
.index-about .numlist li:first-child {
  border-left: 0;
}
.index-about .numlist .counter {
  line-height: 0.53rem;
  font-size: 0.53rem;
  color: #37474f;
  font-family: "OPPOSANS-B";
}
.index-about .numlist i,
.index-about .numlist em {
  display: inline-block;
  font-style: normal;
}
.index-about .numlist i {
  color: #fff;
  line-height: 0.24rem;
  text-align: center;
  width: 0.26rem;
  height: 0.26rem;
  vertical-align: top;
  font-size: 0.18rem;
  background: #1e51a2;
  border-radius: 50%;
  margin-top: 0.1rem;
  margin-bottom: 0.03rem;
}
.index-about .numlist i {
  vertical-align: bottom;
}
.index-about .numlist em {
  color: #37474f;
  padding-left: 0.1rem;
  font-size: 0.36rem;
  vertical-align: top;
}
.index-about .numlist .f50 {
  color: #37474f;
  font-size: 0.5rem;
}
@media (max-width: 1023px) {
  .index-about .item {
    display: block;
    padding-bottom: 50px;
  }
  .index-about .leftbox {
    width: 100%;
  }
  .index-about .numlist {
    width: 100%;
    padding-top: 0.3rem;
  }
  .index-about .numlist ul {
    margin-left: 0;
  }
  .index-about .numlist li {
    padding-left: 0;
  }
  .index-about .numlist .counter {
    font-size: 30px;
    line-height: 30px;
  }
  .index-about .numlist .f50 {
    font-size: 16px;
  }
  .index-about .numlist em {
    font-size: 14px;
  }
}
@media (max-width: 500px) {
  .index-about .numlist ul {
    display: block;
  }
  .index-about .numlist li {
    width: 100%;
    text-align: center;
    padding: 0.15rem 0;
    border-left: 0;
  }
}
.index-product .container {
  max-width: 13.7rem;
}
.index-product .index-title {
  text-align: center;
}
.index-product .index-title:after {
  left: 50%;
  transform: translateX(-50%);
}
.index-product .tabcot {
  position: relative;
}
.index-product .tabmenu {
  margin-top: 0.6rem;
}
.index-product .tabmenu ul {
  display: flex;
  flex-wrap: wrap;
}
.index-product .tabmenu li {
  width: 20%;
  position: relative;
  transition: color 500ms ease;
  border: solid 1px #ededed;
}
.index-product .tabmenu li span {
  color: #333;
  cursor: pointer;
  display: block;
  text-align: center;
  line-height: 0.9rem;
}
.index-product .tabmenu li .drop {
  left: 0;
  z-index: 9;
  top: 0.9rem;
  width: 100%;
  display: none;
  position: absolute;
  box-shadow: 0.03rem 0 0.27rem rgba(1, 36, 27, 0.23);
  background: #ffffff;
}
.index-product .tabmenu li .drop a {
  display: block;
  padding-left: 0.2rem;
padding-right: 0.2rem;
  margin: 0.2rem 0;
}
.index-product .tabmenu li .drop a:hover {
  text-decoration: underline;
}
.index-product .tabmenu li .drop a:hover img {
  opacity: 1;
  transform: translateX(0);
}
.index-product .tabmenu li .drop img {
  vertical-align: middle;
  max-height: 0.1rem;
  margin-left: 0.35rem;
  opacity: 0;
  transform: translateX(0.5rem);
  transition: all 334ms ease;
}
.index-product .tabmenu li:hover {
  border-color: #1e51a2;
  background: #1e51a2;
}
.index-product .tabmenu li:hover span {
  color: #fff;
}
.index-product .tabmenu li:hover .drop {
  display: block;
}
.index-product .tabmenu .active {
  border-color: #1e51a2;
  background: #1e51a2;
}
.index-product .tabmenu .active span {
  color: #fff;
}
.index-product .tabcot {
  padding-top: 1.2rem;
}
.index-product .tablist {
  position: relative;
  display: none;
}
.index-product .tablist .item {
  color: #333;
  display: flex;
  justify-content: space-between;
}
.index-product .tablist .picbox {
  width: 44.5%;
  height: 4.6rem;
  background: url(../images/pbg.png) no-repeat center center;
  background-size: cover;
}
.index-product .tablist .pic {
  overflow: hidden;
  position: relative;
}
.index-product .tablist .pic:after {
  content: "";
  display: block;
  padding-bottom: 75%;
}
.index-product .tablist .textbox {
  width: 47%;
  margin-top: 0.6rem;
  text-align: justify;
  line-height: 0.32rem;
  font-size: 0.14rem;
}
.index-product .tablist .tit {
  font-size: 0.24rem;
  font-weight: 700;
  line-height: 0.34rem;
  height: 0.34rem;
  overflow: hidden;
}
.index-product .tablist .tit a {
  display: block;
  color: #333;
}
.index-product .tablist .txt {
  height: 1.28rem;
  overflow: hidden;
  margin-top: 0.4rem;
}
.index-product .tablist.show {
  display: block;
}
.index-product .bot {
  right: 0.9rem;
  bottom: 0.4rem;
  width: 100%;
  display: flex;
  max-width: 5.5rem;
  position: absolute;
}
.index-product .index-more a {
  min-width: 1.74rem;
  height: 0.46rem;
  line-height: 0.46rem;
}
.index-product .search {
  padding-left: 0.1rem;
  position: relative;
}
.index-product .search input {
  font-family: "微软雅黑";
  padding: 0.1rem 0.3rem;
  height: 0.46rem;
  line-height: 0.24rem;
  max-width: 3.5rem;
  width: 100%;
  border-radius: 0.3rem;
  border: solid 1px #1e51a2;
  padding-right: 0.6rem;
}
.index-product .search .sbtn {
  right: 0.2rem;
  top: 0.14rem;
  position: absolute;
}
.index-product .search .sbtn img {
  max-height: 0.2rem;
}
@media (max-width: 1023px) {
  .index-product {
    padding: 50px 0;
  }
  .index-product .tabmenu li span {
    height: 50px;
    overflow: hidden;
    line-height: 50px;
  }
  .index-product .tabmenu li .drop {
    display: none!important;
  }
  .index-product .tabcot {
    padding-top: 50px;
  }
  .index-product .tablist .textbox {
    font-size: 14px;
    line-height: 24px;
  }
  .index-product .tablist .txt {
    height: 100px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
  }
}
@media (max-width: 640px) {
  .index-product .tabmenu li {
    width: 50%;
  }
  .index-product .tabcot {
    padding-top: 10px;
  }
  .index-product .tablist .item {
    display: block;
  }
  .index-product .tablist .picbox {
    width: 100%;
    height: auto;
  }
  .index-product .tablist .textbox {
    width: 100%;
  }
  .index-product .bot {
    right: auto;
    bottom: auto;
    position: relative;
    margin-top: 30px;
  }
}
.index-join .container {
  display: flex;
}
.index-join .index-title {
  color: #fff;
}
.index-join .leftbox {
  color: #fff;
  width: 57%;
}
.index-join .leftbox .tit-2 {
  font-weight: 700;
  font-size: 0.32rem;
  margin-top: 1.3rem;
}
.index-join .leftbox .txt {
  padding-top: 0.3rem;
}
.index-join .leftbox .t1 {
  font-size: 0.22rem;
}
.index-join .leftbox .t2 {
  padding-top: 0.3rem;
}
.index-join .leftbox .index-more {
  margin-top: 1rem;
}
.index-join .leftbox .index-more a {
  color: #1e51a2;
  background: #fff;
  min-width: 1.74rem;
  height: 0.46rem;
  line-height: 0.46rem;
}
.index-join .leftbox .index-more:hover a {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.index-join .rightbox {
  width: 43%;
  margin-top: -1rem;
  position: relative;
}
.index-join .rightbox li {
  opacity: 0.85;
}
.index-join .rightbox li .item {
  font-size: 0.2rem;
  color: #27303d;
  width: 2.8rem;
  height: 2.8rem;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  background: url(../images/join-img.png) no-repeat center center;
  background-size: cover;
}
.index-join .rightbox li p {
  padding: 0.1rem 0.03rem;
  text-align: center;
  color: #1e51a2;
  font-weight: 700;
}
.index-join .rightbox li .icon img {
  max-height: 0.9rem;
}
.index-join .rightbox .li-1 {
  top: -0.5rem;
  position: relative;
  transition: top 700ms linear;
}
.index-join .rightbox .li-2 {
  left: -1.2rem;
  top: 0.3rem;
  position: absolute;
  transition: top 700ms linear, left 700ms linear;
}
.index-join .rightbox .li-3 {
  right: -1.2rem;
  top: 0.3rem;
  position: absolute;
  transition: top 500ms linear, right 500ms linear;
}
.index-join .rightbox .li-4 {
  left: -1.4rem;
  top: 3.8rem;
  position: absolute;
  transition: top 700ms linear, left 700ms linear;
}
.index-join .rightbox .li-5 {
  right: -1.4rem;
  top: 3.8rem;
  position: absolute;
  transition: top 500ms linear, right 500ms linear;
}
.index-join .rightbox .li-6 {
  left: 50%;
  transform: translateX(-50%);
  top: 3.4rem;
  position: absolute;
  transition: top 700ms linear;
}
.index-join .rightbox .text {
  top: 50%;
  left: 50%;
  text-align: center;
  position: absolute;
  transform: translate(-50%, 0%);
}
.index-join .rightbox .text span {
  display: block;
  margin-bottom: 0.1rem;
}
.index-join .rightbox .text a {
  color: #fff;
}
.index-join .rightbox .text .logo {
  opacity: 0.8;
  transition: all 500ms ease;
}
.index-join .rightbox .text .logo img {
  max-height: 0.7rem;
}
.index-join .rightbox .text:hover .logo {
  opacity: 1;
}
.index-join .rightbox .text:hover a {
  text-decoration: underline;
}
@media (max-width: 1023px) {
  .index-join {
    padding: 50px 0;
  }
  .index-join .container {
    display: block;
  }
  .index-join .leftbox {
    width: 100%;
  }
  .index-join .leftbox .tit-2 {
    margin-top: 30px;
  }
  .index-join .rightbox {
    width: 100%;
    display: none;
    margin-top: 30px;
  }
  .index-join .rightbox ul {
    display: flex;
    flex-wrap: wrap;
  }
  .index-join .rightbox li {
    width: 33.333%;
    right: auto!important;
    bottom: auto!important;
    left: auto!important;
    top: auto!important;
    position: relative!important;
    transform: translate(0) !important;
  }
  .index-join .rightbox .text {
    display: none;
  }
}
.bgs li {
  display: none;
  width: 100%;
  height: 100vh;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.index-cpyy {
  position: relative;
}
.index-cpyy .index-title {
  top: 0.8rem;
  z-index: 10;
  color: #fff;
  width: 100%;
  text-align: center;
  position: absolute;
}
.index-cpyy .index-title:after {
  left: 50%;
  transform: translateX(-50%);
}
.index-bg {
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.index-bg .container {
  max-width: 18rem;
}
.index-bg .txtbox {
  width: 70%;
  color: #fff;
  float: right;
  z-index: 3;
  position: relative;
  line-height: 0.3rem;
  margin-top: 2.2rem;
}
.index-bg .t1 {
  font-weight: 700;
  font-size: 0.36rem;
}
.index-bg .t2 {
  margin-top: 0.3rem;
}
.index-bg .index-more {
  margin-top: 0.4rem;
}
.home-application {
  color: #fff;
}
.home-application .menuTabs {
  width: 60%;
  float: left;
  margin-top: 2.2rem;
  position: relative;
}
.home-application .menuTabs .list {
  -webkit-transform-origin: center top;
  transform-origin: center top;
}
.home-application .menuTabs li,
.home-application .menuTabs .noHas {
  width: 20%;
  float: left;
  position: relative;
  margin: -1px 0 0 -1px;
}
.home-application .menuTabs .box {
  height: 2.15rem;
  color: #fff;
}
.home-application .menuTabs li:hover,
.home-application .menuTabs .noHas:hover {
  z-index: 1;
}
.home-application .menuTabs li:nth-child(2) {
  clear: both;
}
.home-application .menuTabs li:nth-child(4) {
  clear: both;
}
.home-application .menuTabs .noHas {
  box-shadow: none;
}
.home-application .menuTabs .noHas .box {
  box-shadow: none;
  background: none !important;
  cursor: initial;
}
.home-application .menuTabs .noHas .pic:before,
.home-application .menuTabs .noHas .pic:after {
  display: none;
}
.home-application .menuTabs .box {
  text-align: center;
  padding-top: 0.4rem;
  background: rgba(255, 255, 255, 0.012);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.13) inset;
  cursor: pointer;
  z-index: 1;
  transition: all .5s;
  position: relative;
}
.home-application .menuTabs .pic {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 auto;
  position: relative;
}
.home-application .menuTabs .pic i {
  font-style: normal;
  display: inline-block;
}
.home-application .menuTabs .pic img {
  margin-top: initial;
  margin-bottom: initial;
  top: auto;
  bottom: 0;
}
.home-application .menuTabs .title {
  font-size: 0.18rem;
  font-weight: 700;
  line-height: 0.4rem;
  overflow: hidden;
  height: 0.4rem;
  margin-top: 0.1rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.home-application .menuTabs .active .box {
  background: linear-gradient(35deg, #194297, #259867);
  background-blend-mode: normal, normal;
}
.home-application .swiper-container {
  overflow: initial;
}
.home-application .swiper-container .swiper-slide {
  width: 100%;
}
@media (max-width: 1023px) {
  .index-bg {
    padding: 50px 0;
    height: auto!important;
  }
  .index-bg .txtbox {
    display: none;
  }
  .home-application .menuTabs {
    width: 100%;
    float: none;
    margin-top: 90px;
  }
  .home-application .menuTabs li {
    width: 50%!important;
    background: rgba(0, 0, 0, 0.2);
  }
  .home-application .menuTabs .pic {
    width: auto;
    height: auto;
  }
  .home-application .menuTabs .box {
    padding: 10px;
    height: auto;
    padding-top: 0;
  }
  .home-application .menuTabs .title {
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    margin-top: 0;
  }
}
.jiejueSwiper {
  width: 100%;
  padding-top: 0.5rem!important;
  position: relative;
}
.jiejueSwiper .swiper-slide:nth-child(odd) .jiejueSwiper-img {
  position: relative;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.5s ease;
}
.jiejueSwiper .swiper-slide:nth-child(even) .jiejueSwiper-img {
  position: relative;
  transform: translateY(-100px);
  opacity: 0;
  transition: all 0.5s ease;
}
.active .jiejueSwiper .swiper-slide:nth-child(odd) .jiejueSwiper-img {
  transform: translateX(0%);
  opacity: 1;
  transition: all 1s ease 0.5s;
}
.active .jiejueSwiper .swiper-slide:nth-child(even) .jiejueSwiper-img {
  transform: translateX(0%);
  opacity: 1;
  transition: all 1s ease 0.5s;
}
.jiejueSwiper .swiper-slide {
  border-radius: 5px;
}
.jiejueSwiper .swiper-slide.swiper-slide-active {
  background: #fff;
  transform: translateX(-0.299556rem) translateZ(-1.59407rem) rotateY(0deg) !important;
}
/* .jiejueSwiper::after {
  width: 360px;
  height: 520px;
  background-color: #ffffff;
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-53%);
} */
/*.jiejueSwiper::after {
  width: 18.5%;
  height: 480px;
  border-radius:5px;
  background-color: #ffffff;
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-48%) translateY(-39.5%);
}*/
.jiejueSwiper .jiejueSwiper-img {
  height: max-content;
  position: relative;
  z-index: 99;
}
.jiejuePage {
  height: 0.4rem;
  max-width: 600px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  top: -1rem;
  left: 48%;
  transform: translateX(-50%);
  z-index: 9;
}
.jiejuePage .jiejue-next,
.jiejuePage .jiejue-prev {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  text-align: center;
  line-height: 0.38rem;
  border: solid 1px #1e51a2;
}
.jiejuePage .jiejue-prev:after,
.jiejuePage .jiejue-next:after {
  content: "";
  display: inline-block;
  width: 0.13rem;
  height: 0.1rem;
}
.jiejuePage .jiejue-prev:after {
  background: url(../images/arrow-left.png) no-repeat center center;
  background-size: cover;
}
.jiejuePage .jiejue-next:after {
  background: url(../images/arrow-right.png) no-repeat center center;
  background-size: cover;
}
.jiejuePage .jiejue-prev:hover {
  background-color: #1e51a2;
}
.jiejuePage .jiejue-next:hover {
  background-color: #1e51a2;
}
.jiejuePage .jiejue-prev:hover:after {
  background: url(../images/arrow-left-h.png) no-repeat center center;
  background-size: cover;
}
.jiejuePage .jiejue-next:hover:after {
  background: url(../images/arrow-right-h.png) no-repeat center center;
  background-size: cover;
}
.index-news .index-title {
  text-align: center;
}
.index-news .index-title:after {
  left: 50%;
  transform: translateX(-50%);
}
.index-news .index-more {
  text-align: center;
}
.index-news .text {
  z-index: 99;
  position: relative;
  top: -0.9rem;
  padding: 0 0.4rem;
}
.index-news .text .time {
  color: #fff;
  display: none;
  font-family: arial;
}
.index-news .text .tit {
  color: #fff;
  font-size: 0.2rem;
  font-weight: 700;
  height: 0.6rem;
  overflow: hidden;
  line-height: 0.3rem;
  transform: scale(1) !important;
}
.index-news .swiper-slide {
  position: relative;
}
.index-news .swiper-slide-active .text {
  top: -0.4rem;
}
.index-news .swiper-slide-active .text .time {
  display: block;
}
.index-news .swiper-slide-active .text .tit {
  color: #333;
  margin: 0.35rem 0 0.1rem 0;
}
@media (max-width: 1024px) {
  .index-news {
    padding: 50px 0;
  }
  .index-news .index-title {
    padding-top: 0;
  }
  .jiejueSwiper {
    margin-top: 40px;
  }
  .jiejueSwiper .swiper-slide:nth-child(2n) .jiejueSwiper-img {
    transform: translate(0);
    opacity: 1;
  }
  .jiejueSwiper .swiper-slide:nth-child(2n+1) .jiejueSwiper-img {
    opacity: 1;
    transform: translate(0);
  }
  .jiejueSwiper .swiper-slide.swiper-slide-active {
    background: #fff;
    transform: translateX(-0.34rem) translateZ(-1.59407rem) rotateY(0deg) !important;
  }
  .swiper-3d,
  .swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: inherit!important;
  }
  .jiejueSwiper::after {
    display: none;
  }
  .index-news .index-more {
    bottom: auto;
    left: auto;
    position: relative;
    margin-top: 50px;
  }
  .jiejuePage {
    left: 52%;
  }
  .jiejuePage .jiejue-next {
    margin-right: 20px;
  }
}
.index-join.active li {
  opacity: 1;
}
.index-join.active .li-1 {
  top: 0;
}
.index-join.active .li-2 {
  opacity: 1;
  left: 0rem;
  top: 1.08rem;
}
.index-join.active .li-3 {
  opacity: 1;
  right: 0rem;
  top: 1.08rem;
}
.index-join.active .li-4 {
  opacity: 1;
  left: 0rem;
  top: 3.28rem;
}
.index-join.active .li-5 {
  opacity: 1;
  right: 0rem;
  top: 3.28rem;
}
.index-join.active .li-6 {
  left: 50%;
  transform: translateX(-50%);
  top: 4.4rem;
}
.mess {
  margin: 0 0.2rem;
  background-color: #104297;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 4.72rem;
}
.mess .title {
  color: #fff;
  padding: 0.4rem 0;
  padding-bottom: 0.3rem;
  font-size: 0.4rem;
  line-height: 0.5rem;
  font-weight: 700;
}
.mess .container {
  padding: 0 0.45rem;
}
.mess ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.mess li .iinput {
  margin-top: 0.1rem;
  position: relative;
}
.mess li .iinput label {
  color: #f30;
  top: 0.17rem;
  left: 0.15rem;
  position: absolute;
}
.mess li .iinput input {
  width: 100%;
  border: 0;
  color: #333;
  font-size: 0.14rem;
  font-family: "微软雅黑";
  border-radius: 0.05rem;
  padding: 0.07rem 0.3rem;
  height: 0.54rem;
  line-height: 0.3rem;
}
.mess li .itextarea {
  margin-top: 0.1rem;
  position: relative;
}
.mess li .itextarea label {
  color: #f30;
  top: 0.13rem;
  left: 0.15rem;
  position: absolute;
}
.mess li .itextarea textarea {
  width: 100%;
  border: 0;
  height: 2.48rem;
  border-radius: 0.05rem;
  padding: 0.07rem 0.3rem;
  line-height: 0.3rem;
  color: #333;
  font-size: 0.14rem;
  font-family: "微软雅黑";
}
.mess li:first-child {
  width: 35%;
}
.mess li:nth-child(2) {
  width: 63%;
}
.mess .box {
  display: flex;
  margin-top: 0.15rem;
  justify-content: flex-end;
}
.mess .yz {
  width: 100%;
  margin-right: 0.3rem;
  max-width: 4rem;
  position: relative;
}
.mess .yz input {
  width: 100%;
  border: 0;
  padding: 0 0.2rem;
  height: 0.45rem;
  padding-right: 1.4rem;
}
.mess .yz .code {
  right: 0;
  top: 0;
  position: absolute;
}
.mess .yz .code img {
  max-height: 0.45rem;
}
.mess .submit {
  border: 0;
  height: 0.46rem;
  font-size: 0.18rem;
  border-radius: 0.3rem;
  min-width: 1.7rem;
  color: #1e51a2;
  padding-right: 0.15rem;
  background: url(../images/arrow-2.png) no-repeat center right 0.15rem #ffffff;
}
@media (max-width: 1023px) {
  .mess {
    padding-bottom: 30px;
  }
  .mess .container {
    padding: 0 15px;
  }
  .mess .verifyDiv {
    width: 100%;
  }
}
.footer {
  background: #e3e3e4;
}
.footer .list {
  padding-bottom: Infinityrem;
  padding-top: 1.2rem;
}
.footer .list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer .list li h3 {
  padding-bottom: 0.15rem;
  font-size: 0.2rem;
}
.footer .list li h3 a {
  color: #333;
}
.footer .list li:first-child {
  width: 40%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer .list li:first-child .item {
  width: 44%;
  padding-bottom: 0.5rem;
}
.footer .list li:first-child .t1,
.footer .list li:first-child .t3 {
  padding-left: 0.4rem;
  position: relative;
}
.footer .list li:first-child .t1 img,
.footer .list li:first-child .t3 img {
  top: 0.03rem;
  left: 0;
  position: absolute;
  max-height: 0.2rem;
}
.footer .list li:first-child .t1 {
  color: #333;
  margin-bottom: 0.05rem;
}
.footer .list li:first-child .t2 {
  padding-left: 0.4rem;
}
.footer .list li:first-child .t3 {
  margin-top: 0.15rem;
}
.footer .list .drop a {
  color: #27303d;
  display: block;
  margin-top: 0.15rem;
}
.footer .list .drop a:hover {
  color: #1e51a2;
  text-decoration: underline;
}
.footer .index-more {
  display: inline-block;
  min-width: 2.45rem;
}
.footer .index-more a {
  min-width: 2.45rem;
  height: 0.47rem;
  line-height: 0.47rem;
  font-size: 0.18rem;
  box-shadow: 0 0.1rem 0.2rem rgba(0, 64, 152, 0.3);
}
.footer .index-more img {
  margin-left: 0.4rem;
}
.footer .links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0.4rem 0 0.7rem 0;
  justify-content: space-between;
}
.footer .links ul {
  width: 70%;
  display: flex;
}
.footer .links li {
  color: #232323;
  padding: 0 0.05rem;
}
.footer .links li a {
  color: #232323;
}
.footer .links li a:hover {
  color: #1e51a2;
}
.footer .links .logo img {
  max-height: 0.67rem;
}
.footer .copy {
  color: #fff;
  position: relative;
  font-size: 0.14rem;
  padding: 0.2rem 0;
  background: #194297;
}
.footer .copy a {
  color: #fff;
}
.footer .copy a:hover {
  text-decoration: underline;
}
.footer .copy .container {
  position: relative;
}
.footer .share {
  right: 0;
  top: -0.1rem;
  z-index: 3;
  position: absolute;
}
.footer .share span {
  margin-left: 0.15rem;
  position: relative;
  display: inline-block;
}
.footer .share span:hover .thover {
  display: block;
}
.footer .share a {
  display: inline-block;
  border-radius: 50%;
  height: 0.4rem;
  width: 0.4rem;
  transition: all 335ms linear;
  border: solid 0.02rem #ffffff;
}
.footer .share a img {
  max-height: 0.4rem;
}
.footer .share a:hover {
  opacity: 0.8;
}
.footer .share .thover {
  top: -1.3rem;
  left: 50%;
  display: none;
  width: 1.3rem;
  height: 1.3rem;
  position: absolute;
  transform: translateX(-50%);
}
.footer .share .thover img {
  max-height: 1.3rem;
  width: 1.3rem !important;
}
.footer .share .thover:before {
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.06rem;
  position: absolute;
  border-top: solid 0.08rem #ffffff;
  border-left: solid 0.08rem transparent;
  border-right: solid 0.08rem transparent;
}
@media (max-width: 1023px) {
  .footer {
    padding: 0px 0 0 0;
  }
  .footer .mess ul {
    display: block;
  }
  .footer .mess li {
    width: 100%;
  }
  .footer .mess li .iinput input {
    font-size: 14px;
  }
  .footer .mess li .itextarea textarea {
    height: 100px;
    font-size: 14px;
  }
  .footer .list {
    padding-top: 50px;
  }
  .footer .list li {
    display: none!important;
  }
  .footer .list li:first-child {
    width: 100%;
    display: block!important;
  }
  .footer .list li:first-child .item {
    width: 100%!important;
  }
  .footer .list li:first-child .t1 img,
  .footer .list li:first-child .t3 img {
    max-height: 21px;
  }
  .footer .links {
    display: none;
  }
  .footer .index-more {
    display: none;
  }
}
.footer .copy {
  font-size: 14px;
}
.footer .share {
  display: none;
}
.inside-banner {
  position: relative;
  text-align: center;
}
.inside-banner .pic {
  height: 6.8rem;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}
.inside-banner .txtbox {
  top: 50%;
  left: 0;
  width: 100%;
  z-index: 9;
  color: #fff;
  position: absolute;
  text-align: left;
  transform: translateY(-50%);
}
.inside-banner .t1 {
  color: #1349a2;
  font-size: 0.8rem;
  line-height: 0.8rem;
  font-family: arial;
  opacity: 0.5;
  font-weight: 700;
  text-shadow: #ffffff 1px 0 0, #ffffff 0 1px 0, #ffffff -1px 0 0, #ffffff 0 -1px 0;
}
.inside-banner .t2 {
  font-weight: 700;
  font-size: 0.46rem;
  line-height: 0.56rem;
  position: relative;
  z-index: 2;
  margin-top: -0.35rem;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
}
.inside-banner .t3 {
  font-size: 0.18rem;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
}
.inside-banner .line {
  margin-top: -0.15rem;
  position: relative;
  margin-left: 1.9rem;
}
.inside-banner .line img {
  max-height: 0.21rem;
}
@media (max-width: 1023px) {
  .inside-banner .pic {
    height: 260px;
  }
  .inside-banner .t3 {
    display: none;
  }
}
.inside-news {
  padding: 1rem 0;
}
.inside-news .topnews {
  display: flex;
  justify-content: space-between;
}
.inside-news .topnews .pic {
  width: 61.2%;
  overflow: hidden;
  position: relative;
  border-radius: 0.2rem;
}
.inside-news .topnews .pic:after {
  content: "";
  display: block;
  padding-bottom: 51.61290323%;
}
.inside-news .topnews .pic img {
  border-radius: 0.2rem;
  transition: all 1000ms ease;
}
.inside-news .topnews .pic:hover img {
  transform: scale(1.05);
}
.inside-news .list {
  width: 38%;
  padding-left: 0.6rem;
}
.inside-news .list li {
  padding: 0.3rem 0;
  padding-bottom: 0.65rem;
  border-top: solid 1px #dedede;
}
.inside-news .list li .time {
  color: #1e51a2;
  font-family: arial;
}
.inside-news .list li .tit {
  color: #030f1b;
  margin-top: 0.15rem;
  font-size: 0.22rem;
  line-height: 0.3rem;
  max-height: 0.6rem;
  transition: all 334ms ease;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.inside-news .list li:first-child {
  padding-top: 0;
  border-color: #fff;
}
.inside-news .list li:hover .tit {
  color: #1e51a2;
  font-weight: 700;
}
.inside-news .list-2 {
  overflow: hidden;
}
.inside-news .list-2 ul {
  margin: 0 -0.3rem;
}
.inside-news .list-2 li {
  width: 25%;
  float: left;
  padding: 0 0.3rem;
  margin-top: 0.7rem;
}
.inside-news .list-2 li .pic {
  overflow: hidden;
  position: relative;
  border-radius: 0.1rem;
}
.inside-news .list-2 li .pic:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.inside-news .list-2 li .pic img {
  border-radius: 0.1rem;
  transition: all 700ms ease;
}
.inside-news .list-2 li .tit {
  margin-top: 0.2rem;
  color: #222222;
  height: 0.6rem;
  line-height: 0.3rem;
  font-size: 0.2rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.inside-news .list-2 li .txt {
  color: #9099a3;
  margin-top: 0.15rem;
  padding-top: 0.2rem;
  border-top: solid 1px #d0d4d8;
}
.inside-news .list-2 li .time {
  font-family: arial;
}
.inside-news .list-2 li .more {
  float: right;
}
.inside-news .list-2 li .more i {
  color: #fff;
  width: 0.26rem;
  height: 0.26rem;
  font-style: normal;
  display: inline-block;
  border-radius: 100%;
  background: #9099a3;
  line-height: 0.26rem;
  text-align: center;
  font-weight: 700;
  margin-left: 0.1rem;
}
.inside-news .list-2 li:hover .pic img {
  transform: scale(1.05);
}
.inside-news .list-2 li:hover .tit {
  color: #1e51a2;
  font-weight: 700;
}
.inside-news .list-2 li:hover .more {
  color: #1e51a2;
}
.inside-news .list-2 li:hover .more i {
  background: #1e51a2;
}
@media (max-width: 1023px) {
  .inside-news {
    padding: 40px 0;
  }
  .inside-news .topnews {
    display: block;
  }
  .inside-news .topnews .pic {
    width: 100%;
  }
  .inside-news .list {
    width: 100%;
    padding-left: 0;
    padding-top: 30px;
  }
  .inside-news .list li {
    padding: 20px 0;
  }
  .inside-news .list li .tit {
    font-size: 16px;
    max-height: 40px;
    line-height: 40px;
    margin-top: 0;
  }
  .inside-news .list-2 ul {
    margin: 0 -10px;
  }
  .inside-news .list-2 li {
    padding: 0 10px;
    padding-top: 40px;
    margin-top: 0;
    width: 33.333%;
  }
}
@media (max-width: 640px) {
  .inside-news .list-2 li {
    width: 50%;
  }
}
.inside-news-show {
  color: #333;
  font-size: 0.18rem;
  padding-top: 1.9rem;
  padding-bottom: 1rem;
  line-height: 0.36rem;
}
.inside-news-show .container {
  max-width: 1420px;
}
.inside-news-show .top {
  padding-bottom: 0.4rem;
  position: relative;
  border-bottom: dashed 1px #cccccc;
}
.inside-news-show .top::after {
  content: "";
  bottom: -0.09rem;
  left: 50%;
  margin-left: -0.24rem;
  width: 0.58rem;
  height: 0.09rem;
  position: absolute;
  background: url(../images/line-2.png) no-repeat;
  background-size: contain;
}
.inside-news-show h1 {
  color: #333;
  font-weight: normal;
  line-height: 0.56rem;
  font-size: 0.46rem;
  text-align: center;
}
.inside-news-show .info {
  color: #999;
  font-weight: lighter;
  font-size: 0.16rem;
  margin-top: 0.4rem;
  text-align: center;
}
.inside-news-show .info img {
  max-height: 0.12rem;
  vertical-align: middle;
  margin-right: 0.05rem;
  margin-bottom: 0.03rem;
}
.inside-news-show .info span {
  padding: 0 0.15rem;
}
.inside-news-show .container {
  position: relative;
}
.inside-news-show .txtbox {
  width: 90%;
  float: right;
  padding-top: 0.7rem;
}
.inside-news-show .leftTool {
  float: left;
  width: 6%;
  color: #666;
  font-size: 0.16rem;
  padding-top: 0.7rem;
  text-align: center;
}
.inside-news-show .leftTool .kan {
  width: 0.9rem;
  margin: 0 auto;
  font-size: 0.24rem;
  color: #0091dc;
  line-height: 0.51rem;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 0.07rem;
  margin-bottom: 0.2rem;
}
.inside-news-show .leftTool .kan .pic {
  width: 0.64rem;
  height: 0.64rem;
  margin: 0 auto;
  border: 1px solid #f1f1f1;
  border-radius: 50%;
}
.inside-news-show .leftTool .share span {
  display: block;
  margin-bottom: 0.13rem;
}
.inside-news-show .leftTool .share a {
  display: block;
  margin: 0 auto;
  margin-top: 0.15rem;
  width: 0.45rem !important;
  height: 0.45rem !important;
  transition: all .9s;
  padding: 0!important;
  border: 1px solid #f1f1f1;
  border-radius: 50%;
}
.inside-news-show .leftTool .share a img {
  max-height: 0.45rem;
}
.inside-news-show .anchor_fixed {
  position: fixed;
  top: 0;
}
.inside-news-show .contact {
  color: #666;
  display: flex;
  justify-content: space-between;
  position: relative;
  font-size: 0.16rem;
  margin-top: 1.5rem;
  padding: 0.25rem 0.6rem;
  background: #e5f3fd;
}
.inside-news-show .contact .leftbox {
  padding-top: 0.4rem;
}
.inside-news-show .contact .tit {
  color: #1888d7;
  font-weight: 700;
  font-size: 0.2rem;
  padding-bottom: 0.1rem;
}
@media (max-width: 1023px) {
  .inside-news-show {
    font-size: 16px;
    line-height: 28px;
    padding: 100px 0 50px 0;
  }
  .inside-news-show .info {
    font-size: 12px;
  }
  .inside-news-show .info img {
    max-height: 12px;
  }
  .inside-news-show .leftTool {
    display: none;
  }
  .inside-news-show .txtbox {
    width: 100%;
    float: none;
    padding-top: 30px;
  }
  .inside-news-show .contact {
    font-size: 16px;
    margin-top: 60px;
  }
}
@media (max-width: 640px) {
  .inside-news-show .contact {
    padding: 30px;
    display: block;
  }
  .inside-news-show .contact .leftbox {
    padding-top: 0;
  }
  .inside-news-show .contact .tit {
    font-size: 18px;
  }
  .inside-news-show .weixin {
    margin-top: 30px;
    display: block;
  }
}
.inside-xg-news {
  padding: 1rem 0;
  background-color: #f7f7f7;
}
.inside-xg-news .index-title {
  text-align: center;
}
.inside-xg-news .index-title:after {
  left: 50%;
  transform: translateX(-50%);
}
.inside-xg-news .container {
  position: relative;
}
.inside-xg-news .list-2 {
  margin-bottom: 0.8rem;
}
.inside-xg-news .list-2 ul {
  margin-left: 0;
  margin-right: 0;
}
.inside-xg-news .list-2 li {
  padding-left: 0;
  padding-right: 0;
}
.inside-xg-news .swiper-pagination {
  width: 100%;
  left: 50%;
  text-align: center;
  transform: translateX(-50%);
}
.inside-xg-news .swiper-pagination-bullet {
  opacity: 1;
  height: 0.1rem;
  width: 0.1rem;
  margin: 0 0.05rem;
  background: #9099a3;
}
.inside-xg-news .swiper-pagination-bullet-active {
  background: #1e51a2;
}
.inside-menu {
  background: #f7f7f7;
}
.inside-menu ul {
  display: flex;
}
.inside-menu li {
  width: 2.7rem;
  text-align: center;
  position: relative;
  line-height: 0.6rem;
}
.inside-menu li a {
  display: block;
}
.inside-menu li:after {
  top: 50%;
  content: "";
  width: 1px;
  right: 0;
  height: 0.17rem;
  background: #9d9d9d;
  position: absolute;
  transform: translateY(-50%);
}
.inside-menu li:last-child:after {
  display: none;
}
.inside-menu .cur,
.inside-menu li:hover {
  background: #1e51a2;
}
.inside-menu .cur a,
.inside-menu li:hover a {
  color: #fff;
}
@media (max-width: 1023px) {
  .inside-menu {
    display: none;
  }
}
.inside-job {
  padding: 1rem 0;
  position: relative;
}
.inside-job .index-title {
  text-align: center;
}
.inside-job .index-title:after {
  left: 50%;
  transform: translateX(-50%);
}
.inside-job .topnr {
  display: flex;
  margin-top: 0.75rem;
  justify-content: space-between;
}
.inside-job .topnr .leftbox {
  width: 30%;
}
.inside-job .topnr .leftbox h1 {
  color: #333;
  font-size: 0.35rem;
  font-weight: normal;
  padding: 0.2rem 0 0.3rem 0;
}
.inside-job .topnr .leftbox h1 span {
  color: #1e51a2;
}
.inside-job .topnr .leftbox h2 {
  font-size: 0.25rem;
  color: #1e51a2;
  font-weight: normal;
  padding-bottom: 0.1rem;
}
.inside-job .topnr .leftbox .text {
  line-height: 0.32rem;
}
.inside-job .topnr .leftbox .zhaopin {
  color: #2c2c2c;
}
.inside-job .topnr .leftbox .zhaopin span {
  color: #666;
  font-size: 0.18rem;
  text-decoration: underline;
}
.inside-job .topnr .pic {
  width: 64.5%;
}
.inside-job .list {
  margin-top: 0.9rem;
  position: relative;
}
.inside-job .tit {
  margin-top: 0.3rem;
  padding: 0.4rem 0.55rem;
  background: #f7f9fb;
  cursor: pointer;
}
.inside-job .tit:first-child {
  margin-top: 0;
}
.inside-job .wenzi {
  width: 85%;
  float: left;
  overflow: hidden;
}
.inside-job .wenzi .t1 {
  color: #222;
  font-size: 0.22rem;
  line-height: 0.4rem;
  height: 0.4rem;
  overflow: hidden;
}
.inside-job .wenzi .t2 {
  color: #9c9c9c;
  margin-top: 0.05rem;
}
.inside-job .add {
  float: right;
  width: 15%;
  height: 0.42rem;
  overflow: hidden;
  text-align: center;
  line-height: 0.42rem;
  position: relative;
}
.inside-job .add:after {
  content: "-";
  width: 0.42rem;
  height: 0.42rem;
  right: 0;
  top: 0;
  color: #fff;
  font-size: 0.34rem;
  font-weight: 700;
  position: absolute;
  vertical-align: top;
  border-radius: 100%;
  font-family: "宋体";
  background-color: #bfbfbf;
}
.inside-job .tips {
  color: #334d6f;
}
.inside-job .txt {
  color: #333;
  display: none;
  padding: 0 0.55rem;
  padding-bottom: 0.5rem;
  background: #f0f4f8;
}
.inside-job .txt p {
  margin-bottom: 5px;
}
.inside-job .active {
  background: #f0f4f8;
}
.inside-job .active .wenzi .t1 {
  font-weight: 700;
  font-size: 0.32rem;
}
.inside-job .active .add {
  margin-top: 0.1rem;
}
.inside-job .active .add:after {
  content: "+";
  background: #1e51a2;
}
.inside-job .btn {
  margin-top: 20px;
}
.inside-job .btn a {
  color: #fff;
  font-size: 0.2rem;
  display: inline-block;
  height: 0.64rem;
  padding: 0 0.4rem;
  min-width: 2.5rem;
  line-height: 0.64rem;
  background: #1e51a2;
  border-radius: 0.6rem;
}
.inside-job .btn img {
  vertical-align: middle;
  max-height: 0.3rem;
  margin-bottom: 0.02rem;
  margin-right: 0.2rem;
}
@media (max-width: 1023px) {
  .inside-job {
    padding: 50px 0;
  }
  .inside-job .topnr {
    display: block;
  }
  .inside-job .topnr .leftbox {
    width: 100%;
  }
  .inside-job .topnr .pic {
    width: 100%;
    margin-top: 30px;
  }
  .inside-job .list:first-child {
    padding-top: 0;
  }
  .inside-job .list {
    padding-top: 10px;
  }
  .inside-job .date {
    display: none;
  }
  .inside-job .tit {
    padding: 20px 30px;
  }
  .inside-job .txt {
    padding: 0 30px;
  }
  .inside-job .add {
    margin-top: 10px;
  }
  .inside-job .wenzi {
    padding-left: 0;
    margin-top: 0;
  }
  .inside-job .wenzi .t1 {
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    margin-top: 0!important;
  }
  .inside-job .wenzi .t2 {
    font-size: 14px;
    margin-top: 0;
  }
  .inside-job .btn {
    margin-top: 10px;
  }
  .inside-job .btn a {
    height: 40px;
    min-width: 140px;
    line-height: 40px;
    border-width: 5px;
  }
  .inside-job .btn img {
    max-height: 25px;
    margin-bottom: 2px;
    margin-left: 5px;
  }
}
.inside-dowland {
  padding: 1rem 0;
}
.inside-dowland .inside-search {
  position: relative;
}
.inside-dowland .inside-search input {
  width: 100%;
  height: 0.54rem;
  line-height: 0.3rem;
  padding: 0.1rem 0.3rem;
  border: solid 1px #e9e9e9;
  color: #666;
  font-family: "微软雅黑";
  font-size: 0.16rem;
  padding-right: 0.5rem;
  transition: all 500ms ease;
}
.inside-dowland .inside-search input:focus {
  border-color: #1e51a2;
}
.inside-dowland .inside-search .btn {
  right: 0.2rem;
  top: 0.12rem;
  width: 0.28rem;
  height: 0.28rem;
  position: absolute;
  border: 0;
  padding: 0;
  background: url(../images/d-search.png) no-repeat center center;
  background-size: cover;
}
.inside-dowland .list {
  margin-top: 0.7rem;
}
.inside-dowland .list li {
  display: flex;
  flex-wrap: wrap;
  padding: 0.3rem;
  font-weight: 700;
  color: #333;
  font-size: 0.18rem;
  text-align: center;
  border-top: solid 1px #e7f1fe;
  border-bottom: solid 1px #e7f1fe;
}
.inside-dowland .list li p {
  width: 20%;
}
.inside-dowland .list li p:first-child {
  width: 40%;
  text-align: left;
}
.inside-dowland .list-2 li {
  margin-top: 0.3rem;
  padding: 0.1rem 0.4rem;
  padding-top: 0;
  background: #f5fafe;
  border: solid 1px #deecfd;
}
.inside-dowland .list-2 li .tit {
  color: #333;
  font-weight: 700;
  font-size: 0.22rem;
  padding: 0.2rem 0;
  border-bottom: dashed 1px #cfe2fa;
}
.inside-dowland .list-2 li .txt {
  margin: 0.2rem 0;
  padding: 0.1rem 0.2rem;
  line-height: 0.54rem;
  border: solid 1px #ecf4fe;
  background: #fff;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  transition: all 334ms ease-in-out;
}
.inside-dowland .list-2 li .txt span {
  width: 20%;
  display: block;
  text-align: center;
}
.inside-dowland .list-2 li .txt span:first-child {
  width: 40%;
  text-align: left;
}
.inside-dowland .list-2 li .txt .name {
  color: #333333;
  height: 0.54rem;
  font-size: 0.18rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.inside-dowland .list-2 li .txt .name img {
  max-height: 0.55rem;
  margin-right: 0.3rem;
}
.inside-dowland .list-2 li .txt .ms {
  font-weight: lighter;
}
.inside-dowland .list-2 li .txt .dow a {
  color: #fff;
  padding: 0 0.1rem;
  height: 0.44rem;
  min-width: 1.7rem;
  line-height: 0.44rem;
  background: #1e51a2;
  display: inline-block;
  transition: all 500ms ease;
}
.inside-dowland .list-2 li .txt .dow img {
  margin-right: 0.1rem;
  vertical-align: middle;
  margin-bottom: 0.03rem;
  max-height: 0.2rem;
}
.inside-dowland .list-2 li .txt:hover {
  background: #fbfdff;
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.03);
}
.inside-dowland .list-2 li .txt:hover .dow a {
  background: #1a7639;
}
@media (max-width: 1023px) {
  .inside-dowland {
    padding: 40px 0;
  }
  .inside-dowland .inside-search input {
    height: 42px;
    line-height: 20px;
    padding: 10px 20px;
    font-size: 14px;
    padding-right: 60px;
  }
  .inside-dowland .list li {
    font-size: 14px;
  }
  .inside-dowland .list-2 li .txt .name {
    font-size: 14px;
  }
}
@media (max-width: 640px) {
  .inside-dowland .list-2 li {
    padding: 15px;
  }
  .inside-dowland .list-2 li .txt {
    display: block;
    padding: 20px!important;
  }
  .inside-dowland .list-2 li .txt span {
    text-align: left!important;
    width: 100%!important;
    display: block!important;
  }
  .inside-dowland .list-2 li .txt .dow {
    text-align: center!important;
  }
}
.inside-packaging {
  padding: 1rem 0;
  position: relative;
}
.inside-packaging .index-title {
  text-align: center;
}
.inside-packaging .index-title:after {
  left: 50%;
  transform: translateX(-50%);
}
.inside-packaging ul {
  margin-top: 0.6rem;
}
.inside-packaging .li-1 {
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  padding: 0.16rem 0;
  background: #194297;
}
.inside-packaging .li-1 span {
  width: 16.2%;
  text-align: center;
}
.inside-packaging .li-1 span:nth-child(2) {
  width: 20%;
}
.inside-packaging .li-1 span:first-child {
  width: 19%;
}
.inside-packaging .li-1 span:last-child {
  width: 11.8%;
}
.inside-packaging .li-2:hover {
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.1);
}
.inside-packaging .li-2:hover .ms4 {
  color: #1e51a2;
}
.inside-packaging .li-2 {
  border: solid 1px #ececec;
  margin-top: -1px;
  transition: all 500ms ease;
}
.inside-packaging .li-2 .item {
  display: flex;
  flex-wrap: wrap;
}
.inside-packaging .li-2 div {
  width: 16.2%;
  display: flex;
  padding: 0.08rem;
  justify-content: center;
  align-items: center;
  word-break: break-all;
  text-align: center;
  min-height: 100%;
  font-family: arial;
  color: #666;
  border-left: solid 1px #ececec;
  position: relative;
}
.inside-packaging .li-2 .ms1 {
  text-align: left;
  width: 19%;
  border-left: #fff;
  line-height: 0.6rem;
  justify-content: flex-start;
  padding-left: 0.4rem;
}
.inside-packaging .li-2 .ms1 span {
  margin-right: 0.2rem;
  height: 0.6rem;
  width: 0.6rem;
  display: block;
  position: relative;
}
.inside-packaging .li-2 .ms1 span:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.inside-packaging .li-2 .ms2 {
  width: 20%;
}
.inside-packaging .li-2 .ms3 {
  position: relative;
}
.inside-packaging .li-2 .ms3 span {
  height: 0.6rem;
  width: 0.6rem;
  display: block;
  position: relative;
}
.inside-packaging .li-2 .ms3 span:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.inside-packaging .li-2 .ms6 {
  width: 11.8%;
}
.inside-packaging .scroll {
  margin-top: 0.6rem;
  font-size: 0.18rem;
  text-align: center;
}
.inside-packaging .scroll a {
  color: #1e51a2;
  transition: all 500ms ease;
}
.inside-packaging .scroll:hover a {
  font-weight: 700;
}
.inside-packaging .scroll img {
  vertical-align: top;
  margin-top: 0.03rem;
  max-height: 0.22rem;
}
@media (max-width: 1023px) {
  .inside-packaging {
    padding: 50px 0;
  }
  .inside-packaging .list {
    overflow-x: auto;
  }
  .inside-packaging .list ul {
    width: 1200px;
  }
  .inside-packaging .scroll {
    font-size: 16px;
  }
  .inside-packaging .scroll img {
    max-height: 22px;
  }
}
.inside-product {
  overflow: hidden;
}
.inside-leftpro {
  width: 24%;
  float: left;
  padding-bottom: 0.2rem;
  min-height: 300px;
}
.inside-leftpro .bt {
  color: #282828;
  height: 1rem;
  padding: 0 0.25rem;
  padding-top: 0.25rem;
  font-size: 0.28rem;
  background: #f7f7f7;
  font-weight: 700;
  border-top: solid 0.06rem #1e51a2;
}
@media (max-width: 1023px) {
  .inside-leftpro {
    display: none;
  }
}
.inside-prolist {
  width: 74%;
  float: right;
}
.inside-prolist ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.15rem;
}
.inside-prolist li {
  width: 33.333%;
  padding: 0 0.15rem;
  padding-bottom: 0.3rem;
}
.inside-prolist li .pic {
  overflow: hidden;
  background: url(../images/pro-bg-2.jpg) no-repeat top center;
  background-size: cover;
  position: relative;
}
.inside-prolist li .pic:after {
  content: "";
  display: block;
  padding-bottom: 70.71823204%;
}
.inside-prolist li .pic img {
  transition: all 700ms ease;
}
.inside-prolist li .item {
  border: solid 1px #dbdbdb;
}
.inside-prolist li .tit {
  color: #333;
  position: relative;
  font-size: 0.2rem;
  padding: 0 0.2rem;
  height: 0.6rem;
  line-height: 0.6rem;
  transition: all 700ms ease;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.inside-prolist li .tit:after {
  content: "";
  right: 0.2rem;
  top: 0.14rem;
  width: 0.31rem;
  height: 0.31rem;
  position: absolute;
  background: url(../images/arrow-5.png) no-repeat center center;
  background-size: cover;
}
.inside-prolist li:hover .pic img {
  transform: scale(1.05);
}
.inside-prolist li:hover .tit {
  color: #fff;
  font-weight: 700;
  background: #1e51a2;
}
.inside-prolist li:hover .tit:after {
  background: url(../images/arrow-6.png) no-repeat center center;
}
@media (max-width: 1023px) {
  .inside-prolist {
    width: 100%;
    float: none;
  }
  .inside-prolist li {
    width: 50%;
  }
}
.classifyPro .list {
  background: #f5f8fb;
  padding-bottom: 0.7rem;
}
.classifyPro li {
  position: relative;
}
.classifyPro .title {
  transition: .3s;
  height: 0.74rem;
  position: relative;
  line-height: 0.73rem;
  padding: 0 0.2rem;
}
.classifyPro .title a {
  display: block;
  position: relative;
  max-width: 100%;
  color: #333333;
  padding-left: 0.05rem;
  font-weight: normal;
  vertical-align: middle;
  padding-right: 0.4rem;
  height: 0.73rem;
  overflow: hidden;
  border-bottom: dashed 1px #dacece;
}
.classifyPro .title span {
  z-index: 2;
  display: block;
  position: relative;
}
.classifyPro .has > .title a {
  display: block;
}
.classifyPro .list .icon {
  color: #1e51a2;
  text-align: center;
  border-radius: 50%;
  line-height: 0.2rem;
  position: absolute;
  width: 0.2rem;
  height: 0.2rem;
  top: 0.3rem;
  right: 0.4rem;
  cursor: pointer;
  transition: .3s;
  font-family: "宋体";
  font-style: normal;
  background: #fff;
  font-weight: 700;
}
.classifyPro .down:before {
  top: -2px;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  z-index: 2;
  position: absolute;
  background: #ebf1f8;
}
.classifyPro .down,
.classifyPro .has:hover {
  position: relative;
}
.classifyPro .down > .title,
.classifyPro .has:hover > .title {
  background: #ebf1f8;
}
.classifyPro .down > .title a,
.classifyPro .has:hover > .title a {
  font-weight: 700;
  color: #1e51a2 !important;
}
.classifyPro .down > .title a:before,
.classifyPro .has:hover > .title a:before {
  opacity: 1;
}
.classifyPro .down > .title:before,
.classifyPro .has:hover > .title:before {
  opacity: 1;
}
.classifyPro .down .icon,
.classifyPro .has:hover .icon {
  color: #fff;
  background: #1e51a2;
  transform: rotate(90deg);
}
.classifyPro .list .list {
  background: #ebf1f8;
  padding: 0.1rem 0px 0.2rem 0rem;
  display: none;
}
.classifyPro .list .list .title {
  padding: 0;
  word-break: break-all;
  padding-right: 0.4rem;
  line-height: 0.24rem;
  height: auto;
}
.classifyPro .list .list .title a {
  height: auto;
  color: #333;
  padding: 0;
  padding-right: 0.2rem;
  margin: 0.3rem !important;
  font-size: 0.16rem;
  font-weight: normal;
  position: relative;
  transition: all 500ms ease;
  border-bottom: solid 1px #ebf1f8;
}
.classifyPro .list .list .title a:before {
  display: none!important;
}
.classifyPro .list .list .title a:after {
  content: "+";
  color: #777;
  right: 0rem;
  top: 0;
  opacity: 1;
  font-family: arial;
  position: absolute;
  font-size: 0.18rem;
}
.classifyPro .list .list .title a:hover {
  color: #1e51a2;
}
.classifyPro .list .list .title a:hover:after {
  color: #1e51a2;
}
.classifyPro .list .list .title:before {
  display: none!important;
}
.classifyPro .list .list .cur a,
.classifyPro .list .list li:hover a {
  color: #1e51a2;
  border-bottom: solid 1px #1e51a2;
}
.classifyPro .list .list .cur a:after,
.classifyPro .list .list li:hover a:after {
  color: #1e51a2;
}
.classifyPro .list .list li:last-child .title {
  border: none;
}
.inside-product {
  padding: 1rem 0;
}
@media (max-width: 1023px) {
  .inside-product {
    padding: 30px 0;
  }
}
.inside-about {
  position: relative;
  padding: 1rem 0;
}
.inside-about .text {
  padding-top: 0.5rem;
  line-height: 0.3rem;
}
.inside-about .text p {
  padding-bottom: 0.1rem;
}
.inside-about .numlist ul {
  display: flex;
  margin-left: -1.1rem;
  margin-top: 1rem;
  justify-content: space-around;
}
.inside-about .numlist li {
  color: #888;
  padding-left: 0.8rem;
  border-left: dashed 1px #dddddd;
}
.inside-about .numlist li:first-child {
  border-left: 0;
}
.inside-about .numlist .counter {
  line-height: 0.53rem;
  font-size: 0.53rem;
  color: #37474f;
  font-family: "OPPOSANS-B";
}
.inside-about .numlist i,
.inside-about .numlist em {
  display: inline-block;
  font-style: normal;
}
.inside-about .numlist i {
  color: #fff;
  line-height: 0.24rem;
  text-align: center;
  width: 0.26rem;
  height: 0.26rem;
  vertical-align: top;
  font-size: 0.18rem;
  background: #1e51a2;
  border-radius: 50%;
  margin-top: 0.1rem;
  margin-bottom: 0.03rem;
}
.inside-about .numlist i {
  vertical-align: bottom;
}
.inside-about .numlist em {
  color: #37474f;
  padding-left: 0.1rem;
  font-size: 0.36rem;
  vertical-align: top;
}
.inside-about .numlist .f50 {
  color: #37474f;
  font-size: 0.5rem;
}
@media (max-width: 1023px) {
  .inside-about .numlist ul {
    margin-left: 0;
  }
  .inside-about .numlist li {
    padding-left: 0;
    border-left: 0;
  }
  .inside-about .numlist li .counter {
    font-size: 30px;
    line-height: 30px;
  }
  .inside-about .numlist li .f50 {
    font-size: 20px;
    line-height: 20px;
  }
}
@media (max-width: 640px) {
  .inside-about .numlist {
    text-align: center;
  }
  .inside-about .numlist ul {
    display: block;
    margin-top: 40px;
  }
  .inside-about .numlist li {
    width: 100%;
    padding: 15px 0;
  }
}
#gallery {
  margin: 0 auto;
  width: 100%;
  max-width: 12.6rem;
  padding-bottom: 0.66rem;
  position: relative;
}
#gallery:before,
#gallery:after {
  left: 0;
  content: "";
  top: 0.9rem;
  width: 0.2rem;
  height: 0.2rem;
  position: absolute;
  border-radius: 100%;
  display: block !important;
  background: #1e51a2;
}
#gallery:after {
  left: auto;
  right: 0;
}
#gallery .swiper-slide {
  font-size: 0.18rem;
  transform: scale(0.8);
  padding: 0.4rem 0;
}
#gallery .swiper-slide .text {
  display: none;
}
#gallery .swiper-slide .img {
  width: 1.16rem;
  height: 1.16rem;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  padding-top: 0.35rem;
  margin: 0 auto;
  font-family: "Oswald-Bold";
  background: url("../images/bg.png") no-repeat center center;
  background-size: cover;
}
#gallery .swiper-slide .img .p {
  font-size: 0.28rem;
}
#gallery .swiper-slide-prev .img {
  margin: 0;
  float: left;
}
#gallery .swiper-slide-next .img {
  margin: 0;
  float: right;
}
#gallery .swiper-slide-prev,
#gallery .swiper-slide-next {
  transform: scale(1);
}
#gallery .swiper-slide-active {
  transform: scale(1.5);
}
#gallery .swiper-slide-active .text {
  text-align: left;
  display: block;
}
#gallery .swiper-slide-active .text .bt {
  color: #1e51a2;
  font-size: 0.61rem;
  line-height: 0.96rem;
  font-family: "Oswald-Bold";
}
#gallery .swiper-slide-active .text .jsh {
  color: #222;
  font-size: 12px;
  line-height: 0.16rem !important;
  font-weight: lighter;
}
#gallery .swiper-slide-active .text .pic {
  margin-top: 0.2rem;
  position: relative;
}
#gallery .swiper-slide-active .text .pic:after {
  content: "";
  display: block;
  padding-bottom: 57.5%;
}
#gallery .swiper-slide-active .img {
  display: none;
}
#gallery .swiper-pagination-bullet {
  width: 0.1rem;
  height: 0.1rem;
  display: inline-block;
  border-radius: 50px;
  background: #619cd2;
  opacity: 1;
  transition: 0.5s;
}
#gallery .swiper-pagination-bullet-active {
  width: 25px;
  background: #005fb6;
}
#gallery:before,
#gallery:after {
  display: none;
}
@media (max-width: 640px) {
  #gallery .swiper-slide {
    font-size: 14px;
    transform: scale(1) !important;
  }
  #gallery .swiper-slide-active {
    transform: scale(1);
  }
  #gallery .swiper-slide .text .jsh {
    padding: 0 10px!important;
  }
}
#thumbs {
  max-width: 11rem;
  width: 100%;
  margin-top: 0.3rem;
  position: relative;
}
#thumbs:after {
  content: '';
  display: block;
  height: 1px;
  width: 100%;
  position: absolute;
  top: 6px;
  background: #1fb6d0;
  left: 0;
}
@media (max-width: 768px) {
  #thumbs {
    opacity: 0;
    height: 0;
  }
}
#thumbs .swiper-slide {
  text-align: center;
  font-family: arial;
  padding: 0 0.2rem;
  cursor: pointer;
}
#thumbs .swiper-slide .bt {
  color: #555;
  font-size: 0.16rem;
  font-weight: lighter;
  padding-top: 0.19rem;
}
.home-bottom1 {
  padding: 1.3rem 0;
  overflow: hidden;
  position: relative;
  background: url("../images/about-bg-2.jpg") no-repeat top center #f3f9fe;
}
.home-bottom1 .index-title {
  text-align: center;
}
.home-bottom1 .index-title:after {
  left: 50%;
  transform: translateX(-50%);
}
.home-bottom1 .home-bottom {
  padding-top: 1rem;
}
.home-bottom1 #gallery .swiper-slide-active .text {
  text-align: center;
}
.home-bottom1 #gallery .swiper-slide-active .text .bt {
  color: #1e51a2;
}
.home-bottom1 #gallery .swiper-slide-active .text .jsh {
  color: #222;
}
@media (max-width: 640px) {
  .home-bottom1 #gallery .swiper-slide-active .text .jsh {
    padding: 0 10px;
    font-size: 14px;
    line-height: 24px!important;
  }
}
.home-bottom1 #gallery .swiper-pagination-bullet {
  background: #619cd2;
}
.home-bottom1 #gallery .swiper-pagination-bullet-active {
  background: #005fb6;
}
.home-bottom1 #thumbs:after {
  background: #005fb6;
}
.home-bottom1 #thumbs .swiper-slide {
  color: #000;
}
.home-bottom1 #thumbs .swiper-slide .bt {
  z-index: 1;
  background: url("../images/fz1.jpg") no-repeat top center;
}
.home-bottom1 #thumbs .swiper-slide-thumb-active .bt {
  background: url("../images/fz1.jpg") no-repeat top center;
}
@media (max-width: 640px) {
  .home-bottom1 {
    padding-bottom: 0;
    padding-top: 40px;
  }
}
.inside-honor {
  color: #353d48;
  overflow: hidden;
  position: relative;
  background-color: #dbdbde;
  padding: 1.1rem 0 1.5rem 0;
  background-repeat: no-repeat;
  background-position: top center;
}
.inside-honor .index-title {
  text-align: center;
}
.inside-honor .index-title:after {
  left: 50%;
  transform: translateX(-50%);
}
.inside-honor .container {
  position: relative;
}
.inside-honor .tabnav {
  padding-top: 0.5rem;
}
.inside-honor .tabnav ul {
  display: flex;
  justify-content: center;
}
.inside-honor .tabnav li {
  cursor: pointer;
  margin: 0 0.2rem;
  color: #1e51a2;
  line-height: 0.46rem;
  height: 0.5rem;
  text-align: center;
  min-width: 1.65rem;
  border: solid 2px #1e51a2;
}
.inside-honor .tabnav .active {
  color: #fff;
  background: #1e51a2;
}
.inside-honor .list {
 
  display: none;
  margin-top: 0.9rem;
}
.inside-honor .list.show {
  display: block;
}
.inside-honor .list li:hover .item {
  background: #1e51a2;
}
.inside-honor .list li:hover .tit {
  color: #fff;
}
.inside-honor .list li {
  width: 25%;
}
.inside-honor .list li .icon {
  position: relative;
}
.inside-honor .list li .icon span {
  bottom: 0;
  right: 0rem;
  position: absolute;
}
.inside-honor .list li .icon span img {
  max-height: 0.24rem;
}
.inside-honor .list li .item {
  padding: 0 0.2rem;
  text-align: center;
  background: #fff;
  padding-bottom: 0.3rem;
  transition: background-color 0.5s linear;
}
.inside-honor .list li .pic {
  margin: 0 auto;
  position: relative;
  width: 100%;
  box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.1);
  max-width: 1.92rem;
  margin-top: 0.3rem;
}
.inside-honor .list li .pic:after {
  content: "";
  display: block;
  padding-bottom: 132.29166667%;
}
.inside-honor .list li .tit {
  color: #333;
  height: 0.4rem;
  line-height: 0.4rem;
  overflow: hidden;
  margin-top: 0.1rem;
}
.inside-honor .swiper-button-prev,
.inside-honor .swiper-button-next {
  opacity: 1!important;
  width: 0.5rem;
  height: 0.5rem;
  background: transparent;
  border-radius: 50%;
  z-index: 9;
  top: 67%;
  text-align: center;
  line-height: 0.48rem;
  border: dashed 1px #fff;
  background-color: #dbdbd9;
}
.inside-honor .swiper-button-prev:after,
.inside-honor .swiper-button-next:after {
  width: 0.12rem;
  height: 0.12rem;
  font-size: 0;
}
.inside-honor .swiper-button-prev {
  left: 0rem;
}
.inside-honor .swiper-button-prev:after {
  content: "";
  display: inline-block;
  transform: rotate(-180deg);
  background: url(../images/next.png) no-repeat center center;
  background-size: cover;
}
.inside-honor .swiper-button-prev:hover {
  border-style: solid;
  border-color: #1e51a2;
  background: #1e51a2;
}
.inside-honor .swiper-button-prev:hover:after {
  background: url(../images/next.png) no-repeat center center;
  background-size: cover;
}
.inside-honor .swiper-button-next {
  right: 0;
}
.inside-honor .swiper-button-next:after {
  content: "";
  display: inline-block;
  background: url(../images/next.png) no-repeat center center;
  background-size: cover;
}
.inside-honor .swiper-button-next:hover {
  border-style: solid;
  border-color: #1e51a2;
  transform: rotate(0deg);
  background: #1e51a2;
}
.inside-honor .swiper-button-next:hover:after {
  background: url(../images/next.png) no-repeat center center;
  background-size: cover;
}
@media (max-width: 1023px) {
  .inside-honor {
    padding: 50px 0;
  }
  .inside-honor .tabnav li {
    margin: 0 2px;
  }
}
.inside-jyln {
  color: #fff;
  min-height: 8.27rem;
  position: relative;
}
.inside-jyln .container {
  position: relative;
}
.inside-jyln .container .title {
  top: 0;
  left: 0;
  position: absolute;
}
.inside-jyln ul {
  padding-left: 0.8rem;
}
.inside-jyln ul li {
  width: 20%;
  float: left;
  padding: 0 0.2rem;
  text-align: center;
  border-right: solid 1px rgba(255, 255, 255, 0.26);
}
.inside-jyln ul li .item {
  display: table;
  min-height: 8.27rem;
  width: 100%;
  text-align: center;
}
.inside-jyln ul li .juzhong {
  vertical-align: middle;
  display: table-cell;
}
.inside-jyln ul li .cn {
  font-size: 0.28rem;
  font-weight: 700;
  line-height: 0.38rem;
  margin-top: 0.3rem;
}
.inside-jyln ul li .en {
  font-size: 0.14rem;
  margin-top: 0.05rem;
}
.inside-jyln ul li .nr {
  line-height: 0.32rem;
  margin-top: 0.4rem;
  display: none;
  text-align: left;
  padding-right: 0.4rem;
  text-align: justify;
  font-weight: lighter;
}
.inside-jyln ul .active {
  padding: 0 0.6rem;
  width: 40%;
}
.inside-jyln ul .active .nr {
  display: inline-block;
}
@media (max-width: 1023px) {
  .inside-jyln {
    padding: 40px 0;
  }
  .inside-jyln .title {
    display: none;
  }
  .inside-jyln ul {
    padding-left: 0;
  }
  .inside-jyln ul li {
    border: 0;
    float: left;
    padding: 20px!important;
    width: 100%!important;
  }
  .inside-jyln ul li .item {
    min-height: auto;
    border-left: 0;
  }
  .inside-jyln ul li .nr {
    padding-right: 0;
    line-height: 20px;
    margin-top: 20px;
    display: block!important;
  }
}
.inside-cpfw {
  padding: 1.1rem 0;
  position: relative;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.inside-cpfw .index-title {
  text-align: center;
}
.inside-cpfw .index-title:after {
  left: 50%;
  transform: translateX(-50%);
}
.inside-cpfw ul {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  margin-top: 1rem;
}
.inside-cpfw li:first-child {
  width: 31%;
}
.inside-cpfw li:first-child a {
  color: #fff;
}
.inside-cpfw li:first-child .item {
  background: linear-gradient(45deg, #1a4494 30%, #26a063);
}
.inside-cpfw li:first-child .text span {
  display: block;
  font-size: 0.18rem;
  margin-top: 0.1rem;
}
.inside-cpfw li:hover .tit {
  color: #1e51a2;
}
.inside-cpfw li:hover .icon img {
  transform: scale(1.05);
}
.inside-cpfw li:hover .down {
  background: #1a7639;
}
.inside-cpfw li {
  width: 17%;
  padding: 0 0.08rem;
  text-align: left;
  margin-top: 0.16rem;
}
.inside-cpfw li .item {
  min-height: 100%;
  padding: 0.25rem;
  border-radius: 0.1rem;
  background: #f2f3f5;
  background: linear-gradient(to bottom, #f2f3f5, #d1dffd);
}
.inside-cpfw li .icon {
  overflow: hidden;
  max-width: 1.01rem;
  position: relative;
}
.inside-cpfw li .icon img {
  transition: all 500ms ease;
}
.inside-cpfw li .icon:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.inside-cpfw li .tit {
  color: #182a37;
  font-size: 0.22rem;
  line-height: 0.3rem;
  height: 0.3rem;
  margin-top: 0.2rem;
  transition: all 500ms ease;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.inside-cpfw li .txt {
  color: #182a37;
  margin-top: 0.15rem;
  line-height: 0.28rem;
  height: 0.84rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}
.inside-cpfw li .down {
  color: #fff;
  width: 0.26rem;
  height: 0.26rem;
  border-radius: 50%;
  text-align: center;
  border: solid 2px #fff;
  background: #1e51a2;
  font-family: "宋体";
  transform: rotate(90deg);
  font-weight: 700;
  margin-top: 0.1rem;
  transition: background 500ms ease;
}
@media (max-width: 1023px) {
  .inside-cpfw {
    padding: 40px 0;
  }
  .inside-cpfw ul {
    margin-top: 30px;
  }
  .inside-cpfw li {
    width: 50%;
  }
  .inside-cpfw li .icon {
    margin: 0 auto;
  }
  .inside-cpfw li .item {
    padding: 30px 15px;
  }
  .inside-cpfw li .down {
    width: 26px;
    height: 26px;
    margin: 0 auto;
    margin-top: 20px;
  }
  .inside-cpfw li:first-child {
    width: 100%;
  }
  .inside-cpfw li:first-child .text span {
    font-size: 14px;
  }
}
.inside-pzgk {
  padding: 1rem 0;
  position: relative;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.inside-pzgk .index-title {
  text-align: center;
}
.inside-pzgk .index-title:after {
  left: 50%;
  transform: translateX(-50%);
}
.inside-pzgk .box {
  padding-top: 0.7rem;
}
.inside-pzgk .box h2 {
  color: #353d48;
  font-size: 0.22rem;
}
.inside-pzgk .box ul {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  margin: 0 -0.16rem;
}
.inside-pzgk .box li {
  width: 16.66666667%;
  padding: 0 0.16rem;
  margin-top: 0.32rem;
}
.inside-pzgk .box li .item {
  padding: 0.2rem;
  padding-top: 0.4rem;
  border-radius: 0.1rem;
  background: linear-gradient(to bottom, #f3f4f5, #cedefe);
}
.inside-pzgk .box li .pic {
  overflow: hidden;
  position: relative;
}
.inside-pzgk .box li .pic:after {
  content: "";
  display: block;
  padding-bottom: 70%;
}
.inside-pzgk .box li .pic img {
  transition: all 700ms ease;
}
.inside-pzgk .box li .tit {
  color: #353d48;
  display: flex;
  width: 100%;
  align-items: center;
  margin-top: 0.2rem;
  line-height: 0.24rem;
  height: 0.48rem;
  overflow: hidden;
}
.inside-pzgk .box li .tit p {
  width: 100%;
}
.inside-pzgk .box li:hover .pic img {
  transform: scale(1.05);
}
@media (max-width: 1023px) {
  .inside-pzgk {
    padding: 50px 0;
  }
  .inside-pzgk .box h2 {
    font-size: 16px;
  }
  .inside-pzgk .box li {
    width: 33.333%;
  }
}
@media (max-width: 640px) {
  .inside-pzgk .box li {
    width: 50%;
  }
}
.inside-contact {
  position: relative;
  padding: 1rem 0;
}
.inside-contact .box {
  margin-top: 0.5rem;
}
.inside-contact .box h2 {
  color: #555555;
  font-weight: normal;
}
.inside-contact .box ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.8rem;
}
.inside-contact .box li {
  width: 20%;
  padding: 0 0.8rem;
  padding-top: 0.3rem;
}
.inside-contact .box li .item {
  max-width: 1.8rem;
  text-align: center;
}
.inside-contact .box li .tit {
  color: #9f9f9f;
  margin-top: 0.1rem;
}
@media (max-width: 1023px) {
  .inside-contact {
    padding: 40px 0;
  }
  .inside-contact .box {
    margin-top: 20px;
  }
  .inside-contact .box ul {
    margin: 0 -5px;
  }
  .inside-contact .box li {
    padding: 0 5px;
    width: 33.333%;
    margin-top: 15px;
    font-size: 12px;
  }
}
.inside-ditu {
  text-align: center;
}
.inside-ditu img {
  width: 100%;
}
.inside-ditu .tabcot {
  display: none;
}
.inside-add {
  padding: 1rem 0;
  background: #f1f1f2;
}
.inside-add ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.3rem;
}
.inside-add li {
  padding: 0 0.3rem;
  width: 33.333%;
}
.inside-add li .item {
  overflow: hidden;
  color: #3c3c3c;
  padding: 0.3rem;
  padding-left: 0.5rem;
  min-height: 2.1rem;
  background: #fff;
  position: relative;
  border-radius: 0.05rem;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.03);
}
.inside-add li .t1 {
  font-weight: 700;
  font-size: 0.2rem;
  z-index: 9;
  position: relative;
}
.inside-add li .t2 {
  font-family: arial;
  font-size: 0.14rem;
  margin-bottom: 0.1rem;
  z-index: 9;
  position: relative;
}
.inside-add li .tel {
  padding-left: 0.35rem;
  margin-top: 0.15rem;
  z-index: 9;
  position: relative;
}
.inside-add li .tel:before {
  content: "";
  top: 0.03rem;
  left: 0;
  width: 0.2rem;
  height: 0.2rem;
  position: absolute;
  border-radius: 50%;
  border: solid 1px #1e51a2;
  background: url(../images/contact-1.png) no-repeat center center;
  background-size: cover;
}
.inside-add li .yx {
  padding-left: 0.35rem;
  margin-top: 0.1rem;
  z-index: 2;
  position: relative;
}
.inside-add li .yx:before {
  content: "";
  top: 0.03rem;
  left: 0;
  width: 0.2rem;
  height: 0.2rem;
  position: absolute;
  border-radius: 50%;
  border: solid 1px #1e51a2;
  background: url(../images/contact-2.png) no-repeat center center;
  background-size: cover;
}
.inside-add li .tu {
  top: 0;
  right: 0;
  opacity: 0;
  z-index: 1;
  position: absolute;
  transition: all 500ms ease;
}
.inside-add .conmenu .item,
.inside-add li:hover .item {
  color: #fff;
  background: #1e51a2;
}
.inside-add .conmenu .tu,
.inside-add li:hover .tu {
  opacity: 1;
}
.inside-add .conmenu .tel a,
.inside-add .conmenu .yx a,
.inside-add li:hover .tel a,
.inside-add li:hover .yx a {
  color: #fff;
}
.inside-add .conmenu .tel:before,
.inside-add li:hover .tel:before {
  border-color: #fff;
  background: url(../images/contact-1h.png) no-repeat center center;
  background-size: cover;
}
.inside-add .conmenu .yx:before,
.inside-add li:hover .yx:before {
  border-color: #fff;
  background: url(../images/contact-2h.png) no-repeat center center;
  background-size: cover;
}
@media (max-width: 1023px) {
  .inside-add {
    padding: 40px 0;
  }
  .inside-add li {
    width: 100%;
  }
  .inside-add li .t1 {
    font-size: 16px;
  }
  .inside-add li .t2 {
    font-size: 12px;
  }
  .inside-add li .tel,
  .inside-add li .yx {
    margin-top: 10px;
    padding-left: 30px;
  }
  .inside-add li .tel:before,
  .inside-add li .yx:before {
    width: 20px;
    height: 20px;
    top: 0px;
  }
}
.inside-message {
  background: #e2e9f3;
  background: linear-gradient(to bottom, #e5ecf7, #e2e9f3);
  position: relative;
  padding: 1rem 0;
}
.inside-message .container {
  z-index: 3;
  position: relative;
}
.inside-message .index-title {
  text-align: center;
}
.inside-message .index-title:after {
  left: 50%;
  transform: translateX(-50%);
}
.inside-message .text {
  color: #8c8c8c;
  text-align: center;
  margin-top: 0.05rem;
  font-size: 0.18rem;
}
.inside-message .nr {
  margin-top: 0.5rem;
  padding: 0 1.6rem;
}
.inside-message .list {
  position: relative;
}
.inside-message li {
  width: 33.33333333%;
  float: left;
  padding: 0 0.06rem 0.18rem 0.06rem;
  position: relative;
}
.inside-message .box {
  position: relative;
}
.inside-message .red {
  position: absolute;
  z-index: 9;
  left: 0.2rem;
  top: 0.17rem;
  color: #c70204;
}
.inside-message .error {
  background: #ff0000;
  color: #fff;
  padding: 0 0.06rem;
  border-bottom-left-radius: 0.2rem;
  position: absolute;
  right: 0;
  top: 0;
}
.inside-message .input-form,
.inside-message .textarea-form,
.inside-message select {
  border: none;
  border-radius: 0.05rem;
  color: #666;
  font-family: arial;
  vertical-align: middle;
  border: #c0ddec solid 1px;
  padding: 0 0.45rem;
  height: 0.55rem;
  line-height: 0.48rem;
  font-size: 0.16rem;
  width: 100%;
}
.inside-message .input-form:focus,
.inside-message .textarea-form:focus,
.inside-message select:focus {
  border: #1e51a2 solid 1px;
}
.inside-message select {
  color: #666;
  background: url(../images/arrow-6.png) no-repeat center right #ffffff;
  appearance: none;
}
.inside-message .textarea-form {
  line-height: 0.3rem;
  padding: 0.5rem 0.9rem 0.1rem 0.2rem;
  width: 100%;
  padding-right: 0.9rem;
  height: 1.4rem;
}
.inside-message .textarea-form:focus {
  border: #1e51a2 solid 1px;
}
.inside-message .btn {
  width: 100%;
  margin-top: 0.22rem;
}
.inside-message .btn .col-2 {
  width: 50%;
  float: right;
}
.inside-message .submit {
  float: right;
  background: #1e51a2;
  color: #fff;
  width: 100%;
  display: inline-block;
  max-width: 1.8rem;
  text-align: center;
  line-height: 0.5rem;
  height: 0.5rem;
  font-size: 0.16rem;
  border: none;
}
.inside-message .submit .icon {
  display: inline-block;
  width: 0.3rem;
  height: 0.3rem;
  vertical-align: middle;
  margin-top: -0.03rem;
  margin-right: 0.05rem;
}
.inside-message .submit:hover {
  background: #1e51a2;
}
.inside-message .submit:hover {
  background: #1e51a2;
}
.inside-message .col-2 {
  width: 50%;
  float: left;
  position: relative;
  text-align: left;
}
.inside-message .waves {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  height: 100%;
  bottom: 0;
  opacity: 0.5;
}
@media (max-width: 1023px) {
  .inside-message {
    padding: 40px 0;
  }
  .inside-message .nr {
    padding: 0;
  }
  .inside-message .input-form,
  .inside-message .textarea-form,
  .inside-message select {
    height: 50px;
    line-height: 48px;
    font-size: 14px;
    padding: 0 20px;
    padding-left: 40px;
  }
  .inside-message .red {
    top: 15px;
    left: 10px;
  }
  .inside-message .textarea-form {
    height: 120px;
    padding-left: 10px;
    padding-top: 30px;
  }
}
@media (max-width: 640px) {
  .inside-message li {
    width: 100%;
  }
  .inside-message .verifyDiv {
    width: 100%;
    margin-right: 0;
  }
  .inside-message .btn .col-2 {
    width: 100%;
    float: none;
  }
  .inside-message .submit {
    float: none;
    max-width: 100%;
    font-size: 16px;
    margin-top: 10px;
  }
}
.verify {
  height: 0.5rem;
  background-color: #e5e5e5;
  border-radius: 0.05rem;
  position: relative;
}
.verify .drag-btn {
  position: absolute;
  left: 0;
  top: 0;
  width: 0.5rem;
  height: 0.5rem;
  border: 1px #e5e5e5 solid;
  background: #ffffff url(../images/drag-arrow.svg) no-repeat center center;
  background-size: 0.2rem 0.2rem;
  z-index: 2;
  cursor: move;
  border-radius: 0.05rem;
}
.verify .suc-drag-btn {
  background: #ffffff url(../images/drag-success.svg) no-repeat center center;
  background-size: 0.2rem 0.2rem;
}
.verify .drag-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 0.5rem;
  line-height: 0.48rem;
  width: 0;
  background-color: #7ac23c;
  color: #fff;
  font-size: 0.18rem;
  text-align: center;
}
.verify .fix-tips,
.verify .verify-msg {
  width: 100%;
  position: absolute;
  right: 0;
  left: 0;
  height: 100%;
  color: #666;
  z-index: 1;
  line-height: 0.5rem;
  padding-left: 0.5rem;
  text-align: center;
}
.verify .verify-msg {
  padding-left: 0;
  padding-right: 50px;
}
.verify .verify-msg {
  background-color: #7ac23c;
  color: #fff;
  display: none;
}
.verifyDiv {
  width: 30%;
  vertical-align: middle;
  float: left;
  margin-right: 0.2rem;
  position: relative;
}
.inside-currennt {
  font-weight: normal;
  padding-top: 1.1rem;
}
.inside-currennt .current {
  color: #333333;
  font-size: 0.14rem;
  height: 0.46rem;
  line-height: 0.45rem;
  overflow: hidden;
  border-bottom: solid 1px #bfbfbf;
}
.inside-currennt .current a {
  color: #333333;
}
.inside-currennt .current a:hover {
  color: #1e51a2;
}
.inside-pro-show {
  padding: 0.9rem 0;
}
.inside-pro-show .list {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0.4rem;
}
.inside-pro-show .pic {
  width: 24%;
  position: relative;
  background: url(../images/pro-bg-2.jpg) no-repeat top center;
  background-size: cover;
}
.inside-pro-show .pic:after {
  content: "";
  display: block;
  padding-bottom: 70.71823204%;
}
.inside-pro-show .textbox {
  width: 76%;
  color: #333;
  line-height: 0.32rem;
  padding-left: 0.3rem;
}
.inside-pro-show .textbox h1 {
  color: #333333;
  font-weight: normal;
  line-height: 0.42rem;
  padding-bottom: 0.18rem;
  position: relative;
}
.inside-pro-show .textbox h1:before {
  bottom: 0;
  left: 0;
  content: "";
  width: 0.68rem;
  position: absolute;
  height: 2px;
  background: linear-gradient(to right, #22499b, #237b41);
}
.inside-pro-show .textbox .txt {
  margin-top: 0.2rem;
}
@media (max-width: 1023px) {
  .inside-pro-show {
    padding: 40px 0;
  }
  .inside-pro-show .list {
    display: flex;
    padding-left: 0;
  }
  .inside-pro-show .pic {
    width: 45%;
  }
  .inside-pro-show .textbox {
    width: 55%;
  }
}
@media (max-width: 640px) {
  .inside-pro-show .list {
    display: block;
  }
  .inside-pro-show .pic {
    width: 100%;
  }
  .inside-pro-show .textbox {
    width: 100%;
    padding: 0;
    padding-top: 30px;
  }
}
.label-01 {
  cursor: pointer;
}
.checkbox-01 {
  position: relative;
}
.checkbox-01 input[type="checkbox"] {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
  left: -10px;
  border-radius: 0;
}
.checkbox-01 input[type="checkbox"]:checked + em {
  background: #1e51a2;
}
.checkbox-01 input[type="checkbox"]:checked + em:after {
  content: "√";
  background: #1e51a2;
  transform: scale(1);
}
.checkbox-01 em {
  display: inline-block;
  vertical-align: middle;
  width: 0.16rem;
  height: 0.15rem;
  background-color: #1e51a2;
  position: relative;
  margin-top: -0.02rem;
  cursor: pointer;
  margin-right: 0.1rem;
}
.checkbox-01 em:after {
  color: #fff;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0rem;
  font-size: 12px;
  margin: auto;
  transition: all .4s;
  background-position: center;
  transform: scale(1);
  text-align: center;
  margin-top: 1px;
}

.inside-shaixuan {
  padding: 0.5rem 0;
  border-top: solid 1px #ebebeb;
  background: #f9f9f9;
}
.inside-shaixuan .container {
  max-width: 18.3rem;
}
.inside-shaixuan .bt {
  display: flex;
  align-items: center;
}
.inside-shaixuan .bt h2 {
  color: #494949;
  font-weight: normal;
}
.inside-shaixuan .bt span {
  padding-left: 0.4rem;
  font-size: 0.14rem;
}
.inside-shaixuan .list {
  flex-wrap: wrap;
  display: flex;
}
.inside-shaixuan .list li {
  width: 12.5%;
  font-size: 12px;
  line-height: 0.16rem;
  margin-top: 0.5rem;
}
.inside-shaixuan .inside-search {
  margin-top: 0.5rem;
  position: relative;
}
.inside-shaixuan .inside-search input[type="text"] {
  max-width: 6rem;
  width: 100%;
  height: 0.42rem;
  line-height: 0.2rem;
  padding: 0.1rem 0.3rem;
  border: solid 1px #e9e9e9;
  color: #666;
  font-family: "微软雅黑";
  font-size: 0.16rem;
  padding-right: 0.5rem;
  transition: all 500ms ease;
}
.inside-shaixuan .inside-search input[type="text"]:focus {
  border-color: #1e51a2;
}
.inside-shaixuan .inside-search .sbtn {
  margin-left: -0.4rem;
}
.inside-shaixuan .inside-search .sbtn img {
  margin-bottom: 5px;
  max-height: 0.2rem;
}
.inside-shaixuan .inside-search .btn {
  border: 0;
  margin-left: 0.2rem;
  vertical-align: top;
  text-align: center;
  height: 0.42rem;
  line-height: 0.42rem;
  min-width: 1.6rem;
  background-size: cover;
  background-color: #cccccc;
}
.inside-shaixuan .inside-search .btn:hover {
  color: #fff;
  background: #1e51a2;
}
@media (max-width: 1110px) {
  .inside-shaixuan .bt {
    display: block;
  }
  .inside-shaixuan .bt h2 {
    padding-bottom: 10px;
  }
  .inside-shaixuan .bt span {
    cursor: pointer;
    font-size: 14px;
    padding-left: 0;
    padding-right: 10px;
  }
  .inside-shaixuan .list li {
    width: auto;
    padding-right: 15px;
  }
  .inside-shaixuan .inside-search input[type="text"] {
    max-width: 100%;
    height: 42px;
    padding: 10px;
    line-height: 20px;
  }
  .inside-shaixuan .inside-search .sbtn img {
    max-height: 20px;
    margin-top: 5px;
    margin-left: -20px;
  }
  .inside-shaixuan .inside-search .btn {
    margin-left: 0;
    margin-top: 10px;
    min-width: 130px;
    height: 40px;
    line-height: 40px;
  }
}
.inside-sxjg {
  background: linear-gradient(#f9f9f9, #ffffff);
  padding-bottom: 1rem;
}
.inside-sxjg .layui-slider-vertical {
  width: 2px;
}
.inside-sxjg .layui-slider-vertical .layui-slider-bar {
  width: 2px;
}
.inside-sxjg .layui-slider-vertical .layui-slider-wrap {
  left: -17px;
}
.inside-sxjg .container {
  max-width: 18.3rem;
}
.inside-sxjg li {
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  justify-content: center;
  border-right: solid 1px #edeaea;
  justify-content: space-between;
}
.inside-sxjg li .t1 {
  display: flex;
  align-items: center;
  padding: 0 0.2rem;
}
.inside-sxjg li .line {
  width: 5.88235294%;
  border-left: solid 1px #edeaea;
  border-bottom: solid 1px #edeaea;
}
.inside-sxjg .firstone {
  color: #fff;
  background: #194297;
}
.inside-sxjg .firstone .t1 {
  padding-top: 0.15rem;
  padding-bottom: 0.15rem;
  border-bottom:none;
  word-break:break-all
}
.inside-sxjg .li-bg1,
.inside-sxjg .li-bg2 {
  background: #f9f9f9;
}
.inside-sxjg .li-bg1 .t1,
.inside-sxjg .li-bg2 .t1 {
  height: auto;
  justify-content: center;
}
.inside-sxjg .li-bg1 .dow,
.inside-sxjg .li-bg2 .dow {
  padding-bottom: 0.05rem;
  padding-top: 0.05rem;
}
.inside-sxjg .li-bg1 .dow img,
.inside-sxjg .li-bg2 .dow img {
  max-height: 0.24rem;
}
.inside-sxjg .li-bg2 {
  background: #fff;
}
.inside-sxjg .list {
  position: relative;
  margin-top: 0.1rem;
}
.inside-sxjg .list .layui-slider {
  margin-right: 0.1rem;
  margin-left: 0.1rem;
}
.inside-sxjg .list .layui-slider-wrap-btn {
  border-color: #1e51a2 !important;
}
.inside-sxjg .list .layui-slider-bar {
  background: #1e51a2 !important;
}
.inside-sxjg .list .inputbox {
  display: inline-block;
  width: 0.5rem;
}
.inside-sxjg .list .inputbox input {
  height: 20px;
  line-height: 18px;
  width: 0.5rem;
  text-align: center;
  border: solid 1px #e1eafd;
}
.inside-sxjg .list .input1 {
  top: 0;
  position: absolute;
}
.inside-sxjg .list .input2 {
  bottom: 0;
  position: absolute;
}
.inside-sxjg .biaodan {
  padding: 0.1rem 0;
  display: flex;
}
.inside-sxjg .biaodan select,
.inside-sxjg .biaodan input {
  font-family: arial;
  color: #0f2757;
  margin: 0 0.01rem;
  padding: 0 0.05rem;
  background-color: #fff;
  border: solid 1px #1e51a2;
}
.inside-sxjg .biaodan input:focus {
  color: #fff;
  background: #1e51a2;
}
@media (max-width: 1700px) {
  .inside-sxjg .container {
    overflow-x: auto;
  }
  .inside-sxjg ul {
    width: 1700px;
  }
}
.inside-application {
  padding: 1rem 0;
}
.inside-application .index-title {
  text-align: center;
}
.inside-application .index-title:after {
  left: 50%;
  transform: translateX(-50%);
}
.inside-application ul {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  margin: 0 -0.17rem;
  padding-top: 0.56rem;
}
.inside-application li {
  width: 33.333%;
  text-align: left;
  padding: 0 0.17rem;
  padding-top: 0.34rem;
}
.inside-application li .item {
  transition: all 700ms ease;
}
.inside-application li .pic {
  overflow: hidden;
  position: relative;
}
.inside-application li .pic img {
  transition: all 700ms ease;
}
.inside-application li .pic:after {
  content: "";
  display: block;
  padding-bottom: 67.62295082%;
}
.inside-application li .tit {
  font-size: 0.22rem;
  padding: 0 0.34rem;
  color: #182a37;
  height: 0.6rem;
  line-height: 0.6rem;
  background: #e7f1f7;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.inside-application li:hover .item {
  box-shadow: 0 0 0.29rem rgba(26, 37, 59, 0.36);
}
.inside-application li:hover .pic img {
  transform: scale(1.05);
}
@media (max-width: 1023px) {
  .inside-application {
    padding: 40px 0;
  }
  .inside-application ul {
    padding-top: 20px;
  }
}
@media (max-width: 480px) {
  .inside-application li {
    width: 50%;
  }
}
.inside-fenlei .drop {
  position: relative;
  padding: 0.45rem;
  padding-right: 1.7rem;
  background: url(../images/app-img.png) no-repeat top left #f7f7f7;
}
.inside-fenlei .drop h2 {
  color: #282828;
  font-size: 0.24rem;
}
.inside-fenlei .drop ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.4rem;
  text-align: center;
}
.inside-fenlei .drop li {
  width: 16.66666667%;
  padding: 0 0.4rem;
  margin-top: 0.3rem;
}
.inside-fenlei .drop li a {
  font-size: 0.18rem;
  color: #282828;
  display: block;
  text-align: center;
  height: 0.46rem;
  line-height: 0.44rem;
  overflow: hidden;
  transition: all 500ms ease;
}
.inside-fenlei .drop li span {
  margin-left: 0.08rem;
  line-height: 0.2rem;
  height: 0.2rem;
  width: 0.2rem;
  border-radius: 50%;
  background: #fff;
  color: #1e51a2;
  display: inline-block;
  font-family: "宋体";
  vertical-align: top;
  font-weight: 700;
  margin-top: 0.12rem;
  transition: all 500ms ease;
}
.inside-fenlei .drop li:hover a,
.inside-fenlei .drop .cur a {
  color: #fff;
  background: #1e51a2;
  font-weight: 700;
}
.inside-fenlei .drop li:hover span,
.inside-fenlei .drop .cur span {
  transform: rotate(90deg);
}
.inside-fenlei .drop-2 {
  padding: 0.3rem 0.45rem;
  background: #fcfcfc;
}
.inside-fenlei .drop-2 ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.4rem;
}
.inside-fenlei .drop-2 li {
  width: 11.11111111%;
  padding: 0.05rem 0.4rem;
}
.inside-fenlei .drop-2 li a {
  display: block;
  color: #333;
  transition: all 300ms ease;
}
.inside-fenlei .drop-2 li:hover a,
.inside-fenlei .drop-2 .cur a {
  color: #1e51a2;
  text-decoration: underline;
  font-weight: 700;
}
@media (max-width: 1023px) {
  .inside-fenlei .drop {
    padding-right: 0;
    padding: 30px;
  }
  .inside-fenlei .drop ul {
    margin: 0 -5px;
  }
  .inside-fenlei .drop li {
    padding: 0 5px;
    width: auto;
    margin-top: 10px;
  }
  .inside-fenlei .drop li a {
    padding: 0 20px;
    height: 30px;
    line-height: 28px;
  }
  .inside-fenlei .drop-2 ul {
    margin: 0 -5px;
  }
  .inside-fenlei .drop-2 li {
    padding: 5px;
    width: auto;
  }
}
.inside-application-show {
  padding-top: 1.8rem;
  padding-bottom: 1rem;
}
.inside-application-show .nr {
  padding-top: 0.5rem;
}
.inside-application-show .nr h1 {
  color: #333;
  font-size: 0.32rem;
  line-height: 0.42rem;
  font-weight: normal;
}
.inside-application-show .nr .wenben p {
  padding-top: 0.3rem;
}
.inside-application-show .picbox {
  padding-top: 0.5rem;
  text-align: center;
}
.inside-application-show .picbox p {
  padding-top: 0.1rem;
}
.inside-page {
  font-size: 12px;
  text-align: center;
  padding-top: 1rem;
}
.inside-page a {
  width: 0.4rem;
  height: 0.4rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  line-height: 0.4rem;
  border-radius: 100%;
  margin: 0 0.05rem;
  font-size: 12px;
  color: #666;
  display: inline-block;
  transition: all 500ms ease;
  border: solid 1px #b5b5b5;
}
.inside-page a:hover,
.inside-page .cur {
  color: #fff;
  border-color: #1e51a2;
  background: #1e51a2;
}
.inside-page .prev,
.inside-page .next {
  width: 1.06rem;
  position: relative;
  border-radius: 30px;
}
.inside-page .prev:before {
  content: "<";
  margin-right: 0.06rem;
  font-family: "宋体";
  display: inline-block;
  font-weight: 700;
}
.inside-page .next:after {
  content: ">";
  margin-left: 0.06rem;
  font-family: "宋体";
  display: inline-block;
  font-weight: 700;
}
.inside-page span {
  padding-left: 0.2rem;
  font-size: 0.14rem;
}
.inside-page span input {
  color: #666;
  width: 0.6rem;
  padding: 0 0.1rem;
  height: 0.24rem;
  text-align: center;
  font-family: arial;
}
@media (max-width: 1023px) {
  .inside-page {
    padding: 30px 0 0 0;
  }
  .inside-page .prev,
  .inside-page .next {
    width: auto;
    border-radius: 0;
  }
  .inside-page a {
    width: auto;
    height: auto;
    padding: 0 5px;
    border-radius: 0;
    margin: 0;
  }
  .inside-page span {
    display: none;
  }
}
.navPhoneBtn {
  display: inline-block;
  cursor: pointer;
  float: right;
  padding-top: 22px;
  text-align: right;
  display: none;
}
.navPhoneBtn span {
  display: block;
  width: 20px;
  height: 2px;
  margin-bottom: 3px;
  position: relative;
  background: #fff;
  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: #1e51a2;
  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: 10px 0px 20px 0px;
  display: none;
  position: relative;
}
.navM .child a {
  color: #666;
  display: block;
  font-size: 14px;
  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: #1e51a2;
}
.inside-search .li-2 .ms1 {
  width: 30%;
}
.inside-search .li-2 .ms6 {
  width: 70%;
}
