/* #region åˆå§‹åŒ– */
* {
  margin: 0;
  padding: 0;
}
@font-face {
  font-family: regular;}
* {
  font-family: regular;
}
a {text-decoration: none;}
div,
a {
  box-sizing: border-box;
}
input {
  border: none;
  outline: none;
}
li {
  list-style: none;
}
.clearfloat {
  zoom: 1;
}
body{overflow-x: hidden;}
.clearfloat:after {
  display: block;
  clear: both;
  content: "";
  visibility: hidden;
  height: 0;
}
.flex_row {
  display: flex;
}
.flex_col {
  display: flex;
  flex-direction: column;
}
.flex_center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex_space_between {
  display: flex;
  justify-content: space-between;
}

.position_center-x {
  left: 50%;
  transform: translate(-50%);
}
.position_center-y {
  top: 50%;
  transform: translateY(-50%);
}
.cursor {
  cursor: pointer;
}
html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
img {
  display: block;
  max-width: 100%;
  /* image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;  */
}

.textone {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.texttwo {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* #endregion */

/* #region  å…¬å…±*/
.width{width: 1200px;margin: 0 auto;}
.in_width {
  width: 1200px;
  margin: 120px auto 0 auto;
}
.flex {
  display: flex !important;
}
.block {
  display: block !important;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  z-index: 99;
  transition: 0.3s;
}
.header .width {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}
.logo {
  width: 143px;height: 52px;
}
.logo img {
  width: 100%;
  /* transition: width 0.5s; */
}

.nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.nav_item {
  position: relative;
  margin-left: 40px;
  display: flex;
}
.nav_item:first-of-type {
  margin-left: 0;
}
.nav_href {
  font-size: 16px;
  color: #fff;
  height: 2rem;
  display: flex;
  align-items: center;
  cursor: pointer;

  text-shadow: 0.06rem 0.06rem 0px rgba(11, 11, 11, 0.43);
}

.nav_choose .nav_href {
  color: #0b4b96;
  position: relative;
  text-shadow: none;
}

.gologin {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #fff;
  margin-left: auto;
  cursor: pointer;
  transition: all 0.3s;
}

.gologin img {
  width: 1rem;
  margin-right: 0.5rem;
  display: block;
}

.gologin:hover {
  color: #0b4b96;
}

.xbtn_hover {
  position: relative;
  overflow: hidden;
  /* -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  transition: 0.2s; */
}

.xbtn_hover span {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.xbtn_hover:hover > span {
  opacity: 0;
  -webkit-transform: translate(0px, -100%);
  transform: translate(0px, -100%);
}

.nav_choose .xbtn_hover:hover > span {
  opacity: 1;
  -webkit-transform: translate(0);
  transform: translate(0);
}

.xbtn_hover::after {
  content: attr(data-text);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transform: translate(0, 30%);
  transform: translate(0, 30%);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.nav_choose .nav_href::after {
  content: "";
  position: absolute;
  border-bottom: 2px solid #0b4b96;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  -webkit-transform: translate(0);
  transform: translate(0);
  opacity: 1;
}

.xbtn_hover:hover::after {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}


@keyframes app1 {
  0% {
    width: 3.7rem;
    height: 3.7rem;
  }
  100% {
    width: 13.7rem;
    height: 7.8rem;
  }
}
@keyframes app2 {
  0% {
    width: 13.7rem;
    height: 7.8rem;
  }
  100% {
    width: 3.7rem;
    height: 3.7rem;
  }
}

.app_item2 .app_row {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.app_col img {
  width: 4.4rem;
  height: 4.4rem;
  display: block;
  margin: 0 auto;
}
.app_col {
  text-align: center;
  font-size: 0.8rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.app_col span {
  display: block;
  margin-top: 0.3rem;
}

.phone_item {
  min-width: 3.7rem;
  height: 3.7rem;
  position: fixed;
  bottom: 0;
  right: 0;
  background: #b1b4b2;
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 10;
}

.phone_img {
  width: 3.7rem;
  height: 3.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone_img img {
  width: 1.35rem;
}

.phone_num {
  width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 1rem;
  color: #000000;
  text-align: right;
}
.phone_item2 .phone_num {
  animation: iwidth 0.8s both;
}
.phone_item3 .phone_num {
  animation: iwidth2 0.8s both;
}

@keyframes iwidth {
  0% {
    width: 0;
    padding: 0;
  }
  100% {
    width: 9.8rem;
    padding: 0 0.8rem;
  }
}

@keyframes iwidth2 {
  0% {
    width: 9.8rem;
    padding: 0 0.8rem;
  }
  100% {
    width: 0;
    padding: 0;
  }
}

.logo img {
  display: block;
}
.logo img:nth-of-type(1) {
  opacity: 1;
}

.headerh {
  background: #fff;
  padding: 0.7rem 0;
}

.headerh .nav_href,
.headerh .gologin {
  color: #605f5f;
  font-size: 0.8rem;
  text-shadow: none;
}
.headerh .gologin img {
  width: 0.8rem;
}
.headerh .nav_href {
  height: 1.8rem;
}

.headerh .logo img:nth-of-type(1) {
  width: 80%;
  opacity: 0;
}
.headerh .logo img:nth-of-type(2) {
  opacity: 1;
  width: 80%;
}

.header_hover .logo img:nth-of-type(1) {
  opacity: 0;
}
.header_hover .logo img:nth-of-type(2) {
  opacity: 1;
}
.header_hover .nav_href,
.header_hover .gologin {
  color: #605f5f;
  text-shadow: none;
}

.header_bg {
  background: #fff;
  position: absolute;
  width: 100%;
  height: 0;
  z-index: 1;
  left: 0;
  top: 3.8rem;
  transition: all 0.3s;
  opacity: 0;
}

.header_bg2 {
  height: 7.6rem;
  top: 0;
  opacity: 1;
}

.headerh .header_bg {
  top: 3.4rem;
}
.headerh .header_bg2 {
  height: 6.8rem;
  top: 0;
}

.nav_selectp {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 2.1rem 0 1rem 0;
  z-index: 10;
}

.nav_select {
  display: flex;
}

.nav_select a {
  font-size: 0.8rem;
  color: #949494;
  transition: 0.2s;
  margin-right: 2.5rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.nav_select a:hover {
  color: #0b4b96;
}

.nav_select a:last-of-type {
  margin-right: 0;
}

.nav_select a span {
  margin-right: 0.5rem;
}

.nav_select .nav_active {
  color: #0b4b96;
}

.login_modal {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9999;
  display: none;
}

.login {
  background: #fff;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 29rem;
}

.login_main {
  padding: 1.4rem 2.5rem 2rem 2.5rem;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
}
.login_tab {
  display: flex;
  background: #f3f3f3;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
}
.login_tab div {
  width: 50%;
  height: 3.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #000000;
  cursor: pointer;
  transition: 0.2s;
}
.login_tab div:hover {
  color: #0b4b96;
}
.login_tab .login_active:hover {
  color: #000000;
}
.login_active {
  background: #fff;
}

.login_list {
  display: none;
}

.login_row {
  display: flex;
  align-items: center;
  width: 100%;
  height: 2.6rem;
  border: 1px solid #dcdcdc;
  border-radius: 5px;
  margin-bottom: 0.8rem;
  padding-left: 0.7rem;
  overflow: hidden;
}

.login_row img {
  width: 1.5rem;
}
.login_row input {
  flex: 1;
  height: 100%;
  font-size: 0.8rem;
  padding: 0 0.8rem;
  box-sizing: border-box;
}

.contact_right textarea:-ms-input-placeholder,
.contact_right input:-ms-input-placeholder,
.index6_message textarea:-ms-input-placeholder,
.index6_message input:-ms-input-placeholder,
.login_row input:-ms-input-placeholder {
  color: #c2c2c2;
}
.contact_right textarea::-webkit-input-placeholder,
.contact_right input::-webkit-input-placeholder,
.index6_message textarea::-webkit-input-placeholder,
.index6_message input::-webkit-input-placeholder,
.login_row input::-webkit-input-placeholder {
  color: #c2c2c2;
}
.contact_right textarea::-moz-placeholder,
.contact_right input::-moz-placeholder,
.index6_message textarea::-moz-placeholder,
.index6_message input::-moz-placeholder,
.login_row input::-moz-placeholder {
  color: #c2c2c2;
}
.contact_right textarea:-moz-placeholder,
.contact_right input:-moz-placeholder,
.index6_message textarea:-moz-placeholder,
.index6_message input:-moz-placeholder,
.login_row input:-moz-placeholder {
  color: #c2c2c2;
}
.contact_right textarea:-moz-placeholder,
.contact_right input:-moz-placeholder,
.index6_message textarea:-moz-placeholder,
.index6_message input:-moz-placeholder,
.login_row input:-moz-placeholder {
  color: #c2c2c2;
}

.login_btn {
  padding-top: 0.6rem;
}
.login_btn input {
  width: 100%;
  height: 2.6rem;
  border-radius: 5px;
  background: #0b4b96;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  cursor: pointer;
  transition: 0.3s;
}

.login_btn input:hover {
  opacity: 0.85;
}

.login_close {
  position: absolute;
  top: -2rem;
  right: -1.5rem;
  cursor: pointer;
}

.login_close img {
  width: 20px;
  height: 20px;
}

.footer {
  background: #211f20;
  font-size: 0.8rem;
  color: #666666;
  text-align: center;
  padding: 1.4rem 0;
}
.footer * {
  display: inline;
}
.footer a {
  color: #666666;
}
.headertwo {
  background: #fff;
}



.headertwo .nav_href,
.headertwo .gologin {
  color: #605f5f;
  text-shadow: none;
}

/* #endregion */

/* #region  é¦–é¡µ*/

.header_height {
  display: none;
}
.banner,
.banner_swiper {
  width: 100%;
}
.banner {
  position: relative;
}
.banner_swiper .swiper-slide img {
  width: 100%;
  display: block;
}
.banner_jiantou {
  width: 100%;
  position: absolute;
  top: 55%;
  left: 0;
  transform: translateY(-50%);
  z-index: 10;
}
.banner_jiantou .width {
  display: flex;
  justify-content: flex-end;
}
.banner_left,
.banner_right {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
}
.banner_left:hover,
.banner_right:hover {
  background: #0b4b96;
}
.banner_right {
  margin-left: 1.4rem;
}

.banner_swiper .swiper-slide {
  position: relative;
  color: #fff;
}
.banner_txt {
  color: #fff;
  position: absolute;
  bottom: 6.1rem;
  width: 100%;
  z-index: 10;
}
.banner_t1,
.banner_t2,
.banner_t3 {
  -webkit-animation: fadeOutUp 0.8s both;
  animation: fadeOutUp 0.8s both;
}

.banner_t1,
.banner_t2,
.banner_t3 {
  text-shadow: 0.075rem 0.13rem 0px rgba(11, 11, 11, 0.43);
}
.banner_t1 {
  font-size: 1.3rem;
}
.banner_t2 {
  font-size: 3.9rem;
  margin-top: 0.3rem;
  font-weight: bold;
}
.banner_t3 {
  font-size: 1rem;
  margin-top: 0.4rem;
}

.swiper-slide-active .banner_t1,
.swiper-slide-active .banner_t2,
.swiper-slide-active .banner_t3 {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
.swiper-slide-active .banner_t1 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.swiper-slide-active .banner_t2 {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.swiper-slide-active .banner_t3 {
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
}

.banner_dibu {
  position: absolute;
  width: 100%;
  bottom: 2.6rem !important;
  left: 0 !important;
  z-index: 10;
  color: #fff;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner_dot {
  display: flex;
  align-items: center;
}
.banner_dot span {
  display: block;
  width: 2rem;
  border-bottom: 1px solid #fff;
}
.banner_dot div {
  transition: 0.3s;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner_dot:last-of-type span {
  display: none;
}
.swiper-pagination-bullet-active {
  font-size: 1.2rem;
  font-weight: bold;
}

.swiper-pagination-bullet {
  width: auto;
  height: auto;
  display: flex;
  border-radius: 0;
  background: none;
  opacity: 1;
}
.swiper-container-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0;
}

.iabout {display: flex;align-items: center;justify-content: space-between;}
.iabout_left {
  width: 35.4%;
}
.iabout_right {
  width: 59.6%;
}

.index_title .zuo div {
  font-size: 2.4rem;
  font-weight: bold;
}
.index_title .zuo{float: left;}
.index_title .you{width: 311px;float: right;}
.index_title .you .hy{float: left;font-size: 18px;color: #fff;
  background: -webkit-linear-gradient(left, #0b4b96 , #3686e4);width: 160px;height: 40px;border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;margin-right: 40px;}
  .index_title .you .hy .name{font-size: 18px; color: #fff;line-height: 40px;}
  .index_title .you .hy img{float: left;margin: 7px 11px 0 25px;}
  .index_title .you .xg{float: left; font-size: 18px;color: #989898;line-height: 40px;}
  .index_title .you .xx{font-size: 18px;color: #989898;line-height: 40px;float: right;}
.index_title span {font-size: 1.6rem;display: block;}
.iabout_img { margin-top: 2.2rem;}
.iabout_img img {width: 100%;display: block;}
.iabout_right { display: flex; flex-wrap: wrap;justify-content: space-between;}
.iabout_item { height: 11.7rem;display: flex;flex-direction: column;justify-content: center;
font-size: 1.1rem;color: #45444a;border: 1px solid #e5e5e5;position: relative;}
.iabout_item .iabout_bg {
  transition: width 0.6s;width: 0;height: 100%;position: absolute;left: 0;top: 0;background: #0b4b96;z-index: 1;}

.iabout_item img,
.iabout_item span {position: relative;z-index: 10;}
.iabout_icon {width: 3rem; height: 3rem; position: relative; margin: 0 auto;}
.iabout_icon img {display: block;position: absolute;width: 100%;height: 100%;left: 0;top: 0;transition: 0.3s;}
.iabout_icon img:nth-of-type(2) {opacity: 0;}
.iabout_item span {display: block;text-align: center;margin-top: 0.2rem;transition: 0.3s;}
.iabout_item:hover .iabout_bg {width: 100%;}
.iabout_item:hover img:nth-of-type(1) {opacity: 0;}
.iabout_item:hover img:nth-of-type(2) {opacity: 1;}
.iabout_item:hover span {color: #fff;}
.iabout_item:nth-of-type(1),
.iabout_item:nth-of-type(2),
.iabout_item:nth-of-type(3) {width: 30%;}
.iabout_item:nth-of-type(4),
.iabout_item:nth-of-type(5) {width: 47.55%;margin-top: 2rem;}
.index_page3 {padding: 4.8rem 0 4.8rem 18.34%;
  display: flex;align-items: center;}
.index_page3 .index_title {color: #010101;}
.index3_text {font-size: 18px;line-height: 1.6;color: #6e6e6e;margin-top: 1.2rem;}
.index3_left {width: 15.5rem;margin-right: 6.2rem;margin-top: -80px;}
.index3_tabs {display: flex;justify-content: space-between;margin-top: 2.8rem;}
.index3_tab {width: 7.4rem;height: 6.8rem;background: #e2e2e2;color: #45444a;display: flex;flex-direction: column;
  justify-content: center;font-size: 0.9rem;text-align: center;cursor: pointer;position: relative;transition: 0.3s;}
.index3_tab span {display: block;margin-top: 0.6rem;}
.index3_timg {width: 2.7rem;height: 2.7rem;position: relative;margin: 0 auto;}
.index3_timg img {width: 100%;height: 100%;position: absolute;top: 0;left: 0;transition: 0.3s;}
.index3_timg img:nth-of-type(2) {opacity: 0;}
.index3_tab span,
.index3_timg {position: relative;z-index: 10;}
.index3_tbg {position: absolute;top: 0;left: 0;z-index: 1;
  background: #e50012;height: 100%;width: 0;transition: width 0.6s;overflow: hidden;}

.index3_active .index3_tbg,
.index3_tab:hover .index3_tbg {width: 100%;}
.index3_active .index3_timg img:nth-of-type(1),
.index3_tab:hover .index3_timg img:nth-of-type(1) {opacity: 0;}
.index3_active .index3_timg img:nth-of-type(2),
.index3_tab:hover .index3_timg img:nth-of-type(2) {opacity: 1;}
.index3_active,
.index3_tab:hover {color: #fff;}
.index3_lrp {/* margin-top: 3.5rem; */margin-top: 2rem;}
.index3_lr {display: none;margin-left: 600px;}
.index3_lr div {background: #c5c5c5;display: flex;align-items: center;justify-content: center;margin-right: 1.4rem;}
.index3_lr div:hover {background: #0b4b96;}
.index3_right {flex: 1;overflow: hidden;}
.swiper-container {width: 100%;}
.index3_right .swiper-slide {width: 24.14rem;margin-right: 2.2rem;}
.index3_item { width: 100%;}
.index3_img {overflow: hidden;}
.index3_img img {width: 100%;display: block;transition: 0.5s;}
.index3_title {font-size: 0.9rem;color: #45444a;display: flex;align-items: center;height: 3rem;transition: 0.3s;}
.index3_title span {display: block;height: 100%;width: 2px;border-left: 2px solid #45444a;
  margin-left: 1.3rem;margin-right: 1.4rem;position: relative;top: -1rem;transition: 0.3s;}
.index3_title div {overflow: hidden;white-space: nowrap;text-overflow: ellipsis;}
.index3_right .swiper-container {display: none;  height:440px;}
.index3_item:hover .index3_img img {transform: scale(1.05);}
.index3_item:hover .index3_title {color: #0b4b96;}
.index3_item:hover .index3_title span {border-left: 2px solid #0b4b96;}
.index_page4 {background: #f9f9f9;padding: 3rem 0 42.5rem  0;}
.index_page4 .index_title {color: #333333;}
.banner_left,
.banner_right,
.index3_lr div{ width: 2.5rem; height: 2.5rem;border-radius: 50%;outline: none;cursor: pointer;transition: 0.3s;}
.banner_jiantou img,
.index3_lr img {width: 0.4rem;}
.index_page6 {display: flex;background: url(..//images/in_endbj.jpg)no-repeat top center;height: 650px;background-size: 100% 100%;}
.index_page6 .end{width: 1200px;margin: 0 auto;}
.index_page6 .zuo{float: left;width: 648px;padding-top: 80px;}
.index_page6 .zuo .name{font-size: 30px;color: #fff;font-weight: bold;}
.index_page6 .zuo .fb{font-size: 16px;color: #fff;margin-top: 20px;margin-bottom: 33px;}
.index_page6 .you{width: 477px;float: right;}
.index_page6 .end .you .name{font-size: 30px;color: #fff;font-weight: bold;padding-top: 80px;}
.index_page6 .end .you .dh{float: left;width: 100%;margin-top: 74px;}
.index_page6 .end .you .dht{float: left;margin-right: 14px;}
.index_page6 .end .you .dhm{font-size: 16px;color: #fff;font-weight: bold;}
.index_page6 .end .you .dh1{float: left;width: 100%;margin-top: 15px;}
.index_page6 .end .you .ly{width: 100%;margin-top: 30px;float: left;}
.tabt1 {width: 450px;height: 50px;float: left;margin: 0 0 15px 0;background:none;border: 1px solid #d2d2d2;
	font-size: 16px;color: #fff;line-height: 30px;text-align: left;
	font-weight: normal;cursor: pointer;overflow: hidden;padding-left: 30px;}
.tabt2 {width: 450px;height: 50px;float: left;background:none;padding: 10px 0;
	border: 1px solid #d2d2d2;font-size: 16px;color: #fff;line-height: 20px;text-align: left;
	font-weight: normal;cursor: pointer;overflow: hidden;padding-left: 30px;}
.tabt3 {width: 180px;height: 50px;float: left;margin: 15px 0 0 0;background: #4472c4;
	font-size: 18px;color: #fff;line-height: 30px;text-align: center;font-weight: normal;cursor: pointer;overflow: hidden;}
  .index_page6 .end .hh{width: 100%;background: #fff;height: 1px;margin-top: 41px;}
  .index_page6 .end .bah{display: block;font-size: 14px;color: #fff;text-align: center;margin-top: 18px;}
/* #region  å…³äºŽæˆ‘ä»¬*/
.about_banner {position: relative;}
.banner2_bg {display: block;width: 100%;}
.banner2_txt {position: absolute;top: 52%;left: 50%;transform: translate(-50%, -50%);width: 100%;}
.about_banner2 .banner2_txt {top: 50% !important;}
.about_banner .index_title,
.about_tab {position: relative;z-index: 5;}
.about_banner .index_title {color: #fff;text-align: center;text-shadow: 0.075rem 0.13rem 0px rgba(37, 37, 37, 0.43);}
.about_tab {display: flex;justify-content: center;margin-top: 2rem;}
.about_tab a,
.about_tab div {width: 7.9rem;height: 2.7rem; border-radius: 5px;
  display: flex;align-items: center;justify-content: center;font-size: 0.9rem;color: #333333;
  background: rgb(255, 255, 255, 0.94); margin: 0 0.35rem;margin-bottom: 0.7rem;transition: 0.3s;cursor: pointer;}

.about_tab a:hover,
.about_tab div:hover,
.about_tab .about_active {background: rgb(229, 0, 18, 0.94);color: #fff;}
.about_title {text-align: center;padding: 2.7rem 0 1.5rem 0;}
.about_t1 {display: flex;align-items: center;justify-content: center;font-size: 0.8rem;color: #6c6c6c;}
.about_t1 span {display: block;width: 1.9rem;margin: 0 1rem;border-bottom: 1px solid #313131;}
.about_t2 {font-size: 1.2rem;margin-top: 0.6rem;}
.about_row1 {font-size: 0.8rem;line-height: 1.5rem;color: #333333;}
.about_row2 {display: flex;align-items: center;font-size: 0.8rem;line-height: 1.4rem;margin-top: 3.5rem;color: #333333;background: #f3f3f3;}
.about_row2 img {width: 49.3%;display: block;}
.about_row2 div {width: 50.7%;padding: 0 5.5%;}
.about_page1 {padding-bottom: 3.7rem;}
.about_page2 {background: #f3f3f3;padding-bottom: 4.5rem;}
.about_row3 {display: flex;align-items: center;}
.about2_left {width: 47.3%;padding-right: 3.2%;font-size: 0.8rem;line-height: 1.4rem;color: #333;}
.about2_img {width: 52.7%;}
.about2_img img {width: 100%;display: block;}
.about_page2 .about_title {padding: 3.8rem 0 2.7rem 0;}
.about_page3 {padding-bottom: 3.5rem;}
.about_page3 .about_title {padding: 4.3rem 0 3.6rem 0;}
.about3_time {font-size: 1rem;color: #898989;text-align: center;}
.about3_radius {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 1rem;
}
.about3_center {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #e50012;
  padding: 2px;
  position: relative;
  z-index: 5;
}
.about3_center div {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #e50012;
}
.about3_hr {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-bottom: 1px solid #dcdcdc;
  width: 100%;
  z-index: 1;
}

.about3_title {
  font-size: 0.9rem;
  color: #333333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
  margin-top: 0.8rem;
  padding: 0 14%;
  font-weight: bold;
}

.about3_text {
  font-size: 0.8rem;
  color: #898989;
  line-height: 1.4rem;
  margin-top: 1.1rem;
  padding: 0 14%;
  text-align: center;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
}

.about3_bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3.6rem;
}

.about3_next,
.about3_prev,
.about5_next,
.about5_prev {
  width: 0.45rem;
  height: 0.95rem;
  position: relative;
  cursor: pointer;
  margin: 0 1.3rem;
  outline: none;
}

.about3_next img,
.about3_prev img,
.about5_next img,
.about5_prev img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  transition: 0.3s;
}

.about3_next img:nth-of-type(2),
.about3_prev img:nth-of-type(2),
.about5_next img:nth-of-type(2),
.about5_prev img:nth-of-type(2) {
  opacity: 0;
}

.about3_next:hover img:nth-of-type(1),
.about3_prev:hover img:nth-of-type(1),
.about5_next:hover img:nth-of-type(1),
.about5_prev:hover img:nth-of-type(1) {
  opacity: 0;
}

.about3_next:hover img:nth-of-type(2),
.about3_prev:hover img:nth-of-type(2),
.about5_next:hover img:nth-of-type(2),
.about5_prev:hover img:nth-of-type(2) {
  opacity: 1;
}

.about3_dot,
.about5_dot {
  display: flex;
}
.about3_dot span,
.about5_dot span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #bfbfbf;
  display: block;
  margin: 0.35rem;
  outline: none;
}
.about3_dot .swiper-pagination-bullet-active,
.about5_dot .swiper-pagination-bullet-active {
  background: #e50012;
}

.about_page4 {
  background: #f3f3f3;
  padding-bottom: 5.5rem;
}
.about_page4 .about_title {
  padding: 3.6rem 0 2.7rem 0;
}
.about4_img img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.about_page5 .about_title {
  padding: 3rem 0 2.1rem 0;
}

.about5_img {
  width: 100%;
  background: #f3f3f3;
  padding: 0.9rem 1rem;
  border-radius: 0.5rem;
}
.about5_img img {
  width: 100%;
  display: block;
}

.about5_title {
  font-size: 0.9rem;
  line-height: 1.4rem;
  padding: 0 8%;
  text-align: center;
  margin-top: 1rem;
}

.about_page5 .about3_bottom {
  margin-top: 1.6rem;
}
.about_page5 {
  padding-bottom: 2.5rem;
}

.footer2 {
  background: #201d1d;
  padding: 1.8rem 0 1rem 0;
}
.footer2 .width {
  display: flex;
}
.footer2_left {
  flex: 1;
  overflow: hidden;
}
.footer2_right {
  margin-left: 3rem;
}
.footer2_right div {
  border: 1px solid #bfbfbf;
  background: #fff;
  padding: 0.5rem;
  width: 8.8rem;
}
.footer2_right img {
  display: block;
  width: 100%;
}
.footer2_right span {
  display: block;
  font-size: 0.8rem;
  color: #727272;
  text-align: center;
  margin-top: 0.5rem;
}
.footer2_left {
  font-size: 0.8rem;
  color: #666666;
}
.footer2_top {
  display: flex;
  align-items: center;
  height: 6.3rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.footer2_logo {
  width: 8.4rem;
}
.footer2_logo img {
  display: block;
  width: 100%;
}
.footer2_list {
  margin-left: 8%;
  margin-right: 5%;
}
.footer2_list div {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
}
.footer2_list div:last-of-type {
  margin-bottom: 0;
}
.footer2_list img {
  width: 1.25rem;
  margin-right: 0.5rem;
}

.footer2_btn {
  width: 12rem;
  height: 3rem;
  border-radius: 30px;
  background: #e50012;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-left: auto;
  transition: 0.3s;
}
.footer2_btn img {
  width: 1.35rem;
  margin-right: 0.5rem;
  display: block;
}
.footer2_btn:hover {
  opacity: 0.9;
}
.footer2_bottom {
  padding: 1.5rem 0;
}
.footer2_bottom a {
  color: #666666;
}
.footer2_bottom * {
  display: inline;
}

/* #endregion */

/* #region  äº§å“ä¸­å¿ƒ*/
.product_top {
  background: #f6f6f6;
  padding: 2.3rem 0 2rem 0;
}

.product_top .width {
  display: flex;
  align-items: center;
}

.product_left {
  width: 23.12%;
  padding-bottom: 2rem;
}

.product_right {
  width: 76.88%;
  display: flex;
}

.product_left div {
  font-size: 2.1rem;
  color: #d6d5d5;
  font-weight: bold;
}
.product_left span {
  display: block;
  font-size: 1.4rem;
  color: #585657;
  margin-top: 0;
}
.product_left label {
  display: block;
  width: 1.4rem;
  height: 0.2rem;
  background: #e50012;
  margin-top: 1.5rem;
}

.product_tab {
  width: 50%;
}

.ptab_title {
  font-size: 1rem;
  font-weight: bold;
  color: #585657;
  margin-bottom: 1.3rem;
}

.ptab_list {
  display: flex;
  flex-wrap: wrap;
}

.ptab_title,
.ptab_list a {
  padding-right: 1rem;
}
.ptab_list a {
  width: 50%;
  font-size: 0.8rem;
  color: #818181;
  margin-bottom: 0.7rem;
  transition: 0.2s;
  cursor: pointer;
}

.ptab_list a:hover,
.ptab_list .ptab_active {
  color: #e50012;
}

.product_list {
  display: flex;
  flex-wrap: wrap;
}

.product {
  width: 23.62%;
  margin-right: 1.84%;
  margin-top: 3rem;
  color: #45444a;
  transition: 0.2s;
}
.product:nth-of-type(4n + 4) {
  margin-right: 0;
}

.product_img {
  width: 100%;
  border: 1px solid #e5e5e5;
  overflow: hidden;
  transition: 0.3s;
}

.product:hover .product_img {
  border: 1px solid #e50012;
}

.product_img img {
  width: 100%;
  transition: 0.5s;
  display: block;
}

.product_title {
  font-size: 0.8rem;
  margin-top: 1.2rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.product_btn {
  display: flex;
  align-items: center;
  font-size: 0.7rem;
  margin-top: 1.2rem;
  color: #828282;
  transition: 0.2s;
}
.product_btn div {
  margin-left: 0.7rem;
  width: 0.8rem;
  height: 0.35rem;
  position: relative;
  transition: 0.5s;
}

.product_btn img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  transition: 0.2s;
}

.product_btn img:nth-of-type(2) {
  opacity: 0;
}
.product:hover,
.product:hover .product_btn {
  color: #e50012;
}
.product:hover .product_img img {
  transform: scale(1.05);
}
.product:hover .product_btn div {
  transform: translateX(0.5rem);
}
.product:hover .product_btn img:nth-of-type(1) {
  opacity: 0;
}
.product:hover .product_btn img:nth-of-type(2) {
  opacity: 1;
}

.page {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3.9rem 0;
}

.page a {
  margin: 0 1.2rem;
  transition: 0.3s;
  font-size: 0.8rem;
  color: #55444a;
}

.page a:first-of-type,
.page a:last-of-type,
.page .page_next {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  position: relative;
  border: 1px solid #e6e6e6;
}

.page a:first-of-type img,
.page a:last-of-type img,
.page .page_next img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.5rem;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s;
  display: block;
}

.page a:first-of-type img:nth-of-type(2),
.page a:last-of-type img:nth-of-type(2),
.page_next img:nth-of-type(2) {
  opacity: 0;
}
.page .page_active,
.page a:hover {
  color: #e50012;
}

.page a:first-of-type:hover,
.page a:last-of-type:hover,
.page .page_next:hover {
  border-color: #e50012;
}

.page a:first-of-type:hover img:nth-of-type(1),
.page a:last-of-type:hover img:nth-of-type(1),
.page_next:hover img:nth-of-type(1) {
  opacity: 0;
}

.page a:first-of-type:hover img:nth-of-type(2),
.page a:last-of-type:hover img:nth-of-type(2),
.page_next:hover img:nth-of-type(2) {
  opacity: 1;
}

/* #endregion */

/* #region  äº§å“è¯¦æƒ…*/
.show_top {
  background: #f6f6f6;
  padding-bottom: 2.8rem;
}

.show_back {
  height: 2.8rem;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.show_back a {
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  transition: 0.2s;
  line-height: 1;
}
.show_back img {
  margin-right: 0.8rem;
  width: 0.35rem;
}

.show_back a:hover {
  color: #e50012;
}

.show_top .show_row {
  display: flex;
  align-items: center;
}

.show_left {
  width: 18.6rem;
  border: 1px solid #e5e5e5;
  background: #fff;
}
.show_left img {
  width: 100%;
}

.show_left2 {
  width: 24.75rem;
}

.show_right,
.show_right2 {
  flex: 1;
  overflow: hidden;
}

.show_right {
  margin-left: 4.3%;
}

.show_right2 {
  margin-left: 4%;
}

.show_t1 {
  font-size: 1rem;
}
.show_t2 {
  font-size: 0.8rem;
  line-height: 1.7rem;
  color: #333333;
  margin-top: 1.4rem;
}

.show_title {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}
.show_title div {
  width: 14.1rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  background: #f3f3f3;
}
.show_title span {
  display: block;
  flex: 1;
  border-bottom: 1px solid #e5e5e5;
}

.show_text {
  margin-top: 2.9rem;
  font-size: 0.8rem;
}
.show_text img {
  max-width: 100%;
  display: inline;
}

.show_page {
  display: flex;
  justify-content: space-between;
  padding: 2.5rem 0;
  margin-top: 1rem;
}
.show_page div {
  max-width: 49%;
  font-size: 0.8rem;
  color: #767575;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.show_page a {
  display: inline;
  color: #121212;
  transition: 0.2s;
}
.show_page a:hover {
  color: #e50012;
}
.show_time {
  font-size: 0.8rem;
  color: #9c9c9c;
  margin-top: 0.6rem;
}

.show_right2 .show_t2 {
  margin-top: 0.8rem;
}

/* #endregion */

/* #region  è½¯ä»¶ä¼˜åŠ¿*/
.product_class {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 2rem;
  position: relative;
  top: 0.5rem;
}
.product_class a {
  font-size: 1rem;
  color: #605f5f;
  padding: 0 1.3rem;
  line-height: 1;
  cursor: pointer;
}
.product_class span {
  display: block;
  height: 0.7rem;
  border-left: 1px solid #dcdcdc;
}
.product_class span:last-of-type {
  display: none;
}
.product_class a:hover,
.product_class .product_active {
  color: #e50012;
}

.scientific {
  font-size: 0.8rem;
  margin-top: 3rem;
  margin-bottom: 5rem;
}

.scientific img {
  display: inline;
  max-width: 100%;
}

/* #endregion */

/* #region  æœåŠ¡æ”¯æŒ*/

.service_search {
  width: 57%;
  height: 4rem;
  border-radius: 3rem;
  background: #f3f3f3;
  border: 1px solid #dcdcdc;
  margin: 2.4rem auto 1.5rem auto;
  display: flex;
  align-items: center;
}
.service_search input {
  flex: 1;
  height: 100%;
  padding-left: 2rem;
  background: none;
  font-size: 0.8rem;
}
.service_search button {
  padding: 0 2.2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
}
.service_search button img {
  width: 2rem;
}

.service_item {
  height: 7rem;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
}
.service_item:last-of-type {
  border-bottom: none;
}
.service_img {
  width: 3rem;
  margin-right: 1.3rem;
}
.service_img img {
  width: 100%;
}
.service_title {
  font-size: 0.9rem;
  color: #333333;
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.service_btn {
  width: 11rem;
  height: 3.3rem;
  border-radius: 2rem;
  border: 1px solid #dcdcdc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #333333;
  cursor: pointer;
  transition: 0.3s;
}
.service_btn:hover {
  background: #e50012;
  color: #fff;
}

.service_main .page {
  margin-top: 2rem;
}
.service_popup {
  width: 26rem;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 1.1rem 1.3rem 2.7rem 1.3rem;
  box-shadow: -0.004rem -0.25rem 1.3rem 0px rgba(148, 148, 148, 0.33);
  border-radius: 0.5rem;
  z-index: 888;
  text-align: center;
  display: none;
}
.spopup_close {
  display: flex;
  justify-content: flex-end;
}
.spopup_close img {
  cursor: pointer;
}

.spopup_text {
  font-size: 1rem;
  line-height: 2rem;
  margin-top: 1.3rem;
}

.spopup_btn1 {
  width: 14rem;
  height: 3.5rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  background: #e50012;
  margin: 2rem auto 0 auto;
  cursor: pointer;
  transition: 0.3s;
}

.spopup_btn1:hover {
  opacity: 0.8;
}

.spopup_btn2 {
  display: flex;
  justify-content: center;
  margin-top: 2.1rem;
  line-height: 1;
}

.spopup_btn2 div {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.9rem;
  color: #777777;
  transition: 0.3s;
}
.spopup_btn2 div:hover {
  color: #e50012;
}
.spopup_btn2 img {
  width: 0.5rem;
  margin-left: 0.45rem;
}

/* #endregion */

/* #region  æ‹›æ ‡èµ„æ–™*/
.data_item {
  display: flex;
  align-items: center;
  color: #333333;
  margin-top: 3rem;
}
.data_img {
  width: 26.25%;
}
.data_right {
  width: 73.75%;
  padding-left: 2.87%;
}
.data_img img {
  width: 100%;
}
.data_title {
  font-size: 1rem;
  transition: 0.2s;
}
.data_text {
  font-size: 0.8rem;
  line-height: 1.7rem;
  margin-top: 0.8rem;
  color: #8e8e8e;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.data_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.3rem;
}

.data_time {
  font-size: 0.8rem;
}
.data_btn {
  width: 9rem;
  height: 3.1rem;
  color: #828282;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  border-radius: 2rem;
  border: 1px solid #e5e5e5;
  transition: 0.3s;
}
.data_btn div {
  width: 0.8rem;
  height: 0.35rem;
  position: relative;
  margin-left: 0.7rem;
}
.data_btn img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition: 0.3s;
}

.data_btn img:nth-of-type(2) {
  opacity: 0;
}
.data_title:hover {
  color: #e50012;
}
.data_btn:hover {
  background: #e50012;
  color: #fff;
}
.data_btn:hover img:nth-of-type(1) {
  opacity: 0;
}
.data_btn:hover img:nth-of-type(2) {
  opacity: 1;
}

/* #endregion */

/* #region  æ¶ˆé˜²åŠ¨æ€*/
.fire_main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 0.74rem;
}
.fire {
  width: 45.75%;
  padding: 1.9rem 0 1.5rem 0;
  position: relative;
}

.fire_time {
  display: flex;
  align-items: center;
}

.fire_time span {
  font-size: 0.8rem;
  color: #333333;
}
.fire_time div {
  width: 2.5rem;
  height: 1.5rem;
  background: #231815;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  margin-left: 2rem;
  transition: 0.3s;
}

.fire_text {
  font-size: 0.9rem;
  color: #333333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-top: 0.66rem;
}
.fire_hr1 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 1px solid #e5e5e5;
}

.fire_hr2 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  border-bottom: 1px solid #e50012;
  overflow: hidden;
  transition: width 1s;
}

.fire:hover .fire_time div {
  background: #e50012;
}

.fire:hover .fire_hr2 {
  width: 100%;
}

/* #endregion */

/* #region  æ¶ˆé˜²è¯¦æƒ…*/

.show_top2 {
  background: #f6f6f6;
  padding-bottom: 2.5rem;
}
.show_top2 .show_back {
  height: 2.5rem;
}
.show2 {
  padding: 0 8.8%;
}

.show2_title {
  text-align: center;
  font-size: 1rem;
  margin-top: 0.4rem;
  color: #333333;
}

.show2_time {
  text-align: center;
  font-size: 0.8rem;
  margin-top: 0.66rem;
  color: #858383;
}

.show2_text {
  font-size: 0.8rem;
  line-height: 1.7rem;
  color: #333333;
  margin-top: 1.7rem;
}

.show2_text img{
  display: inline;
  max-width: 100%;
}

/* #endregion */

/* #region  äººæ‰æ‹›è˜*/

.recruit_list {
  display: flex;
  flex-wrap: wrap;
}

.recruit {
  width: 31.64%;
  margin-right: 2.54%;
  padding: 1.3rem 2.2% 1.8rem 2.2%;
  background: #f3f3f3;
  border-radius: 5px;
  margin-top: 2rem;
  color: #333333;
  transition: 0.2s;
}
.recruit:hover {
  color: #e50012;
}
.recruit:nth-of-type(3n + 3) {
  margin-right: 0;
}

.recruit_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
}

.recruit_row span {
  color: #e50012;
}

.recruit_text {
  font-size: 0.8rem;
  line-height: 1.4rem;
  height: 4.2rem;
  color: #787777;
  margin-top: 0.9rem;
    text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.recruit_text *{
  font-size: 0.8rem!important;
}
.recruit_bottom {
  display: flex;
  justify-content: space-evenly;
  margin-top: 1.4rem;
}
.recruit_phone {
  width: 8.9rem;
  height: 2.2rem;
  background: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  font-size: 0.8rem;
  color: #373737;
  transition: 0.3s;
}
.recruit_popup {
  display: none;
  width: 100%;
  position: absolute;
  height: 2.8rem;
  line-height: 2.8rem;
  bottom: 2.2rem;
  border-radius: 5px;
  background: #fff;
  color: #333333;
  text-align: center;
}
.recruit_icon {
  width: 1rem;
  height: 1rem;
  margin-right: 0.6rem;
  position: relative;
}
.recruit_icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.recruit_icon img:nth-of-type(2) {
  opacity: 0;
}

.recruit_phone:hover {
  color: #fff;
  background: #e50012;
}
.recruit_phone:hover .recruit_icon img:nth-of-type(1) {
  opacity: 0;
}
.recruit_phone:hover .recruit_icon img:nth-of-type(2) {
  opacity: 1;
}
/* #endregion */

/* #region  æ‹›è˜è¯¦æƒ…*/
.show_top3 {
  background: #f6f6f6;
  padding-bottom: 1.8rem;
}
.show_top3 .show_back {
  height: 2.5rem;
}
.show3_title {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  margin-top: 0.4rem;
  color: #333333;
}
.show3_title span {
  font-size: 1.2rem;
  color: #e50012;
  margin-left: 2.4rem;
}
.show3_row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 2px;
}
.show3_time {
  font-size: 0.8rem;
  color: #858383;
}
.show3_right {
  display: flex;
}
.show3_right .recruit_phone {
  margin-left: 1.3rem;
  width: 8.9rem;
  height: 2.5rem;
}

.show3_right .recruit_popup {
  bottom: 2.5rem;
}
/* #endregion */

/* #region  è”ç³»æˆ‘ä»¬*/
.contact_main {
  padding: 2.8rem 9.3% 6rem 9.3%;
}
.contact_flex {
  display: flex;
}
.contact_map {
  height: 27.7rem;
  margin-top: 3.3rem;
}
.index6_left .contact_map{
  height: 100% !important;
  margin-top: 0 !important;
}
.contact_map img {
  width: 100%;
  height: 100%;
}

.contact_flex {
  display: flex;
  justify-content: space-between;
}

.contact_left {
  width: 50%;
}
.contact_right {
  width: 43.6%;
}

.contact_title {
  font-size: 1.4rem;
}

.contact_left .footer_row1 {
  line-height: 1;
  margin-top: 1.5rem;
}
.contact_left .footer_row2 {
  margin-top: 1.1rem;
}
.contact_left .footer_row3 div {margin-top: 1.4rem;}
.contact_right input {margin-bottom: 1.1rem;margin-top: 0 !important;height: 3.5rem;}
.contact_right textarea { height: 5.36rem;margin-top: 0 !important;}
.contact_right button {margin-top: 1.7rem;height: 3.5rem;}
.contact_right .contact_title {margin-bottom: 1.2rem;}
/* #endregion */

/* #region  ä¿®æ”¹*/
.nav_choose .nav_href {color: #0b4b96;}
.nav_href:hover {color: #0b4b96;text-shadow: none;}
.amap-overviewcontrol {z-index: 1 !important;display: none;}
.my-map{width:100%!important;height: 100%!important;}
.amap-logo,
.amap-copyright,
.amap-scale-text,
.amap-copyright,
.amap-scale-line,
.amap-zoomcontrol {display: none !important;}
/* #endregion */

/* #region  åŠ¨ç”»å»¶è¿Ÿ*/

.index3_lrp,
.index5_item:nth-of-type(2),
.index_title span ,
.iabout_item:nth-of-type(2){animation-delay: 0.2s;}

.about_tab,
.footer_row1,
.index5_item:nth-of-type(3),
.index4,
.index3_text,
.iabout_img,
.iabout_item:nth-of-type(3){animation-delay: 0.4s;}

.footer_row2,
.index3_tabs,
.iabout_item:nth-of-type(4){animation-delay: 0.5s;}

.footer_row3,
.iabout_item:nth-of-type(5){animation-delay: 0.7s;}


/* #endregion */
/* #region  åŠ¨ç”»*/
.fadeInUp2 {animation-name: fadeInUp2;}
.fadeInUp3 {animation-name: fadeInUp3;}
@keyframes fadeInUp2 {
  0% {opacity: 0;transform: translate3d(0, 1rem, 0);}
  100% {opacity: 1;transform: none;}
}
@keyframes fadeInUp3 {
  0% {opacity: 0;transform: translate3d(0, 2rem, 0);}
  100% {opacity: 1;transform: none;}
}
/*Clear*/
.clear { clear: both; font-size: 1px; height: 0px; line-height: 0px; overflow: hidden; }
/* 首页案例 */
.in_albj{background: url(..//images/in_albj.jpg)no-repeat top center;background-size: 100% 100%;margin-top: 120px;
  width: 100%;height: 855px;}
.in_al{width: 1200px;margin: 0 auto;overflow: hidden;}
.in_al .yw{padding-top: 120px;font-size: 42px;font-weight: bold;color: #000;}
.in_al .zw{margin-top: 27px;font-size: 28px;color: #000;float: left;}
.in_al .gd{font-size: 18px;float: right;margin-top: 40px;color: #000;}
.in_al .gd:hover{color: #0b4b96;}
/* .m_r{width: 100%;overflow: hidden;}
.m_r1{margin: 57px auto 0 -236px;width: 2180px;overflow: hidden;}
.m_r1 .bao{width: 2336px;overflow: hidden;} */
.tu11 .cpt{width: 584px;height: 400px;position: absolute;}
.swiper-button-prev1 {position: relative;width: 30px;height: 30px;z-index: 10;
background: url(..//images/down11.png) no-repeat left bottom;top: -100px;left: 586px;}
.swiper-button-next1 {position: relative;width: 30px;height: 30px;z-index: 10;
background: url(..//images/down111.png) no-repeat left bottom; top: -70px;left: 630px;}
.tu11 .name{width: 584px;height: 100px; background: url(..//images/cpb.png) no-repeat left bottom;background-size: 100% 100%;
  position: relative;top: 300px;left: 0px;}
.tu11 .name .m{font-size: 18px;float: left;color: #fff;margin-left: 33px;position: relative;top: 50px;}
.tu11 .name .an{float: right;position: relative;top: 46px;left: -24px;}
.swiper-button-prev1:hover{background: url(..//images/1down11.png) no-repeat left bottom;}
.swiper-button-next1:hover{background: url(..//images/1down111.png) no-repeat left bottom;}

/* 首页新闻 */
.index4 .zuo{width: 455px;height: auto;background: #fff;float: left;margin-top: 56px;border-bottom-left-radius: 40px;}
.index4 .zuo .rq{font-size: 24px;color: #0b4b96;font-weight: bold;padding-top: 36px;margin-left: 30px;float: left;}
.index4 .zuo .nf{font-size: 14px;color: #0b4b96;margin-top: 46px;}
.index4 .zuo .nd{margin:32px 0 0 30px;width: 396px;height: 230px;box-shadow: 0px 0px 10px 2px rgba(16, 38, 139, 0.2);}
.index4 .zuo .bt{font-size: 20px; color: #000;margin: 35px 0 0 30px;width: 396px;line-height: 30px;float: left;}
.index4 .zuo .h{background: #0b4b96; width: 55px;height: 3px;margin: 16px 0 0 30px;float: left;}
.index4 .zuo .fbt{font-size: 14px;color: #989898;margin: 33px 0 0 30px;width: 396px;line-height: 24px;float: left;}
.index4 .zuo .nan{font-size: 14px;color: #000;margin: 24px 0 0 30px;float: left;}
.index4 .zuo .d{width: 455px;height: 100px;background: -webkit-linear-gradient(left, #0b4b96 , #3686e4);float: left;
  border-top-right-radius: 40px;border-bottom-left-radius: 40px;margin-top: 40px;}
.index4 .zuo .d .ww{font-size: 24px;color: #fff;font-weight: bold;text-align: center;padding-top: 15px;}
.index4 .zuo .d img{float: left;margin: 6px 12px 0 86px;}
.index4 .zuo .d .dh{font-size: 32px;color: #fff;font-weight: bold;margin-top: -7px;}
.index4 .you{float: right;width: 683px;margin-top: 56px;}
.index4 .you .rq{font-size: 30px;color: #989898;float: left;}
.index4 .you .bt{font-size: 18px;color: #333;float: left;margin-left: 48px;width: 550px;margin-top: 5px;}
.index4 .you .nf{float: left;font-size: 14px;color: #989898;}
.index4 .you .an{float: right;width:550px;font-size: 14px;color: #989898;margin-bottom: 37px;height: 26px;}
.index4 .you .an img{float: left;}
.index4 .you .an .aw{float: left;margin-right: 28px;color: #989898;}
.index4 .you .hh{width: 100%;background: #e3e3e3;height: 1px;float: left;margin-bottom: 40px;}
.index4 .you .nl:hover .bt{color: #0b4b96;}
.index4 .you .nl:hover .aw{color: #0b4b96;}
.index4 .you .nl:hover .ab .aaa{display: none;}
.index4 .you .nl:hover .ab .bbb{display: block;}
.bbb{display: none;}

/* 子页面包屑 */
.dqwz { width: 1200px; margin: 0 auto;}
.dqwz font { float: right; margin: 1% 0 0 0; font-size: 14px; color: #989898; line-height: 20px; text-align: left; font-weight: normal; }
.dqwz font .aimg2 { float: left; margin: 2px 5px 0 0; }
.dqwz font a { color: #989898;}

/* 关于我们子页 */
.about{width: 1200px;margin:80px auto 0 auto ;}
.about .bt{display: block;margin: 0 auto;}
.about .fbt{font-size: 18px;color: #929292;text-align: center;margin-top: 30px;}
.zzz{font-size: 16px;color: #000;line-height: 30px;text-align: center;margin-top: 44px;}
.ab_tu{margin-top: 50px;}
.ab_tu1{float: left;width: 100%;height: auto;}
.ab_tu2{float: right;width: 584px;height: auto;}
.qyln{float: left;margin-top: 87px;}
.qyln .bt{font-size: 30px;color: #000;font-weight: bold;}
.qyln .bt1{font-size: 30px;color: #0b4b96;font-weight: bold;}
.qyln .nr{margin-top: 50px;}
.ryzz{margin-top: 86px;}
#certify2 { position: relative; width: 80%; height: auto; display: block; margin: 50px auto 0 auto; overflow: hidden;}
#certify2 .swiper-container { padding-bottom: 4%; }
#certify2 .swiper-slide { text-align: center;margin: 0; }
#certify2 .swiper-slide-active, .swiper-slide-duplicate-active { /* transform:scale(1);*/ -webkit-tap-highlight-color: transparent; outline: none; }
#certify2 .swiper-slide img { width: 100%;margin: 0; }
#certify2 .swiper-pagination { position: absolute; height: 40px; width: 20%; left: 39%; top: 85%; text-align: center; transition: .3s opacity; transform: translate3d(0,0,0); z-index: 10; font-size: 20px; color: #fff; text-align: center; font-weight: normal; line-height: 40px; }
#certify2 .swiper-pagination-current { font-size: 44px; font-weight: bold; }
.gfzd{margin-top: 90px;}
.gfzd .gft{float: left;margin-top: 45px;}
.gfzd .you{float: right;width: 608px;margin-top: 45px;}
.gfzd .you .lb{margin-top: 12px;}
.gfzd .you .lb .bt{float: left;font-size: 18px;color: #000;}
.gfzd .you .lb .btt{float: right;font-size: 14px;color: #989898;}
.gfzd .you .lb .hh{width: 100%;background: #dedede;height: 1px;float: left;margin: 15px 0;}
.zlzs{margin: 90px 0;}
#certify3 { position: relative; width: 80%; height: auto; display: block; margin: 50px auto 0 auto; overflow: hidden;}
#certify3 .swiper-container { padding-bottom: 4%; }
#certify3 .swiper-slide { text-align: center;margin: 0; }
#certify3 .swiper-slide-active, .swiper-slide-duplicate-active { /* transform:scale(1);*/ -webkit-tap-highlight-color: transparent; outline: none; }
#certify3 .swiper-slide img { width: 100%;margin: 0; }
#certify3 .swiper-pagination { position: absolute; height: 40px; width: 20%; left: 39%; top: 85%; text-align: center;
   transition: .3s opacity; transform: translate3d(0,0,0); z-index: 10; font-size: 20px; color: #fff; text-align: center; font-weight: normal; line-height: 40px; }
#certify3 .swiper-pagination-current { font-size: 44px; font-weight: bold; }

/* 新闻子页 */
.new1{background: url(..//images/new_bj.png)no-repeat top left;margin-left: 70px;background-size: 527px 137px;}
.new{width: 1200px;margin: 87px auto 0 auto;}
.new .bt{font-size: 30px;color: #0b4b96;font-weight: bold;float: left;}
.new .bt1{font-size: 30px;color: #000;font-weight: bold;width: 400px;}
.new .fbt{font-size: 18px;color: #929292;margin-top: 7px;width: 400px;}
.new_inner1 { width: 1200px; margin: 0px auto; display: flex; justify-content: space-between; margin-top: 30px; }
.new_inner1 .new_neirong { width: 1138px; height: 200px; background: #fff; float: left;
  box-shadow: 0px 0px 10px 2px rgb(16 38 139 / 20%);margin-right: -9px; }
.new_inner1 .new_neirong .new_tu { float: left; margin: 25px 0px 0px 26px; }
.new_inner1 .new_neirong .new_wenan {width: 720px;  float: left; margin: 43px 0px 0px 20px; }
.new_inner1 .new_neirong .new_wenan .new_wenan_biaoti { font-size: 22px; color: #131b2f; line-height:40px; float:left; width: 100%; height:40px;  overflow:hidden;  }
.new_inner1 .new_neirong .new_wenan .new_wenan_zhengwen { font-size: 16px; color: #131b2f; line-height: 30px; margin-top: 35px; 
width: 100%; height:60px; float:left;  overflow:hidden;}
.new_riqi { float: right; height: 66px; width: 50px; background: #a6b0c4; }
.new_ri { font-size: 20px; color: #FFF; margin-top: 8px; text-align: center; }
.new_heng { width: 46px; border: #ced6e8 solid 1px; margin-top: 6px; }
.new_nianyue { font-size: 12px; color: #FFF; text-align: center; }
.new_inner1:hover .new_riqi { background: #0b4b96; }
.sysbg { width: 1200px; display: block; margin: -100px auto 0 auto; }
.none { display: none; }
.sys { width: 100%;   margin: 0px auto; overflow: hidden; }
.sys .sysTitle { height: 78px;  }
.sys .sysTitle ul { float: right; }
.sys .sysTitle ul li { width: 200px; height: 40px; float: left; }
.sys .sysTitle ul li:first-child { width: 160px; height: 40px; float: left; }
.sys .sysTitle ul li:last-child { width: 160px; height: 40px; float: left; }
.sys .sysTitle li a { font-size: 18px; color: #666666; line-height: 40px;font-weight: normal; 
  font-style: normal; }
.sys .sysTitle li a:hover, .sys .sysTitle li a.exmo { font-family: 思源黑体SC-Regular; font-size: 18px;
   color: #333; line-height: 40px;font-weight: normal; font-style: normal;}
.sys .sysTitle .active { font-family: 思源黑体SC-Regular; font-size: 18px;  line-height: 40px;
   text-align: center; font-weight: normal; font-style: normal; background: url(..//images/new_anbj.png)no-repeat center center;
   width: 160px;height: 40px;padding-left: 40px;}
   .sys .sysTitle .active a{color: #fff !important;}
   .sys .sysTitle .normal { font-size: 18px; color: #666666; line-height: 24px; text-align: center; font-weight: normal; font-style: normal; }
.sys .sysContent { width: 100%; height: auto !important; min-height: 460px; clear: both; overflow: hidden;
   background: #fff;   padding: 0px; display: block; } 
.sysTitle .xg{float: left; font-size: 18px;color: #989898;line-height: 40px;margin: 0 30px;}
.sysTitle ul li a img{float: left;margin: 7px 11px 0 25px;}
.new_yema1{display: block;text-align: center;margin-top: 40px;margin-bottom: 90px;}


.z_max { display: flex; align-items: center; justify-content: flex-end; height: 100%; }
.z_max { width:1200px; margin: 0 auto; clear: both; }
.s_newshow { width: 100%; height: auto; float: left; font-size: 16px; color: #333333; text-align: left; line-height: 40px; font-weight: normal; margin: 2% 0 4% 0; position: relative; text-overflow: ellipsis; overflow: hidden; }

.s_newshow h3 { width: 100%; float: left; padding: 2% 0 0 0; font-size: 20px; color: #333; line-height: 30px; font-weight: normal; text-align: center; position: relative; }
.s_newshow h4 { width: 100%; float: left; padding: 1% 0 1% 0; margin-bottom: 2%; font-size: 14px; color: #999; line-height: 20px; font-weight: normal; text-align: center; position: relative; }
.s_newshow h4::after { width: 80px; height: 2px; float: left; position: absolute; left: 50%; margin-left: -40px; bottom: 0; background: #0b4b96; content: ''; }

.s_newshow img { max-width: 100%; display: block; margin: 0 auto; }
.s_fenye { width: 100%; height: auto; float: left; padding-top: 10px; padding-bottom: 10px; }
.s_fan1 { width: 900px; float: left; }
.s_fan1 p { width: 100%; float: left; font-family: 'Microsoft YaHei'; font-size: 14px; color: #666666; line-height: 30px; font-weight: normal; }
.s_fan1 { width: 600px; height: auto; float: left; font-family: 'Microsoft YaHei'; font-size: 14px; color: #666666; line-height: 30px; font-weight: normal; }
.s_fan1 p a { float: left; font-family: 'Microsoft YaHei'; font-size: 14px; color: #666666; line-height: 30px; font-weight: normal; }
.s_fan1 p font { float: left; font-family: 'Microsoft YaHei'; font-size: 14px; color: #666666; line-height: 30px; font-weight: normal; }
.s_fan1 p a:hover { font-family: 'Microsoft YaHei'; color: #0b4b96; }
.s_fan2 { height: auto; float: right; padding-right: 20px; margin-top: 20px; font-family: 'Microsoft YaHei'; font-size: 14px; color: #666666; line-height: 20px; font-weight: normal; }
.s_fan2 a { font-family: 'Microsoft YaHei'; font-size: 14px; color: #666666; line-height: 30px; font-weight: normal; }
.s_fan2 a:hover { font-family: 'Microsoft YaHei'; color: #0b4b96; }
.pagination{PADDING: 3px;MARGIN: 3px;PADDING-TOP: 3px;text-align: center;}
.pagination .disabled{width: auto;height: auto;padding: 10px 15px;font-size: 14px;COLOR: #666666;MARGIN-RIGHT: 20px;}
.pagination .active{text-align: center;line-height: 21px;text-align: center;font-size: 14px;
    COLOR: #ffffff;MARGIN-RIGHT: 20px;background: #0b4b96;}
.pagination li{padding: 10px 15px;border-radius: 5px;text-align: center;line-height: 21px;border: 1px solid #eeeeee;
    font-size: 14px;COLOR: #666666;MARGIN-RIGHT: 20px;TEXT-DECORATION: none;display: inline-block;}
.pagination span{display: inline-block;}
.pagination li a{display: inline-block;font-size: 14px;COLOR: #666666;}
.pagination li:hover{background: #0b4b96;color: #fff;}
.pagination li:hover a{color: #fff;}

/* 案例展示子页 */
.anlizs{background: url(..//images/Case\ .png)no-repeat top left;margin-left: 70px;background-size: 465px 137px;}
.sys1 { width: 100%;   margin: 0px auto; overflow: hidden; }
.sys1 .sysTitle { height: 78px;  }
.sys1 .sysTitle ul { float: right; }
.sys1 .sysTitle ul li { width: 180px; height: 40px; float: left; }
.sys1 .sysTitle ul li:first-child { width: 180px; height: 40px; float: left; }
.sys1 .sysTitle ul li:last-child { width: 180px; height: 40px; float: left; }
.sys1 .sysTitle li a { font-size: 18px; color: #666666; line-height: 40px;font-weight: normal; 
  font-style: normal; }
.sys1 .sysTitle li a:hover, .sys1 .sysTitle li a.exmo { font-family: 思源黑体SC-Regular; font-size: 18px;
   color: #333; line-height: 40px;font-weight: normal; font-style: normal;}
.sys1 .sysTitle .active { font-family: 思源黑体SC-Regular; font-size: 18px;  line-height: 40px;
   text-align: center; font-weight: normal; font-style: normal; background: url(..//images/anli_anbj.png)no-repeat center center;
   width: 213px;height: 40px;padding-left: 40px;}
   .sys1 .sysTitle .active a{color: #fff !important;}
   .sys1 .sysTitle .normal { font-size: 18px; color: #666666; line-height: 24px; text-align: center; font-weight: normal; font-style: normal; }
.sys1 .sysContent { width: 100%; height: auto !important; min-height: 460px; clear: both; overflow: hidden;
   background: #fff;   padding: 0px; display: block; } 
.sys1 .sysTitle .xg{float: left; font-size: 18px;color: #989898;line-height: 40px;margin: 0 0;}
.tu15{width: 584px;height: 400px;float: left;margin-right: 16px;margin-bottom: 30px;}
.tu15 .cpt{width: 584px;height: 400px;position: absolute;}
.tu15 .name{width: 584px;height: 100px; background: url(..//images/cpb.png) no-repeat left bottom;background-size: 100% 100%;
  position: relative;top: 300px;left: 0px;}
.tu15 .name .m{font-size: 18px;float: left;color: #fff;margin-left: 33px;position: relative;top: 50px;}
.tu15 .name .an{float: right;position: relative;top: 46px;left: -24px;}

/* 产品展示子页 */
.productzy{background: url(..//images/product.png)no-repeat top left;margin-left: 70px;background-size: 909px 137px;}
.productzy .sys1 .sysTitle .active { font-family: 思源黑体SC-Regular; font-size: 18px;  line-height: 40px;
  text-align: center; font-weight: normal; font-style: normal; background: url(..//images/cpanbj.png)no-repeat center center;
  width: 205px;height: 40px;padding-left: 40px;}
.sysContent .cpzy{width: 400px;float: left;margin-bottom: 30px;}
.sysContent .cpzy .cpt{width: 383px;height: 318px;display: block;margin: 0 auto;
  box-shadow: 0 0px 10px rgb(126 126 126 / 30%);}
.sysContent .cpzy:hover .m{color: #0b4b96;}
.sysContent .cpzy .m{font-size: 20px;color: #333;text-align: center;margin-top: 28px;display: block;}

/* 人才招聘子页 */
.rczp{width: 1200px;margin:80px auto 0 auto ;min-height: 400px;}
.rczp .bt{display: block;margin: 0 auto;}
.rczp .fbt{font-size: 18px;color: #929292;text-align: center;margin-top: 30px;}
.rczp .zpnr{margin: 44px 0 90px 0;}

/* 联系我们子页 */
.lxwm{width: 1200px;margin:80px auto 0 auto ;min-height: 400px;}
.lxwm .bt{display: block;margin: 0 auto;}
.lxwm .fbt{font-size: 18px;color: #929292;text-align: center;margin-top: 30px;}
.lxwm .zpnr{margin: 44px 0 90px 0;}
.co_neirong { width: 1200px; height: 275px;background: url(..//images/lxwmbj.png)no-repeat top center; 
  box-shadow: 0 0px 10px rgb(126 126 126 / 30%); margin-top: 40px; margin-bottom: 80px; }
.co_neirong1 { display: flex; margin: auto; flex-direction: row; flex-wrap: wrap; justify-content: space-between; width: 1100px; margin-left: 50px; padding-top: 30px; }
.co_flex { width: 320px; padding-top: 50px; }
.co_flex_tu { float: left; width: 30px; margin-right: 18px; }
.co_wenzi { font-size: 18px; color: #0b4b96; }
.co_flex .hengheng {  width: 316px; margin-top: 10px; margin-bottom: 20px;background-color: #abaed0;height: 1px; }
.co_flex .neirong { font-size: 20px; color: #0b4b96; font-weight: 400; }

.in_albj .swiper {width: 100%;height: 100%;margin: 57px auto 0 -170px;}
.in_albj .swiper-slide {height: 400px;  overflow:hidden;}
.swiper-slide img {display: block;width: 100%;height: 100%;object-fit: cover;}
.swiper-button-prev {position: relative;width: 30px;height: 30px;z-index: 10;
background: url(..//images/down11.png) no-repeat left bottom;top: -400px;left: 520px;}
.swiper-button-next {position: relative;width: 30px;height: 30px;z-index: 10;
background: url(..//images/down111.png) no-repeat left bottom; top: -392px;left: 561px;}
.swiper-button-next:hover{background: url(..//images/1down111.png) no-repeat left bottom;}
.swiper-button-prev:hover{background: url(..//images/1down11.png) no-repeat left bottom;}
input::-webkit-input-placeholder { /* WebKit browsers */
    color: #fff;font-size: 14px;
    }
    input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #fff;font-size: 14px;
    }
    input::-moz-placeholder { /* Mozilla Firefox 19+ */
    color:#fff;font-size: 14px;
    }
    input:-ms-input-placeholder { /* Internet Explorer 10+ */
    color:#fff;font-size: 14px;
    }
    textarea::-webkit-input-placeholder { /* WebKit browsers */
        color: #fff;font-size: 14px;
        }
        input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
        color: #fff;font-size: 14px;
        }
        input::-moz-placeholder { /* Mozilla Firefox 19+ */
        color:#fff;font-size: 14px;
        }
        input:-ms-input-placeholder { /* Internet Explorer 10+ */
        color:#fff;font-size: 14px;
        }