* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
li {
  list-style: none;
}
i {
  font-style: normal;
}
body {
  font-family: "PingFang SC", "Microsoft YaHei", "Microsoft YaHei UI", "SimSun",
    "SimHei", "Arial";
  font-size: 14px;
  color: #222;
}
/* 对图片进行设置 */
img {
  /* 图片的最大宽度不超过父盒宽度 */
  width: 100%;
  /* 为了去除图片底部3-4px空白 */
  vertical-align: middle;
  transition: all 0.5s;
}
a {
  text-decoration: none;
  color: #222;
}
.clearfix::after {
  content: "";
  clear: both;
  visibility: hidden;
  height: 0;
  display: block;
}
/* 文字超出3行 用省略号代替  */
.ellipsis {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/*滚动条整体样式*/
::-webkit-scrollbar {
  width: 6px;
  height: 4px;
}
/*滚动条滑块*/
::-webkit-scrollbar-thumb {
  border-radius: 8px;
  /* box-shadow: inset 0 0 5px rgba(0,0,0,0.2); */
  background: #ccc;
}
/*滚动条轨道*/
::-webkit-scrollbar-track {
  /* box-shadow: inset 0 0 1px rgba(0,0,0,0.2); */
  border-radius: 10px;
  background-color: rgb(227, 227, 227);
}

/* 声明 */
@font-face {
  font-family: "Square721 BT";
  src: url("/templates/website/images/Square\ 721\ BT.ttf");
}
@font-face {
  font-family: "DIN Alternate";
  src: url("/templates/website/images/DIN\ Alternate\ Bold.ttf");
}

.ww {
  width: 1280px;
  margin: auto;
  /* max-width: 1600px; */
}
.w {
  margin: auto;
}
.w-c {
  width: 1280px;
  margin: 0 auto;
}

.phone-show {
  display: none !important;
}
.section .section-header {
  width: 1280px;
  height: 200px;
  padding-top: 62px;
  margin: 0 auto;
  border-bottom: 1px solid #222333;
}

.section .header-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section .icon {
  width: 20px;
  height: 12px;
  margin-bottom: 20px;
}
.section .header-title .title {
  font-size: 40px;
  font-weight: 600;
  line-height: 40px;
  color: #222;
}
.section .header-title .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 116px;
  height: 32px;
  color: #004ec3;
  font-size: 14px;
  cursor: pointer;
  border-radius: 1px;
  border: 1px solid #004ec3;
  background: rgba(250, 250, 250, 0.3);
}
.section .header-title .btn:hover {
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.1);
  background: linear-gradient(91deg, #e1ecff 0%, rgba(241, 246, 255, 0) 100%);
}
.section .header-title .btn img {
  width: 16px;
  height: 16px;
  margin-left: 12px;
}

.section .tabs {
  display: flex;
  align-items: center;
  width: 1280px;
  height: 88px;
  margin: 0 auto;
  border-bottom: 1px solid #cfcfcf;
  margin-bottom: 40px;
  overflow: hidden;
}
.section .tabs .tab {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  color: #222;
  white-space: nowrap;
  cursor: pointer;
}
.section .tabs .tab.active {
  color: #004ec3;
  font-weight: 550;
}
.section .tabs .tab:hover {
  color: #004ec3;
}
.section .tabs .active::after {
  content: "";
  position: absolute;
  bottom: 0;
  display: inline-block;
  width: 100%;
  height: 4px;
  background: #004ec3;
}
.section .tabs .tab:not(:last-child) {
  margin-right: 100px;
}

/* 面包屑 */
.crumb-section {
  margin-top: 72px;
  display: flex;
  align-items: center;
  height: 50px;
  z-index: 9;
  background: #f7f7f7;
  color: #222;
  text-align: justify;
  font-family: PingFang SC;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}
.crumb-section a:hover {
  color: #004ec3;
}
.crumb-section .icon {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: 0 8px;
  background: url("/templates/website/images/index/arrow-right.svg");
}

/* 头部 */
.header-section {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  width: auto;
  height: 72px;
  background: rgba(255, 255, 255, 0.1);
  transition: all ease-out 0.3s;
}
.header-section:hover {
  background: #fff;
}
.header-section.top {
  top: -73px;
}
.header-section.bg {
  background: #fff;
  box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.07);
}
.header-section .header-in {
  height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-section .header-in .logo {
  width: 346px;
}
.header-section .menu-box {
  display: flex;
  align-items: center;
  height: 100%;
  color: #222333;
  font-size: 18px;
}
.header-section .menu-box .menu-item {
  position: relative;
  height: 72px;
  line-height: 72px;
  margin-right: 48px;
  /* padding: 0 24px; */
}
.header-section .menu-box .menu-item:last-child {
  margin-right: 0;
}
.header-section .menu-box .active > a {
  color: #222;
}
.header-section .menu-box .menu-item > a {
  display: inline-block;
  width: 100%;
  height: 100%;
  white-space: nowrap;
}
.header-section .menu-box .menu-item:hover {
  color: #004ec3;
}
.header-section .menu-box .menu-item:hover > a {
  color: #222;
}
.header-section .menu-box .menu-item.active > a {
  color: #222;
}
.header-section .menu-box .menu-item:hover > a {
  color: #004ec3 !important;
}
.header-section .menu-box .menu-item img {
  width: 16px;
  height: 16px;
}
.header-section .about-us {
  display: flex;
  align-items: center;
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 72px;
  width: 98px;
  padding: 0 11px;
  background: #fff;
}
.header-section .about-us-item > a::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 5px;
  background: url("/templates/website/images/index/icon-down.png");
  background-size: 100% 100%;
}
.header-section .about-us-item.active > a::after {
  background: url("/templates/website/images/index/icon-down.png");
  background-size: 100% 100%;
}
.header-section .about-us-item:hover > a::after {
  background: url("/templates/website/images/index/icon-down-hover.png")
    no-repeat;
  background-size: 100% 100%;
}
.header-section .about-us-item:hover .about-us {
  display: flex;
  flex-direction: column;
}
.header-section .about-us a {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  color: #222;
  line-height: initial;
  text-align: justify;
  /* height: 50px;
  line-height: 50px; */
}

.header-section .about-us a:not(:last-child) {
  border-bottom: 1px solid rgba(223, 223, 223, 1);
}
.header-section .concact-us {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 159px;
  height: 100%;
}
.header-section .concact-us img {
  width: 100%;
  height: 100%;
}
.header-section .icon {
  display: none;
}
.header-section .dowm-menu {
  display: none;
}

/* 底部 */

.foot {
  height: 450px;
  background: #222;
}
.foot .link-section {
  display: flex;
  justify-content: space-between;
  width: 1280px;
  height: calc(450px - 32px);
  padding: 40px 0 0 0;
  margin: 0 auto;
  color: #fff;
}
.foot .link-box:nth-child(1) {
  /* width: 500px; */
  margin-right: 60px;
}
.foot .link-box:nth-child(2) {
  width: 600px;
}
.foot .link-box .title-row {
  font-size: 16px;
  font-style: normal;
  font-weight: 550;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #7a7a7a;
}
.foot .link-box .title-row::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  background: #222;
  border-radius: 50%;
  border: 1px solid #fff;
}
.foot .link-box .list {
  display: flex;
  justify-content: space-between;
}
.yq-link {
  flex-wrap: wrap;
}
.yq-link a {
  width: calc(100% / 3);
}
.foot .link-box .list .col {
  display: flex;
  flex-direction: column;
}
.foot .link-box .yq-link a {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}
.foot .link-box .list .col a {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}
.foot .link-box .list .col a img {
  width: 16px;
  height: 16px;
}
.foot .link-box .list .col .row {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}
.foot .link-box .list .row .col {
  text-align: center;
}
.foot .link-box .list .row .col span {
  margin-top: 5px;
  font-size: 12px;
}
.foot .copyright {
  width: 100%;
  height: 32px;
  line-height: 32px;
  text-align: center;
  background: #222;
  color: #fff;
  font-family: PingFang HK;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}

.topping {
  display: none;
  position: fixed;
  /* bottom: 520px; */
  bottom: 45px;
  right: 90px;
  z-index: 9;
}
@media (device-width: 1400px) {
  .topping {
    right: 30px;
  }
}
@media (device-width: 1366px) {
  .topping {
    right: 0;
  }
}
.topping .call {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 146px;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0px -2px 8px 0px rgba(0, 0, 0, 0.08);
  color: #004ec3;
  font-size: 16px;
  line-height: 20px;
  cursor: pointer;
  background: #fff;
}
.topping .call .call-box {
  display: none;
  position: absolute;
  width: 340px;
  height: 146px;
  background: url("/templates/website/images/index/call-img.png");
  background-size: 100%;
  box-shadow: 0px 4px 12px 0px rgba(22, 100, 255, 0.12);
  right: 62px;
  color: #222;
}
.topping .call .call-box .row {
  display: flex;
  align-items: center;
  color: #004ec3;
  font-size: 16px;
}
.topping .call .call-box .row1 {
  margin-left: 24px;
  margin-top: 12px;
}
.topping .call .call-box .row img {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  margin-bottom: 0;
}
.topping .call img {
  width: 20px;
  height: 20px;
  margin-bottom: 10px;
}
.topping .top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #fff;
  margin-top: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0px -2px 8px 0px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
.topping .top img {
  width: 19px;
  height: 21px;
}

.m-pagnation {
  display: none;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
.m-pagnation.active {
  display: flex;
}
.m-pagnation .s-active {
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 1px;
  background: #e5eaed;
  color: #222f48;
}
.m-pagnation .s-span {
  display: inline-block;
  margin-right: 24px;
  cursor: pointer;
  font-size: 16px;
}
.m-pagnation .s-span:last-child {
  margin-right: 0;
}
.m-pagnation.s-up,
.s-next {
  font-size: 16px;
}
.m-pagnation .s-up:hover,
.s-next:hover {
  color: #004ec3 !important;
}
.m-pagnation .s-t-jump {
  width: 50px;
  height: 28px;
  border: solid 1px #909399;
  border-radius: 4px;
  font-size: 16px;
  text-align: center;
}
.m-pagnation input:focus {
  outline: none;
}

.m-pagnation .s-ts {
  -moz-user-select: none; /*mozilar*/
  -webkit-user-select: none; /*webkit*/
  -ms-user-select: none; /*IE*/
  user-select: none;
}
.m-pagnation .s-up {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url("/templates/website/images/news/pre-page.svg") no-repeat;
}
.m-pagnation .s-next {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url("/templates/website/images/news/next-page.svg") no-repeat;
}
.nocursor {
  cursor: default !important;
}
#PageContent .current {
  background: #004ec3 !important;
  border-color: #004ec3 !important;
}
