﻿@charset "utf-8";

/* header */
body.hide {
  overflow: hidden;
}

.jrs-head {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  height: 90px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(2px);

  z-index: 222;
}

.jrs-head>.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 216px;
}

.logo .black_logo {
  display: none;
}

.head_left {
  display: flex;
}

.head_right {
  display: flex;
  align-items: center;
}

.language_box {
  position: relative;
  margin-right: 20px;
}

.header_language {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  padding-top: 34px;
  -webkit-transition: all .6s ease;
  transition: all .6s ease;
  pointer-events: none;
}

.header_language:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 34px;
  opacity: 0;
  border-radius: 27px;
  background: #E9E9E9;

  z-index: 1;
  pointer-events: none;
  -webkit-transition: all .6s ease;
  transition: all .6s ease;
}

.language_current {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: all .6s ease;
  position: relative;
  z-index: 2;
}

.language_current img:nth-child(2) {
  display: none;
}

.language_content {
  position: relative;
  z-index: 2;
  padding: 10px 0 10px 0;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.language_content .language_item_box {
  padding-bottom: 2px;
}

.language_content a {
  color: #666;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  font-family: Arial;
  text-transform: uppercase;
  display: block;
  text-align: center;
  -webkit-transition: all .6s ease;
  transition: all .6s ease;
}

.language_content a:hover {
  color: var(--main-color);
}

.language_box:hover .language_current img:nth-child(1) {
  display: none;
}

.language_box:hover .language_current img:nth-child(2) {
  display: block;
}

.language_box:hover .header_language {
  pointer-events: auto;
}

.language_box:hover .language_content {
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: all .6s ease;
  transition: all .6s ease;
  -webkit-transition-delay: .3s;
  transition-delay: .3s;
}

.language_box:hover .header_language:after {
  height: 100%;
  opacity: 1;
}



/* menu */
.menu {
  margin-left: 100px;
}

.menu>ul {}

.menu>ul>li {
  padding-right: 70px;
  float: left;
}

.menu>ul>li>a {
  position: relative;
  padding: 34px 0;
  color: #FFF;
  font-size: 22px;
  font-weight: 400;
  
  display: block;
}

.menu>ul>li>a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--main-color);
  transition: width .4s;
}

.menu>ul>li.active>a::before,
.menu>ul>li.current>a::before {
  width: 100%;
}

.menu>ul>li.active>a,
.menu>ul>li.current>a {
  color: var(--main-color) !important;
}

.menu>ul>li .sub-menu {
  left: 0;
  position: absolute;
  top:100%;
  display: flex;
  transition: all 0.4s ease-out;
  width: 100%;
  border-top: 1px solid #DDE5EE;
  background-color: #F6FAFF;
  background-image: url(../images/menu_bg.svg);
  background-position: left bottom;
  background-repeat: no-repeat;
  z-index: 9;
  transform-origin: top;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
}

.menu>ul>li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}

.sub-menu .max-width {
  display: flex;
}

.sub-menu .menu_left {
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 150px;
  width: 560px;
  border-right: 1px solid #DDE5EE;
  display: none;
}

.sub-menu .menu_left h3 {
  color: var(--dark-color);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
}

.sub-menu .menu_left span {
  display: block;
  padding-top: 12px;
  max-width: 310px;
  color: #666;
  font-size: 18px;
  font-weight: 290;
  line-height: 27px;
}

.sub-menu .menu_right {
  padding-top: 60px;
  padding-bottom: 60px;
  /* margin-left: 100px; */
width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  /* width: calc(100% - 560px); */
}

.sub-menu .menu_right>.subnav>ul {
  margin-left: -30px;
  margin-right: -30px;
}

.sub-menu .menu_right>.subnav>ul>li {
  width: 33.33%;
  padding: 10px 30px;
  float: left;
}

.sub-menu .menu_right>.subnav>ul>li>a {
  display: flex;
  position: relative;
  justify-content: space-between;
  padding-bottom: 20px;
  color: var(--dark-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.sub-menu .menu_right>.subnav>ul>li>a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #CCC;
}

.sub-menu .menu_right>.subnav>ul>li>a i {
  width: 30px;
  height: 30px;
  display: block;
  background-image: url(../images/menu_jt_grey.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}

.sub-menu .menu_right>.subnav>ul>li>a:hover {
  color: var(--main-color);
}

@media screen and (max-width:1680px) {
  .menu>ul>li {
    padding-right: 60px;
  }

}

@media screen and (max-width:1580px) {
  .menu>ul>li {
    padding-right: 50px;
  }

  .menu>ul>li>a {
    font-size: 20px;
  }
}

@media screen and (max-width:1440px) {
  .menu>ul>li {
    padding-right: 45px;
  }

  .menu>ul>li>a {
    font-size: 18px;
  }
}

@media screen and (max-width:1366px) {
  .menu>ul>li {
    padding-right: 40px;
  }

  .sub-menu .menu_left {
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 50px;
    width: 460px;
  }

  /* .sub-menu .menu_right {
    margin-left: 80px;
    width: calc(100% - 460px);
  } */

}

@media screen and (max-width:1280px) {
  .menu {
    margin-left: 60px;
  }

}

@media screen and (max-width:1279px) {
  .menu {
    display: none;
  }

}

/*search*/
.head_search {
  position: relative;
  width: 26px;
  height: 26px;
}

.head_search i {
  font-size: 0;
  width: 26px;
  height: 26px;
  display: inline-block;
  position: absolute;
  top: 50%;
  background-size: 26px 26px;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  cursor: pointer;
}

.head_search i.sousuoend {
  background-image: url(../images/search_icon_white.svg);
}

.head_search i.cuohao {
  display: none;
  background-image: url(../images/close_white.svg);
}

.cuohao.act {
  color: #333;
}

.head_languge img:nth-child(2) {
  display: none;
}

.search_eject {
  position: fixed;
  top: 90px;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 302;
  display: none;
  background: rgba(255, 255, 255, 1);
}

.search_eject .pcsearch {
  max-width: 900px;
  margin: 0 auto;
}


.sebox_form {
  display: flex;
  align-items: center;
  padding: 18px 24px;
  border-radius: 16px 0px 16px 16px;
  border: 1px solid #E5E5E5;
  background: #FFF;
}

.sebox_input {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sebox_form .m_ser_l {
  flex: 1;
  padding-right: 20px;
  font-family: 'Microsoft YaHei';
}

.sebox_form .sebox_input input {
  line-height: 26px;
}

.sebox_form .sebox_input input::-webkit-input-placeholder {
  color: rgba(101, 113, 136, 0.5);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.sebox_form .sebox_input input:-moz-placeholder {
  color: rgba(101, 113, 136, 0.5);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.sebox_form .sebox_input input::-moz-placeholder {
  color: rgba(101, 113, 136, 0.5);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.sebox_form .sebox_input input:-ms-input-placeholder {
  color: rgba(101, 113, 136, 0.5);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.sebox_input .m_submit {
  width: 24px;
  height: 24px;
  background-image: url(../images/search_icon_grey.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-color: transparent;
  cursor: pointer;
  outline: 0;
}

.head_menu {
  position: relative;
  cursor: pointer;
  z-index: 4;
}

.head_menu img:nth-child(2),
.head_menu img:nth-child(3) {
  display: none;
}

.head_menu.is-active {
  position: absolute;
  right: 0;
  top: 0;
  background-color: var(--main-color);
  padding: 20px;
}

.head_menu.is-active img:nth-child(1) {
  display: none;
}

.head_menu.is-active img:nth-child(3) {
  display: block;
}


/* 滚屏 */

.jrs-head.on,
.jrs-head.headerColor2,
.jrs-head.headerColor3,
.jrs-head.headerColor4 {
  background-color: var(--white-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(2px);
}

.jrs-head.on .logo .black_logo,
.jrs-head.headerColor2 .logo .black_logo,
.jrs-head.headerColor3 .logo .black_logo,
.jrs-head.headerColor4 .logo .black_logo,
.jrs-head.gnb-open .logo .black_logo {
  display: block;
}

.jrs-head.on .logo .white_logo,
.jrs-head.headerColor2 .logo .white_logo,
.jrs-head.headerColor3 .logo .white_logo,
.jrs-head.headerColor4 .logo .white_logo,
.jrs-head.gnb-open .logo .white_logo {
  display: none;
}

.jrs-head.on .menu>ul>li>a,
.jrs-head.headerColor2 .menu>ul>li>a,
.jrs-head.headerColor3 .menu>ul>li>a,
.jrs-head.headerColor4 .menu>ul>li>a {
  color: #666;
}

.jrs-head.on .menu_r_line i,
.jrs-head.headerColor2 .menu_r_line i,
.jrs-head.headerColor3 .menu_r_line i,
.jrs-head.headerColor4 .menu_r_line i {
  background-image: url(../images/grey_menu.svg);

}

.jrs-head.on .language_current img:first-child,
.jrs-head.headerColor2 .language_current img:first-child,
.jrs-head.headerColor3 .language_current img:first-child,
.jrs-head.headerColor4 .language_current img:first-child {
  display: none;
}

.jrs-head.on .language_current img:nth-child(2),
.jrs-head.headerColor2 .language_current img:nth-child(2),
.jrs-head.headerColor3 .language_current img:nth-child(2),
.jrs-head.headerColor4 .language_current img:nth-child(2) {
  display: block;
}

.jrs-head.on .head_search i.sousuoend,
.jrs-head.headerColor2 .head_search i.sousuoend,
.jrs-head.headerColor3 .head_search i.sousuoend,
.jrs-head.headerColor4 .head_search i.sousuoend {
  background-image: url(../images/search_icon_grey.svg);
}

.jrs-head.on .head_search i.cuohao,
.jrs-head.headerColor2 .head_search i.cuohao,
.jrs-head.headerColor3 .head_search i.cuohao,
.jrs-head.headerColor4 .head_search i.cuohao {
  background-image: url(../images/close_grey.svg);
}

.jrs-head.on .menubar .bar,
.jrs-head.headerColor2 .menubar .bar,
.jrs-head.headerColor3 .menubar .bar,
.jrs-head.headerColor4 .menubar .bar,
.jrs-head.gnb-open .menubar .bar {
  background-color: #666;
}



/* 弹出导航 */
.menu_r_line {
  display: none;
}

.menu_r_line i {
  display: block;
  width: 36px;
  height: 36px;
  background-image: url(../images/white_menu.svg);
  background-repeat: no-repeat;
  cursor: pointer;
}

body.hidden {
  overflow: hidden;
}

body.hidden .jrs-head {
  border-bottom-color: transparent;
  background-color: transparent;
}

body.hidden .jrs-head.on .logo .red_logo,
body.hidden .jrs-head.on .logo .black_logo {
  display: none;
}

body.hidden .jrs-head.on .menu_r_line i {
  background-image: url(../images/close.svg);
}

.logo.active .white_logo {
  display: block;
}

.logo.active .red_logo,
.logo.active .black_logo {
  display: none;
}

/* 移动端导航 */
.menubar {
  position: relative;
  width: 21px;
  height: 18px;
  margin-top: 5px;
  margin-left: 16px;
  z-index: 99;
  cursor: pointer;
}

.menubar .bar {
  position: absolute;
  right: 0;
  top: 0;
  height: 2px;
  background: #fff;
  transition: all ease .3s;
}

.menubar .bar.bar01 {
  width: 13px;
}

.menubar .bar.bar02 {
  top: 6px;
  width: 17px;
}

.menubar .bar.bar03 {
  top: 12px;
  width: 21px;
}

.gnb-all {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 0;
  background-color: #F6FAFF;
  z-index: 9;
  overflow: hidden;
  transition: all ease .6s;
}

.gnb-all .container {
  height: 100%;
}

.gnb-all .all_bg {
  position: relative;
  margin-top: 84px;
  height: calc(100% - 84px);
  display: block;
  overflow-y: auto;

}


.jrs-head.gnb-open .gnb-all {
  height: 100vh;
}

.jrs-head.gnb-open .logo {
  position: relative;
  z-index: 99;
}

.jrs-head.gnb-open .menubar .bar {
  background-color: var(--dark-color);
}

.jrs-head.gnb-open .menubar .bar.bar01 {
  width: 30px;
  top: 6px;
  transform: rotate(45deg);
}

.jrs-head.gnb-open .menubar .bar.bar02 {
  display: none;
}

.jrs-head.gnb-open .menubar .bar.bar03 {
  width: 30px;
  top: 6px;
  transform: rotate(-45deg);
}

.all_bg {
  display: flex;
}

/*点击展开导航*/
.sidebar-menu {
  list-style: none;
  margin: 0;
}

.sidebar-menu>li {
  position: relative;
  margin: 0;

  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.sidebar-menu>li>div {
  display: flex;
  justify-content: space-between;
}

.sidebar-menu>li a {
  display: block;
  color: var(--dark-color);
  line-height: 22px;
}

.sidebar-menu>li a>span {
  color: inherit;
  font-size: 18px;
}

.sidebar-menu .a {
  width: 18px;
  height: 22px;
  float: right;
  background-image: url(../images/menu_icon_pressed_two.svg);
  background-size: 18px 18px;
  background-repeat: no-repeat;
  background-position: center;
}

.sidebar-menu>li.active .a {
  background-image: url(../images/menu_icon_open_two.svg);
}

.sidebar-menu>li .badge,
.sidebar-menu>li .label {
  margin-top: 3px;
  margin-right: 5px
}

.sidebar-menu li.header {
  padding: 10px 25px 10px 15px;
  font-size: 12px;
}

.sidebar-menu li.active>.treeview-menu {
  display: block
}

.sidebar-menu a {
  color: var(--white-color);

}

.sidebar-menu .treeview-menu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 10px;
  padding-top: 8px;
}



.sidebar-menu .treeview-menu>li {
  margin: 0;
  font-size: 16px;
}

.sidebar-menu .treeview-menu>li>a {
  padding: 7px 0px 7px 0;
  display: block;
  color: #666;
}




.menu_foot {
  padding-top: 20px;
}

.menu_foot p {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #666;
  font-size: 16px;
}

.menu_foot p a {
  color: inherit;
  font-size: inherit;
}

.menu_foot p span {
  width: 20px;
  margin-right: 5px;
}

@keyframes opacity {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotate_1 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(-360deg);
  }
}


@media screen and (max-width:1279px) {
  .menubar {
    display: block;
  }

  .gnb-all .all_bg {
    margin-top: 90px;
    height: calc(100% - 90px);
  }

}


@media screen and (max-width:767px) {
  .logo {
    width: 100%;
    max-width: 178px;
  }

  .jrs-head {
    height: 80px;
  }
  .head_right {
    padding-left: 5px;
  }
  .language_box {
    margin-right: 5px;
  }

  .language_current img {
    width: 20px;
  }

  .head_search {
    width: 20px;
  }

  .head_search i {
    width: 20px;
    height: 20px;
  }

  .search_eject {
    top: 80px;
  }

  .sebox_input .m_submit {
    width: 20px;
    height: 20px;
  }

  .sebox_form {
    padding: 10px 14px;
  }

  .gnb-all .all_bg {
    padding: 0 20px;
  }

}

@media screen and (max-width:359px) {

  .menu_foot p {
    font-size: 14px;
  }

}