body {
  color: #333;
  font-family: "Alibaba PuHuiTi 3.0", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 14px;
}

* {
  margin: 0;
  padding: 0;
}

ul,
li {
  list-style: none;
}

a {
  color: #333;
  text-decoration: none;
}

.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: " ";
  clear: both;
  display: block;
  height: 0;
  font-size: 0;
  visibility: hidden;
}

.text-ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.websize {
  width: 1200px;
  margin: 0 auto;
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999;
  transition: background 0.2s ease;
}
.header > div {
  display: flex;
  justify-content: space-between;
}
.header .logo {
  display: flex;
  align-items: center;
}
.header .logo a {
  display: block;
  width: 106px;
  height: 33px;
  background: url("../images/logo.svg") no-repeat 0 0;
  text-indent: -9999px;
  overflow: hidden;
}
.header .navi > ul > li {
  position: relative;
  display: inline-block;
  padding: 22px 25px;
  vertical-align: top;
}
.header .navi > ul > li > a {
  display: block;
  height: 20px;
  line-height: 20px;
  color: #fff;
}
.header .navi > ul > li > a .icon-search {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url(../images/navi_icon_search.svg) no-repeat 0 0;
  margin: 1px 0;
  vertical-align: top;
}
.header .navi > ul > li > a .icon-search::before {
  position: absolute;
  top: 5px;
  left: -15px;
  content: " ";
  display: block;
  width: 0.5px;
  height: 9px;
  background: #808184;
}
.header .navi > ul > li > div {
  position: absolute;
  top: 59px;
  left: 50%;
  opacity: 0;
  display: flex;
  height: 0;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0px 0px 16px 2px rgba(0, 0, 0, 0.3);
  transform: translateX(-50%);
}
.header .navi > ul > li > div ul {
  padding: 16px 18px;
}
.header .navi > ul > li > div ul li a {
  display: block;
  width: 142px;
  height: 32px;
  line-height: 32px;
  color: #666;
  text-align: center;
}
.header .navi > ul > li > div ul li a:hover {
  background: rgba(29, 81, 206, 0.05);
  border-radius: 4px;
  color: #1D51CE;
  transition: all 0.2s ease;
}
.header .navi > ul > li > div ul li + li {
  margin-top: 14px;
}
.header .navi > ul > li > div dl {
  position: relative;
}
.header .navi > ul > li > div dl dt {
  height: 20px;
  line-height: 20px;
  margin: 0 25px;
  padding: 18px 0 8px;
  border-bottom: 1px solid #DFE0EA;
  font-size: 14px;
  text-align: center;
}
.header .navi > ul > li > div dl + dl::before {
  position: absolute;
  top: 68px;
  left: 0;
  content: " ";
  width: 1px;
  height: 392px;
  background: #DFE0EA;
}
.header .navi > ul > li:hover div {
  top: 54px;
  opacity: 1;
  height: auto;
  transition: top 0.2s ease, opacity 0.2s ease;
}
.header.header-scrolling {
  background: #fff;
}
.header.header-scrolling .logo a {
  background-image: url("../images/logo_reverse.svg");
}
.header.header-scrolling .navi > ul > li a {
  color: #333;
}
.header.header-scrolling .navi > ul > li a .icon-search {
  background-image: url("../images/navi_icon_search_reverse.svg");
}

.sidebar {
  position: fixed;
  top: 50%;
  right: 24px;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  transform: translateY(-50%);
}
.sidebar ul li {
  position: relative;
  padding: 14px;
  cursor: default;
}
.sidebar ul li i {
  display: block;
  width: 20px;
  height: 20px;
}
.sidebar ul li i.icon-1 {
  background: url("../images/sidebar_icon_1.svg") no-repeat 0 0;
}
.sidebar ul li i.icon-2 {
  background: url("../images/sidebar_icon_2.svg") no-repeat 0 0;
}
.sidebar ul li i.icon-3 {
  background: url("../images/sidebar_icon_3.svg") no-repeat 0 0;
}
.sidebar ul li i.icon-4 {
  background: url("../images/sidebar_icon_4.svg") no-repeat 0 0;
}
.sidebar ul li div {
  position: absolute;
  top: 50%;
  left: calc(-100% + 22px);
  opacity: 0;
  background: #fff;
  border-radius: 6px;
  transform: translateX(-100%) translateY(-50%);
}
.sidebar ul li div::after {
  position: absolute;
  top: 50%;
  right: -6px;
  content: " ";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 6px;
  border-color: transparent transparent transparent #fff;
  transform: translateY(-50%);
}
.sidebar ul li div span {
  display: block;
  width: 102px;
  height: 20px;
  line-height: 20px;
  padding: 14px 11px;
  color: #1D51CE;
}
.sidebar ul li div p {
  width: 128px;
  height: 128px;
  background: url("../images/qrcode_bg.svg") no-repeat 0 0;
  margin: 10px;
  padding: 10px;
  box-sizing: border-box;
}
.sidebar ul li:hover div {
  opacity: 1;
  transition: opacity 0.2s ease;
}
.sidebar ul li + li::before {
  position: absolute;
  top: 0;
  left: 16px;
  content: " ";
  display: block;
  width: 16px;
  height: 1px;
  background-color: rgba(29, 81, 206, 0.5);
}
.sidebar ul li:nth-child(1), .sidebar ul li:nth-child(4) {
  cursor: pointer;
}
.sidebar .popup {
  position: absolute;
  top: 0;
  right: 70px;
  z-index: 9999;
  display: none;
  width: 360px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0px 3px 34px 0px rgba(143, 150, 210, 0.15);
  transition: opacity 0.2s ease;
}
.sidebar .popup::after {
  position: absolute;
  top: 19px;
  right: -6px;
  content: " ";
  display: block;
  width: 6px;
  height: 10px;
  background: url("../images/popup_tri.svg") no-repeat 0 0;
}
.sidebar .popup .title {
  height: 48px;
  line-height: 48px;
  background: url("../images/popup_logo.svg") no-repeat 8px center;
  padding-left: 44px;
  border-bottom: 1px solid #E6E9F2;
  font-size: 18px;
}
.sidebar .popup .form {
  padding: 24px;
}
.sidebar .popup .form .item {
  background: #FFF;
  margin-bottom: 12px;
  padding: 9px 12px;
  border: 1px solid #E6E9F2;
  border-radius: 4px;
}
.sidebar .popup .form .item label {
  float: left;
  width: 5em;
  height: 20px;
  line-height: 20px;
  color: #666;
  font-size: 14px;
}
.sidebar .popup .form .item input {
  display: block;
  height: 20px;
  line-height: 20px;
  background: none;
  margin-left: 5em;
  border: none;
  font-size: 14px;
}
.sidebar .popup .form .item input:focus-visible {
  outline: none;
}
.sidebar .popup .form .item textarea {
  display: block;
  height: 98px;
  line-height: 20px;
  resize: none;
  border: none;
  font-size: 14px;
}
.sidebar .popup .form .item textarea:focus-visible {
  outline: none;
}
.sidebar .popup .form .action {
  margin-top: 32px;
}
.sidebar .popup .form .action button {
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: #1D51CE;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.footer {
  height: 428px;
  background: #272C47 url("../images/footer.png") no-repeat center top;
  padding-top: 56px;
  box-sizing: border-box;
}
.footer .contact {
  float: left;
}
.footer .contact .logo a {
  display: block;
  width: 146px;
  height: 50px;
  background: url("../images/logo_transparent.svg") no-repeat 0 0;
  text-indent: -9999px;
  overflow: hidden;
}
.footer .contact .tele {
  margin: 12px 0;
  color: #fff;
  font-size: 12px;
}
.footer .contact .qrcode {
  margin: 12px 0;
}
.footer .contact .qrcode ul {
  font-size: 0;
}
.footer .contact .qrcode ul li {
  position: relative;
  display: inline-block;
  vertical-align: top;
}
.footer .contact .qrcode ul li i {
  display: block;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.footer .contact .qrcode ul li i.icon-1 {
  background: url("../images/footer_icon_1.svg") no-repeat 0 0;
}
.footer .contact .qrcode ul li i.icon-2 {
  background: url("../images/footer_icon_2.svg") no-repeat 0 0;
}
.footer .contact .qrcode ul li i.icon-3 {
  background: url("../images/footer_icon_3.svg") no-repeat 0 0;
}
.footer .contact .qrcode ul li div {
  position: absolute;
  top: 62px;
  left: 0;
  opacity: 0;
  background: #fff;
  border-radius: 6px;
}
.footer .contact .qrcode ul li div::before {
  position: absolute;
  top: -6px;
  left: 15px;
  content: " ";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 5px 6px 5px;
  border-color: transparent transparent #fff transparent;
}
.footer .contact .qrcode ul li div p {
  width: 128px;
  height: 128px;
  background: url("../images/qrcode_bg.svg") no-repeat 0 0;
  margin: 10px;
  padding: 4px;
  box-sizing: border-box;
}
.footer .contact .qrcode ul li:hover div {
  opacity: 1;
  transition: opacity 0.2s ease;
}
.footer .contact .qrcode ul li + li {
  margin-left: 14px;
}
.footer .navi {
  float: right;
  display: flex;
  margin-left: 100px;
  padding-left: 100px;
  border-left: 1px solid rgba(182, 190, 232, 0.3);
}
.footer .navi dl dt {
  height: 22px;
  line-height: 22px;
  margin-bottom: 24px;
}
.footer .navi dl dt a {
  color: #fff;
  font-size: 16px;
}
.footer .navi dl dd {
  height: 22px;
  line-height: 22px;
}
.footer .navi dl dd a {
  position: relative;
  color: rgba(255, 255, 255, 0.7);
}
.footer .navi dl dd a::after {
  position: absolute;
  bottom: -4px;
  left: 50%;
  content: " ";
  display: block;
  width: 0;
  height: 1px;
  background: #fff;
  transform: translateX(-50%);
}
.footer .navi dl dd a:hover {
  color: #fff;
}
.footer .navi dl dd a:hover::after {
  width: 100%;
  transition: width 0.2s ease;
}
.footer .navi dl dd + dd {
  margin-top: 8px;
}
.footer .navi dl + dl {
  margin-left: 86px;
}
.footer .copyright {
  margin-top: 42px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.5);
}

.fixed {
  position: fixed;
  bottom: 20%;
  right: 24px;
  z-index: 9999;
  width: 48px;
  height: 48px;
  background: url("../images/icon_back2top.svg") no-repeat center center, rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  cursor: pointer;
}/*# sourceMappingURL=common.css.map */