@charset "utf-8";
:root {
  --color: #003686;
  --vh: 100vh;
}
/*Plugin CSS*/
.str_wrap {
  overflow: hidden;
  width: 100%;
  font-size: 12px;
  line-height: 16px;
  position: relative;
  -moz-user-select: none;
  -khtml-user-select: none;
  user-select: none;
  /* background:#f6f6f6; */
  white-space: nowrap;
}
.str_move {
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 0;
  cursor: move;
}
.str_move_clone {
  display: inline-block;
  vertical-align: top;
  position: absolute;
  left: 100%;
  top: 0;
}
.str_vertical .str_move_clone {
  left: 0;
  top: 100%;
}
.str_down .str_move_clone {
  left: 0;
  bottom: 100%;
}
.str_vertical .str_move,
.str_down .str_move {
  white-space: normal;
  width: 100%;
}
.str_static .str_move,
.no_drag .str_move,
.noStop .str_move {
  cursor: inherit;
}
/*字体*/
@font-face {
  font-family: "fontnb";
  src: url("../fonts/NEXA BOLD.OTF") format("opentype");
}
.font-nb {
  font-family: 'fontnb', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
* {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: calc(100vw/19.2);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
}
html ::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 5px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
html ::-webkit-scrollbar-thumb {
  /*滚动条-滑块*/
  border-radius: 3px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #003686;
}
html ::-webkit-scrollbar-track {
  /*滚动条-背景*/
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  background: #ededed;
}
@media (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 1580px) {
  html {
    font-size: 66px;
  }
}
@media (max-width: 767px) {
  html {
    font-size: calc(100vw/7.5);
  }
}
body {
  min-height: 100%;
  font-family: 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  background: #fff;
}
@media (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 0.28rem;
  }
}
img {
  max-width: 100%;
  border: 0;
  vertical-align: top;
}
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
}
a {
  color: #000;
}
a,
a:hover,
a:focus {
  text-decoration: none;
}
input,
button {
  -webkit-appearance: none;
  appearance: button;
  border-radius: 0;
}
button {
  cursor: pointer;
}
input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  appearance: button;
  cursor: pointer;
}
textarea {
  resize: none;
  overflow: auto;
}
input,
button,
textarea,
select {
  border: 0;
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
  color: inherit;
  background: transparent;
}
select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}
table {
  border-collapse: collapse;
}
.container {
  margin: 0 auto;
  width: 90%;
  max-width: 1600px;
}
@media (max-width: 1260px) {
  .container {
    width: 90%;
  }
}
.public-scrollbar {
  scrollbar-width: thin;
}
.public-scrollbar ::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 5px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
.public-scrollbar ::-webkit-scrollbar-thumb {
  /*滚动条-滑块*/
  border-radius: 3px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #003686;
}
.public-scrollbar ::-webkit-scrollbar-track {
  /*滚动条-背景*/
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  background: #ededed;
}
.public-img {
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.public-img::before {
  content: "";
  display: block;
  position: relative;
  z-index: 0;
  padding-top: 100%;
}
.public-img > img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.public-img > video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.public-pc-img {
  display: block;
}
@media (max-width: 991px) {
  .public-pc-img {
    display: none;
  }
}
.public-mb-img {
  display: none;
}
@media (max-width: 991px) {
  .public-mb-img {
    display: block;
  }
}
.public-content {
  color: #666;
  line-height: 1.8;
}
.public-content a {
  color: #666;
}
.public-content table {
  max-width: 100%;
}
.public-content table td,
.public-content table th {
  padding: 10px 15px;
  border: 1px solid #dbf1ed;
}
.public-content li {
  margin-left: 15px;
  list-style: disc;
}
.public-content ol {
  margin-left: 15px;
  list-style: decimal;
}
.public-content img,
.public-content video {
  max-width: 100%;
  height: auto !important;
}
#hi-upgrade {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: #fff;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
}
#hi-upgrade .hi-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -177px 0 0 -450px;
  width: 900px;
}
#hi-upgrade .hi-wrap .hi-title {
  font-size: 30px;
  line-height: 40px;
  color: #333;
}
#hi-upgrade .hi-wrap .hi-close {
  margin: 10px 0;
  display: inline-block;
  cursor: pointer;
  font-size: 18px;
  color: #003686;
}
#hi-upgrade .hi-wrap .hi-close:hover {
  text-decoration: underline;
}
#hi-upgrade .hi-wrap .hi-text1 {
  color: #666;
}
#hi-upgrade .hi-wrap .hi-text1 span {
  color: #003686;
}
#hi-upgrade .hi-wrap .hi-text2 {
  position: relative;
  margin: 60px 0;
  color: #333;
}
#hi-upgrade .hi-wrap .hi-text2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  width: 100%;
  border-top: 1px solid #ddd;
}
#hi-upgrade .hi-wrap .hi-text2 span {
  position: relative;
  z-index: 5;
  padding: 0 30px;
  background: #fff;
}
#hi-upgrade .hi-wrap .hi-list {
  overflow: hidden;
}
#hi-upgrade .hi-wrap .hi-list li {
  display: inline-block;
  width: 16%;
}
#hi-upgrade .hi-wrap .hi-list li div {
  margin: 0 auto 5px;
  width: 50px;
  height: 50px;
}
#hi-upgrade .hi-wrap .hi-list li a {
  color: #666;
}
#hi-upgrade .hi-wrap .hi-list li a:hover {
  color: #003686;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico1 {
  background: url(../images/hi-llq-1.jpg) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico2 {
  background: url(../images/hi-llq-2.jpg) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico3 {
  background: url(../images/hi-llq-3.jpg) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico4 {
  background: url(../images/hi-llq-4.jpg) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico5 {
  background: url(../images/hi-llq-5.jpg) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico6 {
  background: url(../images/hi-llq-6.jpg) no-repeat center / 100%;
}
/* 占位标签，设置导航样式 */
#c-placeholder {
  height: 0.9rem;
}
@media (max-width: 991px) {
  #c-placeholder {
    height: 1.2rem;
  }
}
/*顶部*/
#c-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  line-height: 0.9rem;
  text-align: center;
  color: #000;
  transition: 0.4s;
  background-color: rgba(255, 255, 255, 0.89);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
#c-header.c-style2 {
  border-bottom: 1px solid #e6e6e6;
  /* .c-gn .c-language .qcn4{
            background-color: #fff;
        } */
}
@media (max-width: 991px) {
  #c-header {
    line-height: 1.2rem;
  }
}
#c-header a {
  color: #000;
  transition: 0.4s;
}
#c-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  padding: 0 0 0 0.6rem;
}
@media (max-width: 991px) {
  #c-header .container {
    padding: 0 5%;
    height: 1.2rem;
  }
}
#c-header .c-left-box {
  display: flex;
  align-content: center;
}
#c-header .c-right-box {
  display: flex;
  align-items: center;
}
#c-header.c-head-move {
  top: -0.9rem;
}
@media (max-width: 991px) {
  #c-header.c-head-move {
    top: -1.2rem;
  }
}
/*顶部logo*/
#c-header .c-logo {
  display: flex;
  align-items: center;
  margin-right: 0.95rem;
}
@media (max-width: 1260px) {
  #c-header .c-logo {
    margin-right: 0.3rem;
  }
}
#c-header .c-logo .c-img-box {
  display: flex;
  align-items: center;
}
#c-header .c-logo .c-img-box img {
  width: 1.66rem;
  height: 0.4rem;
}
@media (max-width: 991px) {
  #c-header .c-logo .c-img-box img {
    width: auto;
    height: 0.6rem;
  }
}
#c-header .c-logo .c-img-box img:nth-child(2) {
  display: none;
}
#c-header.c-style2 .c-logo .c-img-box img:nth-child(1) {
  display: none;
}
#c-header.c-style2 .c-logo .c-img-box img:nth-child(2) {
  display: inline-block;
}
/*顶部pc导航*/
#c-header .c-nav {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  #c-header .c-nav {
    display: none;
  }
}
#c-header .c-nav li:nth-child(3) ul {
  width: 3.6rem;
}
#c-header .c-nav > li {
  position: relative;
  margin-right: 0.6rem;
}
@media (max-width: 1260px) {
  #c-header .c-nav > li {
    margin-right: 0.15rem;
  }
}
#c-header .c-nav > li.on2 {
  position: initial;
}
#c-header .c-nav > li:last-child {
  margin-right: 0;
}
#c-header .c-nav > li > .c-title-box {
  display: flex;
  align-items: center;
  cursor: pointer;
}
#c-header .c-nav > li a:before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: 0.4s;
}
#c-header .c-nav li .c-title-box > a {
  position: relative;
  display: block;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#c-header .c-nav li .c-title-box > a svg {
  margin-left: 0.12rem;
  width: 0.1rem;
  height: 0.14rem;
  transform: rotate(90deg);
}
#c-header .c-nav li .c-title-box > a svg path {
  fill: #000;
  opacity: 1;
  stroke: none;
}
#c-header .c-nav ul {
  background-color: rgba(255, 255, 255, 0.4);
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  min-width: 2.3rem;
  line-height: 0.5rem;
  border-radius: 0 0 0.04rem 0.04rem;
  box-shadow: 0px 3px 9px 0px rgba(50, 51, 51, 0.03);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
#c-header .c-nav ul li {
  transition: all 0.5s;
  text-align: left;
}
#c-header .c-nav ul li a {
  padding: 0.2rem 0.3rem;
  line-height: 1.5em;
  color: #111;
  transition: all 0.5s;
}
#c-header .c-nav ul li a::before {
  display: none;
}
#c-header .c-nav ul li:hover a {
  background-color: rgba(255, 255, 255, 0.5);
  color: #111;
}
#c-header .c-nav li:hover > .c-title-box > a,
#c-header .c-nav li:hover > a {
  color: #000;
}
#c-header .c-nav li:hover > .c-title-box > a svg path,
#c-header .c-nav li:hover > a svg path {
  fill: #000;
}
/*顶部移动端导航*/
#c-header .c-nav2 {
  position: absolute;
  top: 1.2rem;
  left: 0;
  width: 100%;
  height: 0;
  line-height: 1rem;
  color: #333;
  background: #fff;
  overflow-y: auto;
  transition: 0.4s;
  text-align: left;
}
#c-header .c-nav2 > li:last-child {
  border-bottom: 1px solid #f1f1f1;
}
#c-header .c-nav2 li {
  padding: 0 0.5rem;
  border-top: 1px solid #f1f1f1;
}
@media (max-width: 767px) {
  #c-header .c-nav2 li {
    padding: 0 0.5rem;
  }
}
#c-header .c-nav2 li .c-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#c-header .c-nav2 li .c-title-box img,
#c-header .c-nav2 li .c-title-box svg {
  width: 0.3rem;
  height: 0.3rem;
  transition: all 0.4s;
}
#c-header .c-nav2 li .c-title-box.on img,
#c-header .c-nav2 li .c-title-box.on svg {
  transform: rotate(90deg);
}
#c-header .c-nav2 li a {
  color: #333;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
#c-header .c-nav2 li a:hover,
#c-header .c-nav2 li.on > a {
  color: #003686;
}
#c-header .c-nav2 li ul {
  display: none;
}
.c-open #c-header .c-nav2 {
  height: calc(100vh - 1.2rem);
}
@media (max-width: 991px) {
  .c-open #c-header {
    background-color: #fff;
  }
}
/*顶部导航开关*/
#c-header .c-switch {
  position: relative;
  display: none;
  width: 0.48rem;
  height: 0.4rem;
  cursor: pointer;
}
@media (max-width: 991px) {
  #c-header .c-switch {
    display: block;
  }
}
#c-header .c-switch i {
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background: #333;
  transition: all 0.4s;
}
#c-header .c-switch i:nth-child(1) {
  top: 0;
}
#c-header .c-switch i:nth-child(3) {
  bottom: 0;
}
#c-header .c-switch i:nth-child(2) {
  top: 50%;
  margin-top: -1px;
}
#c-header.c-style2 .c-switch i {
  background: #333;
}
body.c-open #c-header .c-switch i:nth-child(2) {
  opacity: 0;
}
body.c-open #c-header .c-switch i:nth-child(1) {
  top: 50%;
  margin-top: -1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
body.c-open #c-header .c-switch i:nth-child(3) {
  bottom: 50%;
  margin-bottom: -1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* 顶部功能区 */
#c-header .c-gn {
  display: flex;
  height: 0.9rem;
  align-items: center;
  margin-left: 1.1rem;
}
@media (max-width: 1260px) {
  #c-header .c-gn {
    margin-left: 0.5rem;
  }
}
@media (max-width: 991px) {
  #c-header .c-gn {
    height: 1.2rem;
    margin-right: 0.5rem;
  }
}
#c-header .c-gn .c-search {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0.8rem;
  transition: all 0.5s;
  height: 100%;
}
@media (max-width: 991px) {
  #c-header .c-gn .c-search {
    width: 1.2rem;
  }
}
#c-header .c-gn .c-search .qcn2 {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  justify-content: center;
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  transition: all 0.5s;
}
#c-header .c-gn .c-search .qcn2:hover {
  border-left: 1px solid #003686;
  border-right: 1px solid #003686;
  background-color: #003686;
}
#c-header .c-gn .c-search .qcn2:hover svg path {
  fill: #Fff;
}
#c-header .c-gn .c-search .qcn2 img,
#c-header .c-gn .c-search .qcn2 svg {
  width: auto;
  height: 18px;
}
#c-header .c-gn .c-search .qcn2 img path,
#c-header .c-gn .c-search .qcn2 svg path {
  fill: #000000;
  opacity: 1;
  stroke: none;
}
#c-header .c-gn .c-search .seanav {
  padding: 0.7rem 0;
  line-height: 1.5;
  border-top: 1px solid #E6E6E6;
  display: none;
  /* display: block !important; */
  position: absolute;
  width: 100%;
  height: auto;
  top: calc(100%);
  left: 0;
  text-align: left;
  background: #fff;
}
#c-header .c-gn .c-search .seanav .seanav_box {
  width: 800px;
  margin: auto;
}
@media (max-width: 991px) {
  #c-header .c-gn .c-search .seanav .seanav_box {
    width: 90%;
  }
}
#c-header .c-gn .c-search .seanav .seanav_box .g_t {
  line-height: 1.1;
}
#c-header .c-gn .c-search .seanav .seanav_box form {
  margin-top: 0.28rem;
}
#c-header .c-gn .c-search .seanav .seanav_box form .search_box {
  width: 100%;
  height: 0.6rem;
  background: #fff;
  border: 1px solid #E6E6E6;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  #c-header .c-gn .c-search .seanav .seanav_box form .search_box {
    height: 0.8rem;
  }
}
#c-header .c-gn .c-search .seanav .seanav_box form .search_box input {
  padding: 0 0.3rem;
  width: 100%;
  color: #333;
}
#c-header .c-gn .c-search .seanav .seanav_box form .search_box button {
  display: inline-flex;
  flex-shrink: 0;
  margin-right: 0.3rem;
  width: 0.18rem;
  height: auto;
}
@media (max-width: 767px) {
  #c-header .c-gn .c-search .seanav .seanav_box form .search_box button {
    width: 0.3rem;
  }
}
#c-header .c-gn .c-search .seanav .seanav_box form .search_box button svg {
  width: 100%;
  height: auto;
}
#c-header .c-gn .c-search .seanav .seanav_box form .search_box button svg path {
  fill: #0e0e0e;
}
#c-header .c-gn .c-search .seanav .seanav_box .g_b {
  margin-top: 0.3rem;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
#c-header .c-gn .c-search .seanav .seanav_box .g_b p {
  margin-top: 3px;
}
@media (max-width: 991px) {
  #c-header .c-gn .c-search .seanav .seanav_box .g_b p {
    margin-top: 0;
  }
}
#c-header .c-gn .c-search .seanav .seanav_box .g_b .g_lab {
  display: flex;
  flex-wrap: wrap;
}
#c-header .c-gn .c-search .seanav .seanav_box .g_b .g_lab span {
  padding: 0.06rem 0.16rem;
  background: #f5f5f5;
  color: #666;
  margin: 0 0.2rem 0.1rem 0;
}
@media (max-width: 1580px) {
  #c-header .c-gn .c-search .seanav .seanav_box .g_b .g_lab span {
    font-size: 10px;
  }
}
#c-header .c-gn .c-search .seanav .seanav_box .g_b .g_lab span:last-child {
  margin-right: 0;
}
#c-header .c-gn .c-search .seanav .seanav_box .g_b .g_lab span:hover {
  color: #003686;
}
#c-header .c-gn .c-language {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.4rem;
  transition: all 0.5s;
  height: 100%;
  position: relative;
}
@media (max-width: 991px) {
  #c-header .c-gn .c-language {
    width: 2rem;
  }
}
#c-header .c-gn .c-language.on .qcn2 .icon1 path {
  fill: #003686;
}
#c-header .c-gn .c-language.on .qcn2 .qcn3 {
  color: #003686;
}
#c-header .c-gn .c-language.on .qcn2 .icon2 {
  transform: rotate(270deg);
}
#c-header .c-gn .c-language.on .qcn2 .icon2 path {
  fill: #003686;
}
#c-header .c-gn .c-language.on .qcn4 {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
#c-header .c-gn .c-language .qcn2 {
  position: relative;
  display: flex;
  align-items: center;
}
#c-header .c-gn .c-language .qcn2 .icon1 {
  width: auto;
  height: 18px;
}
#c-header .c-gn .c-language .qcn2 .icon1 path {
  fill: #000000;
  opacity: 1;
  stroke: none;
  transition: all 0.5s;
}
#c-header .c-gn .c-language .qcn2 .qcn3 {
  color: #000;
  margin: 0 0.1rem;
}
#c-header .c-gn .c-language .qcn2 .icon2 {
  transition: all 0.4s;
  width: 10px;
  height: 14px;
  transform: rotate(90deg);
}
#c-header .c-gn .c-language .qcn2 .icon2 path {
  fill: #000000;
  opacity: 1;
  stroke: none;
  transition: all 0.5s;
}
#c-header .c-gn .c-language .qcn4 {
  z-index: -1;
  position: absolute;
  left: 50%;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
  top: 0;
  background-color: #ffffff;
  width: 100%;
  transform: translateX(-50%);
}
#c-header .c-gn .c-language .qcn4 .qcn5 {
  border-top: 1px solid #e6e6e6;
  padding: 0.14rem 0.2rem;
  line-height: 1.5em;
}
#c-header .c-gn .c-language .qcn4 .qcn5 a {
  color: #666;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#c-header .c-gn .c-language .qcn4 .qcn5 a i {
  transition: all 0.4s;
  opacity: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9px;
  height: auto;
  color: #003686;
}
@media (max-width: 1260px) {
  #c-header .c-gn .c-language .qcn4 .qcn5 a i {
    width: 0.22rem;
  }
}
@media (max-width: 767px) {
  #c-header .c-gn .c-language .qcn4 .qcn5 a i {
    width: 0.26rem;
  }
}
#c-header .c-gn .c-language .qcn4 .qcn5 a i svg,
#c-header .c-gn .c-language .qcn4 .qcn5 a i img {
  width: 100%;
  height: auto;
}
#c-header .c-gn .c-language .qcn4 .qcn5 a i svg path,
#c-header .c-gn .c-language .qcn4 .qcn5 a i img path {
  fill: #003686;
}
#c-header .c-gn .c-language .qcn4 .qcn5:hover a {
  color: #003686;
}
#c-header .c-gn .c-language .qcn4 .qcn5:hover a i {
  opacity: 1;
}
#c-header .c-gn .c-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.6rem;
  background-color: #003686;
  height: 100%;
}
@media (max-width: 991px) {
  #c-header .c-gn .c-contact {
    display: none;
  }
}
#c-header .c-gn .c-contact .qcn2 {
  display: flex;
  align-items: center;
  color: #fff;
}
#c-header .c-gn .c-contact .qcn2 img,
#c-header .c-gn .c-contact .qcn2 svg {
  width: auto;
  height: 18px;
  margin-right: 0.2rem;
}
#c-header .c-gn .c-contact .qcn2 img path,
#c-header .c-gn .c-contact .qcn2 svg path {
  fill: #fff;
  opacity: 1;
  stroke: none;
}
.textflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.textflow2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.textflow3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.textflow4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.textflow6 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}
.textflow7 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
}
.textflow10 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
}
.font80 {
  font-size: 0.8rem;
}
.font72 {
  font-size: 0.72rem;
}
.font60 {
  font-size: 0.6rem;
}
@media (max-width: 991px) {
  .font60 {
    font-size: 0.5rem;
  }
}
.font58 {
  font-size: 0.58rem;
}
@media (max-width: 991px) {
  .font58 {
    font-size: 0.5rem;
  }
}
.font56 {
  font-size: 0.56rem;
}
@media (max-width: 991px) {
  .font56 {
    font-size: 0.5rem;
  }
}
.font54 {
  font-size: 0.54rem;
}
@media (max-width: 991px) {
  .font54 {
    font-size: 0.5rem;
  }
}
.font52 {
  font-size: 0.52rem;
}
@media (max-width: 991px) {
  .font52 {
    font-size: 0.5rem;
  }
}
.font50 {
  font-size: 0.5rem;
}
.font48 {
  font-size: 0.48rem;
}
.font46 {
  font-size: 0.46rem;
}
.font44 {
  font-size: 0.44rem;
}
.font42 {
  font-size: 0.42rem;
}
.font40 {
  font-size: 0.4rem;
}
@media (max-width: 991px) {
  .font40 {
    font-size: 0.4rem;
  }
}
.font38 {
  font-size: 0.38rem;
}
@media (max-width: 991px) {
  .font38 {
    font-size: 0.4rem;
  }
}
.font36 {
  font-size: 0.36rem;
}
@media (max-width: 991px) {
  .font36 {
    font-size: 0.4rem;
  }
}
.font34 {
  font-size: 0.34rem;
}
@media (max-width: 991px) {
  .font34 {
    font-size: 0.4rem;
  }
}
.font32 {
  font-size: 0.32rem;
}
@media (max-width: 991px) {
  .font32 {
    font-size: 0.4rem;
  }
}
.font30 {
  font-size: 0.3rem;
}
@media (max-width: 991px) {
  .font30 {
    font-size: 0.4rem;
  }
}
.font28 {
  font-size: 0.28rem;
}
@media (max-width: 991px) {
  .font28 {
    font-size: 0.4rem;
  }
}
.font26 {
  font-size: 26px;
}
@media (max-width: 1580px) {
  .font26 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .font26 {
    font-size: 0.3rem;
  }
}
.font24 {
  font-size: 24px;
}
@media (max-width: 1580px) {
  .font24 {
    font-size: 22px;
  }
}
@media (max-width: 1260px) {
  .font24 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .font24 {
    font-size: 0.3rem;
  }
}
.font22 {
  font-size: 22px;
}
@media (max-width: 1580px) {
  .font22 {
    font-size: 18px;
  }
}
@media (max-width: 1260px) {
  .font22 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .font22 {
    font-size: 0.3rem;
  }
}
.font20 {
  font-size: 20px;
}
@media (max-width: 1580px) {
  .font20 {
    font-size: 18px;
  }
}
@media (max-width: 1260px) {
  .font20 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .font20 {
    font-size: 0.3rem;
  }
}
.font18 {
  font-size: 18px;
}
@media (max-width: 1580px) {
  .font18 {
    font-size: 16px;
  }
}
@media (max-width: 1260px) {
  .font18 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .font18 {
    font-size: 0.28rem;
  }
}
.font16 {
  font-size: 16px;
}
@media (max-width: 1580px) {
  .font16 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .font16 {
    font-size: 0.28rem;
  }
}
.font14 {
  font-size: 14px;
}
@media (max-width: 1580px) {
  .font14 {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .font14 {
    font-size: 0.24rem;
  }
}
.font12 {
  font-size: 12px;
}
.font-b {
  font-weight: bold;
}
.index-public-title {
  display: flex;
  justify-content: center;
}
@media (max-width: 991px) {
  .index-public-title .pcn0 {
    display: none;
  }
}
.index-public-title .pcn0:nth-child(1) svg,
.index-public-title .pcn0:nth-child(1) img {
  transform: translateY(0.05rem);
}
.index-public-title .pcn0:last-child svg,
.index-public-title .pcn0:last-child img {
  transform: translateY(0.2rem);
}
.index-public-title .pcn0 svg,
.index-public-title .pcn0 img {
  width: 1.86rem;
  height: 0.23rem;
}
.index-public-title .pcn0 .pcn0a {
  width: 2.4rem;
}
.index-public-title .pcn0 .pcn0b {
  line-height: 0.48rem;
}
.index-public-title .pcn0 .pcn0c {
  width: 0.4rem;
}
.index-public-title .pcn0 .pcn0d {
  width: 0.08rem;
}
.index-public-title .pcn1 {
  margin: 0 0.25rem;
  color: #003686;
  line-height: 0.48rem;
  text-align: center;
}
.public-btnbox {
  display: flex;
  align-items: center;
  justify-content: center;
}
.public-btnbox .public-btn {
  border: 1px solid #003686;
  line-height: 0.5rem;
  padding: 0 0.4rem;
  transition: all 0.5s;
  position: relative;
  background-color: #003686;
}
@media (max-width: 991px) {
  .public-btnbox .public-btn {
    padding: 0 0.6rem;
    line-height: 0.76rem;
  }
}
.public-btnbox .public-btn .img1 {
  position: absolute;
  top: -2px;
  left: 0.05rem;
  width: 0.18rem;
  height: 0.3rem;
}
@media (max-width: 991px) {
  .public-btnbox .public-btn .img1 {
    width: 0.27rem;
    height: 0.45rem;
  }
}
.public-btnbox .public-btn .img1 .cls-10 {
  fill: none;
  stroke: #003686;
  stroke-width: 1px;
  transition: all 0.5s;
}
.public-btnbox .public-btn .img1 .cls-20,
.public-btnbox .public-btn .img1 .cls-30 {
  fill: #003686;
  transition: all 0.5s;
}
.public-btnbox .public-btn .img1 .cls-20 {
  fill-rule: evenodd;
}
.public-btnbox .public-btn .img2 {
  position: absolute;
  bottom: -2px;
  right: 0.05rem;
  width: 0.18rem;
  height: 0.3rem;
}
@media (max-width: 991px) {
  .public-btnbox .public-btn .img2 {
    width: 0.27rem;
    height: 0.45rem;
  }
}
.public-btnbox .public-btn .img2 .cls-11 {
  fill: none;
  stroke: #003686;
  stroke-width: 1px;
  transition: all 0.5s;
}
.public-btnbox .public-btn .img2 .cls-21 {
  transition: all 0.5s;
  fill: #003686;
  fill-rule: evenodd;
}
.public-btnbox .public-btn .pbcn1 {
  text-align: center;
  color: #003686;
  transition: all 0.5s;
}
.public-btnbox .public-btn .img1 .cls-10 {
  stroke: #Fff;
}
.public-btnbox .public-btn .img1 .cls-20,
.public-btnbox .public-btn .img1 .cls-30 {
  fill: #Fff;
}
.public-btnbox .public-btn .img2 .cls-11 {
  fill: none;
  stroke: #fff;
  stroke-width: 1px;
}
.public-btnbox .public-btn .img2 .cls-21 {
  fill: #fff;
  fill-rule: evenodd;
}
.public-btnbox .public-btn .pbcn1 {
  color: #Fff;
}
.public-btnbox .public-btn:hover {
  opacity: 0.8;
}
.public-btn9 {
  display: flex;
  align-items: center;
  color: #000000;
  transition: all 0.5s;
}
.public-btn9 svg {
  margin-left: 0.1rem;
  width: 10px;
  height: 14px;
}
.public-btn9 svg path {
  fill: #000;
  opacity: 1;
  stroke: none;
  transition: all 0.5s;
}
.swiper-button-prev,
.swiper-button-next {
  background-color: #f5f5f5;
  position: absolute;
  right: 0.6rem;
  top: 0;
  left: initial;
  background-image: initial;
  width: 0.5rem;
  height: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  transition: all 0.5s;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 10px;
  height: 14px;
  transform: rotate(180deg);
}
.swiper-button-prev svg path,
.swiper-button-next svg path {
  fill: #909090;
  opacity: 1;
  stroke: none;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: #003686;
}
.swiper-button-prev:hover svg path,
.swiper-button-next:hover svg path {
  fill: #Fff;
}
.swiper-button-next {
  right: 0;
}
.swiper-button-next svg {
  transform: rotate(0deg);
}
.index-box1 {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 100vh;
}
@media (max-width: 991px) {
  .index-box1 {
    height: auto;
    margin-top: 1.2rem;
  }
}
.index-box1 .img {
  height: 100%;
}
@media (max-width: 991px) {
  .index-box1 .img {
    height: auto;
  }
}
.index-box1 .img::before {
  padding-top: 50%;
}
.index-box1 .dian {
  position: absolute;
  width: 1px;
  height: 1px;
  z-index: 2;
  cursor: pointer;
}
.index-box1 .dian:hover {
  z-index: 5;
}
.index-box1 .dian:hover .textbox {
  max-width: 2.5rem;
  opacity: 1;
  visibility: visible;
}
.index-box1 .dian .dianbox {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 0.24rem;
  height: 0.24rem;
  border-radius: 50%;
  background-color: #003686;
}
.index-box1 .dian .dianbox .dianbox4 {
  z-index: 2;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.24rem;
  height: 0.24rem;
  border-radius: 50%;
  background-color: #003686;
}
.index-box1 .dian .dianbox .dianbox2 {
  z-index: 3;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.08rem;
  height: 0.08rem;
  border-radius: 50%;
  background-color: #Ffffff;
}
.index-box1 .dian .dianbox .dianbox3 {
  z-index: -1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.24rem;
  height: 0.24rem;
  border-radius: 50%;
  opacity: 0.5;
  background-color: #003686;
  animation: dianscale 2s infinite linear;
}
.index-box1 .dian .textbox {
  position: absolute;
  left: calc(100% + 0.2rem);
  top: -0.2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  max-width: 0;
}
.index-box1 .dian .textbox .textbox2 {
  background-color: rgba(14, 54, 122, 0.8);
  display: flex;
  align-items: center;
  padding: 0.07rem 0.2rem;
  border-radius: 0.5rem;
  margin-top: 0.1rem;
}
.index-box1 .dian .textbox .textbox2:nth-child(1) {
  margin-top: 0;
}
.index-box1 .dian .textbox .textbox2 .cn1 {
  color: #fff;
  white-space: nowrap;
  line-height: 1.625em;
}
.index-box1 .dian .textbox .textbox2 svg {
  width: 7px;
  height: auto;
  margin-left: 0.22rem;
  transition: all 0.5s;
}
.index-box1 .dian .textbox .textbox2 svg path {
  fill: #fff;
  opacity: 1;
  stroke: none;
}
.index-box1 .dian .textbox .textbox2:hover svg {
  transform: translateX(0.05rem);
}
@keyframes dianscale {
  from {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2);
  }
}
.index-box2 {
  height: 350vh;
  width: 100%;
  position: relative;
}
.index-box2 .index-box2a {
  width: 100%;
  height: 100vh;
  position: -webkit-sticky;
  left: 0;
  top: 0;
  position: sticky;
  overflow: hidden;
}
.index-box2 .index-box2a .bgimg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.index-box2 .index-box2a .bgimg img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-box2 .index-box2a .bgimg video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-box2 .index-box2a .logoimg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transform-origin: 50% 25%;
  width: 101%;
  height: 101%;
  z-index: 2;
}
.index-box2 .index-box2a .logoimg img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-box2 .index-box2a .textbox {
  position: absolute;
  left: 0;
  bottom: 1.2rem;
  width: 100%;
  z-index: 3;
  opacity: 1;
  text-align: center;
}
.index-box2 .index-box2a .textbox .index-public-title .pcn1 {
  color: #000000;
}
.index-box2 .index-box2a .textbox .downbox {
  margin-top: 0.5rem;
}
.index-box2 .index-box2a .textbox .downbox .downimg1 {
  width: 0.3rem;
  height: 0.4rem;
  margin: 0 auto;
  position: relative;
}
.index-box2 .index-box2a .textbox .downbox .downimg1::before {
  content: "";
  top: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 0.16rem;
  background-color: #e6e6e6;
}
.index-box2 .index-box2a .textbox .downbox .downimg1 span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0.04rem;
  height: 0.1rem;
  border-radius: 0.02rem;
  background-color: #003686;
  top: 0.1rem;
  animation: mousesport 2s infinite ease-in-out;
}
.index-box2 .index-box2a .textbox .downbox .downimg1 img {
  width: 100%;
}
.index-box2 .index-box2a .textbox .downbox .downtext {
  margin-top: 0.16rem;
  line-height: 1em;
  text-align: center;
  color: #003686;
}
.index-box2 .index-box2a .videobox {
  z-index: 1;
  position: absolute;
  left: 50%;
  opacity: 0;
  top: 55%;
  transform: translate(-50%, -50%);
  width: 90%;
}
.index-box2 .index-box2a .videobox .videobtn {
  width: 1rem;
  height: 1rem;
  background-color: #003686;
  border-radius: 50%;
  position: relative;
  margin: 0 auto;
  cursor: pointer;
}
.index-box2 .index-box2a .videobox .videobtn .tu1 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 94%;
}
.index-box2 .index-box2a .videobox .videobtn .tu2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16%;
}
.index-box2 .index-box2a .videobox .videobtn .tu3 {
  z-index: -1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 400%;
  max-width: initial;
}
.index-box2 .index-box2a .videobox .vcn1 {
  z-index: 2;
  position: relative;
  text-align: center;
  color: #003686;
  line-height: 1.625em;
  margin-top: 0.17rem;
}
.index-box2 .index-box2a .infobox {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.89);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.index-box2 .index-box2a .infobox .container {
  background-color: rgba(255, 255, 255, 0.6);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border: solid 1px #e6e6e6;
}
.index-box2 .index-box2a .infobox .container .left {
  padding: 0.75rem 0.8rem 0.8rem;
  width: 47.5%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1260px) {
  .index-box2 .index-box2a .infobox .container .left {
    width: 35%;
    padding: 0.55rem 0.3rem 0.6rem;
  }
}
@media (max-width: 991px) {
  .index-box2 .index-box2a .infobox .container .left {
    width: 100%;
  }
}
.index-box2 .index-box2a .infobox .container .left .leftbox1 .cn1 {
  color: #003686;
  line-height: 1.25em;
}
@media (max-width: 767px) {
  .index-box2 .index-box2a .infobox .container .left .leftbox1 .cn1 {
    text-align: center;
  }
}
.index-box2 .index-box2a .infobox .container .left .leftbox1 .cn2 {
  color: #010101;
  line-height: 1.36363636em;
  margin-top: 0.3rem;
}
@media (max-width: 767px) {
  .index-box2 .index-box2a .infobox .container .left .leftbox1 .cn2 {
    text-align: center;
  }
}
.index-box2 .index-box2a .infobox .container .left .leftbox2 {
  margin-top: 0.3rem;
}
.index-box2 .index-box2a .infobox .container .left .leftbox2 .public-btnbox {
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .index-box2 .index-box2a .infobox .container .left .leftbox2 .public-btnbox {
    justify-content: center;
  }
}
.index-box2 .index-box2a .infobox .container .right {
  width: 52.5%;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
@media (max-width: 1260px) {
  .index-box2 .index-box2a .infobox .container .right {
    width: 65%;
  }
}
@media (max-width: 991px) {
  .index-box2 .index-box2a .infobox .container .right {
    width: 100%;
  }
}
.index-box2 .index-box2a .infobox .container .right table {
  width: 100%;
}
.index-box2 .index-box2a .infobox .container .right table tr:nth-child(1) td {
  border-top: 0;
}
@media (max-width: 991px) {
  .index-box2 .index-box2a .infobox .container .right table tr:nth-child(1) td {
    border-top: 1px solid #e6e6e6;
  }
}
.index-box2 .index-box2a .infobox .container .right table tr:nth-child(2) td {
  border-bottom: 0;
}
@media (max-width: 991px) {
  .index-box2 .index-box2a .infobox .container .right table tr td:nth-child(1) {
    border-left: 0;
  }
}
.index-box2 .index-box2a .infobox .container .right table tr td {
  border: 1px solid #e6e6e6;
}
.index-box2 .index-box2a .infobox .container .right .rightbox {
  width: calc(100% / 3);
  position: relative;
  overflow: initial;
  display: table-cell;
}
@media (max-width: 767px) {
  .index-box2 .index-box2a .infobox .container .right .rightbox::before {
    padding-top: 120%;
  }
}
.index-box2 .index-box2a .infobox .container .right .rightbox .rightbox2 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  padding: 0.8rem 0.4rem 0.4rem;
}
.index-box2 .index-box2a .infobox .container .right .rightbox .rightbox2:hover {
  background-color: #003686;
}
.index-box2 .index-box2a .infobox .container .right .rightbox .rightbox2:hover .cn1 .cn2 {
  color: #Fff;
}
.index-box2 .index-box2a .infobox .container .right .rightbox .rightbox2:hover .cn1 .cn3 {
  color: #Fff;
}
.index-box2 .index-box2a .infobox .container .right .rightbox .rightbox2:hover .cn4 {
  color: #Fff;
}
@media (max-width: 767px) {
  .index-box2 .index-box2a .infobox .container .right .rightbox .rightbox2 {
    padding: 0.3rem;
  }
}
.index-box2 .index-box2a .infobox .container .right .rightbox .rightbox2 .cn1 {
  display: flex;
  align-items: flex-end;
}
.index-box2 .index-box2a .infobox .container .right .rightbox .rightbox2 .cn1 .cn2 {
  transition: all 0.5s;
  line-height: 0.75em;
  color: #003686;
}
@media (max-width: 1260px) {
  .index-box2 .index-box2a .infobox .container .right .rightbox .rightbox2 .cn1 .cn2 {
    font-size: 0.5rem;
  }
}
@media (max-width: 991px) {
  .index-box2 .index-box2a .infobox .container .right .rightbox .rightbox2 .cn1 .cn2 {
    font-size: 0.44rem;
  }
}
.index-box2 .index-box2a .infobox .container .right .rightbox .rightbox2 .cn1 .cn3 {
  transition: all 0.5s;
  line-height: 1em;
  color: #003686;
}
@media (max-width: 991px) {
  .index-box2 .index-box2a .infobox .container .right .rightbox .rightbox2 .cn1 .cn3 {
    font-size: 0.24rem;
  }
}
.index-box2 .index-box2a .infobox .container .right .rightbox .rightbox2 .cn4 {
  width: 90%;
  margin-top: 0.3rem;
  color: #000000;
  transition: all 0.5s;
  line-height: 1.33333333em;
}
@media (max-width: 991px) {
  .index-box2 .index-box2a .infobox .container .right .rightbox .rightbox2 .cn4 {
    width: 100%;
  }
}
@keyframes mousesport {
  0% {
    top: 0.07rem;
  }
  50% {
    top: 0.15rem;
  }
  100% {
    top: 0.07rem;
  }
}
.index-box3 {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  overflow: hidden;
}
.index-box3 .public-btnbox {
  margin-top: 0.6rem;
}
@media (max-width: 767px) {
  .index-box3 .swiper-button-prev,
  .index-box3 .swiper-button-next {
    display: none;
  }
}
.index-box3 .containerindexbox3 {
  position: relative;
  overflow: hidden;
  margin: 0.6rem auto 0;
}
@media (max-width: 767px) {
  .index-box3 .containerindexbox3 {
    overflow: initial;
  }
}
.index-box3 .indexbox3swiper {
  position: relative;
  width: 40%;
  overflow: initial;
  margin: 0 auto 0;
}
@media (max-width: 767px) {
  .index-box3 .indexbox3swiper {
    width: 70%;
  }
}
@media (max-width: 991px) {
  .index-box3 .indexbox3swiper::before {
    padding-top: 130%;
  }
}
.index-box3 .indexbox3swiper .swiper-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  align-items: flex-end;
}
.index-box3 .indexbox3swiper .swiper-slide {
  position: relative;
  display: flex;
  align-items: flex-end;
}
.index-box3 .indexbox3swiper .swiper-slide.swiper-slide-prev .swiper-slidebox {
  margin: 0 0  0 30%;
}
.index-box3 .indexbox3swiper .swiper-slide .swiper-slidebox {
  background-color: #f5f5f5;
  position: relative;
  width: 70%;
  height: 70%;
  display: block;
  transition: all 0.5s;
  margin: 0 0 0 0%;
}
.index-box3 .indexbox3swiper .swiper-slide .swiper-slidebox::before {
  transition: all 0.5s;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border: 1px solid #e6e6e6;
}
.index-box3 .indexbox3swiper .swiper-slide.swiper-slide-active .swiper-slidebox {
  width: 100%;
  height: 100%;
}
.index-box3 .indexbox3swiper .swiper-slide.swiper-slide-active .swiper-slidebox .cn1 {
  font-size: 0.3rem;
}
@media (max-width: 991px) {
  .index-box3 .indexbox3swiper .swiper-slide.swiper-slide-active .swiper-slidebox .cn1 {
    font-size: 0.4rem;
  }
}
.index-box3 .indexbox3swiper .swiper-slide.swiper-slide-active .swiper-slidebox .cn2 {
  font-size: 18px;
}
@media (max-width: 1580px) {
  .index-box3 .indexbox3swiper .swiper-slide.swiper-slide-active .swiper-slidebox .cn2 {
    font-size: 16px;
  }
}
@media (max-width: 1260px) {
  .index-box3 .indexbox3swiper .swiper-slide.swiper-slide-active .swiper-slidebox .cn2 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .index-box3 .indexbox3swiper .swiper-slide.swiper-slide-active .swiper-slidebox .cn2 {
    font-size: 0.28rem;
  }
}
.index-box3 .indexbox3swiper .swiper-slide.swiper-slide-active .swiper-slidebox .cn3 {
  color: #003686;
  height: 0.3rem;
  opacity: 1;
  margin-top: 0.2rem;
}
.index-box3 .indexbox3swiper .swiper-slide.swiper-slide-active .swiper-slidebox .cn3 svg path {
  fill: #003686;
}
.index-box3 .indexbox3swiper .swiper-slide .img {
  position: absolute;
  width: 62.5%;
  left: 50%;
  transform: translateX(-50%);
  top: 23%;
  transition: all 0.5s;
  overflow: initial;
}
.index-box3 .indexbox3swiper .swiper-slide .img::before {
  padding-top: 50%;
}
.index-box3 .indexbox3swiper .swiper-slide .img2 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 1;
  width: 24.375%;
  transition: all 0.5s;
}
.index-box3 .indexbox3swiper .swiper-slide .img2 img {
  transition: all 0.5s;
  width: 100%;
}
.index-box3 .indexbox3swiper .swiper-slide .text {
  position: absolute;
  bottom: 0.6rem;
  left: 50%;
  transform: translate(-50%);
  text-align: center;
  z-index: 3;
  transition: all 0.5s;
  width: calc(100% - 0.3rem);
}
.index-box3 .indexbox3swiper .swiper-slide .text .cn1 {
  line-height: 1.33333333em;
  color: #000;
  margin-bottom: 0.1rem;
  transition: all 0.5s;
  font-size: 24px;
}
@media (max-width: 1580px) {
  .index-box3 .indexbox3swiper .swiper-slide .text .cn1 {
    font-size: 22px;
  }
}
@media (max-width: 1260px) {
  .index-box3 .indexbox3swiper .swiper-slide .text .cn1 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .index-box3 .indexbox3swiper .swiper-slide .text .cn1 {
    font-size: 0.3rem;
  }
}
.index-box3 .indexbox3swiper .swiper-slide .text .cn2 {
  line-height: 1.55555556em;
  color: #666;
  transition: all 0.5s;
  font-size: 16px;
}
@media (max-width: 1580px) {
  .index-box3 .indexbox3swiper .swiper-slide .text .cn2 {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .index-box3 .indexbox3swiper .swiper-slide .text .cn2 {
    font-size: 0.28rem;
  }
}
.index-box3 .indexbox3swiper .swiper-slide .text .cn3 {
  line-height: 0.3rem;
  height: 0;
  opacity: 0;
  margin-top: 0;
  justify-content: center;
  transition: all 0.5s;
}
.index-box3 .indexbox3swiper .swiper-slide:hover .img img {
  transform: scale(1.05);
}
.index-box3 .indexbox3swiper .swiper-slide:hover .text .cn1 {
  color: #003686;
  transition: all 0.5s;
}
.index-box3 .indexbox3swiper .swiper-slide:hover .text .cn3 {
  color: #003686;
  height: 0.3rem;
  opacity: 1;
  margin-top: 0.2rem;
}
.index-box3 .indexbox3swiper .swiper-slide:hover .text .cn3 svg path {
  fill: #003686;
}
.index-box4 {
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}
.index-box4 .index-box4a {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.index-box4 .index-box4a:nth-child(even) {
  flex-direction: row-reverse;
}
.index-box4 .index-box4a .left {
  width: 50%;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .index-box4 .index-box4a .left {
    padding: 1rem 0;
    width: 100% ;
  }
}
.index-box4 .index-box4a .left .left-box {
  width: 100%;
}
.index-box4 .index-box4a .left .left-box .cn1 {
  line-height: 1.25em;
  color: #000000;
}
@media (max-width: 991px) {
  .index-box4 .index-box4a .left .left-box .cn1 {
    font-size: 0.32rem;
  }
}
@media (max-width: 767px) {
  .index-box4 .index-box4a .left .left-box .cn1 {
    text-align: center;
    font-size: 0.4rem;
  }
}
.index-box4 .index-box4a .left .left-box .public-btnbox {
  margin-top: 0.6rem;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .index-box4 .index-box4a .left .left-box .public-btnbox {
    justify-content: center;
  }
}
.index-box4 .index-box4a .right {
  width: 50%;
}
@media (max-width: 767px) {
  .index-box4 .index-box4a .right {
    width: 100% ;
  }
}
.index-box4 .index-box4a .right .img {
  width: 100%;
}
.index-box4 .index-box4a .right .img::before {
  padding-top: 62.5%;
}
.index-box4 .index-box4a .right .img:hover img {
  transform: scale(1.05);
}
.index-box5 {
  padding: 1.2rem 0 0;
}
.index-box5 .public-btnbox {
  margin-top: 0.6rem;
}
.index-box6 {
  padding: 1.15rem 0 1.2rem;
}
.index-box6 .public-btnbox {
  margin-top: 0.4rem;
}
.footer {
  background-color: #f5f5f5;
  padding: 1.2rem 0 0;
}
.footer .container .box1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e4e4e4;
}
.footer .container .box1 .footernav {
  display: flex;
  width: 60.9375%;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 1260px) {
  .footer .container .box1 .footernav {
    width: 67%;
  }
}
@media (max-width: 991px) {
  .footer .container .box1 .footernav {
    display: none;
  }
}
.footer .container .box1 .footernav .footernavli {
  max-width: 30%;
}
.footer .container .box1 .footernav .footernavli .footernavp .font20 {
  color: #000000;
  line-height: 1.5em;
  transition: all 0.5s;
}
.footer .container .box1 .footernav .footernavli .footernavp .font20:hover {
  color: #003686;
}
.footer .container .box1 .footernav .footernavli .footernavp img {
  display: none;
}
.footer .container .box1 .footernav .footernavli .footernav2ul {
  margin-top: 0.2rem;
}
.footer .container .box1 .footernav .footernavli .footernav2ul .footernav2li {
  margin-bottom: 0.05rem;
}
.footer .container .box1 .footernav .footernavli .footernav2ul .footernav2li .footernav2a {
  color: #666666;
  line-height: 1.625em;
  transition: all 0.5s;
}
.footer .container .box1 .footernav .footernavli .footernav2ul .footernav2li .footernav2a:hover {
  color: #003686;
}
.footer .container .box1 .footerinfobox {
  width: 20%;
}
@media (max-width: 1260px) {
  .footer .container .box1 .footerinfobox {
    width: 28%;
  }
}
@media (max-width: 991px) {
  .footer .container .box1 .footerinfobox {
    width: 100%;
  }
}
.footer .container .box1 .footerinfobox .pbox1 {
  margin-top: 0.2rem;
}
.footer .container .box1 .footerinfobox .pbox1:nth-child(1) {
  margin-top: 0;
}
.footer .container .box1 .footerinfobox .pcn1 {
  color: #003686;
  line-height: 1.625em;
}
.footer .container .box1 .footerinfobox .pcn2 {
  color: #003686;
  line-height: 1.27777778em;
}
.footer .container .box1 .footerinfobox .pcn3 {
  color: #000;
  line-height: 1.5em;
}
.footer .container .box2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.2rem 0 0.2rem;
  border-bottom: 1px solid #e4e4e4;
}
.footer .container .box2 .footerlink {
  display: flex;
  flex-wrap: wrap;
  width: 60.9375%;
}
@media (max-width: 1260px) {
  .footer .container .box2 .footerlink {
    width: 67%;
  }
}
@media (max-width: 767px) {
  .footer .container .box2 .footerlink {
    width: 100%;
  }
}
.footer .container .box2 .footerlink .cn1 {
  color: #003686;
  line-height: 1.625em;
}
.footer .container .box2 .footerlink .cn2 {
  color: #666666;
  line-height: 1.625em;
  margin-right: 0.2rem;
  transition: all 0.5s;
}
.footer .container .box2 .footerlink .cn2:hover {
  color: #003686;
}
.footer .container .box2 .footerqrcode {
  width: 20%;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1260px) {
  .footer .container .box2 .footerqrcode {
    width: 28%;
  }
}
@media (max-width: 767px) {
  .footer .container .box2 .footerqrcode {
    margin-top: 0.3rem;
    width: 100%;
  }
}
.footer .container .box2 .footerqrcode .cn1 {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #e6e6e6;
  transition: all 0.5s;
  margin-right: 0.2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  margin-top: 0.1rem;
  margin-bottom: 0.1rem;
}
@media (max-width: 767px) {
  .footer .container .box2 .footerqrcode .cn1 {
    width: 0.76rem;
    height: 0.76rem;
  }
}
.footer .container .box2 .footerqrcode .cn1 .img {
  width: 100%;
  height: 100%;
}
.footer .container .box2 .footerqrcode .cn1 .img svg,
.footer .container .box2 .footerqrcode .cn1 .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer .container .box2 .footerqrcode .cn1 .img svg path,
.footer .container .box2 .footerqrcode .cn1 .img img path {
  fill: #999;
  opacity: 1;
  stroke: none;
  transition: all 0.5s;
}
.footer .container .box2 .footerqrcode .cn1 .cn2 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 100%;
  transition: all 0.5s;
  width: 1rem;
  padding-bottom: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}
.footer .container .box2 .footerqrcode .cn1 .cn2 .cn3 {
  box-shadow: 0 0 10px #ccc;
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
.footer .container .box2 .footerqrcode .cn1 .cn2 img {
  width: 90%;
  height: 90%;
  object-fit: cover;
}
.footer .container .box2 .footerqrcode .cn1:hover {
  background-color: #003686;
}
.footer .container .box2 .footerqrcode .cn1:hover .img svg path {
  fill: #Fff;
}
.footer .container .box2 .footerqrcode .cn1:hover .cn2 {
  opacity: 1;
  visibility: visible;
}
.footer .container .box3 {
  padding: 0.3rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer .container .box3 .footerinfo1 {
  width: 60.9375%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 1260px) {
  .footer .container .box3 .footerinfo1 {
    width: 67%;
  }
}
@media (max-width: 991px) {
  .footer .container .box3 .footerinfo1 {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
.footer .container .box3 .footerinfo1 p {
  color: #999999;
  padding-right: 0.05rem;
  position: relative;
  line-height: 1.71428571em;
}
.footer .container .box3 .footerinfo1 p::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 0.14rem;
  background-color: #999;
}
@media (max-width: 991px) {
  .footer .container .box3 .footerinfo1 p::before {
    display: none;
  }
}
.footer .container .box3 .footerinfo1 a {
  line-height: 1.71428571em;
  padding: 0 0.05rem;
  color: #999999;
  position: relative;
  transition: all 0.5s;
}
.footer .container .box3 .footerinfo1 a:hover {
  color: #003686;
}
.footer .container .box3 .footerinfo1 a:last-child {
  padding-right: 0;
}
.footer .container .box3 .footerinfo1 a:last-child::before {
  display: none;
}
.footer .container .box3 .footerinfo1 a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 0.14rem;
  background-color: #999;
}
.footer .container .box3 .footerinfo2 {
  width: 20%;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1260px) {
  .footer .container .box3 .footerinfo2 {
    width: 28%;
  }
}
@media (max-width: 991px) {
  .footer .container .box3 .footerinfo2 {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
.footer .container .box3 .footerinfo2 .cn1 {
  line-height: 1.71428571em;
  color: #999999;
}
.footer .container .box3 .footerinfo2 .cn2 {
  line-height: 1.71428571em;
  margin: 0 0.3rem;
  color: #999999;
}
.footer .container .box3 .footerinfo2 .cn2:last-child {
  display: none;
}
.public-aside {
  display: none;
  position: fixed;
  right: 0.3rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  border: solid 1px #e6e6e6;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
}
@media (max-width: 991px) {
  .public-aside {
    right: 0.1rem;
  }
}
.public-aside .pbox {
  width: 0.7rem;
  height: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #fff;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  .public-aside .pbox {
    width: 1rem;
    height: 1rem;
  }
}
@media (max-width: 767px) {
  .public-aside .pbox {
    width: 0.8rem;
    height: 0.8rem;
  }
}
.public-aside .pbox:hover {
  background-color: #003686;
}
.public-aside .pbox:hover .pbox2 .pimg svg path {
  fill: #fff;
}
.public-aside .pbox:hover .pbox2 .text {
  color: #Fff;
}
.public-aside .pbox::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background-color: #e6e6e6;
}
.public-aside .pbox:nth-child(1)::before {
  display: none;
}
.public-aside .pbox .pbox2 {
  padding-top: 0.05rem;
}
.public-aside .pbox .pbox2 .pimg {
  text-align: center;
  display: flex;
  align-items: center;
  height: 0.2rem;
  width: auto;
  justify-content: center;
}
@media (max-width: 991px) {
  .public-aside .pbox .pbox2 .pimg {
    height: 35%;
  }
}
@media (max-width: 767px) {
  .public-aside .pbox .pbox2 .pimg {
    height: 0.3rem;
  }
}
.public-aside .pbox .pbox2 .pimg svg,
.public-aside .pbox .pbox2 .pimg img {
  height: 100%;
  width: auto;
}
.public-aside .pbox .pbox2 .pimg svg path,
.public-aside .pbox .pbox2 .pimg img path {
  fill: #666666;
  opacity: 1;
  stroke: none;
  transition: all 0.5s;
}
.public-aside .pbox .pbox2 .text {
  transition: all 0.5s;
  color: #666666;
  line-height: 1.71428571em;
}
@media (max-width: 991px) {
  .public-aside .pbox .pbox2 .text {
    display: none;
  }
}
.public-aside .pbox:hover .pimg2 {
  opacity: 1;
  visibility: visible;
}
.public-aside .pbox .pimg2 {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  position: absolute;
  right: calc(100% + 0.16rem);
  bottom: 0;
  padding: 0.28rem;
  width: 2.65rem;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.05));
  /* box-shadow: 0px 0px 30px 0px rgba(55, 79, 163, 0.16); */
  background: url(../images/popbj.png) no-repeat;
  background-size: 100% 100%;
}
@media (max-width: 991px) {
  .public-aside .pbox .pimg2 {
    width: 3.4rem;
  }
}
.public-aside .pbox .pimg2 .g_t {
  margin-bottom: 0.15rem;
  border-bottom: 1px solid #E6E6E6;
  padding-bottom: 0.18rem;
}
.public-aside .pbox .pimg2 .g_t .telimg {
  display: flex;
  align-items: center;
}
.public-aside .pbox .pimg2 .g_t .telimg i {
  margin-right: 0.1rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.2rem;
  height: auto;
  color: #070707;
}
@media (max-width: 1260px) {
  .public-aside .pbox .pimg2 .g_t .telimg i {
    width: 0.22rem;
  }
}
@media (max-width: 767px) {
  .public-aside .pbox .pimg2 .g_t .telimg i {
    width: 0.26rem;
  }
}
.public-aside .pbox .pimg2 .g_t .telimg i svg,
.public-aside .pbox .pimg2 .g_t .telimg i img {
  width: 100%;
  height: auto;
}
.public-aside .pbox .pimg2 .g_t .telimg i svg path,
.public-aside .pbox .pimg2 .g_t .telimg i img path {
  fill: #070707;
}
.public-aside .pbox .pimg2 .g_t .telimg p span {
  color: #666;
}
.public-aside .pbox .pimg2 .g_t .teltxt {
  margin-top: 5px;
  padding-left: 0.3rem;
}
.public-aside .pbox .pimg2 .g_t .teltxt p {
  color: #003686;
}
.public-news-list {
  margin-top: 0.15rem;
}
.public-news-list .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .public-news-list .swiper-wrapper {
    justify-content: space-between;
  }
}
.public-news-list .swiper-wrapper .swiper-slide {
  margin-top: 0.5rem;
  margin-right: 0.5rem;
  width: calc((100% - 1rem) / 3);
}
@media (max-width: 991px) {
  .public-news-list .swiper-wrapper .swiper-slide {
    margin-right: 0;
    width: calc(50% - 0.25rem);
  }
}
@media (max-width: 767px) {
  .public-news-list .swiper-wrapper .swiper-slide {
    width: 100%;
  }
}
.public-news-list .swiper-wrapper .swiper-slide:nth-child(3n) {
  margin-right: 0;
}
.public-news-list .swiper-wrapper .swiper-slide:nth-child(4) {
  display: none;
}
@media (max-width: 991px) {
  .public-news-list .swiper-wrapper .swiper-slide:nth-child(4) {
    display: block;
  }
}
.public-news-list .swiper-wrapper .swiper-slide .pimg::before {
  padding-top: 60%;
}
.public-news-list .swiper-wrapper .swiper-slide .ptext {
  padding: 0.45rem 0.5rem;
  border: solid 1px #e6e6e6;
}
.public-news-list .swiper-wrapper .swiper-slide .ptext .pcn1 {
  color: #999999;
  line-height: 1.625em;
}
.public-news-list .swiper-wrapper .swiper-slide .ptext .pcn2 {
  margin-top: 0.2rem;
  color: #000000;
  line-height: 1.33333333em;
  height: 2.66666667em;
}
.public-news-list .swiper-wrapper .swiper-slide .ptext .pcn3 {
  width: 100%;
  height: 1px;
  margin-top: 0.3rem;
  background-color: #e6e6e6;
  position: relative;
}
.public-news-list .swiper-wrapper .swiper-slide .ptext .pcn3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #003686;
  transition: all 0.5s;
}
.public-news-list .swiper-wrapper .swiper-slide .ptext .pcn4 {
  margin-top: 0.4rem;
}
.public-news-list .swiper-wrapper .swiper-slide:hover .pimg img {
  transform: scale(1.05);
}
.public-news-list .swiper-wrapper .swiper-slide:hover .ptext .pcn2 {
  color: #003686;
}
.public-news-list .swiper-wrapper .swiper-slide:hover .ptext .pcn3::before {
  width: 100%;
}
.public-news-list .swiper-wrapper .swiper-slide:hover .ptext .pcn4 {
  color: #003686;
}
.public-news-list .swiper-wrapper .swiper-slide:hover .ptext .pcn4 svg path {
  fill: #003686;
}
.public-product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.public-product-list .pbox {
  margin-top: 0.3rem;
  width: calc(50% - 0.15rem);
  position: relative;
}
@media (max-width: 767px) {
  .public-product-list .pbox {
    width: 100%;
  }
}
.public-product-list .pbox .pimg {
  border: solid 1px #e6e6e6;
}
.public-product-list .pbox .pimg::before {
  padding-top: 64%;
}
@media (max-width: 991px) {
  .public-product-list .pbox .pimg::before {
    padding-top: 100%;
  }
}
.public-product-list .pbox .ptext {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0.55rem;
  width: 50%;
  z-index: 3;
  text-align: center;
}
@media (max-width: 991px) {
  .public-product-list .pbox .ptext {
    width: calc(100% - 0.6rem);
  }
}
.public-product-list .pbox .ptext .pcn1 {
  color: #000000;
  line-height: 1.33333333em;
  margin-bottom: 0.1rem;
}
.public-product-list .pbox .ptext .pcn2 {
  margin-bottom: 0.2rem;
  color: #666666;
  line-height: 1.5em;
  height: 3em;
}
.public-product-list .pbox .ptext .pcn4 {
  justify-content: center;
}
.public-product-list .pbox:hover .pimg img {
  transform: scale(1.05);
}
.public-product-list .pbox:hover .pcn4 {
  color: #003686;
}
.public-product-list .pbox:hover .pcn4 svg path {
  fill: #003686;
}
.index-public-title2 .pcn0 svg path {
  fill: #fff;
}
.index-public-title2 .pcn1 {
  color: #fff;
}
.curtain1 {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  display: none;
}
.curtain1 .mask {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  position: absolute;
  top: 0;
  left: 0;
}
.curtain1 .curtain_box {
  position: absolute;
  max-width: 90%;
  max-height: 90%;
  left: 50%;
  top: 50%;
  overflow: hidden;
  z-index: 10000;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .curtain1 .curtain_box {
    width: 90%;
  }
}
.curtain1 .curtain_box .curtain_title {
  position: relative;
  padding: 0 30px;
  background: #1c4798;
}
.curtain1 .curtain_box .curtain_title .close_tc {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 60px;
  cursor: pointer;
  z-index: 10000;
}
@media screen and (max-width: 767px) {
  .curtain1 .curtain_box .curtain_title .close_tc {
    width: 40px;
    height: 40px;
  }
}
.curtain1 .curtain_box .curtain_title .close_tc::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -10px;
  width: 20px;
  height: 2px;
  background: #999999;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.curtain1 .curtain_box .curtain_title .close_tc::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -10px;
  width: 20px;
  height: 2px;
  background: #999999;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.curtain1 .curtain_box .curtain_con {
  max-height: 90vh;
  overflow: auto;
}
.popkill {
  width: 8.6rem;
}
@media (max-width: 1580px) {
  .popkill {
    width: 10rem;
  }
}
@media (max-width: 991px) {
  .popkill {
    width: 100%;
  }
}
.popkill .contw {
  background: #ffffff;
  padding: 0.55rem 0 0.6rem;
}
.popkill .contw .box {
  margin-top: 0.26rem;
}
.popkill .contw .box form .inp_box .inp_txt {
  margin-bottom: 0.14rem;
}
.popkill .contw .box form .inptext {
  margin-bottom: 0.1rem;
}
.popkill .contw .box form .inptext textarea {
  height: 1.5rem;
}
/* 下拉 */
#c-header .c-nav li .pro_nav2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: #f8f8f8;
  border-radius: 0 0 0.2rem 0.2rem;
  box-shadow: 0 6px 29px rgba(211, 211, 211, 0.08);
  padding: 10px 0;
  display: none;
  width: auto;
  white-space: nowrap;
}
#c-header .c-nav li .pro_nav2 > a {
  min-height: 0.6rem;
  padding: 0.07rem 0.3rem;
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
  margin: 5px 10px;
  line-height: 1.5;
  border-radius: 0.15rem;
  -webkit-transition: all 0.6s;
}
#c-header .c-nav li .pro_nav2 > a:hover {
  background: #fff;
}
#c-header .c-nav li .pro_nav3 {
  line-height: 1.5;
  border-top: 1px solid #E6E6E6;
  display: none;
  /* display: block !important; */
  position: absolute;
  width: 100%;
  height: auto;
  top: calc(100%);
  left: 0;
  text-align: left;
  background: #fff;
}
#c-header .c-nav li .pro_nav3 .pro_nav3_box {
  margin: auto;
  padding: 0.8rem 0 0;
  width: 90%;
  max-width: 1600px;
}
@media (max-width: 1260px) {
  #c-header .c-nav li .pro_nav3 .pro_nav3_box {
    width: 90%;
  }
}
#c-header .c-nav li .pro_nav3 .abonav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0.8rem 0;
}
#c-header .c-nav li .pro_nav3 .abonav .gl {
  width: 31.25%;
}
#c-header .c-nav li .pro_nav3 .abonav .gr {
  display: flex;
  justify-content: space-between;
  width: 68.75%;
}
#c-header .c-nav li .pro_nav3 .abonav .gr .left {
  width: 54.54545455%;
  border-left: 1px solid #E6E6E6;
  padding: 0 1rem 0.1rem;
}
#c-header .c-nav li .pro_nav3 .abonav .gr .left a {
  text-align: left;
  display: flex !important;
  align-items: center;
  margin-bottom: 0.25rem;
  /* &:hover{
							p{
								color: @color1;
							}
						} */
}
#c-header .c-nav li .pro_nav3 .abonav .gr .left a:hover p {
  color: #003686;
}
#c-header .c-nav li .pro_nav3 .abonav .gr .left a:hover i {
  opacity: 1;
}
#c-header .c-nav li .pro_nav3 .abonav .gr .left a:last-child {
  margin-bottom: 0;
}
#c-header .c-nav li .pro_nav3 .abonav .gr .left a p {
  transition: all 0.4s;
}
#c-header .c-nav li .pro_nav3 .abonav .gr .left a i {
  transition: all 0.4s;
  opacity: 0;
  margin-left: 0.1rem;
  /* transform: rotate(-90deg); */
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.12rem;
  height: auto;
  color: #003686;
}
@media (max-width: 1260px) {
  #c-header .c-nav li .pro_nav3 .abonav .gr .left a i {
    width: 0.22rem;
  }
}
@media (max-width: 767px) {
  #c-header .c-nav li .pro_nav3 .abonav .gr .left a i {
    width: 0.26rem;
  }
}
#c-header .c-nav li .pro_nav3 .abonav .gr .left a i svg,
#c-header .c-nav li .pro_nav3 .abonav .gr .left a i img {
  margin-left: 0;
  width: 100%;
  height: auto;
}
#c-header .c-nav li .pro_nav3 .abonav .gr .left a i svg path,
#c-header .c-nav li .pro_nav3 .abonav .gr .left a i img path {
  fill: #003686;
}
#c-header .c-nav li .pro_nav3 .abonav .gr .right {
  width: 45.45454545%;
  border-left: 1px solid #E6E6E6;
  padding: 0 1rem;
}
#c-header .c-nav li .pro_nav3 .abonav .gr .right .g_lab_box {
  margin-bottom: 0.45rem;
}
#c-header .c-nav li .pro_nav3 .abonav .gr .right .g_lab {
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
}
#c-header .c-nav li .pro_nav3 .abonav .gr .right .g_lab i {
  margin-right: 0.15rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: #003686;
  color: #003686;
}
#c-header .c-nav li .pro_nav3 .abonav .gr .right .g_lab i svg,
#c-header .c-nav li .pro_nav3 .abonav .gr .right .g_lab i img {
  width: 50%;
  height: auto;
}
#c-header .c-nav li .pro_nav3 .abonav .gr .right .g_lab i svg path,
#c-header .c-nav li .pro_nav3 .abonav .gr .right .g_lab i img path {
  fill: #fff;
}
#c-header .c-nav li .pro_nav3 .abonav .gr .right .g_lab p {
  color: #666;
}
#c-header .c-nav li .pro_nav3 .abonav .gr .right .public-btnbox {
  justify-content: flex-start;
}
#c-header .c-nav li .pro_nav3 .cpnav {
  flex-direction: column;
}
#c-header .c-nav li .pro_nav3 .cpnav .cpnav_box {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#c-header .c-nav li .pro_nav3 .cpnav .cpnav_box .gl {
  margin-bottom: 0.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  border-right: 1px solid #e6e6e6;
  width: 21.875%;
}
#c-header .c-nav li .pro_nav3 .cpnav .cpnav_box .gl .gl_t {
  width: 100%;
}
#c-header .c-nav li .pro_nav3 .cpnav .cpnav_box .gl .gl_t a {
  display: flex;
  justify-content: space-between;
  transition: all 0.4s;
  padding: 0.18rem 0.3rem;
}
#c-header .c-nav li .pro_nav3 .cpnav .cpnav_box .gl .gl_t a.on {
  color: #003686;
  background: #edf0f7;
}
#c-header .c-nav li .pro_nav3 .cpnav .cpnav_box .gl .gl_t a.on i {
  opacity: 1;
}
#c-header .c-nav li .pro_nav3 .cpnav .cpnav_box .gl .gl_t a:hover p {
  color: #003686;
}
#c-header .c-nav li .pro_nav3 .cpnav .cpnav_box .gl .gl_t a p {
  transition: all 0.4s;
}
#c-header .c-nav li .pro_nav3 .cpnav .cpnav_box .gl .gl_t a i {
  opacity: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  color: #003686;
}
#c-header .c-nav li .pro_nav3 .cpnav .cpnav_box .gl .gl_t a i svg,
#c-header .c-nav li .pro_nav3 .cpnav .cpnav_box .gl .gl_t a i img {
  width: 0.15rem;
  height: auto;
}
#c-header .c-nav li .pro_nav3 .cpnav .cpnav_box .gl .gl_t a i svg path,
#c-header .c-nav li .pro_nav3 .cpnav .cpnav_box .gl .gl_t a i img path {
  fill: #003686;
}
#c-header .c-nav li .pro_nav3 .cpnav .cpnav_box .gl .gl_b {
  margin-top: 0.4rem;
}
#c-header .c-nav li .pro_nav3 .cpnav .cpnav_box .gl .gl_b .public-btnbox {
  justify-content: flex-start;
}
#c-header .c-nav li .pro_nav3 .cpnav .cpnav_box .gr {
  padding-bottom: 0.15rem;
  width: 75%;
}
#c-header .c-nav li .pro_nav3 .cpnav .cpnav_box .gr .cpnav_con {
  /* display: none; */
}
#c-header .c-nav li .pro_nav3 .cpnav .cpnav_box .gr .cpnav_con .cpnav_nr {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.25rem;
}
#c-header .c-nav li .pro_nav3 .cpnav .cpnav_box .gr .cpnav_con .cpnav_nr .item {
  width: 25%;
  margin-bottom: 0.25rem;
  padding: 0 0.25rem;
}
@media (max-width: 991px) {
  #c-header .c-nav li .pro_nav3 .cpnav .cpnav_box .gr .cpnav_con .cpnav_nr .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  #c-header .c-nav li .pro_nav3 .cpnav .cpnav_box .gr .cpnav_con .cpnav_nr .item {
    width: 100%;
  }
}
#c-header .c-nav li .pro_nav3 .cpnav .cpnav_box .gr .cpnav_con .cpnav_nr .item:hover .public-img img {
  transform: scale(1.05);
}
#c-header .c-nav li .pro_nav3 .cpnav .cpnav_box .gr .cpnav_con .cpnav_nr .item:hover .txt h3 {
  color: #003686 !important;
}
#c-header .c-nav li .pro_nav3 .cpnav .cpnav_box .gr .cpnav_con .cpnav_nr .item .itembox {
  display: block;
  width: 100%;
  height: 100%;
}
#c-header .c-nav li .pro_nav3 .cpnav .cpnav_box .gr .cpnav_con .cpnav_nr .item .itembox .gr_scheme_it2 .txt {
  margin-top: 0.18rem;
}
#c-header .c-nav li .pro_nav3 .cpnav .cpnav_box .gr .cpnav_con .cpnav_nr .item .itembox .gr_scheme_it2 .txt .g_p {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #666;
}
#c-header .c-nav li .pro_nav3 .cpnav .cpnav_box .gr .cpnav_con .cpnav_nr .item .itembox .gr_scheme_it2 .img {
  background: url(../images/solution10.jpg) no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.25rem;
  border: 1px solid #e6e6e6;
  width: 100%;
  min-height: 1.5rem;
}
@media (max-width: 1580px) {
  #c-header .c-nav li .pro_nav3 .cpnav .cpnav_box .gr .cpnav_con .cpnav_nr .item .itembox .gr_scheme_it2 .img {
    min-height: 1.8rem;
  }
}
@media (max-width: 1260px) {
  #c-header .c-nav li .pro_nav3 .cpnav .cpnav_box .gr .cpnav_con .cpnav_nr .item .itembox .gr_scheme_it2 .img {
    min-height: 1.5rem;
    padding: 0 0.2rem;
  }
}
@media (max-width: 767px) {
  #c-header .c-nav li .pro_nav3 .cpnav .cpnav_box .gr .cpnav_con .cpnav_nr .item .itembox .gr_scheme_it2 .img {
    padding: 0 0.4rem;
  }
}
#c-header .c-nav li .pro_nav3 .cpnav .cpnav_box .gr .cpnav_con .cpnav_nr .item .itembox .gr_scheme_it2 .img .public-img {
  width: 100%;
  overflow: initial;
}
#c-header .c-nav li .pro_nav3 .cpnav .cpnav_box .gr .cpnav_con .cpnav_nr .item .itembox .gr_scheme_it2 .img .public-img:before {
  padding-top: 60%;
}
@media (max-width: 767px) {
  #c-header .c-nav li .pro_nav3 .cpnav .cpnav_box .gr .cpnav_con .cpnav_nr .item .itembox .gr_scheme_it2 .img .public-img:before {
    padding-top: 100%;
  }
}
#c-header .c-nav li .pro_nav3 .cpnav .cpnav_box .gr .cpnav_con .cpnav_nr .item .itembox .gr_scheme_it2 .img .public-img img {
  /* box-shadow: 0 0.25rem 0.25rem rgba(135,135,135,0.25); */
  object-fit: contain;
  /* height: auto; */
  top: 50%;
  transform: translateY(-50%);
}
#c-header .c-nav li .pro_nav3 .cpnav .solnav_all {
  display: flex;
  justify-content: center;
  padding: 0.4rem 0;
  border-top: 1px solid #E6E6E6;
}
#c-header .c-nav li .pro_nav3 .solnav {
  flex-direction: column;
}
#c-header .c-nav li .pro_nav3 .solnav .solnav_box {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#c-header .c-nav li .pro_nav3 .solnav .solnav_box .gl {
  margin-bottom: 0.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  border-right: 1px solid #e6e6e6;
  width: 21.875%;
}
#c-header .c-nav li .pro_nav3 .solnav .solnav_box .gl .gl_t {
  width: 100%;
}
#c-header .c-nav li .pro_nav3 .solnav .solnav_box .gl .gl_t a {
  display: flex;
  justify-content: space-between;
  transition: all 0.4s;
  padding: 0.18rem 0.3rem;
}
#c-header .c-nav li .pro_nav3 .solnav .solnav_box .gl .gl_t a.on {
  color: #003686;
  background: #edf0f7;
}
#c-header .c-nav li .pro_nav3 .solnav .solnav_box .gl .gl_t a.on i {
  opacity: 1;
}
#c-header .c-nav li .pro_nav3 .solnav .solnav_box .gl .gl_t a:hover p {
  color: #003686;
}
#c-header .c-nav li .pro_nav3 .solnav .solnav_box .gl .gl_t a p {
  transition: all 0.4s;
}
#c-header .c-nav li .pro_nav3 .solnav .solnav_box .gl .gl_t a i {
  opacity: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  color: #003686;
}
#c-header .c-nav li .pro_nav3 .solnav .solnav_box .gl .gl_t a i svg,
#c-header .c-nav li .pro_nav3 .solnav .solnav_box .gl .gl_t a i img {
  width: 0.15rem;
  height: auto;
}
#c-header .c-nav li .pro_nav3 .solnav .solnav_box .gl .gl_t a i svg path,
#c-header .c-nav li .pro_nav3 .solnav .solnav_box .gl .gl_t a i img path {
  fill: #003686;
}
#c-header .c-nav li .pro_nav3 .solnav .solnav_box .gl .gl_b {
  margin-top: 0.4rem;
}
#c-header .c-nav li .pro_nav3 .solnav .solnav_box .gl .gl_b .public-btnbox {
  justify-content: flex-start;
}
#c-header .c-nav li .pro_nav3 .solnav .solnav_box .gr {
  padding-bottom: 0.15rem;
  width: 75%;
}
#c-header .c-nav li .pro_nav3 .solnav .solnav_box .gr .solnav_con {
  /* display: none; */
}
#c-header .c-nav li .pro_nav3 .solnav .solnav_box .gr .solnav_nr {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.25rem;
}
#c-header .c-nav li .pro_nav3 .solnav .solnav_box .gr .solnav_nr .item {
  width: 25%;
  margin-bottom: 0.25rem;
  padding: 0 0.25rem;
}
@media (max-width: 991px) {
  #c-header .c-nav li .pro_nav3 .solnav .solnav_box .gr .solnav_nr .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  #c-header .c-nav li .pro_nav3 .solnav .solnav_box .gr .solnav_nr .item {
    width: 100%;
  }
}
#c-header .c-nav li .pro_nav3 .solnav .solnav_box .gr .solnav_nr .item:hover .public-img img {
  transform: scale(1.05);
}
#c-header .c-nav li .pro_nav3 .solnav .solnav_box .gr .solnav_nr .item:hover .txt h3 {
  color: #003686 !important;
}
#c-header .c-nav li .pro_nav3 .solnav .solnav_box .gr .solnav_nr .item .itembox {
  display: block;
  width: 100%;
  height: 100%;
}
#c-header .c-nav li .pro_nav3 .solnav .solnav_box .gr .solnav_nr .item .itembox .gr_scheme_it2 .txt {
  margin-top: 0.18rem;
}
#c-header .c-nav li .pro_nav3 .solnav .solnav_box .gr .solnav_nr .item .itembox .gr_scheme_it2 .txt .g_p {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #666;
}
#c-header .c-nav li .pro_nav3 .solnav .solnav_box .gr .solnav_nr .item .itembox .gr_scheme_it2 .img .public-img {
  width: 100%;
}
#c-header .c-nav li .pro_nav3 .solnav .solnav_box .gr .solnav_nr .item .itembox .gr_scheme_it2 .img .public-img:before {
  padding-top: 60%;
}
#c-header .c-nav li .pro_nav3 .solnav .solnav_all {
  display: flex;
  justify-content: center;
  padding: 0.4rem 0;
  border-top: 1px solid #E6E6E6;
}
#c-header .c-nav li .pro_nav3 .newnav {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0.8rem 0;
}
#c-header .c-nav li .pro_nav3 .newnav .gl {
  width: 31.25%;
}
#c-header .c-nav li .pro_nav3 .newnav .gr {
  display: flex;
  justify-content: space-between;
  width: 68.75%;
}
#c-header .c-nav li .pro_nav3 .newnav .gr .left {
  width: 54.54545455%;
  border-left: 1px solid #E6E6E6;
  padding: 0 1rem 0.1rem;
}
#c-header .c-nav li .pro_nav3 .newnav .gr .left a {
  text-align: left;
  display: flex !important;
  align-items: center;
  margin-bottom: 0.25rem;
}
#c-header .c-nav li .pro_nav3 .newnav .gr .left a:hover p {
  color: #003686;
}
#c-header .c-nav li .pro_nav3 .newnav .gr .left a.on p {
  color: #003686;
}
#c-header .c-nav li .pro_nav3 .newnav .gr .left a.on i {
  opacity: 1;
}
#c-header .c-nav li .pro_nav3 .newnav .gr .left a:last-child {
  margin-bottom: 0;
}
#c-header .c-nav li .pro_nav3 .newnav .gr .left a p {
  transition: all 0.4s;
}
#c-header .c-nav li .pro_nav3 .newnav .gr .left a i {
  transition: all 0.4s;
  opacity: 0;
  margin-left: 0.1rem;
  /* transform: rotate(-90deg); */
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.12rem;
  height: auto;
  color: #003686;
}
@media (max-width: 1260px) {
  #c-header .c-nav li .pro_nav3 .newnav .gr .left a i {
    width: 0.22rem;
  }
}
@media (max-width: 767px) {
  #c-header .c-nav li .pro_nav3 .newnav .gr .left a i {
    width: 0.26rem;
  }
}
#c-header .c-nav li .pro_nav3 .newnav .gr .left a i svg,
#c-header .c-nav li .pro_nav3 .newnav .gr .left a i img {
  margin-left: 0;
  width: 100%;
  height: auto;
}
#c-header .c-nav li .pro_nav3 .newnav .gr .left a i svg path,
#c-header .c-nav li .pro_nav3 .newnav .gr .left a i img path {
  fill: #003686;
}
#c-header .c-nav li .pro_nav3 .newnav .gr .right {
  width: 45.45454545%;
  border-left: 1px solid #E6E6E6;
  padding: 0 0 0 1rem;
}
#c-header .c-nav li .pro_nav3 .newnav .gr .right .newnav_box {
  margin-top: 0.28rem;
}
#c-header .c-nav li .pro_nav3 .newnav .gr .right h4 {
  line-height: 1;
}
#c-header .c-nav li .pro_nav3 .newnav .gr .right .newnav_box .newnav_it {
  display: block;
  margin-top: -1px;
  border: 1px solid #e6e6e6;
  padding: 0.28rem 0.3rem;
}
#c-header .c-nav li .pro_nav3 .newnav .gr .right .newnav_box .newnav_it:hover h5 {
  color: #003686;
}
#c-header .c-nav li .pro_nav3 .newnav .gr .right .newnav_box .newnav_it:hover .gtime i svg path {
  fill: #003686;
}
#c-header .c-nav li .pro_nav3 .newnav .gr .right .newnav_box .newnav_it h5 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 3em;
  transition: all 0.4s;
}
#c-header .c-nav li .pro_nav3 .newnav .gr .right .newnav_box .newnav_it .gtime {
  margin-top: 0.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#c-header .c-nav li .pro_nav3 .newnav .gr .right .newnav_box .newnav_it .gtime span {
  color: #999;
  font-size: 12px;
}
#c-header .c-nav li .pro_nav3 .newnav .gr .right .newnav_box .newnav_it .gtime i {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6px;
  height: auto;
  color: #003686;
}
@media (max-width: 1260px) {
  #c-header .c-nav li .pro_nav3 .newnav .gr .right .newnav_box .newnav_it .gtime i {
    width: 0.22rem;
  }
}
@media (max-width: 767px) {
  #c-header .c-nav li .pro_nav3 .newnav .gr .right .newnav_box .newnav_it .gtime i {
    width: 0.26rem;
  }
}
#c-header .c-nav li .pro_nav3 .newnav .gr .right .newnav_box .newnav_it .gtime i svg,
#c-header .c-nav li .pro_nav3 .newnav .gr .right .newnav_box .newnav_it .gtime i img {
  width: 100%;
  height: auto;
}
#c-header .c-nav li .pro_nav3 .newnav .gr .right .newnav_box .newnav_it .gtime i svg path,
#c-header .c-nav li .pro_nav3 .newnav .gr .right .newnav_box .newnav_it .gtime i img path {
  transition: all 0.4s;
  fill: #666;
}
