@charset "utf-8";
:root {
  --color: #003893;
  --vh: 100vh;
}
/*字体*/
@font-face {
  font-family: "oppom";
  src: url("../fonts/OPPOSans_OS_Medium_1.0.woff2") format("woff2");
}
@font-face {
  font-family: "oppor";
  src: url("../fonts/OPPOSans_OS_Regular_1.0.woff2") format("woff2");
}
.font-b {
  font-family: 'oppom', '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: #003893;
}
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: 'oppor', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  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;
}
video,
video:focus {
  display: block;
  font-size: 0;
  border: 0;
  outline: none;
}
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
}
a,
a:hover,
a:focus {
  text-decoration: none;
  color: inherit;
}
input,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  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;
}
picture,
section,
main {
  display: block;
}
.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: #003893;
}
.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: #003893;
}
#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: #003893;
}
#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: #003893;
}
#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: 1rem;
}
@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.1em;
  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);
  border-bottom: 1px solid #e6e6e6;
}
#c-header:hover {
  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 1.6rem;
}
@media (max-width: 1580px) {
  #c-header .container {
    padding: 0 0 0 5%;
  }
}
@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: -1rem;
}
@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.96rem;
  height: 0.3rem;
}
@media (max-width: 991px) {
  #c-header .c-logo .c-img-box img {
    width: auto;
    height: 0.4rem;
  }
}
#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;
  line-height: 1rem;
}
@media (max-width: 991px) {
  #c-header .c-nav {
    display: none;
  }
}
#c-header .c-nav > li {
  margin-right: 0.1rem;
  transition: all 0.5s;
  padding: 0 0.3rem;
}
@media (max-width: 1260px) {
  #c-header .c-nav > li {
    padding: 0 0.2rem;
    font-size: 14px;
  }
}
#c-header .c-nav > li:hover {
  background-color: #003893;
}
#c-header .c-nav > li:hover .c-title-box a {
  color: #fff !important;
}
#c-header .c-nav > li:hover .c-title-box svg path {
  fill: #fff !important;
}
#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 a {
  position: relative;
  display: block;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media (max-width: 1260px) {
  #c-header .c-nav li a {
    font-size: 14px;
  }
}
#c-header .c-nav li a svg {
  margin-left: 0.12rem;
  width: 0.1rem;
  height: 0.14rem;
  transform: rotate(90deg);
}
#c-header .c-nav li a svg path {
  fill: #000;
  opacity: 1;
  stroke: none;
}
#c-header .c-nav ul {
  border-top: 1px solid #e6e6e6;
  padding: 0.8rem 0;
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  width: 100%;
  min-width: 2.3rem;
  line-height: 0.5rem;
  background-color: #Fff;
}
#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 .topxialabox .container {
  display: flex;
  align-items: initial;
  justify-content: space-between;
  max-width: 1440px;
  padding: 0;
  width: 90%;
}
#c-header .c-nav .topxialabox .container .left {
  width: 68.05555556%;
  display: flex;
}
#c-header .c-nav .topxialabox .container .left .leftbox1a {
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
}
#c-header .c-nav .topxialabox .container .left .leftbox1a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #e6e6e6;
}
#c-header .c-nav .topxialabox .container .left .leftbox1a:nth-child(1) {
  padding-left: 0;
  flex-shrink: 0;
}
#c-header .c-nav .topxialabox .container .left .leftbox1a:last-child::before {
  display: none;
}
#c-header .c-nav .topxialabox .container .left .leftbox1b {
  display: none;
}
#c-header .c-nav .topxialabox .container .left .leftbox1b.on {
  display: block;
  animation: myopacity 0.5s 1 linear forwards;
}
#c-header .c-nav .topxialabox .container .left .leftbox1b.on .cn10 {
  padding: 0;
  margin-bottom: 0.05rem;
  color: #666;
  line-height: 1.625;
  transition: all 0.5s;
}
#c-header .c-nav .topxialabox .container .left .leftbox1b.on .cn10:hover {
  color: #003893;
}
#c-header .c-nav .topxialabox .container .left .leftbox1 {
  display: flex;
}
#c-header .c-nav .topxialabox .container .left .leftbox1 .public-btn {
  margin-bottom: 0.4rem;
}
#c-header .c-nav .topxialabox .container .left .leftbox1 .public-btn:last-child {
  margin-bottom: 0;
}
#c-header .c-nav .topxialabox .container .right {
  width: 31.94444444%;
  padding-left: 1rem;
  position: relative;
}
#c-header .c-nav .topxialabox .container .right::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #e6e6e6;
}
#c-header .c-nav .topxialabox .container .right .rightbox {
  padding: 0;
}
#c-header .c-nav .topxialabox .container .right .rightbox .img::before {
  padding-top: 55.55555556%;
}
#c-header .c-nav .topxialabox .container .right .rightbox .cn1 {
  margin-top: 0.25rem;
  color: #999999;
  line-height: 1.625;
}
#c-header .c-nav .topxialabox .container .right .rightbox .cn2 {
  margin-top: 0.1rem;
  color: #000000;
  line-height: 1.2;
  transition: all 0.5s;
}
#c-header .c-nav .topxialabox .container .right .rightbox .public-btn9 {
  margin-top: 0.25rem;
}
#c-header .c-nav .topxialabox .container .right .rightbox .public-btn9 svg {
  transform: rotate(0);
  width: 5px;
  height: auto;
}
#c-header .c-nav .topxialabox .container .right .rightbox:hover .img img {
  transform: scale(1.05);
}
#c-header .c-nav .topxialabox .container .right .rightbox:hover .cn2 {
  color: #003893;
}
#c-header .c-nav .topxialabox .container .right .rightbox:hover .public-btn9 {
  color: #003893;
}
#c-header .c-nav .topxialabox .container .right .rightbox:hover .public-btn9 svg path {
  fill: #003893;
}
#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;
}
@keyframes myopacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*顶部移动端导航*/
#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: #003893;
}
#c-header .c-nav2 li ul {
  display: none;
}
#c-header .c-nav2 li ul li {
  padding: 0.2rem 0.5rem;
  line-height: 1.5;
}
.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: 1rem;
  align-items: center;
  margin-left: 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: 1rem;
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  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;
}
#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;
  transition: all 0.5s;
}
#c-header .c-gn .c-search .qcn2a {
  border-top: 1px solid #e6e6e6;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  display: none;
  background-color: #Fff;
}
#c-header .c-gn .c-search .qcn2a .qcn2c .container {
  max-width: 1440px;
  width: 90%;
  padding: 0.6rem 0;
  display: block;
  height: initial;
}
#c-header .c-gn .c-search .qcn2a .qcn2c .container form {
  width: 100%;
}
#c-header .c-gn .c-search .qcn2a .qcn2c .container .qcn2d {
  width: 100%;
  position: relative;
}
#c-header .c-gn .c-search .qcn2a .qcn2c .container .qcn2d input {
  width: 100%;
  line-height: 0.9rem;
  border-bottom: 1px solid #e6e6e6;
  color: #666666;
  padding: 0 3rem 0 0 ;
}
#c-header .c-gn .c-search .qcn2a .qcn2c .container .qcn2d input::placeholder {
  color: #666;
}
#c-header .c-gn .c-search .qcn2a .qcn2c .container .qcn2d .qcn2e {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}
#c-header .c-gn .c-search .qcn2a .qcn2c .container .qcn2d .qcn2f {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
#c-header .c-gn .c-search .qcn2a .qcn2c .container .qcn2g {
  margin-top: 0.35rem;
}
#c-header .c-gn .c-search .qcn2a .qcn2c .container .qcn2g .qcn2h {
  color: #000000;
  line-height: 1.5;
  text-align: left;
}
#c-header .c-gn .c-search .qcn2a .qcn2c .container .qcn2g .qcn2z {
  display: flex;
  flex-wrap: wrap;
}
#c-header .c-gn .c-search .qcn2a .qcn2c .container .qcn2g .qcn2z .qcn2x {
  margin-top: 0.15rem;
  border: 1px solid #e6e6e6;
  line-height: 0.4rem;
  position: relative;
  padding: 0 0.2rem;
  margin-right: 0.2rem;
  transition: all 0.5s;
}
@media (max-width: 991px) {
  #c-header .c-gn .c-search .qcn2a .qcn2c .container .qcn2g .qcn2z .qcn2x {
    line-height: 0.6rem;
  }
}
#c-header .c-gn .c-search .qcn2a .qcn2c .container .qcn2g .qcn2z .qcn2x:hover {
  border: 1px solid #003893;
  background-color: #003893;
}
#c-header .c-gn .c-search .qcn2a .qcn2c .container .qcn2g .qcn2z .qcn2x:hover .qcn2y {
  color: #Fff;
}
#c-header .c-gn .c-search .qcn2a .qcn2c .container .qcn2g .qcn2z .qcn2x:hover .close svg path {
  fill: #fff;
}
#c-header .c-gn .c-search .qcn2a .qcn2c .container .qcn2g .qcn2z .qcn2x .qcn2y {
  transition: all 0.5s;
  color: #666666;
}
#c-header .c-gn .c-search .qcn2a .qcn2c .container .qcn2g .qcn2z .qcn2x .close {
  position: absolute;
  right: 0.04rem;
  top: 0.04rem;
  display: flex;
  align-items: center;
  cursor: pointer;
}
#c-header .c-gn .c-search .qcn2a .qcn2c .container .qcn2g .qcn2z .qcn2x .close svg {
  width: 0.08rem;
  height: 0.08rem;
}
@media (max-width: 991px) {
  #c-header .c-gn .c-search .qcn2a .qcn2c .container .qcn2g .qcn2z .qcn2x .close svg {
    width: 0.12rem;
    height: 0.12rem;
  }
}
#c-header .c-gn .c-search .qcn2a .qcn2c .container .qcn2g .qcn2z .qcn2x .close svg path {
  fill: #666;
  opacity: 1;
  stroke: none;
  transition: all 0.5s;
}
#c-header .c-gn .c-language {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.6rem;
  transition: all 0.5s;
  height: 100%;
  position: relative;
  background-color: #003893;
}
@media (max-width: 991px) {
  #c-header .c-gn .c-language {
    width: 2rem;
  }
}
#c-header .c-gn .c-language:hover .qcn4 {
  z-index: 2;
  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: #fff;
  opacity: 1;
  stroke: none;
  transition: all 0.5s;
}
#c-header .c-gn .c-language .qcn2 .qcn3 {
  color: #fff;
  margin: 0 0.1rem;
}
#c-header .c-gn .c-language .qcn2 .icon2 {
  width: 10px;
  height: 14px;
  transform: rotate(90deg);
}
#c-header .c-gn .c-language .qcn2 .icon2 path {
  fill: #fff;
  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: #fff;
  width: 100%;
  transform: translateX(-50%);
  padding: 0.2rem 0;
}
#c-header .c-gn .c-language .qcn4 .qcn5 {
  padding: 0.1rem 0;
  line-height: 1.5em;
}
#c-header .c-gn .c-language .qcn4 .qcn5 a {
  color: #000;
  display: block;
}
#c-header .c-gn .c-language .qcn4 .qcn5:hover a {
  color: #003893;
}
#c-header .c-gn .c-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.6rem;
  background-color: #003893;
  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;
}
.public-button {
  border: solid 1px #e6e6e6;
  line-height: 0.5rem;
  border-radius: 0.3rem;
  width: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
  transition: all 0.5s;
}
.public-button:hover {
  background-color: #003893;
  border: 1px solid #003893;
  color: #fff;
}
.public-button.public-buttonblue {
  background-color: #003893;
  border: 1px solid #003893;
  color: #fff;
}
.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;
}
.textflow5 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -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;
}
.public-swiper-box {
  display: flex;
  align-items: center;
  margin-top: 0.6rem;
  justify-content: space-between;
}
.public-swiper-box .swiper-pagination {
  position: relative;
  height: 1px;
  background-color: #e6e6e6;
}
.public-swiper-box .swiper-pagination .swiper-pagination-progressbar-fill {
  background-color: #003893;
  top: initial;
  bottom: 0;
  height: 2px;
}
.public-swiper-box .swiper-page {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-left: 0.2rem;
}
.swiper-scrollbar {
  width: 100%;
  height: 1px;
  background-color: #e6e6e6;
}
.swiper-scrollbar .swiper-scrollbar-drag {
  background-color: #003893;
}
.swiper-button-prev,
.swiper-button-next {
  background-color: #fff;
  position: relative;
  left: 0;
  top: 0;
  right: 0;
  border-radius: 50%;
  background-image: initial;
  width: 0.5rem;
  height: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  transition: all 0.5s;
  border: solid 2px #e6e6e6;
}
@media (max-width: 991px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 0.76rem;
    height: 0.76rem;
  }
}
.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 6px;
  height: auto;
  transform: rotate(0deg);
}
.swiper-button-prev svg path,
.swiper-button-next svg path {
  fill: #909090;
  opacity: 1;
  stroke: none;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  border: 2px solid #003893;
  background-color: #003893;
}
.swiper-button-prev:hover svg path,
.swiper-button-next:hover svg path {
  fill: #Fff;
}
.swiper-button-next {
  right: 0;
  margin-left: 0.1rem;
}
.swiper-button-next svg {
  transform: rotate(180deg);
}
.index-box1 {
  width: 100%;
  overflow: hidden;
  position: relative;
}
@media (max-width: 991px) {
  .index-box1 {
    margin-top: 1.2rem;
  }
}
.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: #003893;
}
.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: #003893;
}
.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: #003893;
  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.625;
}
.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: #003893;
  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: 1;
  text-align: center;
  color: #003893;
}
.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: #003893;
  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: #003893;
  line-height: 1.625;
  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: #003893;
  line-height: 1.25;
}
@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.36363636;
  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;
}
@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 {
  line-height: 0.75em;
  color: #003893;
}
@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 {
  line-height: 1em;
  color: #003893;
}
@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;
  line-height: 1.33333333;
}
@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: #003893;
  height: 0.3rem;
  opacity: 1;
  margin-top: 0.2rem;
}
.index-box3 .indexbox3swiper .swiper-slide.swiper-slide-active .swiper-slidebox .cn3 svg path {
  fill: #003893;
}
.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.33333333;
  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.55555556;
  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: #003893;
  transition: all 0.5s;
}
.index-box3 .indexbox3swiper .swiper-slide:hover .text .cn3 {
  color: #003893;
  height: 0.3rem;
  opacity: 1;
  margin-top: 0.2rem;
}
.index-box3 .indexbox3swiper .swiper-slide:hover .text .cn3 svg path {
  fill: #003893;
}
.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.25;
  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: 1.2rem;
  border-bottom: 1px solid #e6e6e6;
}
@media (max-width: 991px) {
  .footer .container .box1 {
    padding-bottom: 0.6rem;
  }
}
.footer .container .box1 .box1a {
  width: 68.75%;
  display: flex;
}
@media (max-width: 1260px) {
  .footer .container .box1 .box1a {
    width: 67%;
  }
}
@media (max-width: 991px) {
  .footer .container .box1 .box1a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
.footer .container .box1 .box1b {
  width: 31.25%;
}
@media (max-width: 1260px) {
  .footer .container .box1 .box1b {
    width: 28%;
  }
}
@media (max-width: 991px) {
  .footer .container .box1 .box1b {
    margin-top: 1.2rem;
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
.footer .container .box1 .box1b .cn20 {
  color: #000;
  line-height: 1.55555556;
  margin-bottom: 0.1rem;
}
.footer .container .box1 .footernav {
  display: flex;
  width: 45.45454545%;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-right: 0.8rem;
}
@media (max-width: 991px) {
  .footer .container .box1 .footernav {
    display: none;
    width: 100%;
  }
}
.footer .container .box1 .footernav .footernav2 {
  width: 50%;
}
.footer .container .box1 .footernav .public-btn {
  margin-bottom: 0.3rem;
}
.footer .container .box1 .footerinfobox {
  width: 54.54545455%;
  padding-right: 0.3rem;
}
@media (max-width: 991px) {
  .footer .container .box1 .footerinfobox {
    width: 100%;
    padding-right: 0;
  }
}
.footer .container .box1 .footerinfobox .pbox2 {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .footer .container .box1 .footerinfobox .pbox2 {
    justify-content: center;
  }
}
.footer .container .box1 .footerinfobox .pbox2 .pbox2cn1 {
  padding-right: 0.3rem;
}
.footer .container .box1 .footerinfobox .pbox2 .pbox2cn1 img {
  width: 1.96rem;
  height: 0.3rem;
}
@media (max-width: 991px) {
  .footer .container .box1 .footerinfobox .pbox2 .pbox2cn1 img {
    width: auto;
    height: 0.4rem;
  }
}
.footer .container .box1 .footerinfobox .pbox2 .pbox2cn2 {
  padding-left: 0.3rem;
  color: #000000;
  position: relative;
}
.footer .container .box1 .footerinfobox .pbox2 .pbox2cn2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 0.3rem;
  background-color: #e6e6e6;
}
.footer .container .box1 .footerinfobox .pcn1 {
  margin-top: 0.05rem;
  color: #666666;
  line-height: 1.625;
}
.footer .container .box1 .footerinfobox .pcn2 {
  color: #003893;
  line-height: 1.33333333;
  margin-bottom: 0.15rem;
  margin-top: 0.4rem;
}
.footer .container .box1 .footerinfobox .public-btn {
  margin-top: 0.15rem;
}
@media (max-width: 991px) {
  .footer .container .box1 .footerinfobox .public-btn {
    justify-content: center;
  }
  .footer .container .box1 .footerinfobox .public-btn .public-btn0 {
    justify-content: center;
  }
}
.footer .container .footerlink {
  display: flex;
  flex-wrap: wrap;
  width: 60.9375%;
}
@media (max-width: 1260px) {
  .footer .container .footerlink {
    width: 67%;
  }
}
@media (max-width: 767px) {
  .footer .container .footerlink {
    width: 100%;
  }
}
.footer .container .footerlink .cn1 {
  color: #003893;
  line-height: 1.625;
}
.footer .container .footerlink .cn2 {
  color: #666666;
  line-height: 1.625;
  margin-right: 0.2rem;
  transition: all 0.5s;
}
.footer .container .footerlink .cn2:hover {
  color: #003893;
}
.footer .container .footerqrcode {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .footer .container .footerqrcode {
    justify-content: center;
  }
}
.footer .container .footerqrcode .cn1 {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #e6e6e6;
  border-radius: 50%;
  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 .footerqrcode .cn1 {
    width: 0.76rem;
    height: 0.76rem;
    margin: 0.1rem;
  }
}
.footer .container .footerqrcode .cn1 .img {
  width: 100%;
  height: 100%;
}
.footer .container .footerqrcode .cn1 .img svg,
.footer .container .footerqrcode .cn1 .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer .container .footerqrcode .cn1 .img svg path,
.footer .container .footerqrcode .cn1 .img img path {
  fill: #fff;
  opacity: 1;
  stroke: none;
  transition: all 0.5s;
}
.footer .container .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 .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 .footerqrcode .cn1 .cn2 img {
  width: 90%;
  height: 90%;
  object-fit: cover;
}
.footer .container .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: 68.75%;
  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.71428571;
}
.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.71428571;
  padding: 0 0.05rem;
  color: #999999;
  position: relative;
  transition: all 0.5s;
}
.footer .container .box3 .footerinfo1 a:hover {
  color: #003893;
}
.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: 31.25%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@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.71428571;
  color: #999999;
}
.footer .container .box3 .footerinfo2 .cn2 {
  line-height: 1.71428571;
  margin: 0 0.05rem;
  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 {
    display: none !important;
  }
}
.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;
}
.public-aside .pbox:hover {
  background-color: #003893;
}
.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;
  justify-content: center;
}
.public-aside .pbox .pbox2 .pimg svg,
.public-aside .pbox .pbox2 .pimg img {
  height: 0.2rem;
}
.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.71428571;
}
.public-aside .pbox:hover .pimg2 {
  opacity: 1;
  visibility: visible;
}
.public-aside .pbox .pimg2 {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  position: absolute;
  right: 100%;
  top: 0;
  width: 1.6rem;
  height: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 0.1rem;
  box-shadow: 0px 0px 30px 0px rgba(55, 79, 163, 0.16);
}
.public-aside .pbox .pimg2 img {
  width: 1.4rem;
  height: 1.4rem;
}
.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;
  transition: all 0.5s;
  height: auto;
  border: solid 1px #e6e6e6;
  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 .pimg::before {
  padding-top: 60%;
}
.public-news-list .swiper-wrapper .swiper-slide .ptext {
  padding: 0.35rem 0.4rem;
}
.public-news-list .swiper-wrapper .swiper-slide .ptext .pcn1 {
  color: #000000;
  line-height: 1.71428571;
}
@media (max-width: 991px) {
  .public-news-list .swiper-wrapper .swiper-slide .ptext .pcn1 {
    font-size: 0.4rem;
  }
}
.public-news-list .swiper-wrapper .swiper-slide .ptext .pcn2 {
  margin-top: 0.2rem;
  color: #666666;
  line-height: 1.33333333;
  height: 2.66666667em;
}
.public-news-list .swiper-wrapper .swiper-slide .ptext .pcn5 {
  display: block;
  margin-top: 0.3rem;
  height: 1.625;
}
.public-news-list .swiper-wrapper .swiper-slide .ptext .pcn5 .pcn6 {
  margin-right: 0.15rem;
  color: #999999;
  line-height: 1.625;
}
.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: #003893;
  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 {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
}
.public-news-list .swiper-wrapper .swiper-slide:hover .pimg img {
  transform: scale(1.05);
}
.public-news-list .swiper-wrapper .swiper-slide:hover .ptext .pcn1 {
  color: #003893;
}
.public-news-list .swiper-wrapper .swiper-slide:hover .ptext .pcn3::before {
  width: 100%;
}
.public-news-list .swiper-wrapper .swiper-slide:hover .ptext .pcn4 {
  color: #003893;
}
.public-news-list .swiper-wrapper .swiper-slide:hover .ptext .pcn4 svg path {
  fill: #003893;
}
.public-news-list2 {
  margin-top: 0.15rem;
}
.public-news-list2.public-news-list2a {
  margin-top: 0;
}
.public-news-list2.public-news-list2a .swiper-wrapper .swiper-slide .ptext .pcn2 {
  margin-top: 0;
}
.public-news-list2 .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .public-news-list2 .swiper-wrapper {
    justify-content: space-between;
  }
}
.public-news-list2 .swiper-wrapper .swiper-slide {
  margin-top: 0.5rem;
  margin-right: 0.5rem;
  transition: all 0.5s;
  height: auto;
  border: solid 1px #e6e6e6;
  width: calc((100% - 1rem) / 3);
}
@media (max-width: 991px) {
  .public-news-list2 .swiper-wrapper .swiper-slide {
    margin-right: 0;
    width: calc(50% - 0.25rem);
  }
}
@media (max-width: 767px) {
  .public-news-list2 .swiper-wrapper .swiper-slide {
    width: 100%;
  }
}
.public-news-list2 .swiper-wrapper .swiper-slide:nth-child(3n) {
  margin-right: 0;
}
.public-news-list2 .swiper-wrapper .swiper-slide .pimg::before {
  padding-top: 60%;
}
.public-news-list2 .swiper-wrapper .swiper-slide .ptext {
  padding: 0.35rem 0.4rem;
}
.public-news-list2 .swiper-wrapper .swiper-slide .ptext .pcn1 {
  color: #999999;
  line-height: 1.71428571;
}
@media (max-width: 991px) {
  .public-news-list2 .swiper-wrapper .swiper-slide .ptext .pcn1 {
    font-size: 0.28rem;
  }
}
.public-news-list2 .swiper-wrapper .swiper-slide .ptext .pcn2 {
  margin-top: 0.2rem;
  color: #000000;
  line-height: 1.33333333;
  height: 4em;
}
@media (max-width: 991px) {
  .public-news-list2 .swiper-wrapper .swiper-slide .ptext .pcn2 {
    font-size: 0.36rem;
  }
}
.public-news-list2 .swiper-wrapper .swiper-slide .ptext .pcn3 {
  width: 100%;
  height: 1px;
  margin-top: 0.3rem;
  background-color: #e6e6e6;
  position: relative;
}
.public-news-list2 .swiper-wrapper .swiper-slide .ptext .pcn3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #003893;
  transition: all 0.5s;
}
.public-news-list2 .swiper-wrapper .swiper-slide .ptext .pcn4 {
  margin-top: 0.4rem;
}
.public-news-list2 .swiper-wrapper .swiper-slide:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
}
.public-news-list2 .swiper-wrapper .swiper-slide:hover .pimg img {
  transform: scale(1.05);
}
.public-news-list2 .swiper-wrapper .swiper-slide:hover .ptext .pcn2 {
  color: #003893;
}
.public-news-list2 .swiper-wrapper .swiper-slide:hover .ptext .pcn3::before {
  width: 100%;
}
.public-news-list2 .swiper-wrapper .swiper-slide:hover .ptext .pcn4 {
  color: #003893;
}
.public-news-list2 .swiper-wrapper .swiper-slide:hover .ptext .pcn4 svg path {
  fill: #003893;
}
.public-work-list {
  margin-top: 0.15rem;
}
.public-work-list .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .public-work-list .swiper-wrapper {
    justify-content: space-between;
  }
}
.public-work-list .swiper-wrapper .swiper-slide {
  margin-top: 0.5rem;
  margin-right: 0.5rem;
  transition: all 0.5s;
  height: auto;
  border: solid 1px #e6e6e6;
  width: calc((100% - 1rem) / 3);
}
@media (max-width: 991px) {
  .public-work-list .swiper-wrapper .swiper-slide {
    margin-right: 0;
    width: calc(50% - 0.25rem);
  }
}
@media (max-width: 767px) {
  .public-work-list .swiper-wrapper .swiper-slide {
    width: 100%;
  }
}
.public-work-list .swiper-wrapper .swiper-slide:nth-child(3n) {
  margin-right: 0;
}
.public-work-list .swiper-wrapper .swiper-slide .pimg::before {
  padding-top: 60%;
}
.public-work-list .swiper-wrapper .swiper-slide .ptext {
  padding: 0.35rem 0.4rem;
}
.public-work-list .swiper-wrapper .swiper-slide .ptext .pcn1 {
  color: #000000;
  line-height: 1.71428571;
}
@media (max-width: 991px) {
  .public-work-list .swiper-wrapper .swiper-slide .ptext .pcn1 {
    font-size: 0.4rem;
  }
}
.public-work-list .swiper-wrapper .swiper-slide .ptext .cn2 {
  margin-top: 0.2rem;
}
.public-work-list .swiper-wrapper .swiper-slide .ptext .cn2 .cn3 {
  display: flex;
}
@media (max-width: 1260px) {
  .public-work-list .swiper-wrapper .swiper-slide .ptext .cn2 .cn3 {
    margin-bottom: 0.2rem;
  }
}
.public-work-list .swiper-wrapper .swiper-slide .ptext .cn2 .cn3 .cn4 {
  margin-right: 0.1rem;
  flex-shrink: 0;
  transform: translateY(0.05rem);
}
.public-work-list .swiper-wrapper .swiper-slide .ptext .cn2 .cn3 .cn4 img {
  width: 0.2rem;
  height: 0.2rem;
}
@media (max-width: 1260px) {
  .public-work-list .swiper-wrapper .swiper-slide .ptext .cn2 .cn3 .cn4 img {
    width: 0.3rem;
    height: 0.3rem;
  }
}
.public-work-list .swiper-wrapper .swiper-slide .ptext .cn2 .cn3 .cn5 {
  line-height: 0.3rem;
}
@media (max-width: 1260px) {
  .public-work-list .swiper-wrapper .swiper-slide .ptext .cn2 .cn3 .cn5 {
    line-height: 0.4rem;
  }
}
.public-work-list .swiper-wrapper .swiper-slide .ptext .pcn3 {
  width: 100%;
  height: 1px;
  margin-top: 0.3rem;
  background-color: #e6e6e6;
  position: relative;
}
.public-work-list .swiper-wrapper .swiper-slide .ptext .pcn3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #003893;
  transition: all 0.5s;
}
.public-work-list .swiper-wrapper .swiper-slide .ptext .pcn4 {
  margin-top: 0.4rem;
}
.public-work-list .swiper-wrapper .swiper-slide:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
}
.public-work-list .swiper-wrapper .swiper-slide:hover .pimg img {
  transform: scale(1.05);
}
.public-work-list .swiper-wrapper .swiper-slide:hover .ptext .pcn1 {
  color: #003893;
}
.public-work-list .swiper-wrapper .swiper-slide:hover .ptext .pcn3::before {
  width: 100%;
}
.public-work-list .swiper-wrapper .swiper-slide:hover .ptext .pcn4 {
  color: #003893;
}
.public-work-list .swiper-wrapper .swiper-slide:hover .ptext .pcn4 svg path {
  fill: #003893;
}
.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.33333333;
  margin-bottom: 0.1rem;
}
.public-product-list .pbox .ptext .pcn2 {
  margin-bottom: 0.2rem;
  color: #666666;
  line-height: 1.5;
  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: #003893;
}
.public-product-list .pbox:hover .pcn4 svg path {
  fill: #003893;
}
.indexpublic-btn {
  display: flex;
  align-items: center;
}
.indexpublic-btn .public-btn0 {
  display: flex !important;
  align-items: center;
  padding: 0 !important;
  transition: all 0.5s;
}
.indexpublic-btn .public-btn0 .pbtn1 {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 0.2rem;
  transition: all 0.5s;
  flex-shrink: 0;
  border: 2px solid #003893;
  display: flex;
  align-items: center;
  justify-content: center;
}
.indexpublic-btn .public-btn0 .pbtn1 svg {
  width: 6px;
  height: 10px;
  transition: all 0.5s;
}
.indexpublic-btn .public-btn0 .pbtn1 svg path {
  transition: all 0.5s;
  fill: #003893;
}
.indexpublic-btn .public-btn0 .pbtn2 {
  transition: all 0.5s;
  color: #003893;
  font-size: 18px;
}
@media (max-width: 1580px) {
  .indexpublic-btn .public-btn0 .pbtn2 {
    font-size: 16px;
  }
}
@media (max-width: 1260px) {
  .indexpublic-btn .public-btn0 .pbtn2 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .indexpublic-btn .public-btn0 .pbtn2 {
    font-size: 0.28rem;
  }
}
.indexpublic-btn .public-btn0:hover .pbtn1 {
  border: 2px solid #003893;
}
.public-btn {
  display: flex;
  align-items: center;
}
.public-btn.public-btnblue {
  justify-content: center;
}
.public-btn.public-btnblue .public-btn0 {
  border: 2px solid #003893;
  background-color: #003893;
  border-radius: 0.6rem;
  padding: 0.1rem 0.18rem 0.1rem 0.1rem !important;
}
.public-btn.public-btnblue .public-btn0 .pbtn1 {
  border-radius: 50%;
  background-color: #fff;
}
.public-btn.public-btnblue .public-btn0 .pbtn2 {
  color: #fff !important;
}
.public-btn.public-btnblue .public-btn0:hover {
  background-color: #fff;
  border: 2px solid #003893;
}
.public-btn.public-btnblue .public-btn0:hover .pbtn1 {
  background-color: #003893;
}
.public-btn.public-btnblue .public-btn0:hover .pbtn2 {
  color: #003893 !important;
}
.public-btn.public-btnbig .public-btn0 .pbtn1 {
  width: 30px;
  height: 30px;
  border: 2px solid #003893;
}
.public-btn.public-btnbig .public-btn0 .pbtn1 svg {
  width: 6px !important;
  height: 10px !important;
}
.public-btn.public-btnbig .public-btn0 .pbtn1 svg path {
  fill: #003893 !important;
}
.public-btn.public-btnbig .public-btn0 .pbtn2 {
  color: #003893;
}
.public-btn.public-btnbig .public-btn0:hover .pbtn1 {
  border: 2px solid #003893;
}
.public-btn.public-btnbig.public-btnreturn .public-btn0 {
  padding: 0.1rem 0.3rem !important;
}
.public-btn.public-btnbig.public-btnreturn .public-btn0 .pbtn1 {
  width: 16px !important;
  height: 14px !important;
  background-color: transparent !important;
  border: 0 !important;
  margin-right: 0.1rem;
}
.public-btn.public-btnbig.public-btnreturn .public-btn0 .pbtn1 svg {
  width: 16px !important;
  height: 14px !important;
}
.public-btn.public-btnbig.public-btnreturn .public-btn0 .pbtn1 svg path {
  fill: #fff !important;
}
.public-btn.public-btnbig.public-btnreturn .public-btn0:hover .pbtn1 svg path {
  fill: #003893 !important;
}
.public-btn .public-btn0 {
  display: flex !important;
  align-items: center;
  padding: 0 !important;
  transition: all 0.5s;
}
.public-btn .public-btn0 .pbtn1 {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #333;
  border-radius: 50%;
  margin-right: 0.2rem;
  transition: all 0.5s;
  flex-shrink: 0;
}
.public-btn .public-btn0 .pbtn1 svg {
  width: 4px !important;
  height: 7px !important;
  margin-left: 0 !important;
  transform: initial !important;
}
.public-btn .public-btn0 .pbtn1 svg path {
  transition: all 0.5s;
  fill: #333 !important;
  opacity: 1;
  stroke: none;
}
.public-btn .public-btn0 .pbtn2 {
  max-width: 3rem;
  color: #000000;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  font-size: 18px;
}
@media (max-width: 1580px) {
  .public-btn .public-btn0 .pbtn2 {
    font-size: 16px;
  }
}
@media (max-width: 1260px) {
  .public-btn .public-btn0 .pbtn2 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .public-btn .public-btn0 .pbtn2 {
    font-size: 0.28rem;
  }
}
.public-btn .public-btn0 .pbtn2 svg {
  width: 16px !important;
  height: 16px !important;
  transform: initial !important;
}
.public-btn .public-btn0 .pbtn2 svg path {
  fill: #000;
  opacity: 1;
  stroke: none;
  transition: all 0.5s;
}
.public-btn .public-btn0:hover .pbtn1 {
  border: 1px solid #003893;
  background-color: #003893;
}
.public-btn .public-btn0:hover .pbtn1 svg path {
  fill: #fff !important;
}
.public-btn .public-btn0:hover .pbtn2 {
  color: #003893;
}
.public-btn .public-btn0:hover .pbtn2 svg path {
  fill: #003893 !important;
}
.public-btn.on .public-btn0 .pbtn1 {
  border: 1px solid #003893 !important;
  background-color: #003893 !important;
}
.public-btn.on .public-btn0 .pbtn1 svg path {
  fill: #fff !important;
}
.public-btn.on .public-btn0 .pbtn2 {
  color: #003893 !important;
}
.public-btn9 {
  display: flex;
  align-items: center;
  color: #000000;
  transition: all 0.5s;
}
.public-btn9 svg {
  margin-left: 0.1rem;
  width: 5px;
  height: auto;
  transform: translateY(-0.02em);
}
.public-btn9 svg path {
  fill: #000;
  opacity: 1;
  stroke: none;
  transition: all 0.5s;
}
.public-btn9:hover {
  color: #003893;
}
.public-btn9:hover svg path {
  fill: #003893;
}
.public-btn9.public-btn9white {
  color: #fff;
}
.public-btn9.public-btn9white svg path {
  fill: #fff;
}
.luanqibazao {
  display: block  !important;
}
.pform {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 8.4rem;
  background-color: #Fff;
  border-radius: 0.1rem;
  box-shadow: 0px 0px 30px 0px rgba(55, 79, 163, 0.16);
  padding: 0.35rem 0.4rem;
  opacity: 0;
  transition: all 0.5s;
  visibility: hidden;
  margin-top: 0.25rem;
}
.pform .pclose {
  position: absolute;
  right: 0.4rem;
  top: 0.4rem;
  cursor: pointer;
  transition: all 0.5s;
}
.pform .pclose:hover {
  transform: scale(1.2);
}
.pform .pcn1 {
  color: #222222;
  line-height: 1.3125;
  margin-bottom: 0.2rem;
}
.pform .pcn2 {
  margin-top: 0.15rem;
  position: relative;
}
.pform .pcn2.yanzheng .pcn4 {
  display: flex;
  overflow: hidden;
}
.pform .pcn2.yanzheng .pcn4 input {
  width: 68.5%;
}
.pform .pcn2.yanzheng .pcn4 .pcn5 {
  width: 29.5%;
  line-height: 1.71428571;
  border: 1px solid #e6e6e6 !important;
  box-shadow: initial !important;
  border-radius: 0.5rem;
  color: #999;
  padding: 0.12rem 0.2rem;
  height: 100%;
  text-align: center;
  overflow: hidden;
  padding: 0;
}
.pform .pcn2.yanzheng .pcn4 .pcn5 img {
  height: 100%;
}
.pform .pcn2.jianli {
  cursor: pointer;
}
.pform .pcn2.jianli .pcn4 {
  position: relative;
  border: 1px solid #e6e6e6 !important;
  border-radius: 1rem;
  cursor: pointer;
  overflow: hidden;
}
.pform .pcn2.jianli .pcn4 input {
  cursor: pointer;
}
.pform .pcn2.jianli .pcn4 em {
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  padding: 0 1rem 0 0.2rem;
  font-style: normal;
  color: #999;
}
.pform .pcn2.jianli .pcn4::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(102%);
  height: calc(102%);
  background-color: #fff;
  pointer-events: none;
}
.pform .pcn2.jianli .pcn4 svg {
  width: 12px;
  height: 12px;
  position: absolute;
  right: 0.3rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.pform .pcn2.jianli .pcn4 svg path {
  fill: #999;
  opacity: 1;
  stroke: none;
}
.pform .pcn2.pcn2a {
  height: 2rem;
}
.pform .pcn2 .pcn3 {
  color: #000;
  line-height: 1.875;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}
.pform .pcn2 .pcn3 em {
  font-style: normal;
  color: #ff1313;
}
.pform .pcn2 .pcn4 {
  margin-top: 0.1rem;
  display: block;
  width: 100%;
  position: relative;
}
.pform .pcn2 .pcn4 input {
  width: 100%;
  line-height: 1.71428571;
  border: 1px solid #e6e6e6 !important;
  box-shadow: initial !important;
  border-radius: 0.5rem;
  color: #999;
  padding: 0.12rem 0.2rem;
  height: auto;
}
.pform .pcn2 .pcn4 input::placeholder {
  color: #999;
}
.pform .pcn2 .pcn4 textarea {
  width: 100%;
  line-height: 1.71428571;
  padding: 0.12rem 0.2rem;
  border: 1px solid #e6e6e6;
  color: #999;
  height: 1.5rem;
  border-radius: 0.1rem;
}
.pform .pcn2 .pcn4 textarea::placeholder {
  color: #999;
}
.pform .pcn2 .pcn4 .layui-form-select dl {
  top: 100%;
}
.pform .pcn2 .pcn4 .layui-form-select dl dd {
  line-height: 2em;
}
.pform .pcn2 .pcn4 .layui-form-select .layui-edge {
  background-image: url(../images/ico-arrow.svg);
  width: 14px;
  margin-top: -5px;
  height: 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 0;
  transform: rotate(90deg);
  right: 0.2rem;
}
.pform .pcn2 .pcn5 {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.44rem;
  height: 0.48rem;
  z-index: 3;
}
.pform .pcn2 .pcn5 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pform .pcn6 {
  margin-top: 0.1rem;
}
.pform .pcn6:nth-child(1) {
  margin-top: 0.2rem;
}
.pform .pcn6 .pcn7 {
  transform: translateY(4px);
  width: 20px;
  height: 20px;
  border: 1px solid #e6e6e6;
  margin-right: 0.1rem;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  transition: all 0.5s;
}
.pform .pcn6 .pcn7.on {
  background-color: #003893;
  border: 1px solid #003893;
  background-size: 6px 7px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/limg13.svg);
}
.pform .pcn6 .pcn8 {
  line-height: 24px;
  color: #999999;
}
.pform .pcn6 .pcn9 {
  line-height: 24px;
  color: #111111;
  text-decoration: underline;
}
.pform .public-btn {
  margin-top: 0.2rem;
}
.public-windows {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  display: none;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
}
.public-windows .box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.public-windows .box .box2 {
  position: relative;
  width: 8.4rem;
  overflow: auto;
  max-height: 80vh;
  background-color: #fff;
  border-radius: 0.1rem;
  padding: 0.35rem 0.4rem;
  box-shadow: 0px 0px 30px 0px rgba(55, 79, 163, 0.16);
}
@media (max-width: 991px) {
  .public-windows .box .box2 {
    width: 90%;
    padding: 0.55rem 0.3rem;
  }
}
.public-windows .box .box2 .pclose {
  position: absolute;
  right: 0.2rem;
  top: 0.2rem;
  cursor: pointer;
  transition: all 0.5s;
  width: 12px;
  height: 12px;
}
.public-windows .box .box2 .pclose:hover {
  transform: scale(1.2);
}
.public-windows .box .box2 .cn1 {
  color: #000000;
  text-align: center;
  line-height: 1.33333333;
}
.public-windows .box .box2 .cn1a {
  margin-top: 0.15rem;
  text-align: center;
  line-height: 1.625;
  color: #666666;
}
.public-windows .box .box2 .cn2 {
  margin-top: 0.35rem;
  line-height: 1.55555556;
  color: #222;
  width: 100%;
}
.public-windows .box .box2 .pform {
  position: relative;
  left: 0;
  top: 0;
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  width: 100%;
  box-shadow: initial;
  padding: 0;
  border-top: 1px solid #e6e6e6;
  margin-top: 0.35rem;
}
.public-windows .box .box2 .pform form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.public-windows .box .box2 .pform form .pcn2 {
  width: calc(50% - 0.15rem);
}
@media (max-width: 767px) {
  .public-windows .box .box2 .pform form .pcn2 {
    width: 100%;
  }
}
.public-windows .box .box2 .pform form .pcn2.pcn2z {
  width: 100%;
}
.public-windows .box .box2 .pform form .pcn6 {
  width: 100%;
}
.public-nav-banner {
  position: relative;
  overflow: hidden;
}
.public-nav-banner .img {
  width: 100%;
}
.public-nav-banner .img::before {
  padding-top: 39.58333333%;
}
@media (max-width: 991px) {
  .public-nav-banner .img::before {
    padding-top: 100%;
  }
}
.public-nav-banner .img .yinying {
  width: auto;
}
.public-nav-banner .container {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
}
.public-nav-banner .container .cn1 {
  color: #010101;
  line-height: 1.20833333;
}
.case-list1 {
  padding-top: 1.15rem;
}
.case-list1.contactapply .container {
  max-width: 1440px;
}
.case-list1 .container .cn1 {
  text-align: center;
  line-height: 1.20833333;
  margin-bottom: 0.3rem;
}
.case-list1 .container .cn2 {
  line-height: 1.5;
  text-align: center;
  margin-bottom: 0.6rem;
  font-size: 20px !important;
}
@media (max-width: 1580px) {
  .case-list1 .container .cn2 {
    font-size: 18px !important;
  }
}
@media (max-width: 1260px) {
  .case-list1 .container .cn2 {
    font-size: 16px !important;
  }
}
@media (max-width: 991px) {
  .case-list1 .container .cn2 {
    font-size: 0.3rem !important;
  }
}
.case-list1 .container .cn2 p,
.case-list1 .container .cn2 span,
.case-list1 .container .cn2 b {
  font-size: 20px !important;
}
@media (max-width: 1580px) {
  .case-list1 .container .cn2 p,
  .case-list1 .container .cn2 span,
  .case-list1 .container .cn2 b {
    font-size: 18px !important;
  }
}
@media (max-width: 1260px) {
  .case-list1 .container .cn2 p,
  .case-list1 .container .cn2 span,
  .case-list1 .container .cn2 b {
    font-size: 16px !important;
  }
}
@media (max-width: 991px) {
  .case-list1 .container .cn2 p,
  .case-list1 .container .cn2 span,
  .case-list1 .container .cn2 b {
    font-size: 0.3rem !important;
  }
}
.case-list1 .container .cn3 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
}
.case-list1 .container .cn3 img {
  margin-right: 0.1rem;
}
.case-list1 .container .caselistswiper {
  padding-bottom: 0.8rem;
  position: relative;
  overflow: hidden;
}
.case-list1 .container .caselistswiper .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  background-color: #003893;
}
.case-list1 .container .caselistswiper .swiper-slide .img {
  width: 50%;
}
@media (max-width: 991px) {
  .case-list1 .container .caselistswiper .swiper-slide .img {
    width: 100%;
  }
}
.case-list1 .container .caselistswiper .swiper-slide .img::before {
  padding-top: 60%;
}
.case-list1 .container .caselistswiper .swiper-slide .text {
  width: 50%;
  padding: 0.75rem 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1260px) {
  .case-list1 .container .caselistswiper .swiper-slide .text {
    padding: 0.3rem;
  }
}
@media (max-width: 991px) {
  .case-list1 .container .caselistswiper .swiper-slide .text {
    width: 100%;
    padding: 0.75rem 0.3rem;
  }
}
.case-list1 .container .caselistswiper .swiper-slide .text .text2 .pcn1 {
  color: #Fff;
  line-height: 1.27777778;
  margin-bottom: 0.2rem;
}
.case-list1 .container .caselistswiper .swiper-slide .text .text2 .pcn2 {
  line-height: 1.5;
  color: #Fff;
  margin-bottom: 0.3rem;
}
.case-list1 .container .caselistswiper .swiper-slide .text .text2 .pcn3 .pcn4 {
  display: block;
  line-height: 1.875;
  color: #a6c8ff;
}
.case-list1 .container .caselistswiper .swiper-slide .text .text3 {
  margin-top: 0.35rem;
  border-top: 1px solid #1a4c9e;
  padding-top: 0.35rem;
}
.case-list1 .container .cn10 .pform {
  padding: 0;
  position: relative;
  width: 100%;
  right: 0;
  top: 0;
  transform: translateY(0);
  box-shadow: initial;
  visibility: visible;
  opacity: 1;
}
.case-list1 .container .cn10 .pform form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.case-list1 .container .cn10 .pform form .pcn99 {
  width: calc(50% - 20px);
}
@media (max-width: 991px) {
  .case-list1 .container .cn10 .pform form .pcn99 {
    width: 100%;
  }
}
.case-list1 .container .cn10 .pform form .pcn99.pcn100 {
  width: 100%;
}
.case-list1 .container .cn10 .pform form .pcn6 {
  width: 100%;
  cursor: pointer;
}
.case-list1 .container .cn10 .pform form .pcn6.on .pcn7 {
  background-color: #003893;
  border: 1px solid #003893;
  background-size: 6px 7px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/limg13.svg);
}
.case-list1 .container .cn10 .pform form .pcn6.on .pcn7.on .pcn7 {
  background-color: #003893;
  border: 1px solid #003893;
  background-size: 6px 7px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/limg13.svg);
}
.case-list1 .container .cn10 .pform form .public-btn {
  margin-top: 0.6rem;
  width: 100%;
  justify-content: center;
}
.case-list1 .container .cn10 .pform form .public-btn.pcn60 {
  margin-top: 0.2rem;
  justify-content: flex-start;
}
.swiper-pagination .swiper-pagination-bullet {
  margin: 0 0.17rem !important;
  width: 6px;
  height: 6px;
  background-color: #e0e0e0;
  opacity: 1;
  position: relative;
}
@media (max-width: 991px) {
  .swiper-pagination .swiper-pagination-bullet {
    margin: 0 0.1rem !important;
  }
}
.swiper-pagination .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.2rem;
  height: 0.2rem;
  border: 0.02rem solid #003893;
  border-radius: 50%;
  transition: all 0.5s;
  opacity: 0;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #003893;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  opacity: 1;
}
.public-zujian1 {
  margin-top: 0.6rem;
  width: 100%;
}
.public-zujian1.public-zujian1a .container .box1 {
  justify-content: center;
}
.public-zujian1.public-zujian1a .container .box1 .box1b .pcn1 {
  min-width: 4rem;
}
.public-zujian1.public-zujian1a .container .box1 .box1b .pcn1 input {
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
}
.public-zujian1.public-zujian1a .container .box2 {
  margin-top: 0.1rem;
}
.public-zujian1 form {
  width: 100%;
}
.public-zujian1 .container .box1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.public-zujian1 .container .box1 .box1a {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.public-zujian1 .container .box1 .box1a .pcn5 {
  min-width: 1.4rem;
  margin-right: 0.2rem;
  border: 1px solid #e6e6e6 !important;
  line-height: 1.625em;
  padding: 0.11rem 0.2rem;
  text-align: center;
  color: #666666;
  margin-bottom: 0.2rem;
  border-radius: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  transition: all 0.5s;
}
.public-zujian1 .container .box1 .box1a .pcn5 sup {
  font-size: 10px;
  line-height: 1;
  color: #666;
  transition: all 0.5s;
}
.public-zujian1 .container .box1 .box1a .pcn5:last-child {
  margin-right: 0;
}
.public-zujian1 .container .box1 .box1a .pcn5.on {
  color: #Fff;
  border: 1px solid #003893 !important;
  background-color: #003893;
}
.public-zujian1 .container .box1 .box1a .pcn5.on sup {
  color: #Fff;
}
.public-zujian1 .container .box1 .box1a .pcn4 {
  width: 2rem;
  margin-bottom: 0.2rem;
  margin-right: 0.2rem;
}
@media (max-width: 1580px) {
  .public-zujian1 .container .box1 .box1a .pcn4 {
    width: 2.5rem;
  }
}
@media (max-width: 991px) {
  .public-zujian1 .container .box1 .box1a .pcn4 {
    width: calc((100% - 0.8rem) / 5);
  }
}
@media (max-width: 767px) {
  .public-zujian1 .container .box1 .box1a .pcn4 {
    width: calc((100% - 0.2rem) / 2);
  }
  .public-zujian1 .container .box1 .box1a .pcn4:nth-child(2n) {
    margin-right: 0;
  }
}
.public-zujian1 .container .box1 .box1a .pcn4:last-child {
  margin-right: 0;
}
.public-zujian1 .container .box1 .box1a .pcn4 input {
  width: 100%;
  line-height: 1.625;
  border: 1px solid #e6e6e6 !important;
  box-shadow: initial !important;
  border-radius: 0.5rem;
  color: #666;
  padding: 0.11rem 0.2rem;
  height: auto;
}
.public-zujian1 .container .box1 .box1a .pcn4 input::placeholder {
  color: #666;
}
.public-zujian1 .container .box1 .box1a .pcn4 textarea {
  width: 100%;
  line-height: 1.71428571;
  padding: 0.12rem 0.2rem;
  border: 1px solid #e6e6e6;
  color: #666;
  height: 1.5rem;
  border-radius: 0.1rem;
}
.public-zujian1 .container .box1 .box1a .pcn4 textarea::placeholder {
  color: #666;
}
.public-zujian1 .container .box1 .box1a .pcn4 .layui-form-select dl {
  top: 100%;
}
.public-zujian1 .container .box1 .box1a .pcn4 .layui-form-select dl dd {
  line-height: 2;
}
.public-zujian1 .container .box1 .box1a .pcn4 .layui-form-select .layui-edge {
  background-image: url(../images/ico-arrow.svg);
  width: 14px;
  margin-top: -5px;
  height: 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 0;
  transform: rotate(90deg);
  right: 0.2rem;
}
@media (max-width: 991px) {
  .public-zujian1 .container .box1 .box1b {
    width: 100%;
  }
}
.public-zujian1 .container .box1 .box1b .pcn1 {
  width: 3rem;
  margin-bottom: 0.2rem;
  position: relative;
}
@media (max-width: 1260px) {
  .public-zujian1 .container .box1 .box1b .pcn1 {
    width: 2.4rem;
  }
}
@media (max-width: 991px) {
  .public-zujian1 .container .box1 .box1b .pcn1 {
    width: 100%;
  }
}
.public-zujian1 .container .box1 .box1b .pcn1 input {
  width: 100%;
  line-height: 1.625;
  border: 1px solid #e6e6e6 !important;
  box-shadow: initial !important;
  border-radius: 0.5rem;
  color: #666;
  padding: 0.11rem 1rem 0.11rem 0.2rem;
  height: auto;
}
.public-zujian1 .container .box1 .box1b .pcn1 input::placeholder {
  color: #666;
}
.public-zujian1 .container .box1 .box1b .pcn1 button {
  position: absolute;
  right: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.public-zujian1 .container .box1 .box1b .pcn1 button img {
  width: 0.15rem;
  height: auto;
}
@media (max-width: 991px) {
  .public-zujian1 .container .box1 .box1b .pcn1 button img {
    width: 0.2rem;
  }
}
.public-zujian1 .container .box2 {
  text-align: center;
  margin-top: 0.35rem;
}
.public-zujian1 .container .box2 .cn1 {
  line-height: 1.625;
  color: #666666;
}
.public-zujian1 .container .box2 .cn1 span {
  color: #003893;
}
.case-list2 .container .box2 {
  text-align: center;
  margin-top: 0.35rem;
}
.case-list2 .container .box2 .cn1 {
  line-height: 1.625;
  color: #666666;
}
.case-list2 .container .box2 .cn1 span {
  color: #003893;
}
.case-list2 .container .public-news-list2 {
  margin-top: 0;
}
.case-list2 .container .hi-pagination1 {
  margin-top: 0.6rem;
}
.hi-pagination1 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hi-pagination1 .c-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.hi-pagination1 .c-box a {
  margin: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  min-width: 50px;
  height: 50px;
  border-radius: 25px;
  border: 1px solid #eee;
  color: #666;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .hi-pagination1 .c-box a {
    min-width: 40px;
    height: 40px;
    border-radius: 20px;
  }
}
.hi-pagination1 .c-box a img,
.hi-pagination1 .c-box a svg {
  width: 16px;
  height: 16px;
}
.hi-pagination1 .c-box a img path,
.hi-pagination1 .c-box a svg path {
  fill: currentColor;
}
.hi-pagination1 .c-box a:hover,
.hi-pagination1 .c-box a.on {
  color: #fff;
  border-color: #003893;
  background-color: #003893;
}
.hi-pagination1 .c-box a:hover svg path,
.hi-pagination1 .c-box a.on svg path {
  fill: #fff;
}
.hi-pagination1 .c-box .c-prev {
  transform: rotate(180deg);
}
.hi-pagination1 .c-box2 form {
  margin: 0 5px;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .hi-pagination1 .c-box2 form {
    display: none;
  }
}
.hi-pagination1 .c-box2 form input {
  margin: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #eee;
  color: #666;
  text-align: center;
}
.public-contact {
  padding-top: 1.15rem;
  margin-bottom: 1.2rem;
}
.public-contact .container .cn1 {
  line-height: 1.27777778;
  color: #000000;
  text-align: center;
}
@media (max-width: 991px) {
  .public-contact .container .cn1.pccn1 {
    display: none;
  }
}
.public-contact .container .cn1.mbcn1 {
  display: none;
}
@media (max-width: 991px) {
  .public-contact .container .cn1.mbcn1 {
    display: block;
  }
}
.public-contact .container .cn2 {
  margin-top: 0.15rem;
  line-height: 1.5;
  text-align: center;
}
.public-contact .container .public-btn {
  margin-top: 0.35rem;
}
.case-info1 {
  padding-top: 1.15rem;
}
.case-info1 .container .box1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.case-info1 .container .box1 .left {
  max-width: 75%;
  padding-right: 0.3rem;
}
@media (max-width: 767px) {
  .case-info1 .container .box1 .left {
    max-width: 100%;
    width: 100%;
  }
}
.case-info1 .container .box1 .left .cn1 {
  color: #000000;
  line-height: 1.27777778;
}
.case-info1 .container .box1 .left .cn2 {
  margin-top: 0.25rem;
  display: flex;
  flex-wrap: wrap;
}
.case-info1 .container .box1 .left .cn2 .cn3 {
  margin-right: 0.4rem;
  display: flex;
  align-items: center;
  color: #666666;
}
.case-info1 .container .box1 .left .cn2 .cn3 img {
  width: 0.2rem;
  height: 0.2rem;
  margin-right: 0.1rem;
}
@media (max-width: 991px) {
  .case-info1 .container .box1 .left .cn2 .cn3 img {
    width: 0.4rem;
    height: 0.4rem;
  }
}
@media (max-width: 767px) {
  .case-info1 .container .box1 .right {
    width: 100%;
    margin-top: 0.6rem;
  }
  .case-info1 .container .box1 .right .public-btn.public-btnblue {
    justify-content: flex-end;
  }
}
.case-info1 .container .box2 {
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.case-info1 .container .box2 .left {
  width: 62.5%;
}
@media (max-width: 991px) {
  .case-info1 .container .box2 .left {
    width: 100%;
  }
}
.case-info1 .container .box2 .left .img::before {
  padding-top: 60%;
}
.case-info1 .container .box2 .right {
  width: 37.5%;
  padding-left: 1rem;
}
@media (max-width: 991px) {
  .case-info1 .container .box2 .right {
    width: 100%;
    margin-top: 1rem;
    padding-left: 0;
  }
}
.case-info1 .container .box2 .right .rightbox .cn1 {
  color: #000000;
  line-height: 1.27777778;
}
.case-info1 .container .box2 .right .rightbox .cn2 {
  margin-top: 0.2rem;
  color: #666666;
  line-height: 1.66666667;
}
.case-info1 .container .box2 .right .rightbox .cn3 {
  margin-top: 0.55rem;
  width: 100%;
  height: 1px;
  background-color: #e2e2e2;
}
.case-info1 .container .box2 .right .rightbox .cn4 {
  margin-top: 0.5rem;
  color: #000000;
  line-height: 1.5;
}
.case-info1 .container .box2 .right .rightbox .cn5 {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.05rem;
}
.case-info1 .container .box2 .right .rightbox .cn5 .cn6 {
  width: 0.5rem;
  height: 0.5rem;
  border: 1px solid #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  margin-right: 0.2rem;
  border-radius: 50%;
  margin-top: 0.2rem;
}
@media (max-width: 991px) {
  .case-info1 .container .box2 .right .rightbox .cn5 .cn6 {
    width: 0.76rem;
    height: 0.76rem;
  }
}
.case-info1 .container .box2 .right .rightbox .cn5 .cn6:before {
  display: none;
}
.case-info1 .container .box2 .right .rightbox .cn5 .cn6 svg {
  width: 100%;
  height: 100%;
}
.case-info1 .container .box2 .right .rightbox .cn5 .cn6 svg path {
  fill: #999;
  opacity: 1;
  stroke: none;
  transition: all 0.5s;
}
.case-info1 .container .box2 .right .rightbox .cn5 .cn6:hover {
  border: 1px solid #003893;
  background-color: #003893;
}
.case-info1 .container .box2 .right .rightbox .cn5 .cn6:hover svg path {
  fill: #fff;
}
.case-info2 {
  padding-top: 1.15rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #e6e6e6;
}
.case-info2 .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.case-info2 .container .leftbox2 {
  margin-top: 1.15rem;
}
.case-info2 .container .leftbox3 {
  margin-top: 1.15rem;
}
.case-info2 .container .left {
  width: 62.5%;
}
@media (max-width: 991px) {
  .case-info2 .container .left {
    width: 100%;
  }
}
.case-info2 .container .right {
  width: 37.5%;
  padding-left: 1rem;
  position: sticky;
  position: -webkit-sticky;
  right: 0;
  top: 1.2rem;
}
@media (max-width: 991px) {
  .case-info2 .container .right {
    width: 100%;
    position: relative;
    top: 0;
    padding-left: 0;
    margin-top: 1.2rem;
  }
}
.case-info2 .container .rightbox2 {
  margin-top: 0.2rem;
  border-top: 1px solid #e6e6e6;
  padding-top: 0.3rem;
}
.case-info2 .container .rightbox2 .cn9a {
  margin-top: 0.3rem;
  display: flex;
  align-items: center;
}
.case-info2 .container .rightbox2 .cn9a:nth-child(1) {
  margin-top: 0;
}
.case-info2 .container .rightbox2 .cn9a .cn9 {
  margin-right: 0.3rem;
  flex-shrink: 0;
  width: 0.8rem;
}
@media (max-width: 991px) {
  .case-info2 .container .rightbox2 .cn9a .cn9 {
    width: 1.2rem;
  }
}
.case-info2 .container .rightbox2 .cn9a .cn9::before {
  padding-top: 56.25%;
}
.case-info2 .container .rightbox2 .cn9a .cn10 {
  color: #666666;
  transition: all 0.5s;
}
.case-info2 .container .rightbox2 .cn9a:hover .cn10 {
  color: #003893;
}
.case-info2 .container .cn1 {
  margin-top: 0.6rem;
  width: 100%;
}
.case-info2 .container .cn1 img {
  width: 100%;
}
.case-info2 .container .cn2 {
  margin-top: 0.35rem;
  line-height: 1.41666667;
  color: #000000;
}
.case-info2 .container .cn3 {
  margin-top: 0.2rem;
  line-height: 1.55555556;
  color: #666666;
}
.case-info2 .container .cn4 {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}
@media (max-width: 991px) {
  .case-info2 .container .cn4 {
    justify-content: space-between;
  }
}
.case-info2 .container .cn4 .cn5 {
  margin-right: 0.2rem;
  border: 1px solid #e6e6e6;
  width: calc((100% - 0.4rem) / 3);
  margin-top: 0.2rem;
}
@media (max-width: 991px) {
  .case-info2 .container .cn4 .cn5 {
    width: calc(50% - 0.1rem);
    margin-right: 0;
  }
}
.case-info2 .container .cn4 .cn5:nth-child(3n) {
  margin-right: 0;
}
.case-info2 .container .cn4 .cn5 .img {
  width: 100%;
}
.case-info2 .container .cn4 .cn5 .cn6 {
  border-top: 1px solid #e6e6e6;
  text-align: center;
  color: #000000;
  line-height: 1.55555556;
  padding: 0.25rem;
}
.case-info2 .container .cn4 .cn5:hover .img img {
  transform: scale(1.05);
}
.case-info2 .container .cn7 {
  margin-top: 0.55rem;
}
.case-info2 .container .cn7 .cn7a .cn7b img {
  width: 0.36rem;
}
.case-info2 .container .cn7 .cn7a .cn7c {
  padding: 0 0.6rem;
}
@media (max-width: 991px) {
  .case-info2 .container .cn7 .cn7a .cn7c {
    padding: 0 0 0 0.6rem;
  }
}
.case-info2 .container .cn7 .cn7a .cn7c .cn7d {
  color: #666;
  line-height: 1.66666667;
  display: block;
  width: 100%;
}
.case-info2 .container .cn7 .cn7a .cn7c .cn7e {
  margin-top: 0.3rem;
  display: block;
  text-align: right;
}
.case-info2 .container .cn7 .cn7a .cn7c .cn7e img {
  transform: rotate(180deg);
  width: 0.36rem;
}
.case-info2 .container .cn7 .cn8 {
  margin-top: 0.1rem;
  display: flex;
  align-items: center;
  padding: 0 0.6rem;
}
.case-info2 .container .cn7 .cn8 .cn8a {
  flex-shrink: 0;
  margin-right: 0.3rem;
  width: 0.8rem;
  height: 0.8rem;
  background-color: #Fff;
  border: 2px solid #f5f5f5;
  border-radius: 50%;
  box-shadow: 0px 0px 30px 0px rgba(3, 0, 0, 0.05);
}
@media (max-width: 991px) {
  .case-info2 .container .cn7 .cn8 .cn8a {
    width: 1.2rem;
    height: 1.2rem;
  }
}
.case-info2 .container .cn7 .cn8 .cn8b .cn8c {
  display: block;
  color: #000000;
  line-height: 1.5;
}
.case-info2 .container .cn7 .cn8 .cn8b .cn8d {
  margin-top: 0.05rem;
  line-height: 1.625;
  color: #999;
  display: block;
}
.case-info2 .container .public-btn {
  margin-top: 0.35rem;
}
.news-info1 {
  padding-top: 1.15rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #e6e6e6;
}
.news-info1 .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}
.news-info1 .container .left {
  width: 62.5%;
}
@media (max-width: 991px) {
  .news-info1 .container .left {
    width: 100%;
  }
}
.news-info1 .container .left .leftbox {
  color: #666666;
  line-height: 1.66666667;
}
.news-info1 .container .left .leftbox2 {
  margin-top: 0.6rem;
  border-top: 1px solid #e6e6e6;
  padding: 0.6rem 0 0.5rem;
  border-bottom: 1px solid #e6e6e6;
}
.news-info1 .container .left .leftbox2 .cn4 {
  text-align: center;
  color: #000000;
  line-height: 1.5;
}
.news-info1 .container .left .leftbox2 .cn5 {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.05rem;
}
.news-info1 .container .left .leftbox2 .cn5 .cn6 {
  width: 0.5rem;
  height: 0.5rem;
  border: 1px solid #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  margin: 0.2rem 0.1rem;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .news-info1 .container .left .leftbox2 .cn5 .cn6 {
    width: 0.76rem;
    height: 0.76rem;
  }
}
.news-info1 .container .left .leftbox2 .cn5 .cn6:before {
  display: none;
}
.news-info1 .container .left .leftbox2 .cn5 .cn6 svg {
  width: 100%;
  height: 100%;
}
.news-info1 .container .left .leftbox2 .cn5 .cn6 svg path {
  fill: #999;
  opacity: 1;
  stroke: none;
  transition: all 0.5s;
}
.news-info1 .container .left .leftbox2 .cn5 .cn6:hover {
  border: 1px solid #003893;
  background-color: #003893;
}
.news-info1 .container .left .leftbox2 .cn5 .cn6:hover svg path {
  fill: #fff;
}
.news-info1 .container .left .leftbox3 {
  padding-top: 0.6rem;
  align-items: center;
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}
.news-info1 .container .left .leftbox3 .leftbox4 {
  width: 70%;
}
@media (max-width: 991px) {
  .news-info1 .container .left .leftbox3 .leftbox4 {
    width: 100%;
  }
}
.news-info1 .container .left .leftbox3 .leftbox4 .cn50 {
  color: #666666;
  line-height: 1.77777778;
  transition: all 0.4s;
  display: block;
}
@media (max-width: 991px) {
  .news-info1 .container .left .leftbox3 .leftbox4 .cn50 {
    width: 100%;
  }
}
.news-info1 .container .left .leftbox3 .leftbox4 .cn50:hover {
  color: #003893;
}
.news-info1 .container .left .leftbox3 .leftbox4 .cn50.cn5none {
  color: #666666;
  cursor: auto;
}
.news-info1 .container .left .leftbox3 .leftbox5 {
  flex-shrink: 0;
  width: 100%;
  margin-top: 0.5rem;
}
.news-info1 .container .right {
  width: 31.25%;
  position: sticky;
  position: -webkit-sticky;
  right: 0;
  top: 1.2rem;
}
@media (max-width: 991px) {
  .news-info1 .container .right {
    width: 100%;
    position: relative;
    top: 0;
    margin-bottom: 0.6rem;
  }
}
.news-info1 .container .right .cn1 {
  color: #000000;
  line-height: 1.27777778;
}
.news-info1 .container .right .cn2 {
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #e6e6e6;
  margin-top: 0.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.news-info1 .container .right .cn2 .cn3 {
  margin-right: 0.2rem;
  display: flex;
  align-items: center;
  color: #666666;
}
.news-info1 .container .right .cn2 .cn3 img {
  width: 0.2rem;
  height: 0.2rem;
  margin-right: 0.1rem;
}
@media (max-width: 991px) {
  .news-info1 .container .right .cn2 .cn3 img {
    width: 0.4rem;
    height: 0.4rem;
  }
}
.case-info3 {
  padding-top: 1.15rem;
}
.case-info3 .container .cn1 {
  text-align: center;
  color: #000000;
  line-height: 1.20833333em;
}
.policy {
  background-color: #fff;
  padding: 1.2rem 0 0;
}
.policy .container {
  max-width: 1440px;
}
.policy .container .box1 {
  padding-bottom: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-bottom: 1px solid #e6e6e6;
  flex-direction: column;
}
.policy .container .box1 .cn1 {
  width: 100%;
  text-align: center;
  color: #222222;
}
@media (max-width: 767px) {
  .policy .container .box1 .cn1 {
    width: 100%;
    text-align: center;
  }
}
.policy .container .box1 .cn2 {
  margin-top: 0.1rem;
  width: 100%;
  text-align: center;
}
@media (max-width: 767px) {
  .policy .container .box1 .cn2 {
    margin-top: 0.15rem;
    width: 100%;
    justify-content: center;
  }
}
.policy .container .box1 .cn2 .cn3 {
  color: #666;
}
@media (max-width: 767px) {
  .policy .container .box1 .cn2 .cn3 {
    margin: 0 0.1rem;
  }
}
.policy .container .public-content {
  padding-top: 0.55rem;
  line-height: 1.5;
}
.policy .container .public-content h3 {
  font-size: 30px;
  color: #000000;
}
@media (max-width: 1580px) {
  .policy .container .public-content h3 {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .policy .container .public-content h3 {
    font-size: 0.36rem;
  }
}
.policy .container .public-content p {
  color: #666666;
}
.sitemap {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
.sitemap .cn2 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sitemap .cn2 .cn3 {
  max-width: 25%;
  padding-right: 0.1rem;
  margin-top: 0.45rem;
  text-align: left;
}
@media (max-width: 991px) {
  .sitemap .cn2 .cn3 {
    max-width: calc(100% / 3);
    width: calc(100% / 3);
  }
}
@media (max-width: 767px) {
  .sitemap .cn2 .cn3 {
    max-width: 50%;
    width: 50%;
  }
}
.sitemap .cn2 .cn3 .cn4 {
  line-height: 1.5;
  color: #000000;
  transition: all 0.5s;
}
.sitemap .cn2 .cn3 .cn4:hover {
  font-weight: normal;
  text-decoration: underline;
}
.sitemap .cn2 .cn3 .cn5 {
  margin-top: 0.2rem;
}
.sitemap .cn2 .cn3 .cn5 .cn6 {
  margin-bottom: 0.1rem;
}
.sitemap .cn2 .cn3 .cn5 .cn6 .cn7 {
  color: #666666;
  line-height: 1.66666667;
  transition: all 0.5s;
}
.sitemap .cn2 .cn3 .cn5 .cn6 .cn7 svg {
  width: 0.16rem;
  vertical-align: middle;
}
@media (max-width: 991px) {
  .sitemap .cn2 .cn3 .cn5 .cn6 .cn7 svg {
    width: 0.24rem;
  }
}
.sitemap .cn2 .cn3 .cn5 .cn6 .cn7 svg path {
  fill: #666666;
  opacity: 1;
  stroke: none;
  transition: all 0.5s;
}
.sitemap .cn2 .cn3 .cn5 .cn6 .cn7:hover {
  color: #003893;
}
.sitemap .cn2 .cn3 .cn5 .cn6 .cn7:hover svg path {
  fill: #003893;
}
.sitemap .cn2 .cn3 .cn9 {
  margin-top: 0.1rem;
  margin-bottom: 0.2rem;
}
.sitemap .cn2 .cn3 .cn9 .cn8 {
  color: #666666;
  line-height: 1.625;
  transition: all 0.5s;
}
.sitemap .cn2 .cn3 .cn9 .cn8:hover {
  color: #003893;
}
/* 404 */
.errorbox {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  position: relative;
}
.errorbox .img {
  z-index: 5;
  position: relative;
  height: 3.74rem;
  max-width: 100%;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .errorbox .img {
    height: 2rem;
  }
}
.errorbox .img img {
  width: auto;
  max-width: initial;
  height: 100%;
}
.errorbox .f_text {
  position: relative;
  color: #000;
  font-weight: bold;
}
@media (max-width: 991px) {
  .errorbox .f_text {
    font-size: 0.28rem;
  }
}
.errorbox .f_text span {
  color: #0067da;
}
.errorbox .f_text a {
  color: #0067da;
  display: inline-block;
  margin-left: 0.1rem;
}
.errorbox .f_text a:hover {
  text-decoration: underline;
}
.errorbox .public-btn {
  margin-top: 0.55rem;
  justify-content: center;
}
.errorbox .text16 {
  margin-top: 0.2rem;
  text-align: center;
  color: #666666;
}
.errorbox .text16 span {
  color: #003893;
}
.errorbox .text16 em {
  font-style: normal;
  color: #003893;
}
/* End */
.policy .container .box1 .cn20 {
  text-align: center;
  color: #666666;
  line-height: 1.625;
  margin-top: 0.2rem;
}
.policy .container .box1.box9 {
  border-bottom: 0;
}
.policy .container .box1 form {
  width: 100%;
}
.policy .container .box1 .qcn2d {
  margin-top: 0.4rem;
  width: 100%;
  position: relative;
}
.policy .container .box1 .qcn2d input {
  width: 100%;
  line-height: 0.9rem;
  border-bottom: 1px solid #e6e6e6;
  color: #666666;
  padding: 0 3rem 0 0 ;
}
@media (max-width: 991px) {
  .policy .container .box1 .qcn2d input {
    line-height: 1.2rem;
  }
}
.policy .container .box1 .qcn2d input::placeholder {
  color: #666;
}
.policy .container .box1 .qcn2d .qcn2e {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .policy .container .box1 .qcn2d .qcn2e {
    line-height: 0.76rem;
    border-radius: 0.38rem;
  }
}
.policy .container .box1 .qcn2d .qcn2f {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .policy .container .box1 .qcn2d .qcn2f {
    line-height: 0.76rem;
    border-radius: 0.38rem;
  }
}
.policy .container .box2 {
  margin-top: 1rem;
  text-align: center;
}
.policy .container .box2 .cn10 img {
  height: 1.05rem;
}
.policy .container .box2 .cn11 {
  margin-top: 0.4rem;
  color: #666666;
  line-height: 1.5;
}
.public-search .public-search2 {
  margin-top: 0.5rem;
  display: flex;
  justify-content: space-between;
}
.public-search .public-search2 .left .cn1 {
  color: #000000;
}
.public-search .public-search2 .left .cn1 sup {
  margin-left: 0.1rem;
}
.public-search .public-search2 .right {
  display: flex;
  align-items: center;
}
.public-search .public-news-list {
  margin-top: 0;
}
.public-search .public-news-list2 {
  margin-top: 0;
}
.public-search .hi-pagination1 {
  margin-top: 0.6rem;
}
.inform-box1 {
  padding: 1.2rem 0 0;
}
.inform-box1 .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.inform-box1 .container .left {
  position: sticky;
  position: -webkit-sticky;
  left: 0;
  top: 1.2rem;
  width: 31.25%;
}
@media (max-width: 767px) {
  .inform-box1 .container .left {
    width: 100%;
    position: relative;
    top: 0;
  }
}
.inform-box1 .container .left .cn1 {
  line-height: 1.27777778em;
  color: #000000;
}
.inform-box1 .container .left .cn2 {
  margin-top: 0.2rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #e6e6e6;
}
.inform-box1 .container .left .cn2 .cn3 {
  display: flex;
}
@media (max-width: 1260px) {
  .inform-box1 .container .left .cn2 .cn3 {
    margin-bottom: 0.2rem;
  }
}
.inform-box1 .container .left .cn2 .cn3 .cn4 {
  margin-right: 0.1rem;
  flex-shrink: 0;
  transform: translateY(0.05rem);
}
.inform-box1 .container .left .cn2 .cn3 .cn4 img {
  width: 0.2rem;
  height: 0.2rem;
}
@media (max-width: 1260px) {
  .inform-box1 .container .left .cn2 .cn3 .cn4 img {
    width: 0.3rem;
    height: 0.3rem;
  }
}
.inform-box1 .container .left .cn2 .cn3 .cn5 {
  line-height: 0.3rem;
}
@media (max-width: 1260px) {
  .inform-box1 .container .left .cn2 .cn3 .cn5 {
    line-height: 0.4rem;
  }
}
.inform-box1 .container .right {
  width: 63.75%;
}
@media (max-width: 767px) {
  .inform-box1 .container .right {
    width: 100%;
    margin-top: 1rem;
  }
}
.inform-box1 .container .right .rightbox1 .rightbox2 {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e6e6e6;
}
.inform-box1 .container .right .rightbox1 .rightbox2:nth-child(1) {
  padding-top: 0;
}
.inform-box1 .container .right .rightbox1 .rightbox2 .cn6 {
  line-height: 1.25;
  color: #000000;
  margin-bottom: 0.2rem;
}
.inform-box1 .container .right .rightbox1 .rightbox2 .cn7 {
  color: #666;
  line-height: 2;
}
.inform-box1 .container .right .public-btn {
  margin-top: 0.6rem;
}
.work-box1 {
  padding-top: 1.2rem;
}
.work-box1 .container .cn1 {
  text-align: center;
  line-height: 1.25;
  color: #000;
  margin-bottom: 0.3rem;
  width: 75%;
  margin: 0 auto 0.3rem;
  letter-spacing: -1px;
}
@media (max-width: 991px) {
  .work-box1 .container .cn1 {
    width: 100%;
  }
}
.work-box1 .container .cn2 {
  margin: 0 auto;
  color: #666666;
  width: 75%;
  line-height: 1.5;
  font-size: 20px !important;
}
@media (max-width: 1580px) {
  .work-box1 .container .cn2 {
    font-size: 18px !important;
  }
}
@media (max-width: 1260px) {
  .work-box1 .container .cn2 {
    font-size: 16px !important;
  }
}
@media (max-width: 991px) {
  .work-box1 .container .cn2 {
    font-size: 0.3rem !important;
  }
}
.work-box1 .container .cn2 p,
.work-box1 .container .cn2 span,
.work-box1 .container .cn2 b {
  font-size: 20px !important;
}
@media (max-width: 1580px) {
  .work-box1 .container .cn2 p,
  .work-box1 .container .cn2 span,
  .work-box1 .container .cn2 b {
    font-size: 18px !important;
  }
}
@media (max-width: 1260px) {
  .work-box1 .container .cn2 p,
  .work-box1 .container .cn2 span,
  .work-box1 .container .cn2 b {
    font-size: 16px !important;
  }
}
@media (max-width: 991px) {
  .work-box1 .container .cn2 p,
  .work-box1 .container .cn2 span,
  .work-box1 .container .cn2 b {
    font-size: 0.3rem !important;
  }
}
.work-box1 .container .cn2.cn22 {
  width: 75%;
}
@media (max-width: 991px) {
  .work-box1 .container .cn2.cn22 {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .work-box1 .container .cn2 {
    width: 100%;
  }
}
.work-box1 .container .cn2 p {
  text-align: left;
}
.work-box1 .container .public-swiper1bigbox {
  margin-top: 0.5rem;
}
.work-box1 .container .public-swiper1bigbox.public-swiper1bigboxmt120 {
  margin-top: 1.2rem;
  padding-bottom: 0;
}
.public-video-box {
  margin-top: 0.55rem;
  width: 100%;
}
.public-video-box .bgimg1 {
  z-index: 2;
}
.public-video-box video {
  opacity: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 3;
}
.public-video-box::before {
  padding-top: 50%;
}
.public-video-box .public-blue-btn {
  opacity: 1;
  cursor: pointer;
  transition: all 0.5s;
}
.public-video-box .public-blue-btn:hover {
  transform: translate(-50%, -50%) scale(1.05);
}
.public-video-box.on video {
  opacity: 1;
}
.public-video-box.on .public-blue-btn {
  opacity: 0;
}
.public-table {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.public-table .ptbox1 {
  border: 1px solid #e6e6e6;
  width: 25%;
  border-left: 0;
  border-top: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0.6rem;
}
@media (max-width: 991px) {
  .public-table .ptbox1 {
    padding: 0.6rem 0.3rem;
    width: 50%;
    border: 1px solid #e6e6e6 !important;
  }
}
.public-table .ptbox1:nth-child(-n+4) {
  border-top: 1px solid #e6e6e6;
}
.public-table .ptbox1:nth-child(4n-3) {
  border-left: 1px solid #e6e6e6;
}
.public-table .ptbox1 .ptbox2 {
  width: calc(100% - 0.5rem);
  padding-right: 0.3rem;
}
@media (max-width: 767px) {
  .public-table .ptbox1 .ptbox2 {
    width: 100%;
    padding-right: 0;
  }
}
.public-table .ptbox1 .ptbox2 .ptcn1 {
  display: block;
  font-size: 0.7rem;
  color: #003893;
  line-height: 1;
}
.public-table .ptbox1 .ptbox2 .ptcn1 em {
  font-style: normal;
}
.public-table .ptbox1 .ptbox2 .ptcn2 {
  display: block;
  color: #666666;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .public-table .ptbox1 .ptbox3 {
    width: 100%;
    margin-top: 0.3rem;
  }
}
.public-table .ptbox1 .ptbox3 img {
  width: 0.5rem;
}
@media (max-width: 767px) {
  .public-table .ptbox1 .ptbox3 img {
    width: 0.76rem;
  }
}
.public-blue-btn {
  width: 1rem;
  height: 1rem;
  background-color: #003893;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  position: relative;
}
.public-blue-btn .pbtu1 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  object-fit: cover;
}
.public-blue-btn.public-position {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.public-blue-btn .pbcn1 {
  color: #fff;
}
.public-swiper1bigbox {
  overflow: hidden;
  padding-bottom: 0.6rem;
}
.public-swiper1bigbox .public-swiper1bigbox2 {
  z-index: 3;
}
.public-swiper1bigbox .public-swiper1bigbox2 .swiper-button-prev {
  position: absolute;
  left: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
}
.public-swiper1bigbox .public-swiper1bigbox2 .swiper-button-next {
  position: absolute;
  right: 0.2rem;
  left: initial;
  top: 50%;
  transform: translateY(-50%);
}
.public-swiper1bigbox .public-swiper1bigbox2::before {
  padding-top: 42.5%;
}
@media (max-width: 767px) {
  .public-swiper1bigbox .public-swiper1bigbox2::before {
    padding-top: 100%;
  }
}
.public-swiper1bigbox .public-swiper1bigbox2 .tu1 {
  opacity: 0;
}
.public-swiper1bigbox .public-swiper1bigbox2 .tu1.on {
  opacity: 1;
}
.public-swiper1bigbox .public-swiper1bigbox2 .public-swiper1 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 90%;
  z-index: 3;
  overflow: hidden;
}
@media (max-width: 767px) {
  .public-swiper1bigbox .public-swiper1bigbox2 .public-swiper1 {
    width: 100%;
  }
}
.public-swiper1bigbox .public-swiper1bigbox2 .public-swiper1 .swiper-slide {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.6);
  color: #Fff;
  line-height: 1.41666667;
  padding: 0.3rem;
  text-align: center;
  transition: all 0.5s;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.public-swiper1bigbox .public-swiper1bigbox2 .public-swiper1 .swiper-slide.swiper-slide-thumb-active {
  background-color: rgba(255, 255, 255, 0.6);
  color: #000;
}
.public-swiper1bigbox .public-swiper1bigbox3 {
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .public-swiper1bigbox .public-swiper1bigbox3 {
    width: 100%;
  }
}
.public-swiper1bigbox .public-swiper1bigbox3 .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem 0.8rem;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.06);
}
@media (max-width: 991px) {
  .public-swiper1bigbox .public-swiper1bigbox3 .swiper-wrapper .swiper-slide {
    padding: 1rem 0.3rem;
  }
}
@media (max-width: 767px) {
  .public-swiper1bigbox .public-swiper1bigbox3 .swiper-wrapper .swiper-slide {
    box-shadow: initial;
  }
}
.public-swiper1bigbox .public-swiper1bigbox3 .swiper-wrapper .swiper-slide .left {
  width: 50%;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .public-swiper1bigbox .public-swiper1bigbox3 .swiper-wrapper .swiper-slide .left {
    width: 100%;
    padding-right: 0;
  }
}
.public-swiper1bigbox .public-swiper1bigbox3 .swiper-wrapper .swiper-slide .left .pcn1 {
  color: #000000;
  line-height: 1.27777778;
}
.public-swiper1bigbox .public-swiper1bigbox3 .swiper-wrapper .swiper-slide .left .pcn2 {
  margin-top: 0.3rem;
  line-height: 1.66666667;
  color: #666666;
}
.public-swiper1bigbox .public-swiper1bigbox3 .swiper-wrapper .swiper-slide .left .pcn3 {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.1rem;
}
.public-swiper1bigbox .public-swiper1bigbox3 .swiper-wrapper .swiper-slide .left .pcn3 .pcn4 {
  margin-right: 0.2rem;
  margin-top: 0.2rem;
  border: 2px solid #003893;
  text-align: center;
  min-width: 1.6rem;
  border-radius: 1rem;
  padding: 0.05rem 0.3rem;
  color: #003893;
  display: flex;
  align-items: center;
  line-height: 1.1;
}
.public-swiper1bigbox .public-swiper1bigbox3 .swiper-wrapper .swiper-slide .left .public-btn {
  margin-top: 0.3rem;
}
.public-swiper1bigbox .public-swiper1bigbox3 .swiper-wrapper .swiper-slide .right {
  width: 50%;
}
.public-swiper1bigbox .public-swiper1bigbox3 .swiper-wrapper .swiper-slide .right .public-swiper1bigbox4 {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.public-swiper1bigbox .public-swiper1bigbox3 .swiper-wrapper .swiper-slide .right .public-swiper1bigbox4 .swiper-slide {
  padding: 0;
  box-shadow: initial;
}
@media (max-width: 991px) {
  .public-swiper1bigbox .public-swiper1bigbox3 .swiper-wrapper .swiper-slide .right {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.public-swiper1bigbox .public-swiper1bigbox3 .swiper-wrapper .swiper-slide .right .img {
  width: 100%;
}
.public-swiper1bigbox .public-swiper1bigbox3 .swiper-wrapper .swiper-slide .right .img::before {
  padding-top: 56.25%;
}
.contact-box1 {
  padding-top: 1.2rem;
}
.contact-box1 .container .cn1 {
  text-align: center;
  line-height: 1.25;
  color: #000;
  margin: 0 0 0.3rem;
}
.contact-box1 .container .cn2 {
  color: #666666;
  text-align: center;
  line-height: 1.5;
  margin: 0 auto;
  width: 75%;
  font-size: 20px !important;
}
@media (max-width: 991px) {
  .contact-box1 .container .cn2 {
    width: 100%;
  }
}
@media (max-width: 1580px) {
  .contact-box1 .container .cn2 {
    font-size: 18px !important;
  }
}
@media (max-width: 1260px) {
  .contact-box1 .container .cn2 {
    font-size: 16px !important;
  }
}
@media (max-width: 991px) {
  .contact-box1 .container .cn2 {
    font-size: 0.3rem !important;
  }
}
.contact-box1 .container .cn2 p,
.contact-box1 .container .cn2 span,
.contact-box1 .container .cn2 b {
  font-size: 20px !important;
}
@media (max-width: 1580px) {
  .contact-box1 .container .cn2 p,
  .contact-box1 .container .cn2 span,
  .contact-box1 .container .cn2 b {
    font-size: 18px !important;
  }
}
@media (max-width: 1260px) {
  .contact-box1 .container .cn2 p,
  .contact-box1 .container .cn2 span,
  .contact-box1 .container .cn2 b {
    font-size: 16px !important;
  }
}
@media (max-width: 991px) {
  .contact-box1 .container .cn2 p,
  .contact-box1 .container .cn2 span,
  .contact-box1 .container .cn2 b {
    font-size: 0.3rem !important;
  }
}
.history-box1 {
  overflow: hidden;
  margin-top: 1.2rem;
}
.history-box1 .container {
  position: relative;
}
@media (max-width: 767px) {
  .history-box1 .container .bigbox {
    padding-top: 1.2rem;
  }
}
.history-box1 .container .bigbox .public-blue-btn {
  width: 1.6rem;
  height: 1.6rem;
  margin: 0 auto;
}
.history-box1 .container .centerbox {
  width: 100%;
  position: relative;
  padding-top: 1.2rem;
}
.history-box1 .container .centerbox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: #e6e6e6;
}
@media (max-width: 767px) {
  .history-box1 .container .centerbox::before {
    display: none;
  }
}
.history-box1 .container .centerbox .centerbox2 {
  width: 100%;
}
.history-box1 .container .centerbox .centerbox2 .box {
  width: 37.5%;
  margin-top: -1rem;
}
.history-box1 .container .centerbox .centerbox2 .box:nth-child(1) {
  margin-top: 0 !important;
}
.history-box1 .container .centerbox .centerbox2 .box.on2 {
  margin: -1rem 0 0 auto;
}
.history-box1 .container .centerbox .centerbox2 .box.on2 .img::after {
  left: initial;
  right: 100%;
}
.history-box1 .container .centerbox .centerbox2 .box.on2 .img .public-blue-btn {
  position: absolute;
  top: 50%;
  left: -33.33333333%;
  right: initial;
  transform: translate(-0.4rem, -50%) scale(0.1);
  width: 0.8rem;
  height: 0.8rem;
}
.history-box1 .container .centerbox .centerbox2 .box.on.on2 .img .public-blue-btn {
  transform: translate(-0.4rem, -50%) scale(1);
}
.history-box1 .container .centerbox .centerbox2 .box.on .img .public-blue-btn {
  transform: translate(0.4rem, -50%) scale(1);
}
.history-box1 .container .centerbox .centerbox2 .box.on .img .public-blue-btn .pbtu1 {
  opacity: 1;
}
.history-box1 .container .centerbox .centerbox2 .box.on .img .public-blue-btn .pbcn1 {
  opacity: 1;
}
@media (max-width: 767px) {
  .history-box1 .container .centerbox .centerbox2 .box {
    width: 100%;
    margin: 0.6rem 0 0 !important;
  }
}
.history-box1 .container .centerbox .centerbox2 .box .img {
  overflow: initial;
  position: relative;
}
.history-box1 .container .centerbox .centerbox2 .box .img::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 33.33333333%;
  height: 2px;
  background-color: #e6e6e6;
}
@media (max-width: 767px) {
  .history-box1 .container .centerbox .centerbox2 .box .img::after {
    display: none;
  }
}
.history-box1 .container .centerbox .centerbox2 .box .img::before {
  padding-top: 50%;
}
.history-box1 .container .centerbox .centerbox2 .box .img .public-blue-btn {
  position: absolute;
  top: 50%;
  right: -33.33333333%;
  transform: translate(0.4rem, -50%) scale(0.1);
  width: 0.8rem;
  height: 0.8rem;
  transition: all 0.5s;
}
.history-box1 .container .centerbox .centerbox2 .box .img .public-blue-btn .pbtu1 {
  opacity: 0;
  transition: all 0.5s;
}
.history-box1 .container .centerbox .centerbox2 .box .img .public-blue-btn .pbcn1 {
  opacity: 0;
  transition: all 0.5s;
}
.history-box1 .container .centerbox .centerbox2 .box .pcn1 {
  margin-top: 0.25rem;
  color: #666666;
  line-height: 1.66666667;
}
.public-contact-list {
  margin-top: 0.15rem;
}
.public-contact-list .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .public-contact-list .swiper-wrapper {
    justify-content: space-between;
  }
}
.public-contact-list .swiper-wrapper .swiper-slide {
  margin-top: 0.5rem;
  margin-right: 0.5rem;
  transition: all 0.5s;
  height: auto;
  border: solid 1px #e6e6e6;
  width: calc((100% - 1rem) / 3);
}
@media (max-width: 991px) {
  .public-contact-list .swiper-wrapper .swiper-slide {
    margin-right: 0;
    width: calc(50% - 0.25rem);
  }
}
@media (max-width: 767px) {
  .public-contact-list .swiper-wrapper .swiper-slide {
    width: 100%;
  }
}
.public-contact-list .swiper-wrapper .swiper-slide:nth-child(3n) {
  margin-right: 0;
}
.public-contact-list .swiper-wrapper .swiper-slide .pimg::before {
  padding-top: 56%;
}
.public-contact-list .swiper-wrapper .swiper-slide .ptext {
  padding: 0.35rem 0.4rem;
}
.public-contact-list .swiper-wrapper .swiper-slide .ptext .pcn1 {
  color: #000000;
  line-height: 1.71428571;
}
@media (max-width: 991px) {
  .public-contact-list .swiper-wrapper .swiper-slide .ptext .pcn1 {
    font-size: 0.4rem;
  }
}
.public-contact-list .swiper-wrapper .swiper-slide .ptext .cn2 {
  margin-top: 0.2rem;
  width: 100%;
}
.public-contact-list .swiper-wrapper .swiper-slide .ptext .cn2 .cn3 {
  display: flex;
  text-align: left;
  margin-bottom: 0.1rem;
}
@media (max-width: 1260px) {
  .public-contact-list .swiper-wrapper .swiper-slide .ptext .cn2 .cn3 {
    margin-bottom: 0.2rem;
  }
}
.public-contact-list .swiper-wrapper .swiper-slide .ptext .cn2 .cn3 .cn4 {
  margin-right: 0.2rem;
  flex-shrink: 0;
  transform: translateY(0.05rem);
}
.public-contact-list .swiper-wrapper .swiper-slide .ptext .cn2 .cn3 .cn4 img {
  width: 0.2rem;
  height: 0.2rem;
}
@media (max-width: 1260px) {
  .public-contact-list .swiper-wrapper .swiper-slide .ptext .cn2 .cn3 .cn4 img {
    width: 0.3rem;
    height: 0.3rem;
  }
}
.public-contact-list .swiper-wrapper .swiper-slide .ptext .cn2 .cn3 .cn5 {
  line-height: 0.3rem;
  display: flex;
}
.public-contact-list .swiper-wrapper .swiper-slide .ptext .cn2 .cn3 .cn5 span {
  flex-shrink: 0;
}
@media (max-width: 1260px) {
  .public-contact-list .swiper-wrapper .swiper-slide .ptext .cn2 .cn3 .cn5 {
    font-size: 12px;
    line-height: 0.4rem;
  }
}
@media (max-width: 991px) {
  .public-contact-list .swiper-wrapper .swiper-slide .ptext .cn2 .cn3 .cn5 {
    font-size: 0.28rem;
  }
}
.public-contact-list .swiper-wrapper .swiper-slide .ptext .public-btn {
  margin-top: 0.2rem;
}
.public-contact-list .swiper-wrapper .swiper-slide:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
}
.public-contact-list .swiper-wrapper .swiper-slide:hover .pimg img {
  transform: scale(1.05);
}
.public-contact-list .swiper-wrapper .swiper-slide:hover .ptext .pcn1 {
  color: #003893;
}
.public-contact-list .swiper-wrapper .swiper-slide:hover .ptext .pcn3::before {
  width: 100%;
}
.public-contact-list .swiper-wrapper .swiper-slide:hover .ptext .pcn4 {
  color: #003893;
}
.public-contact-list .swiper-wrapper .swiper-slide:hover .ptext .pcn4 svg path {
  fill: #003893;
}
.public-servicefind-list {
  margin-top: 0.15rem;
}
.public-servicefind-list .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.public-servicefind-list .swiper-wrapper .swiper-slide {
  border-radius: 1rem;
  margin-top: 0.2rem;
  transition: all 0.5s;
  height: auto;
  border: solid 1px #e6e6e6;
  width: calc((100% - 0.6rem) / 2);
}
@media (max-width: 991px) {
  .public-servicefind-list .swiper-wrapper .swiper-slide {
    margin-right: 0;
    width: 100%;
  }
}
.public-servicefind-list .swiper-wrapper .swiper-slide:nth-child(2n) {
  margin-right: 0;
}
.public-servicefind-list .swiper-wrapper .swiper-slide .ptext {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.1rem 0.3rem;
}
.public-servicefind-list .swiper-wrapper .swiper-slide .ptext .pcn1 {
  color: #666;
  line-height: 1.625;
  padding-right: 0.3rem;
}
.public-servicefind-list .swiper-wrapper .swiper-slide .ptext .pcn4 {
  display: flex;
  align-items: center;
  color: #666666;
  transition: all 0.5s;
  flex-shrink: 0;
}
.public-servicefind-list .swiper-wrapper .swiper-slide .ptext .pcn4 svg {
  margin-right: 0.1rem;
}
.public-servicefind-list .swiper-wrapper .swiper-slide .ptext .pcn4 svg path {
  fill: #666;
  opacity: 1;
  stroke: none;
  transition: all 0.5s;
}
.public-servicefind-list .swiper-wrapper .swiper-slide:hover {
  border: 1px solid #003893;
  background-color: #003893;
}
.public-servicefind-list .swiper-wrapper .swiper-slide:hover .ptext .pcn1 {
  color: #Fff;
}
.public-servicefind-list .swiper-wrapper .swiper-slide:hover .ptext .pcn4 {
  color: #Fff;
}
.public-servicefind-list .swiper-wrapper .swiper-slide:hover .ptext .pcn4 svg path {
  fill: #Fff;
}
.public-about-box {
  margin-top: 0.55rem;
}
.public-about-box .pbox {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1.2rem;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.public-about-box .pbox:nth-child(1) {
  margin-top: 0;
}
.public-about-box .pbox:nth-child(even) {
  flex-direction: row-reverse;
}
.public-about-box .pbox:nth-child(even) .pleft .pimg::after {
  left: 0;
  background-image: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
}
.public-about-box .pbox:nth-child(even) .pright {
  padding: 0.6rem;
}
@media (max-width: 991px) {
  .public-about-box .pbox:nth-child(even) .pright {
    padding: 0.6rem 0.3rem;
  }
}
.public-about-box .pbox:hover .pleft .pimg img {
  transform: scale(1.05);
}
.public-about-box .pleft {
  width: 53.75%;
}
@media (max-width: 991px) {
  .public-about-box .pleft {
    width: 100%;
  }
}
.public-about-box .pleft .pimg {
  width: 100%;
}
.public-about-box .pleft .pimg::before {
  padding-top: 74.41860465%;
}
.public-about-box .pleft .pimg::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0.6rem;
  height: 100%;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(8px);
  background-image: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
  z-index: 3;
}
@media (max-width: 991px) {
  .public-about-box .pleft .pimg::after {
    display: none;
  }
}
.public-about-box .pright {
  overflow: auto;
  width: 46.25%;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 0.6rem;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .public-about-box .pright {
    width: 100%;
    padding: 0.6rem 0.3rem;
    height: auto !important;
  }
}
.public-about-box .pright .pcn1 {
  color: #000000;
  line-height: 1.33333333;
}
@media (max-width: 991px) {
  .public-about-box .pright .pcn1 {
    font-size: 0.4rem;
  }
}
.public-about-box .pright .pcn2 {
  margin-top: 0.3rem;
  color: #666;
  line-height: 1.66666667;
}
.public-about-box .pright .pcn3 {
  margin-top: 0.3rem;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .public-about-box .pright .pcn3 {
    font-size: 0.26rem;
  }
}
.public-about-box .pright .pcn3 .pcn4 {
  padding-right: 0.1rem;
  width: 50%;
  color: #666666;
  margin-top: 0.1rem;
}
@media (max-width: 767px) {
  .public-about-box .pright .pcn3 .pcn4 {
    width: 100%;
  }
}
.public-about-box .pright .pcn3 .pcn4 span {
  margin-right: 0.05rem;
}
.public-about-box .pright .pcn6 {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.1rem;
}
.public-about-box .pright .pcn6 .pcn5 {
  width: 1.25rem;
  height: 0.6rem;
  border-radius: 0.05rem;
  border: 1px solid #e6e6e6;
  text-align: center;
  line-height: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.2rem;
  margin-top: 0.2rem;
}
@media (max-width: 991px) {
  .public-about-box .pright .pcn6 .pcn5 {
    width: 1.8rem;
    height: 1rem;
  }
}
.public-about-box .pright .pcn6 .pcn5 img {
  max-height: 90%;
  max-width: 90%;
  object-fit: contain;
}
.esgswiper1 {
  border-top: 1px solid #e6e6e6;
  padding: 0.9rem 0;
  margin-top: 0.55rem;
  overflow: hidden;
}
.esgswiper1 .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: all 1s;
}
.esgswiper1 .swiper-wrapper .swiper-slide p {
  background: transparent -webkit-linear-gradient(left, #003893, #003893) no-repeat 0 0;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 0 100%;
  color: white;
  -webkit-text-stroke: 1px #003893;
  font-size: 2.05rem;
  transition: all 0.5s;
  line-height: 0.9;
}
@media (max-width: 767px) {
  .esgswiper1 .swiper-wrapper .swiper-slide p {
    font-size: 1.6rem;
  }
}
.esgswiper1 .swiper-wrapper .swiper-slide.swiper-slide-thumb-active p {
  background-size: 100% 100%;
}
.esgswiper2 .public-about-box {
  margin-top: 0;
}
.esg-box1 {
  position: relative;
  overflow: hidden;
  padding: 1.2rem 0 0;
}
.esg-box1 .container .cn1 {
  text-align: center;
  color: #000000;
  line-height: 1.25em;
}
.public-download-list {
  margin-top: 0.6rem;
  position: relative;
  overflow: hidden;
}
.public-download-list .swiper-slide .pimg::before {
  padding-top: 61.53846154%;
}
.public-download-list .swiper-slide .ptext {
  padding: 0.4rem;
  text-align: left;
  border: 1px solid #e6e6e6;
}
@media (max-width: 991px) {
  .public-download-list .swiper-slide .ptext {
    width: calc(100% - 1px);
  }
}
.public-download-list .swiper-slide .ptext .pcn1 {
  text-align: left;
  color: #000000;
  line-height: 1.41666667em;
  transition: all 0.5s;
}
.public-download-list .swiper-slide .ptext .public-btn {
  margin-top: 0.3rem;
}
.public-download-list .swiper-slide:hover .pimg img {
  transform: scale(1.05);
}
.public-download-list .swiper-slide:hover .ptext .pcn1 {
  color: #003893;
}
.esg-box2 {
  position: relative;
  padding: 1.2rem 0 0;
}
.esg-box2 .container .cn1 {
  text-align: center;
  color: #000000;
  line-height: 1.25em;
}
.esg-box2 .container .hi-pagination1 {
  margin-top: 0.6rem;
}
.index-sol {
  padding-top: 1.2rem;
}
@media (max-width: 991px) {
  .index-sol {
    overflow: hidden;
    padding-bottom: 0.6rem;
  }
}
.index-sol .index-public-title .pleft .pcn2 {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  width: 75%;
  font-size: 20px !important;
}
@media (max-width: 991px) {
  .index-sol .index-public-title .pleft .pcn2 {
    width: 100%;
  }
}
@media (max-width: 1580px) {
  .index-sol .index-public-title .pleft .pcn2 {
    font-size: 18px !important;
  }
}
@media (max-width: 1260px) {
  .index-sol .index-public-title .pleft .pcn2 {
    font-size: 16px !important;
  }
}
@media (max-width: 991px) {
  .index-sol .index-public-title .pleft .pcn2 {
    font-size: 0.3rem !important;
  }
}
.index-sol .index-public-title .pleft .pcn2 p,
.index-sol .index-public-title .pleft .pcn2 span,
.index-sol .index-public-title .pleft .pcn2 b {
  font-size: 20px !important;
}
@media (max-width: 1580px) {
  .index-sol .index-public-title .pleft .pcn2 p,
  .index-sol .index-public-title .pleft .pcn2 span,
  .index-sol .index-public-title .pleft .pcn2 b {
    font-size: 18px !important;
  }
}
@media (max-width: 1260px) {
  .index-sol .index-public-title .pleft .pcn2 p,
  .index-sol .index-public-title .pleft .pcn2 span,
  .index-sol .index-public-title .pleft .pcn2 b {
    font-size: 16px !important;
  }
}
@media (max-width: 991px) {
  .index-sol .index-public-title .pleft .pcn2 p,
  .index-sol .index-public-title .pleft .pcn2 span,
  .index-sol .index-public-title .pleft .pcn2 b {
    font-size: 0.3rem !important;
  }
}
.index-sol .indexsolswiper1 {
  margin-top: 0.55rem;
  width: 100%;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .index-sol .indexsolswiper1 {
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: wrap;
  }
}
.index-sol .indexsolswiper1 .swiper-slide {
  position: relative;
  opacity: 0;
  transition: all 0.5s !important;
}
@media (max-width: 767px) {
  .index-sol .indexsolswiper1 .swiper-slide {
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 1.2rem;
  }
}
.index-sol .indexsolswiper1 .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.index-sol .indexsolswiper1 .swiper-slide .bgimg {
  width: 100%;
}
.index-sol .indexsolswiper1 .swiper-slide .bgimg img {
  animation: bannerscale 20s infinite linear;
}
.index-sol .indexsolswiper1 .swiper-slide .bgimg::before {
  padding-top: 38.54166667%;
}
@media (max-width: 1260px) {
  .index-sol .indexsolswiper1 .swiper-slide .bgimg::before {
    padding-top: 50%;
  }
}
@media (max-width: 767px) {
  .index-sol .indexsolswiper1 .swiper-slide .bgimg::before {
    padding-top: 60%;
  }
}
.index-sol .indexsolswiper1 .swiper-slide .bgimg .zhezao {
  z-index: 2;
  width: auto;
}
.index-sol .indexsolswiper1 .swiper-slide .container {
  z-index: 3;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .index-sol .indexsolswiper1 .swiper-slide .container {
    position: relative;
    left: 0;
    top: 0;
    transform: initial;
    padding: 0.5rem 0;
  }
}
.index-sol .indexsolswiper1 .swiper-slide .container .box .cn3 {
  color: #000000;
  line-height: 1.27777778;
}
.index-sol .indexsolswiper1 .swiper-slide .container .box .cn4 {
  color: #666666;
  line-height: 1.66666667;
  width: 4.9rem;
  margin-top: 0.2rem;
}
@media (max-width: 991px) {
  .index-sol .indexsolswiper1 .swiper-slide .container .box .cn4 {
    width: 100%;
  }
}
.index-sol .indexsolswiper1 .swiper-slide .container .box .public-btn {
  margin-top: 0.5rem;
}
.index-sol .indexsolswiper1 .swiper-slide .container .box .cn5 {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
}
.index-sol .indexsolswiper1 .swiper-slide .container .box .cn5 .cn6 {
  margin-top: 0.1rem;
  margin-right: 0.2rem;
}
.index-sol .indexsolswiper1 .swiper-slide .container .box .cn5 .cn6 img {
  width: 0.81rem;
  height: 0.4rem;
}
.index-sol .indexsolswiper1 .indexsolswiper2 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 5;
  height: 1rem;
  line-height: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  text-align: center;
}
@media (max-width: 991px) {
  .index-sol .indexsolswiper1 .indexsolswiper2 {
    position: relative;
    height: auto;
  }
}
@media (max-width: 991px) {
  .index-sol .indexsolswiper1 .indexsolswiper2 .swiper-wrapper {
    flex-wrap: wrap;
  }
}
.index-sol .indexsolswiper1 .indexsolswiper2 .swiper-slide {
  opacity: 1 !important;
  position: relative;
  color: #000;
  mix-blend-mode: color;
  cursor: pointer;
  pointer-events: initial;
}
@media (max-width: 991px) {
  .index-sol .indexsolswiper1 .indexsolswiper2 .swiper-slide {
    border: 1px solid #e0e0e0;
  }
}
@media (max-width: 991px) {
  .index-sol .indexsolswiper1 .indexsolswiper2 .swiper-slide:nth-child(-n+2) {
    border-bottom: 0;
  }
}
@media (max-width: 991px) {
  .index-sol .indexsolswiper1 .indexsolswiper2 .swiper-slide:nth-child(even) {
    border-left: 0;
  }
}
.index-sol .indexsolswiper1 .indexsolswiper2 .swiper-slide::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #e0e0e0;
}
@media (max-width: 991px) {
  .index-sol .indexsolswiper1 .indexsolswiper2 .swiper-slide::before {
    display: none;
  }
}
@media (max-width: 1260px) {
  .index-sol .indexsolswiper1 .indexsolswiper2 .swiper-slide .cn1 {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .index-sol .indexsolswiper1 .indexsolswiper2 .swiper-slide .cn1 {
    font-size: 12px;
    -webkit-line-clamp: 3;
  }
}
.index-sol .indexsolswiper1 .indexsolswiper2 .swiper-slide .cn2 {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: #003893;
  color: #Fff;
  width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  display: none;
}
@media (max-width: 1260px) {
  .index-sol .indexsolswiper1 .indexsolswiper2 .swiper-slide .cn2 {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .index-sol .indexsolswiper1 .indexsolswiper2 .swiper-slide .cn2 {
    font-size: 12px;
    -webkit-line-clamp: 3;
  }
}
.index-sol .indexsolswiper1 .indexsolswiper2 .swiper-slide .cn2 span {
  display: block;
  top: 0;
  left: 0;
  height: 100%;
  position: absolute;
}
.index-sol .indexsolswiper1 .indexsolswiper2 .swiper-slide.swiper-slide-thumb-active {
  background-color: #003893;
}
.index-sol .indexsolswiper1 .indexsolswiper2 .swiper-slide.swiper-slide-thumb-active .cn1 {
  color: #fff;
}
.index-sol .indexsolswiper1 .indexsolswiper2 .swiper-slide.swiper-slide-thumb-active .cn2 {
  animation: mywidth 5s infinite linear;
}
@keyframes mywidth {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.index-about {
  position: relative;
  width: 100%;
  height: 250vh;
}
@media (max-width: 991px) {
  .index-about {
    height: auto;
    padding-top: 2.5rem;
  }
}
.index-about .index-about2 {
  overflow: hidden;
  position: sticky;
  position: -webkit-sticky;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
}
@media (max-width: 991px) {
  .index-about .index-about2 {
    overflow: initial;
    height: auto;
    position: relative;
  }
}
@media (max-width: 991px) {
  .index-about .index-about2::before {
    content: "";
    display: block;
    position: relative;
    z-index: 0;
    padding-top: 100%;
  }
}
.index-about .index-about2 .bgimg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.index-about .index-about2 .bgimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-about .index-about2 .logo {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transform-origin: 50% 70%;
}
@media (max-width: 991px) {
  .index-about .index-about2 .logo {
    background-color: #Fff;
  }
}
@media (max-width: 991px) {
  .index-about .index-about2 .logo {
    display: none;
  }
}
.index-about .index-about2 .logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-about .index-about2 .textbox {
  position: absolute;
  left: 0;
  top: 1.2rem;
  width: 100%;
  z-index: 3;
}
@media (max-width: 991px) {
  .index-about .index-about2 .textbox {
    margin-top: -2.5rem;
  }
}
.index-about .index-about2 .textbox .index-public-title {
  width: 100%;
}
@media (max-width: 991px) {
  .index-about .index-about2 .textbox .index-public-title .pleft .pcn1 {
    color: #000 !important;
  }
}
@media (max-width: 991px) {
  .index-about .index-about2 .textbox .index-public-title .pleft .pcn2 {
    color: #666 !important;
  }
}
.index-about .index-about2 .textbox .index-public-title .pright .indexpublic-btn .public-btn0:hover .pbtn1 {
  background-color: #Fff !important;
}
.index-about .index-about2 .textbox .index-public-title .pright .indexpublic-btn .public-btn0:hover .pbtn1 svg path {
  fill: #003893 !important;
}
.index-about .index-about2 .textbox .index-public-title .pright .indexpublic-btn .public-btn0:hover .pbtn2 {
  color: #003893 !important;
}
@media (max-width: 991px) {
  .index-about .index-about2 .textbox .index-public-title .pright .indexpublic-btn .public-btn0 .pbtn1 {
    border: 2px solid #003893 !important;
  }
}
@media (max-width: 991px) {
  .index-about .index-about2 .textbox .index-public-title .pright .indexpublic-btn .public-btn0 .pbtn1 svg path {
    fill: #003893 !important;
  }
}
@media (max-width: 991px) {
  .index-about .index-about2 .textbox .index-public-title .pright .indexpublic-btn .public-btn0 .pbtn2 {
    color: #003893 !important;
  }
}
.index-choice {
  padding-top: 1.2rem;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}
.index-choice .bigbox {
  margin-top: 0.6rem;
  position: relative;
  width: 100%;
}
@media (max-width: 767px) {
  .index-choice .bigbox {
    margin-top: 0;
  }
}
.index-choice .bigbox::before {
  padding-top: 41.66666667%;
}
@media (max-width: 1260px) {
  .index-choice .bigbox::before {
    padding-top: 50%;
  }
}
@media (max-width: 991px) {
  .index-choice .bigbox::before {
    padding-top: 80%;
  }
}
@media (max-width: 767px) {
  .index-choice .bigbox::before {
    padding-top: 60%;
  }
}
.index-choice .bigbox .tu1 {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  animation: bannerscale 20s infinite linear;
}
.index-choice .bigbox .tu1.on {
  opacity: 1;
}
.index-choice .bigbox .tu1 img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.index-choice .bigbox .tu1 .pc-img {
  display: block;
}
@media (max-width: 767px) {
  .index-choice .bigbox .tu1 .pc-img {
    display: none;
  }
}
.index-choice .bigbox .tu1 .mb-img {
  display: none;
}
@media (max-width: 767px) {
  .index-choice .bigbox .tu1 .mb-img {
    display: block;
  }
}
.index-choice .centerbox {
  position: absolute;
  width: calc(50% - 1rem);
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  height: 75%;
  display: flex;
  flex-wrap: wrap;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 767px) {
  .index-choice .centerbox.pccenterbox {
    display: none;
  }
}
.index-choice .centerbox.mbcenterbox {
  display: none;
  position: relative;
  left: 0;
  top: 0;
  right: 0;
  transform: initial;
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
  background-color: #fff;
  border: 1px solid #eee;
}
@media (max-width: 767px) {
  .index-choice .centerbox.mbcenterbox {
    display: flex;
  }
}
@media (max-width: 1580px) {
  .index-choice .centerbox {
    right: 5%;
    width: 45%;
  }
}
@media (max-width: 991px) {
  .index-choice .centerbox {
    width: 90%;
  }
}
.index-choice .centerbox .box {
  width: 50%;
  height: 50%;
  padding: 0.4rem 0.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
@media (max-width: 1260px) {
  .index-choice .centerbox .box {
    padding: 0.3rem 0.2rem;
  }
}
@media (max-width: 767px) {
  .index-choice .centerbox .box {
    height: 3.5rem;
  }
}
.index-choice .centerbox .box:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 767px) {
  .index-choice .centerbox .box:nth-child(odd) {
    border-right: 1px solid #eee;
  }
}
.index-choice .centerbox .box:nth-child(1),
.index-choice .centerbox .box:nth-child(2) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 767px) {
  .index-choice .centerbox .box:nth-child(1),
  .index-choice .centerbox .box:nth-child(2) {
    border-bottom: 1px solid #eee;
  }
}
.index-choice .centerbox .box.on {
  background-color: rgba(0, 56, 147, 0.9);
}
@media (max-width: 767px) {
  .index-choice .centerbox .box.on .cn1 {
    display: none;
  }
}
.index-choice .centerbox .box.on .cn2 .cn3 {
  margin-bottom: 0.2rem;
}
@media (max-width: 767px) {
  .index-choice .centerbox .box.on .cn2 .cn3 {
    color: #fff;
  }
}
.index-choice .centerbox .box.on .cn2 .cn4 {
  height: 4.5em;
  opacity: 1;
}
@media (max-width: 767px) {
  .index-choice .centerbox .box.on .cn2 .cn4 {
    height: 9em;
  }
}
.index-choice .centerbox .box .cn1 svg,
.index-choice .centerbox .box .cn1 img {
  width: 0.5rem;
  height: 0.5rem;
  object-fit: cover;
}
@media (max-width: 991px) {
  .index-choice .centerbox .box .cn1 svg,
  .index-choice .centerbox .box .cn1 img {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.index-choice .centerbox .box .cn1 svg path,
.index-choice .centerbox .box .cn1 img path {
  fill: #fff;
  opacity: 1;
  stroke: none;
}
@media (max-width: 767px) {
  .index-choice .centerbox .box .cn1 svg path,
  .index-choice .centerbox .box .cn1 img path {
    fill: #333;
  }
}
.index-choice .centerbox .box .cn2 .cn3 {
  display: block;
  color: #ffffff;
  line-height: 1.33333333;
  transition: all 0.5s;
  margin-bottom: 0;
}
@media (max-width: 1260px) {
  .index-choice .centerbox .box .cn2 .cn3 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .index-choice .centerbox .box .cn2 .cn3 {
    font-size: 16px;
    white-space: wrap;
    color: #333;
  }
}
.index-choice .centerbox .box .cn2 .cn4 {
  display: block;
  color: #ffffff;
  line-height: 1.5;
  height: 0;
  transition: all 0.5s;
  opacity: 0;
}
@media (max-width: 1260px) {
  .index-choice .centerbox .box .cn2 .cn4 {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .index-choice .centerbox .box .cn2 .cn4 {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .index-choice .centerbox .box .cn2 .cn4 {
    -webkit-line-clamp: 6;
  }
}
@keyframes bannerscale {
  0% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.index-case {
  padding-top: 1.2rem;
}
.index-case .container {
  position: relative;
  overflow: hidden;
}
.index-case .indexcaseswiper {
  margin-top: 0.55rem;
  width: 75%;
  position: relative;
}
@media (max-width: 991px) {
  .index-case .indexcaseswiper {
    width: 100%;
  }
}
.index-case .indexcaseswiper .swiper-slide {
  display: flex;
  background-color: #003893;
  flex-wrap: wrap;
  height: auto;
}
.index-case .indexcaseswiper .swiper-slide:hover .img img {
  transform: scale(1.05);
}
.index-case .indexcaseswiper .swiper-slide .img {
  width: 66.66666667%;
}
@media (max-width: 767px) {
  .index-case .indexcaseswiper .swiper-slide .img {
    width: 100%;
  }
}
.index-case .indexcaseswiper .swiper-slide .img::before {
  padding-top: 60%;
}
.index-case .indexcaseswiper .swiper-slide .text {
  width: 33.33333333%;
  padding: 0.4rem;
}
@media (max-width: 767px) {
  .index-case .indexcaseswiper .swiper-slide .text {
    width: 100%;
  }
}
.index-case .indexcaseswiper .swiper-slide .text .cn1 {
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #1a4c9e;
  display: flex;
  align-items: center;
  color: #a6c8ff;
}
.index-case .indexcaseswiper .swiper-slide .text .cn1 img {
  margin-right: 0.1rem;
}
.index-case .indexcaseswiper .swiper-slide .text .text2 {
  padding-top: 0.3rem;
}
.index-case .indexcaseswiper .swiper-slide .text .text2 .cn2 {
  color: #ffffff;
  line-height: 1.33333333;
}
.index-case .indexcaseswiper .swiper-slide .text .text2 .cn3 {
  margin-top: 0.2rem;
}
.index-case .indexcaseswiper .swiper-slide .text .text2 .cn3 .cn4 {
  color: #a6c8ff;
  line-height: 1.875;
}
.index-news {
  padding-top: 1.2rem;
  overflow: hidden;
}
.index-news .indexnewswiper {
  padding-bottom: 0.8rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .index-news .indexnewswiper {
    overflow: initial;
    padding-bottom: 1.6rem;
  }
}
.index-news .indexnewswiper .swiper-wrapper {
  flex-wrap: initial;
}
.index-public-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .index-public-title {
    justify-content: center;
    flex-direction: column;
  }
}
.index-public-title.index-public-title2 {
  justify-content: center;
  flex-direction: column;
}
.index-public-title.index-public-title2 .pleft {
  width: 90%;
  max-width: 90%;
  text-align: center;
}
@media (max-width: 991px) {
  .index-public-title.index-public-title2 .pleft {
    width: 90%;
    max-width: 90%;
  }
}
.index-public-title.index-public-title2 .pright {
  margin-top: 0.5rem;
  max-width: 90%;
}
.index-public-title .pleft {
  max-width: 70%;
}
@media (max-width: 991px) {
  .index-public-title .pleft {
    width: 90%;
    max-width: 90%;
  }
}
.index-public-title .pleft .pcn1 {
  color: #000000;
  line-height: 1.25em;
  width: 75%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .index-public-title .pleft .pcn1 {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .index-public-title .pleft .pcn1 {
    font-size: 0.4rem;
  }
}
.index-public-title .pleft .pcn2 {
  margin: 0.2rem auto 0;
  color: #666666;
  line-height: 1.5em;
  width: 75%;
}
@media (max-width: 991px) {
  .index-public-title .pleft .pcn2 {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .index-public-title .pright {
    margin-top: 0.5rem;
    max-width: 90%;
  }
}
/*首页内容1*/
.c-home1 .swiper-slide {
  overflow: hidden;
  position: relative;
}
.c-home1 .swiper-slide.ani-slide .textcontainer .cn1 {
  opacity: 1;
  transform: translateY(0);
}
.c-home1 .swiper-slide.ani-slide .textcontainer .public-btn {
  opacity: 1;
  transform: translateY(0);
}
.c-home1 .swiper-slide .textcontainer {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.c-home1 .swiper-slide .textcontainer.textcontainerbottom {
  top: initial !important;
  bottom: 10%;
  transform: translateX(-50%);
}
.c-home1 .swiper-slide .textcontainer .cn1 {
  color: #000000;
  line-height: 1.25;
  opacity: 0;
  transform: translateY(0.6rem);
  transition: all 0.5s;
}
.c-home1 .swiper-slide .textcontainer .cn1.color {
  color: #fff;
}
.c-home1 .swiper-slide .textcontainer .cn1.blue {
  color: #003893;
}
.c-home1 .swiper-slide .textcontainer .public-btn {
  margin-top: 0.6rem;
  opacity: 0;
  transform: translateY(0.6rem);
  transition: all 0.5s;
}
.c-home1 .swiper-slide .c-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: var(--vh);
}
.c-home1 .swiper-slide .c-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-home1 .swiper-slide .c-video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-home1 .swiper-button-next,
.c-home1 .swiper-button-prev {
  margin-top: -0.2rem;
  width: 0.6rem;
  height: 0.6rem;
  opacity: 0.2;
  transition: 0.4s;
  right: 0.6rem;
  background: transparent;
}
@media (max-width: 991px) {
  .c-home1 .swiper-button-next,
  .c-home1 .swiper-button-prev {
    display: none;
  }
}
.c-home1 .swiper-button-next::after,
.c-home1 .swiper-button-prev::after {
  display: none;
}
.c-home1 .swiper-button-next img,
.c-home1 .swiper-button-prev img,
.c-home1 .swiper-button-next svg,
.c-home1 .swiper-button-prev svg {
  width: 100%;
  height: 100%;
  color: #fff;
}
.c-home1 .swiper-button-prev {
  left: 0.6rem;
  transform: rotate(180deg);
}
.c-home1 .swiper-button-next:hover,
.c-home1 .swiper-button-prev:hover {
  opacity: 1;
}
.c-home1 .swiper-pagination {
  position: absolute;
  right: 0;
  bottom: 0.4rem;
  text-align: right;
}
.c-home1 .swiper-pagination .swiper-pagination-bullet::before {
  width: 0.3rem;
  height: 0.3rem;
}
@media (max-width: 991px) {
  .c-home1 .swiper-pagination .swiper-pagination-bullet {
    margin: 0 0.2rem !important;
    width: 0.2rem;
    height: 0.2rem;
  }
}
@media (max-width: 991px) {
  .c-home1 .swiper-pagination {
    text-align: center;
  }
}
.c-home1 .swiper-pagination .swiper-pagination-bullet {
  background-color: rgba(0, 0, 0, 0.4);
}
.c-home1 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #003893;
}
.c-home1 .containerbox {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.4rem;
  z-index: 3;
}
.hi-nav1 {
  overflow: hidden;
  margin-top: 0.8rem;
  position: sticky;
  position: -webkit-sticky;
  z-index: 10;
  left: 0;
  top: 0;
  background-color: #fff;
}
@media (max-width: 991px) {
  .hi-nav1 {
    display: none;
    position: relative;
  }
}
.hi-nav1 .container {
  border-bottom: 1px solid #e6e6e6;
}
.hi-nav1 .swiper-container .swiper-slide {
  width: auto;
  margin-right: 0.4rem;
  line-height: 0.8rem;
}
@media (max-width: 991px) {
  .hi-nav1 .swiper-container .swiper-slide {
    margin-right: 0.4rem;
  }
}
.hi-nav1 .swiper-container .swiper-slide:last-child {
  margin-right: 0;
}
.hi-nav1 .swiper-container .swiper-slide .c-text {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: all 0.4s;
}
.hi-nav1 .swiper-container .swiper-slide .c-text::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  border-top: 2px solid #003893;
  transition: all 0.4s;
}
.hi-nav1 .swiper-container .swiper-slide.on .c-text,
.hi-nav1 .swiper-container .swiper-slide:hover .c-text {
  color: #003893;
}
.hi-nav1 .swiper-container .swiper-slide.on .c-text::before,
.hi-nav1 .swiper-container .swiper-slide:hover .c-text::before {
  width: 100%;
  left: 0;
}
.hi-nav1 .swiper-container .swiper-scrollbar {
  left: 0;
  bottom: 0;
  width: 100%;
  background: #e6e6e6;
  border-radius: 0;
}
.hi-nav1 .swiper-container .swiper-scrollbar .swiper-scrollbar-drag {
  border-radius: 0;
  background: #003893;
}
.public-about-box2 {
  margin-top: 0.55rem;
}
.public-about-box2.public-about-box3 .pbox .pleft .pimg::after {
  display: block;
}
@media (max-width: 991px) {
  .public-about-box2.public-about-box3 .pbox .pleft .pimg::after {
    display: none;
  }
}
.public-about-box2.public-about-box3 .pbox .pright {
  padding: 0.6rem 1.2rem 0.6rem 0.3rem;
}
@media (max-width: 991px) {
  .public-about-box2.public-about-box3 .pbox .pright {
    padding: 0.6rem 0.3rem;
  }
}
.public-about-box2.public-about-box3 .pbox:nth-child(even) .pright {
  padding: 0.6rem 0.3rem 0.6rem 1.2rem;
}
@media (max-width: 991px) {
  .public-about-box2.public-about-box3 .pbox:nth-child(even) .pright {
    padding: 0.6rem 0.3rem;
  }
}
.public-about-box2 .pbox {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1.2rem;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.public-about-box2 .pbox:nth-child(1) {
  margin-top: 0;
}
.public-about-box2 .pbox:nth-child(even) {
  flex-direction: row-reverse;
}
.public-about-box2 .pbox:nth-child(even) .pleft .pimg::after {
  left: 0;
  background-image: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
}
.public-about-box2 .pbox:nth-child(even) .pright {
  padding: 0.6rem 1.2rem;
}
@media (max-width: 991px) {
  .public-about-box2 .pbox:nth-child(even) .pright {
    padding: 0.6rem 0.3rem;
  }
}
.public-about-box2 .pbox:hover .pleft .pimg img {
  transform: scale(1.05);
}
.public-about-box2 .pleft {
  width: 53.75%;
}
@media (max-width: 991px) {
  .public-about-box2 .pleft {
    width: 100%;
  }
}
.public-about-box2 .pleft .pimg {
  width: 100%;
}
.public-about-box2 .pleft .pimg::before {
  padding-top: 62.79069767%;
}
.public-about-box2 .pleft .pimg::after {
  display: none;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0.6rem;
  height: 100%;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(8px);
  background-image: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
  z-index: 3;
}
@media (max-width: 991px) {
  .public-about-box2 .pleft .pimg::after {
    display: none;
  }
}
.public-about-box2 .pright {
  overflow: auto;
  width: 46.25%;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 0.6rem 1.2rem;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .public-about-box2 .pright {
    width: 100%;
    padding: 0.6rem 0.3rem;
    height: auto !important;
  }
}
.public-about-box2 .pright .pcn1 {
  color: #000000;
  line-height: 1.33333333;
}
@media (max-width: 991px) {
  .public-about-box2 .pright .pcn1 {
    font-size: 0.4rem;
  }
}
.public-about-box2 .pright .pcn2 {
  margin-top: 0.2rem;
  color: #666;
  line-height: 1.66666667;
}
.public-about-box2 .pright .public-btn {
  margin-top: 0.2rem;
}
.public-about-box2 .pright .pcn3 {
  margin-top: 0.3rem;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .public-about-box2 .pright .pcn3 {
    font-size: 0.26rem;
  }
}
.public-about-box2 .pright .pcn3 .pcn4 {
  padding-right: 0.1rem;
  width: 50%;
  color: #666666;
  margin-top: 0.1rem;
}
@media (max-width: 767px) {
  .public-about-box2 .pright .pcn3 .pcn4 {
    width: 100%;
  }
}
.public-about-box2 .pright .pcn3 .pcn4 span {
  margin-right: 0.05rem;
}
.public-about-box2 .pright .pcn6 {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.1rem;
}
.public-about-box2 .pright .pcn6 .pcn5 {
  width: 1.25rem;
  height: 0.6rem;
  border-radius: 0.05rem;
  border: 1px solid #e6e6e6;
  text-align: center;
  line-height: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.2rem;
  margin-top: 0.2rem;
}
@media (max-width: 991px) {
  .public-about-box2 .pright .pcn6 .pcn5 {
    width: 1.8rem;
    height: 1rem;
  }
}
.public-about-box2 .pright .pcn6 .pcn5 img {
  max-height: 90%;
  max-width: 90%;
  object-fit: contain;
}
@media (max-width: 991px) {
  .tech-box2.tebieswiper999 .swiper-wrapper {
    flex-wrap: nowrap;
  }
}
@media (max-width: 991px) {
  .tech-box2.tebieswiper999 .swiper-slide {
    flex-shrink: 0 !important;
  }
  .tech-box2.tebieswiper999 .swiper-slide .text2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.tech-box2.tebieswiper999 .public-swiper-box {
  display: none;
}
@media (max-width: 991px) {
  .tech-box2.tebieswiper999 .public-swiper-box {
    display: flex;
  }
}
.tech-box2.tech-box2a .box {
  margin: 0.5rem 0 0;
}
.tech-box2.tech-box2a .box .box2 {
  width: 50% !important;
  margin: 0;
  padding: 0.6rem;
  height: auto !important;
}
@media (max-width: 991px) {
  .tech-box2.tech-box2a .box .box2 {
    padding: 0.3rem 0.15rem;
  }
}
.tech-box2.tech-box2a .box .box2 .text2 {
  position: relative;
  opacity: 1;
  padding: 0;
  width: 100% !important;
}
.tech-box2.tech-box2a .box .box2 .text2 .text3 {
  padding: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .tech-box2.tech-box2a .box .box2 .text2 .text3 {
    flex-wrap: wrap;
    justify-content: flex-start;
    flex-direction: row;
  }
}
.tech-box2.tech-box2a .box .box2 .text2 .text3 .zcn1 {
  color: #000000;
  flex-shrink: 0;
}
.tech-box2.tech-box2a .box .box2 .text2 .text3 .zcn1 svg path {
  fill: #999;
}
.tech-box2.tech-box2a .box .box2 .text2 .text3 .zcn2 {
  /*overflow: hidden;*/
  /*text-overflow: ellipsis;*/
  /*white-space: nowrap;*/
  color: #000000;
  font-size: 0.3rem;
  display: block;
}
@media (max-width: 991px) {
  .tech-box2.tech-box2a .box .box2 .text2 .text3 .zcn2 {
    width: 100%;
    font-size: 0.28rem;
  }
}
.tech-box2.tech-box2a .box .box2.on {
  background-color: #f5f5f5;
}
.tech-box2.tech-box2a .box .box2.on .text2 .text3 .zcn1 svg path {
  fill: #003893;
}
.tech-box2.tech-box2a .box .box2.on .text2 .text3 .zcn2 {
  color: #003893;
}
.tech-box2 .box {
  margin: 0.5rem -0.05rem 0;
  display: flex;
}
@media (max-width: 991px) {
  .tech-box2 .box {
    flex-wrap: wrap;
  }
}
.tech-box2 .box .box2 {
  cursor: pointer;
  flex: 1 1 auto;
  width: 10.9375%;
  height: 4.4rem;
  margin: 0 0.05rem;
  border: solid 1px #e6e6e6;
  overflow: hidden;
  transition: all 0.3s linear;
  position: relative;
}
@media (max-width: 991px) {
  .tech-box2 .box .box2 {
    height: auto;
    flex: initial;
    margin: 0 0 0.3rem;
  }
}
@media (max-width: 991px) {
  .tech-box2 .box .box2:nth-child(3n) {
    margin: 0 0 0.3rem 0;
  }
}
.tech-box2 .box .box2 .text1 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0.4rem;
  z-index: 3;
  transition: all 0.5s;
  opacity: 1;
  line-height: 1.1;
  /* white-space: nowrap; */
  max-height: 80%;
  line-height: 1.1em;
  text-align: center;
  margin: 0 auto;
  writing-mode: vertical-rl;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}
@media (max-width: 991px) {
  .tech-box2 .box .box2 .text1 {
    display: none;
  }
}
.tech-box2 .box .box2 .text2 {
  position: absolute;
  left: 0;
  height: 100%;
  bottom: 0;
  width: 100%;
  padding: 1rem 0.4rem 0.3rem;
  z-index: 5;
  opacity: 0;
  transition: all 0.5s;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .tech-box2 .box .box2 .text2 {
    position: relative;
    bottom: 0;
    opacity: 1;
    padding: 0.3rem 0.15rem;
    width: 100% !important;
  }
}
.tech-box2 .box .box2 .text2 .text3 {
  width: calc(100% - 4.2rem);
  padding-right: 0.4rem;
  text-align: left;
}
@media (max-width: 1260px) {
  .tech-box2 .box .box2 .text2 .text3 {
    width: calc(100% - 3rem);
    padding-right: 0.2rem;
  }
}
@media (max-width: 991px) {
  .tech-box2 .box .box2 .text2 .text3 {
    padding-right: 0;
    width: 100%;
  }
}
.tech-box2 .box .box2 .text2 .text3 .zcn1 {
  height: 0.4rem;
  margin-bottom: 0.15rem;
}
.tech-box2 .box .box2 .text2 .text3 .zcn1 svg {
  width: auto;
  height: 0.4rem;
}
.tech-box2 .box .box2 .text2 .text3 .zcn1 svg path {
  fill: #003893;
  opacity: 1;
  stroke: none;
  transition: all 0.5s;
}
.tech-box2 .box .box2 .text2 .text3 .zcn1 img {
  height: 0.4rem;
}
.tech-box2 .box .box2 .text2 .text3 .zcn2 {
  transition: all 0.5s;
  color: #003893;
  line-height: 1.27777778;
}
.tech-box2 .box .box2 .text2 .text3 .zcn3 {
  transition: all 0.5s;
  margin-top: 0.2rem;
  color: #666666;
  line-height: 1.66666667;
}
@media (max-width: 991px) {
  .tech-box2 .box .box2 .text2 .text3 .zcn3 {
    display: block;
  }
}
.tech-box2 .box .box2 .text2 .text4 {
  width: 4.2rem;
}
@media (max-width: 1260px) {
  .tech-box2 .box .box2 .text2 .text4 {
    width: 3rem;
  }
}
@media (max-width: 991px) {
  .tech-box2 .box .box2 .text2 .text4 {
    margin-top: 0.5rem;
    width: 100%;
  }
}
.tech-box2 .box .box2 .text2 .text4 .zimg {
  width: 100%;
  height: 2.4rem;
}
@media (max-width: 1260px) {
  .tech-box2 .box .box2 .text2 .text4 .zimg {
    height: 1.71rem;
  }
}
@media (max-width: 991px) {
  .tech-box2 .box .box2 .text2 .text4 .zimg {
    height: auto;
  }
}
.tech-box2 .box .box2 .text2 .text4 .zimg::before {
  padding-top: 57.14285714%;
}
.tech-box2 .box .box2 .text2 .text4 .zimg img {
  object-fit: cover;
}
.tech-box2 .box .box2.on {
  background-color: #f5f5f5;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
  width: 53.75%;
}
@media (max-width: 991px) {
  .tech-box2 .box .box2.on {
    background-color: #003893;
    width: 100%;
    box-shadow: initial;
  }
}
.tech-box2 .box .box2.on .bg {
  opacity: 0;
}
.tech-box2 .box .box2.on .text1 {
  opacity: 0;
}
.tech-box2 .box .box2.on .text2 {
  opacity: 1;
}
@media (max-width: 991px) {
  .tech-box2 .box .box2.on .text2 .text3 .zcn1 svg path {
    fill: #fff;
  }
}
@media (max-width: 991px) {
  .tech-box2 .box .box2.on .text2 .text3 .zcn2 {
    color: #fff;
  }
}
@media (max-width: 991px) {
  .tech-box2 .box .box2.on .text2 .text3 .zcn3 {
    color: #fff;
  }
}
.tech-box3.tech-box7 .public-about-box .mcm10 {
  text-align: center;
  line-height: 1.20833333;
  color: #000000;
}
.tech-box3.tech-box7 .public-about-box .pbox {
  margin-top: 0.6rem;
}
.tech-box3.tech-box7 .public-about-box .pleft {
  width: 100%;
}
.tech-box3.tech-box7 .public-about-box .pleft .pimg::before {
  padding-top: 42.5%;
}
.tech-box3.tech-box7 .public-about-box .pleft .pimg::after {
  display: none;
}
.tech-box3.tech-box6 .public-about-box .pbox {
  flex-direction: row-reverse;
}
.tech-box3.tech-box6 .public-about-box .pbox .pleft .pimg::after {
  left: 0;
  background-image: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
}
.tech-box3.tech-box6 .public-about-box .pbox .pright {
  padding: 0.3rem 0.6rem 0.3rem 1.2rem;
}
@media (max-width: 991px) {
  .tech-box3.tech-box6 .public-about-box .pbox .pright {
    padding: 0.6rem 0.3rem;
  }
}
.tech-box3.tech-box6 .public-about-box:nth-child(even) .pbox {
  flex-direction: row;
}
.tech-box3.tech-box6 .public-about-box:nth-child(even) .pbox .pleft .pimg::after {
  left: initial;
  right: 0;
  background-image: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
}
.tech-box3.tech-box6 .public-about-box:nth-child(even) .pbox .pright {
  padding: 0.3rem 1.2rem 0.3rem 0.6rem;
}
@media (max-width: 991px) {
  .tech-box3.tech-box6 .public-about-box:nth-child(even) .pbox .pright {
    padding: 0.6rem 0.3rem;
  }
}
.tech-box3 .public-about-box {
  margin-top: 1.2rem;
}
@media (max-width: 991px) {
  .tech-box3 .public-about-box {
    margin-top: 0.55rem;
  }
}
.tech-box3 .public-about-box:nth-child(even) .pbox {
  flex-direction: row-reverse;
}
.tech-box3 .public-about-box:nth-child(even) .pbox .pleft .pimg::after {
  left: 0;
  background-image: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
}
.tech-box3 .public-about-box:nth-child(even) .pbox .pright {
  padding: 0.3rem 0.6rem 0.3rem 1.2rem;
}
@media (max-width: 991px) {
  .tech-box3 .public-about-box:nth-child(even) .pbox .pright {
    padding: 0.6rem 0.3rem;
  }
}
.tech-box3 .public-about-box .pleft .techbox3swiper {
  position: relative;
  overflow: hidden;
}
.tech-box3 .public-about-box .pleft .techbox3swiper .swiper-slide {
  width: 100%;
}
.tech-box3 .public-about-box .pleft .techbox3swiper .swiper-pagination {
  bottom: 0.3rem;
}
.tech-box3 .public-about-box .pleft .techbox3swiper .swiper-pagination .swiper-pagination-bullet::before {
  border: 2px solid #fff !important;
}
.tech-box3 .public-about-box .pleft .techbox3swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fff !important;
}
.tech-box3 .public-about-box .pleft .pimg::before {
  padding-top: 62.79069767%;
}
.tech-box3 .public-about-box .pright {
  padding: 0.3rem 1.2rem 0.3rem 0.6rem;
}
@media (max-width: 991px) {
  .tech-box3 .public-about-box .pright {
    padding: 0.6rem 0.3rem;
  }
}
.tech-box3 .public-about-box .pright .pright2 .pcn2 span {
  display: block;
  color: #003893;
  font-weight: bold;
}
.tech-box3 .public-about-box .pright .pright2 .public-btn {
  margin-top: 0.55rem;
}
.tech-box4 {
  overflow: hidden;
}
.tech-box4 .tech-table {
  margin-top: 1.15rem;
}
.tech-box4 .tech-table .tcn1 {
  text-align: center;
  color: #000000;
  line-height: 1.5;
}
.tech-box4 .tech-table .tcn2 {
  margin-top: 0.25rem;
  text-align: center;
  color: #666;
  line-height: 1.5;
}
.tech-box4 .tech-table .public-content {
  overflow: auto;
}
.tech-box4 .tech-table .public-content.public-content2 table tr td:nth-child(1) {
  background-color: #f5f5f5;
  color: #000000;
}
.tech-box4 .tech-table table {
  margin-top: 0.25rem;
  width: 100%;
  overflow: auto;
}
@media (max-width: 1260px) {
  .tech-box4 .tech-table table {
    min-width: 1600px;
  }
}
.tech-box4 .tech-table table th {
  padding: 0;
  border: 1px solid #e6e6e6;
  background-color: #f5f5f5;
  text-align: left;
  vertical-align: baseline;
  font-weight: normal;
  padding: 0.1rem 0.2rem;
  color: #000000;
}
.tech-box4 .tech-table table td {
  border: 1px solid #e6e6e6;
  padding: 0.1rem 0.2rem;
  color: #666666;
  line-height: 1.55555556;
}
.tech-box5 {
  margin-top: 1.15rem;
}
.tech-box5 .cn0 {
  line-height: 1.20833333;
  text-align: center;
  margin-bottom: 0.6rem;
}
.tech-box5 .public-swiper1bigbox3 .swiper-slide {
  display: block !important;
}
.tech-box5 .public-swiper1bigbox3 .swiper-slide .mcn1 {
  line-height: 1.27777778;
  color: #000000;
  display: block;
}
.tech-box5 .public-swiper1bigbox3 .swiper-slide .mcn2 {
  margin-top: 0.2rem;
  line-height: 1.55555556;
  color: #666666;
  display: block;
}
.tech-box5 .public-swiper1bigbox3 .swiper-slide .mcn3 {
  margin-top: 0.35rem;
  border-top: 1px solid #e6e6e6;
  padding-top: 0.35rem;
  color: #000000;
  line-height: 1.55555556;
}
.tech-box5 .public-swiper1bigbox3 .swiper-slide .mcn4table {
  width: 100%;
}
.tech-box5 .public-swiper1bigbox3 .swiper-slide .mcn4table.public-content {
  overflow: auto;
}
.tech-box5 .public-swiper1bigbox3 .swiper-slide .mcn4table.public-content.public-content2 table tr td:nth-child(1) {
  background-color: #f5f5f5;
  color: #000000;
}
.tech-box5 .public-swiper1bigbox3 .swiper-slide .mcn4table table {
  margin-top: 0.25rem;
  width: 100%;
  overflow: auto;
}
.tech-box5 .public-swiper1bigbox3 .swiper-slide .mcn4table table th {
  padding: 0;
  border: 1px solid #e6e6e6;
  background-color: #f5f5f5;
  text-align: left;
  vertical-align: baseline;
  font-weight: normal;
  padding: 0.1rem 0.2rem;
  color: #000000;
}
.tech-box5 .public-swiper1bigbox3 .swiper-slide .mcn4table table td {
  border: 1px solid #e6e6e6;
  padding: 0.1rem 0.2rem;
  color: #666666;
  line-height: 1.55555556;
}
.solinfobigbox .solinfobigbox2 {
  display: none;
}
.solinfobigbox .solinfobigbox2.on {
  display: block;
}
.support-box1 {
  margin-top: 1.2rem;
}
.support-box1 .container {
  flex-wrap: wrap;
  display: flex;
}
.support-box1 .container .sbox {
  width: 20%;
  display: flex;
  flex-direction: column;
  border: solid 1px #e6e6e6;
  margin-right: -1px;
  margin-top: -1px;
  padding: 0.75rem 0.3rem;
}
@media (max-width: 991px) {
  .support-box1 .container .sbox {
    width: calc(100% / 3);
  }
}
@media (max-width: 767px) {
  .support-box1 .container .sbox {
    width: 50%;
  }
}
.support-box1 .container .sbox .simg {
  height: 0.6rem;
  margin: 0 auto;
}
.support-box1 .container .sbox .simg img {
  height: 100%;
}
.support-box1 .container .sbox .stext {
  margin-top: 0.4rem;
  text-align: center;
}
.support-box1 .container .sbox .stext .stext1 {
  color: #666666;
  line-height: 1.55555556;
}
.support-box1 .container .sbox .stext .stext2 {
  color: #000000;
  line-height: 1.41666667;
}
.support-box2 {
  margin-top: 1.2rem;
}
.support-box2 .container .sbigbox {
  margin: 0 -0.25rem;
  flex-wrap: wrap;
  display: flex;
}
.support-box2 .container .sbox {
  width: calc(100% / 3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.25rem;
}
@media (max-width: 991px) {
  .support-box2 .container .sbox {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .support-box2 .container .sbox {
    width: 100%;
  }
}
.support-box2 .container .sbox .sbox2 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: solid 1px #e6e6e6;
  padding: 0.75rem 0.3rem;
  height: 100%;
  transition: all 0.5s;
}
.support-box2 .container .sbox .sbox2:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
  border: solid 1px #e6e6e6;
  background-color: #f5f5f5;
}
.support-box2 .container .sbox .sbox2:hover .simg svg path {
  fill: #003893;
}
.support-box2 .container .sbox .sbox2:hover .stext .stext1 {
  color: #003893;
}
.support-box2 .container .sbox .simg {
  height: 0.6rem;
  margin: 0 auto;
}
.support-box2 .container .sbox .simg img {
  height: 100%;
}
.support-box2 .container .sbox .simg svg {
  width: auto;
  height: 100%;
}
.support-box2 .container .sbox .simg svg path {
  transition: all 0.5s;
  fill: #000;
  opacity: 1;
  stroke: none;
}
.support-box2 .container .sbox .stext {
  margin-top: 0.4rem;
  text-align: center;
}
.support-box2 .container .sbox .stext .stext1 {
  color: #000000;
  line-height: 1.27777778;
  transition: all 0.5s;
}
.support-box2 .container .sbox .stext .public-btn {
  margin-top: 0.25rem;
  justify-content: center;
}
.support-box3 {
  margin-top: 1.2rem;
}
.support-box3 .container .public-nav-banner .container {
  width: 100%;
  padding: 0 1.2rem;
}
.support-box3 .container .public-nav-banner .container .public-btn {
  margin-top: 0.25rem;
}
.support-box4 {
  margin-top: 1.2rem;
}
.support-box4 .container {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.support-box4 .container .scn2 {
  width: 31.375%;
  position: relative;
}
@media (max-width: 991px) {
  .support-box4 .container .scn2 {
    width: 100%;
    height: 6rem;
  }
}
.support-box4 .container .scn2 .scn2box {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  padding: 0.6rem;
  border: solid 1px #e6e6e6;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transition: all 0.5s;
  visibility: hidden;
}
@media (max-width: 991px) {
  .support-box4 .container .scn2 .scn2box {
    max-height: 6rem;
    overflow: auto;
  }
}
.support-box4 .container .scn2 .scn2box.on {
  opacity: 1;
  visibility: visible;
}
.support-box4 .container .scn2 .scn2box.on .line {
  animation: donghuawidth 0.5s 1 linear forwards;
}
.support-box4 .container .scn2 .scn2box .line {
  background-color: #003893;
  width: 0;
  height: 2px;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s;
}
.support-box4 .container .scn2 .scn2box .scn1-title {
  color: #000000;
  line-height: 1.33333333;
  padding-bottom: 0.35rem;
}
.support-box4 .container .scn2 .scn2box .scn1-ul {
  border-top: 1px solid #e6e6e6;
  padding-top: 0.35rem;
}
.support-box4 .container .scn2 .scn2box .scn1-ul .scn1-li {
  display: flex;
}
.support-box4 .container .scn2 .scn2box .scn1-ul .scn1-li .scn1a {
  flex-shrink: 0;
  color: #666666;
  line-height: 1.66666667;
}
.support-box4 .container .scn2 .scn2box .scn1-ul .scn1-li .scn1b {
  line-height: 1.66666667;
  color: #666666;
}
.support-box4 .container .scn1 {
  margin: 0 0 0 auto;
  width: 68.625%;
  position: relative;
}
@media (max-width: 991px) {
  .support-box4 .container .scn1 {
    width: 100%;
  }
}
.support-box4 .container .scn1 .mapimg {
  width: 100%;
}
.support-box4 .container .scn1 .dian {
  width: 1px;
  height: 1px;
  position: absolute;
  cursor: pointer;
}
.support-box4 .container .scn1 .dian.dianblue .dian2 {
  background-color: #003893;
}
.support-box4 .container .scn1 .dian.dianblue .dian2::before {
  background-color: #003893;
}
.support-box4 .container .scn1 .dian.dianblue .diancn {
  color: #003893;
}
.support-box4 .container .scn1 .dian.diangreen .dian2 {
  background-color: #00ad7a;
}
.support-box4 .container .scn1 .dian.diangreen .dian2::before {
  background-color: #00ad7a;
}
.support-box4 .container .scn1 .dian.diangreen .diancn {
  color: #00ad7a;
}
.support-box4 .container .scn1 .dian:hover .dian2::before {
  animation: suofang2 2s infinite linear;
}
.support-box4 .container .scn1 .dian .dian2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.1rem;
  height: 0.1rem;
  border-radius: 50%;
}
.support-box4 .container .scn1 .dian .dian2:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.2rem;
  height: 0.2rem;
  border-radius: 50%;
  opacity: 0.2;
}
.support-box4 .container .scn1 .dian .diancn {
  margin-top: 0.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}
.support-box4 .container .scn1 .stips {
  position: absolute;
  left: 27.32%;
  top: 70%;
}
@media (max-width: 991px) {
  .support-box4 .container .scn1 .stips {
    left: 0;
  }
}
.support-box4 .container .scn1 .stips .stips1 {
  display: flex;
  align-items: center;
  margin-bottom: 0.1rem;
}
.support-box4 .container .scn1 .stips .stips1 .stips2 {
  margin-right: 0.2rem;
  width: 0.1rem;
  height: 0.1rem;
  border-radius: 50%;
  background-color: #003893;
}
.support-box4 .container .scn1 .stips .stips1 .stips3 {
  color: #003893;
}
@keyframes donghuawidth {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes suofang2 {
  from {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.2;
  }
  to {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}
.layui-form-select dl dd.layui-this {
  background-color: #003893;
  color: #fff;
}
.wow {
  visibility: visible !important;
  animation-name: initial !important;
  animation-delay: 0s !important;
}
@media (max-width: 991px) {
  .index-case .index-public-title .pleft {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .index-news .index-public-title .pleft {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .support-box4 .container .scn1 .dian .diancn {
    margin-top: 0;
    position: absolute;
    left: 0.2rem;
    top: 50%;
    transform: translateY(-50%);
  }
}
.index-news .index-public-title .pleft .pcn1 {
  width: 100%;
}
.index-news .index-public-title .pleft .pcn2 {
  width: 100%;
}
.index-case .index-public-title .pleft .pcn1 {
  width: 100%;
}
.index-case .index-public-title .pleft .pcn2 {
  width: 100%;
}
.public-contact .container .cn1 br {
  display: block !important;
}
.index-case .indexcaseswiper .swiper-slide .text .text2 .cn3 .cn4 {
  line-height: 1.5;
}
.indexcookies {
  position: fixed;
  right: 0.6rem;
  bottom: 0.3rem;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 0.35rem 0.3rem;
  z-index: 999;
  width: 376px;
  border-radius: 0.2rem;
  display: none;
}
@media (max-width: 767px) {
  .indexcookies {
    width: 90%;
    right: 5%;
  }
}
.indexcookies .cn1 {
  color: #111111;
  line-height: 1.41666667em;
}
.indexcookies .cn2 {
  margin: 0.2rem 0;
  color: #111111;
  line-height: 1.57142857em;
}
.indexcookies .cn2 a {
  color: #003893;
}
.indexcookies .cn3 {
  display: flex;
  flex-wrap: wrap;
}
.indexcookies .cn3 .cn4 {
  line-height: 1.71428571em;
  padding: 0.1rem 0.15rem;
  margin-right: 0.1rem;
  text-align: center;
  color: #003893;
  border: 1px solid #003893;
  border-radius: 0.5rem;
  transition: all 0.5s;
}
.indexcookies .cn3 .cn4:nth-child(2) {
  margin-right: 0;
  background-color: #003893;
  color: #Ffffff;
}
.indexcookies .cn3 .cn4:hover {
  background-color: #003893;
  color: #Ffffff;
}
.c-solution {
  padding: 1.2rem 0 0;
}
.c-solution .container {
  max-width: 1280px;
}
.c-solution .c-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0.6rem -0.3rem -0.4rem;
}
.c-solution .c-list .c-item {
  display: flex;
  width: 50%;
  padding: 0 0.3rem 0.4rem;
}
@media (max-width: 767px) {
  .c-solution .c-list .c-item {
    width: 100%;
  }
}
.c-solution .c-list .c-item .c-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 0.7rem;
  border-radius: 0.35rem;
  padding: 0.2rem;
  color: #333;
  border: 1px solid #e6e6e6;
  transition: all 0.4s;
}
.c-solution .c-list .c-item .c-wrap .c-ico {
  margin-left: 0.2rem;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
}
@media (max-width: 767px) {
  .c-solution .c-list .c-item .c-wrap .c-ico {
    width: 20px;
    height: 20px;
  }
}
.c-solution .c-list .c-item .c-wrap .c-ico .c-svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  transition: all 0.4s;
  border-radius: 50%;
  overflow: hidden;
}
.c-solution .c-list .c-item .c-wrap .c-ico .c-svg path:nth-child(1) {
  transition: all 0.4s;
  fill: #fff;
}
.c-solution .c-list .c-item .c-wrap:hover {
  color: #fff;
  background: #003893;
  border-color: #003893;
}
.c-solution .c-list .c-item .c-wrap:hover .c-svg path:nth-child(1) {
  stroke: #fff;
}
.c-solution2 .c-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0.6rem -0.12rem -0.24rem;
}
.c-solution2 .c-list .c-item {
  display: flex;
  width: 25%;
  padding: 0 0.12rem 0.24rem;
}
@media (max-width: 991px) {
  .c-solution2 .c-list .c-item {
    width: 33.33%;
  }
}
@media (max-width: 767px) {
  .c-solution2 .c-list .c-item {
    width: 50%;
  }
}
.c-solution2 .c-list .c-item .c-wrap {
  width: 100%;
}
.c-solution2 .c-list .c-item .c-wrap .public-img::before {
  padding-top: calc(400/388*100%);
}
.c-solution2 .c-list .c-item .c-wrap .c-title {
  margin-top: 0.24rem;
  color: #000;
  transition: all 0.4s;
}
.c-solution2 .c-list .c-item .c-wrap:hover .public-img > img {
  transform: scale(1.05);
}
.c-solution2 .c-list .c-item .c-wrap:hover .c-title {
  color: #003893;
}
.c-release-time {
  position: relative;
  z-index: 5;
  line-height: 24px;
  padding: 30px 0;
  margin-top: -84px;
}
@media (max-width: 767px) {
  .c-release-time {
    padding: 15px 0;
    margin-top: -79px;
  }
}
.c-release-time .container {
  display: flex;
  align-items: flex-start;
  color: #666;
}
@media (max-width: 767px) {
  .c-release-time .container {
    flex-wrap: wrap;
  }
}
.c-release-time .container p {
  margin-right: 0.24rem;
}
@media (max-width: 767px) {
  .c-release-time .container p {
    width: 100%;
  }
}
.c-release-time .container p:last-child {
  margin-right: 0;
}
.c-release-time .container p span {
  color: #333;
}
.c-solution3 {
  padding: 0.8rem 0 1.2rem;
}
.c-solution3 .container {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .c-solution3 .container {
    flex-direction: column-reverse;
  }
}
.c-solution3 .container .c-left {
  position: sticky;
  top: 60px;
  width: 200px;
  flex-shrink: 0;
}
@media (max-width: 1260px) {
  .c-solution3 .container .c-left {
    width: 150px;
  }
}
@media (max-width: 991px) {
  .c-solution3 .container .c-left {
    display: none;
  }
}
.c-solution3 .container .c-left .c-title {
  color: #000;
}
.c-solution3 .container .c-left .c-list li {
  display: flex;
  align-items: flex-start;
  margin-top: 0.16rem;
  color: #666;
  cursor: pointer;
}
.c-solution3 .container .c-left .c-list li:first-child {
  margin-top: 0.24rem;
}
.c-solution3 .container .c-left .c-list li::before {
  margin: 0 0.1rem;
  flex-shrink: 0;
  content: "•";
  vertical-align: middle;
}
.c-solution3 .container .c-left .c-list li.on {
  color: #003893;
}
.c-solution3 .container .c-center {
  margin: 0 1.05rem 0 20px;
  width: 100%;
}
@media (max-width: 991px) {
  .c-solution3 .container .c-center {
    margin: 0 0.4rem 0 0;
  }
}
@media (max-width: 767px) {
  .c-solution3 .container .c-center {
    margin: 0;
  }
}
.c-solution3 .container .c-center .c-list {
  border-bottom: 1px solid #E9E9E9;
}
.c-solution3 .container .c-center .c-list > li:nth-child(2n-1) .c-main {
  background: rgba(20, 55, 142, 0.05);
}
.c-solution3 .container .c-center .c-list > li:nth-child(2n-1) .c-main .public-content p {
  display: flex;
  align-items: flex-start;
}
.c-solution3 .container .c-center .c-list > li:nth-child(2n-1) .c-main .public-content p::before {
  margin: 0 0.1rem;
  flex-shrink: 0;
  content: "•";
  vertical-align: middle;
}
.c-solution3 .container .c-center .c-list > li .c-main {
  padding: 0.6rem 0.6rem 0.76rem;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .c-solution3 .container .c-center .c-list > li .c-main {
    padding: 0.4rem;
  }
}
.c-solution3 .container .c-center .c-list > li .c-main .c-title {
  color: #000;
}
.c-solution3 .container .c-center .c-list > li .c-main .public-content {
  color: #666;
  line-height: calc(26/18);
  margin-top: 0.24rem;
}
.c-solution3 .container .c-center .c-list > li .c-main .public-content p {
  margin-bottom: 0.16rem;
}
.c-solution3 .container .c-center .c-list > li .c-main .public-content p:last-child {
  margin-bottom: 0;
}
.c-solution3 .container .c-right {
  position: sticky;
  top: 60px;
  width: 110px;
  flex-shrink: 0;
  color: #666;
}
@media (max-width: 991px) {
  .c-solution3 .container .c-right {
    width: 150px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .c-solution3 .container .c-right {
    position: static;
    margin-bottom: 0.4rem;
    width: 100%;
  }
}
.c-solution3 .container .c-right .public-img {
  width: 60px;
  border-radius: 50%;
}
.c-solution3 .container .c-right .c-name {
  margin: 0.16rem 0 0.08rem;
  color: #333;
}




/* aggregation */

.aggregation {
  margin-top: 117px;
}

.aggregation .cn1 {
  text-align: center;
}


.aggregation .aggregationList {
  margin-top: 59px;
}


.aggregationList {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.aggregationList .item {
  width: 47.6%;
  margin-top: 40px;
  height: 70px;
  padding: 0 19px 0 23px;
  border-radius: 100px;
  border: 1px solid #E6E6E6;
  transition: .4s ease all;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.aggregationList .item:hover {
  background-color: #14378E;
  border-color: #14378E;
}

.aggregationList .item:hover .pcn1 {
  color: #ffffff;
}

.aggregationList .item .pcn1 {
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}


.aggregationList .item:nth-child(-n+2) {
  margin-top: 0;
}


.aggregationList .pbtn1 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 2px solid #003893;
  border-radius: 50%;
  background-color: #fff;
  transition: all 0.5s;
  flex-shrink: 0;
  margin-left: 30px;
}

.aggregationList .pbtn1 svg {
  width: 6px !important;
  height: 10px !important;
}

.aggregationList .pbtn1 svg path {
  fill: #003893 !important;
}

.aggregationList .item:hover .pbtn1 {
  border-color: #ffffff;
}

.aggregationList {
  max-width: 1260px;
  margin: 0 auto;
}


@media screen and (max-width:1333px) {
  .aggregation {
    margin-top: 60px;
  }

  .aggregationList .item {
    height: 56px;
    width: 48%;
    margin-top: 30px;
  }

  .aggregation .aggregationList {
    margin-top: 50px;
  }
}

@media screen and (max-width:991px) {
  .aggregation {
    margin-top: 50px;
  }

  .aggregationList .item:nth-child(n) {
    width: 100%;
    margin-top: 20px;
    height: 46px;
  }

  .aggregationList .item:nth-child(1) {
    margin-top: 0;
  }

  .aggregation .aggregationList {
    margin-top: 40px;
  }
}

@media screen and (max-width:768px) {
  .aggregation {
    margin-top: 40px;
  }

  .aggregationList {
    margin-top: 30px;
  }
}

.innerBanner {
  position: relative;
}

.innerBanner .image {
  position: relative;
  z-index: -1;
}

.innerBanner .image::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 39.94%;
  height: 100%;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.80) 100%);
  mix-blend-mode: screen;
}

.innerBanner .image img {
  display: block;
}

.innerBanner .title {
  position: absolute;
  top: 42.4%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  color: #000;
  font-size: 36px;
  line-height: 46px;
  z-index: 9;
  width: 90%;
  max-width: 1600px;
}


.innerBanner .time {
  z-index: 9;
  width: 90%;
  max-width: 1600px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  position: absolute;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}


.innerBanner .time .item {
  flex-shrink: 0;
  margin: 10px 0;
  margin-right: 24px;
  color: #666666;
  font-size: 16px;
  line-height: 24px;
}


.innerBanner .time .item span {
  color: #333333;
}


.aggregationDet {
  margin-top: 80px;
}

.aggregationDet .describe {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.aggregationDet .describe .menu {
  flex-shrink: 0;
  margin-right: 7.5%;
  position: sticky;
  top: 120px;
  left: 0;
}


.aggregationDet .menu .tit {
  color: #000;
  font-size: 24px;
  line-height: 34px;
}

.aggregationDet .menu .tit .btn {
  display: none;
}

.aggregationDet .menu .list {
  margin-top: 21px;
}


.aggregationDet .menu .list li {
  margin-bottom: 11px;
}

.aggregationDet .menu .list li:last-child {
  margin-bottom: 0;
}

.aggregationDet .menu .list li a {
  color: #666;
  font-size: 18px;
  line-height: 30px;
  display: flex;
  align-items: center;
  transition: .4s ease all;
}

.aggregationDet .menu .list li a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #666;
  transition: .4s ease all;
  flex-shrink: 0;
  margin-right: 11px;
  margin-left: 11px;
}

.aggregationDet .menu .list li a.active,
.aggregationDet .menu .list li a:hover {
  color: #14378E;
}

.aggregationDet .menu .list li a.active::before,
.aggregationDet .menu .list li a:hover::before {
  background-color: #14378E;
}


.aggregationDet .describe .box {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}


.aggregationDet .describe .message {
  flex: 1;
  border-bottom: 1px solid #E9E9E9;
  padding-bottom: 85px;
}

.aggregationDet .describe .KeyPoints {
  border-radius: 8px;
  background: rgba(20, 55, 142, 0.05);
  padding: 61px 60px 73px;
}

.aggregationDet .describe .KeyPoints .tit {
  color: #000;
  font-size: 24px;
  line-height: 34px;
}

.aggregationDet .describe .KeyPoints .txts {
  margin-top: 21px;
}

.aggregationDet .describe .KeyPoints .txts p {
  color: #666;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 11px;
}

.aggregationDet .describe .KeyPoints .txts p:last-child {
  margin-bottom: 0;
}

.aggregationDet .describe .KeyPoints .txts p em {
  display: block;
  padding-left: 27px;
  position: relative;
  font-style: normal;
}


.aggregationDet .describe .KeyPoints .txts p em::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #666666;
}


.aggregationDet .describe .introduction {
  margin-top: 61px;
  padding: 0px 60px;
}

.aggregationDet .describe .introduction a{
    color: #00AD7A;
}

.aggregationDet .describe .introduction a:hover{
    text-decoration: underline;
}


.aggregationDet .describe .introduction h2{
    font-size: 24px;
    line-height: 34px;
    margin: 15px 0;
    font-family: 'oppom', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.aggregationDet .describe .introduction h3{
    font-size: 20px;
    line-height: 30px;
    margin: 15px 0;
    font-family: 'oppom', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.aggregationDet .describe .introduction h4{
    font-size: 18px;
    line-height: 26px;
    margin: 15px 0;
    font-family: 'oppom', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}

.aggregationDet .introduction .tit {
  color: #000;
  font-size: 24px;
  line-height: 34px;
}

.aggregationDet .introduction .txts {
  margin-top: 22px;
}


.aggregationDet .introduction .txts p {
  color: #666;
  font-size: 18px;
  line-height: 26px;
}


.aggregationDet .introduction .txts p strong {
  color: #000;
  font-size: 18px;
  display: inline-block;
  margin-bottom: 15px;
}





.aggregationDet .describe .author {
  flex-shrink: 0;
  margin-left: 7.6%;
  width: 150px;
}

.aggregationDet .author .show {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

.aggregationDet .author .name {
  color: #333;
  font-size: 18px;
  line-height: 30px;
  margin-top: 14px;
}

.aggregationDet .author .dis {
  color: #666;
  font-size: 18px;
  line-height: 28px;
  margin-top: 4px;
}


.aggregationDet .product {
  margin-top: 118px;
}

.product .cn1 {
  text-align: center;
  color: #000000;
}

.product .list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 58px;
}

.product .list .item {
  width: 24.1875%;
  margin-right: 1.083%;
  margin-top: 30px;
}


.product .list .item:nth-child(4n) {
  margin-right: 0;
}

.product .list .item:nth-child(-n+4) {
  margin-top: 0;
}

.product .list .image {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product .list .image img {
  transition: .4s ease all;
}


.product .list .image:hover img {
  transform: scale(1.05);
}

.product .list .tit {
  margin-top: 25px;
}

.product .list .tit a {
  color: #000;
  font-size: 24px;
  line-height: 34px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  transition: .4s ease all;
}


.product .list .tit a:hover {
  color: #14378E;
}



.aggregationDet .related {
  margin-top: 117px;
}


.related {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.related .cn1 {
  text-align: center;
  color: #000000;
}

.related .aggregationList {
  margin-top: 59px;
}


@media screen and (max-width:1333px) {
  .innerBanner .title {
    font-size: 28px;
    line-height: 40px;
  }

  .aggregationDet .describe .KeyPoints {
    padding: 40px 40px;
    border-radius: 5px;
  }

  .aggregationDet .describe .introduction {
    padding: 0 40px;
    margin-top: 40px;
  }

  .aggregationDet .describe .KeyPoints .tit,
  .aggregationDet .menu .tit,
  .aggregationDet .introduction .tit {
    font-size: 20px;
    line-height: 30px;
  }

  .aggregationDet .describe .KeyPoints .txts p,
  .aggregationDet .introduction .txts p,
  .aggregationDet .introduction .txts p strong,
  .aggregationDet .menu .list li a,
  .aggregationDet .author .dis,
  .aggregationDet .author .name {
    font-size: 16px;
    line-height: 28px;
  }

  .aggregationDet .describe .KeyPoints .txts p em::after {
    top: 10px;
  }

  .aggregationDet .describe .message {
    padding-bottom: 40px;
  }

  .aggregationDet .product,
  .aggregationDet .related {
    margin-top: 60px;
  }

  .product .list,
  .related .aggregationList {
    margin-top: 30px;
  }

  .product .list .tit a {
    font-size: 18px;
    line-height: 28px;
  }

  .product .list .tit {
    margin-top: 10px;
  }

  .aggregationDet {
    margin-top: 60px;
  }
}

@media screen and (max-width:991px) {
  .innerBanner {
    padding-bottom: 80%;
  }

  .innerBanner .image {
    height: 100%;
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }

  .innerBanner .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: none;
  }

  .product .list .tit a,
  .aggregationDet .describe .KeyPoints .txts p,
  .aggregationDet .introduction .txts p,
  .aggregationDet .introduction .txts p strong,
  .aggregationDet .menu .list li a,
  .aggregationDet .author .dis,
  .aggregationDet .author .name,
  .innerBanner .time .item {
    font-size: 0.28rem;
    line-height: normal;
  }

  .aggregationDet .describe .KeyPoints .tit,
  .aggregationDet .menu .tit,
  .aggregationDet .introduction .tit {
    font-size: 0.36rem;
  }
  .aggregationDet .describe .introduction h2{
    font-size: 0.34rem;
    line-height: normal;
  }
  .aggregationDet .describe .introduction h3{
    font-size: 0.3rem;
    line-height: normal;
  }

  .innerBanner .title {
    font-size: 0.4rem;
  }

  .aggregationDet .describe {
    flex-direction: column;
    align-items: flex-start;
  }

  .aggregationDet .describe .menu {
    width: 100%;
    position: static;
  }

  .aggregationDet,
  .aggregationDet .product,
  .aggregationDet .related {
    margin-top: 50px;
  }

  .aggregationDet .describe .box {
    margin-top: 30px;
  }

  .aggregationDet .menu .tit .btn {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .aggregationDet .menu .tit {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .aggregationDet .menu .tit .btn i {
    width: 16px;
    height: 2px;
    background-color: #333333;
  }

  .aggregationDet .menu .tit .btn i.move {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(90deg);
  }

  .aggregationDet .describe .KeyPoints {
    padding: 30px 20px;
  }

  .aggregationDet .describe .introduction {
    padding: 0 20px;
    margin-top: 30px;
  }

  .aggregationDet .describe .box {
    flex-direction: column-reverse;
    align-items: flex-start;
    width: 100%;
  }

  .aggregationDet .describe .author {
    margin-left: 0;
    width: 100%;
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .aggregationDet .author .name {
    margin-top: 0;
  }

  .aggregationDet .author .show {
    margin-right: 20px;
    margin-top: -10px;
    flex-shrink: 0;
    display: flex;
    align-content: center;
    justify-content: center;
  }
  .aggregationDet .author .show img{
      display: block;
  }

  .aggregationDet .menu .list {
    display: none;
    transition: none;
  }
}

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

  .aggregationDet,
  .aggregationDet .product,
  .aggregationDet .related {
    margin-top: 40px;
  }

  .product .list .item:nth-child(n) {
    width: 49%;
    margin-top: 30px;
    margin-right: 0;
  }

  .product .list {
    justify-content: space-between;
  }

  .product .list .item:nth-child(-n+2) {
    margin-top: 0;
  }

}

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

  .product .list,
  .related .aggregationList {
    margin-top: 20px;
  }
}

/* 2026.2.27 产品详情*/



.productShow {
  background-color: #f6f6f6;
  padding: 82px 0 69px 0;
}


.productShow .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.productShow .box {
  width: 44.875%;
  position: relative;
}


.productShow .jianjie {
  width: 49.86%;
  margin-top: 56px;
}


.productShow .box .showSipwer {
  margin-bottom: 26px;
  overflow: hidden;
}


.productShow .box .showSipwer .swiper-slide {
  position: relative;
}



.productShow .box .checkSwiper {
  position: relative;
  overflow: hidden;
}


.productShow .box .checkSwiper .prev,
.productShow .box .checkSwiper .next {
  position: absolute;
  top: 50%;
  height: 100%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 99;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #ffffff;
  transition: .4s ease all;
}

.productShow img {
  display: block;
}

.productShow .box .checkSwiper .prev {
  left: 3px;
}

.productShow .box .checkSwiper .next {
  right: 3px;
}


.productShow .box .checkSwiper .prev:hover,
.productShow .box .checkSwiper .next:hover {
  background-color: #003893;
}

.productShow .box .checkSwiper .prev:hover img,
.productShow .box .checkSwiper .next:hover img {
  filter: grayscale(100%) brightness(500%);
}

.productShow .checkSwiper .swiper-slide {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}


.productShow .checkSwiper .swiper-slide::after {
  content: "";
  position: absolute;
  border: solid 1px transparent;
  transition: .4s ease border;
  pointer-events: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  box-sizing: border-box;
}


.productShow .checkSwiper .swiper-slide.swiper-slide-thumb-active::after {
  border: solid 1px #003893;
}


.jianjie h1 {
  font-weight: 700;
  font-size: 0.32rem;
  line-height: 42px;
  color: #000000;
}


.jianjie .txts {
  margin-top: 25px;
}


.jianjie .txts p {
  font-size: 16px;
  line-height: 28px;
  color: #666666;
}



.jianjie .btns {
  display: flex;
  align-items: center;
  margin-top: 31px;
}


.jianjie .btns a {
  min-width: 149px;
  min-height: 39px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  margin-right: 11px;
  color: #FFF;
  font-size: 18px;
  color: #ffffff;
  background-color: #003893;
  transition: .4s ease all;
  border: 1px solid #003893;
  padding: 0 6px;
  white-space: nowrap;
}




.jianjie .btns a:nth-child(2) {
  margin-right: 0;
  min-width: 162px;
}

.jianjie .btns a:hover {
  background-color: #ffffff;
  color: #003893;
}


.jianjie .btns a i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-right: 10px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: .4s ease all;
  transform: translateY(-1px);
}

.jianjie .btns a:hover i {
  background-color: #003893;
}

.jianjie .btns a:hover i img {
  filter: grayscale(100%) brightness(500%);
}



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

.jianjie .share {
  margin-top: 33px;
}

.jianjie .share span {
  color: #444;
  font-size: 14px;
  line-height: 24px;
  flex-shrink: 0;
  margin-right: 10px;
}




/*jQzoom*/
.jqzoom {
  float: left;
  position: relative;
  padding: 0px;

}

div.zoomdiv {
  z-index: 200;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 400px;
  height: 400px;
  background: #ffffff;
  border: 1px solid #CCCCCC;
  display: none;
  text-align: center;
  overflow: hidden;
}

div.zoomdiv img {
  max-width: unset !important;
}

div.jqZoomPup {
  z-index: 200;
  visibility: hidden;
  position: absolute;
  top: 0px;
  left: 0px;
  border: 1px solid #aaa;
  background: #ffffff;
  opacity: 0.5;
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  filter: alpha(Opacity=50);
  transition: none;
}


.pDescribe .title1 {
  font-family: OPPOSans-B;
  font-size: 36px;
  line-height: 50px;
  color: #333333;
  margin-bottom: 20px;
}


.pDescribe .con {
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  padding: 35px 0 30px 0;
}




@media screen and (max-width:1580px) {
  .productShow {
    padding: 80px 0;
  }

  .productShow .jianjie {
    margin-top: 0px;
  }

  .jianjie .btns a:nth-child(n){
    font-size: 16px;
    justify-content: center;
    padding: 3px 10px;
    min-width: auto;
  }
}

@media screen and (max-width:1260px) {
  .productShow {
    padding: 60px 0;
  }
}

@media screen and (max-width:991px) {
  div.jqZoomPup {
    display: none;
  }

  .zoomPad {
    cursor: default !important;
  }

  .zoomPup {
    display: none !important;
  }

  .zoomWindow {
    display: none !important;
  }

  .zoomPreload {
    display: none !important;
  }

  .productShow .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .productShow .jianjie {
    width: 100%;
    margin-top: 30px;
  }

  .jianjie h1 {
    line-height: 1.5;
  }

  .productShow .box .showSipwer {
    margin-bottom: 20px;
  }

  .productShow .box {
    width: 100%;
    margin: 0 auto;
    max-width: 600px;
  }

  .productShow {
    padding: 50px 0;
  }
}

@media screen and (max-width:767px) {
  .jianjie h1 {
    font-size: 0.4rem;
  }

  .jianjie .txts p,
  .jianjie .btns a:nth-child(n),
  .jianjie .share span {
    font-size: 0.28rem;
    line-height: 1.66666667;
  }

  .productShow {
    padding: 40px 0;
  }
}

.parameters {
  margin-top: 95px;
}

.parameters .title {
  font-weight: 700;
  color: #000;
}

.parameters .tech-box4 .tech-table {
  margin-top: 22px;
}

.applicationScenarios {
  margin-top: 120px;
  padding-top: 0;
}

.applicationScenarios .tech-box5 {
  margin-top: 0;
}

.applicationScenarios .tech-box5 .cn0 {
  color: #000000;
  margin-bottom: 0.1rem;
}

.applicationScenarios .txts p {
  line-height: 1.66666667;
  color: #666666;
}

.applicationScenarios .txts {
  margin-bottom: 0.25rem;
}

.applicationScenarios .public-swiper1bigbox .public-swiper1bigbox3 .swiper-wrapper .swiper-slide {
  padding: 0;
  box-shadow: none;
}

.applicationScenarios .public-swiper1bigbox {
  padding-bottom: 0;
}



.qualification {
  padding-top: 0;
  margin-top: 110px;
}

.qualification .public-about-box {
  margin-top: 0;
}

.rentalService{
  padding-top: 0;
  margin-top: 89px;
  padding-bottom: 10px;
}

.rentalService .tech-box3 .public-about-box:nth-child(-n+2) {
  margin-top: 0;
}

.caseStudy{
  padding: 0;
  margin-top: 113px;
}

.excellentService{
  padding-top: 0;
  padding-bottom: 101px;
  margin-top: 164px;
}




@media screen and (max-width:1580px) {
  .parameters,
  .applicationScenarios,
  .qualification,
  .rentalService,
  .caseStudy,
  .excellentService{
    margin-top: 80px;
  }

  .excellentService{
    padding-bottom: 80px;
  }
}

@media screen and (max-width:1260px) {
  .parameters,
  .applicationScenarios,
  .qualification,
  .rentalService,
  .caseStudy,
  .excellentService{
    margin-top: 60px;
  }

  .excellentService{
    padding-bottom: 60px;
  }
}

@media screen and (max-width:991px) {
  .parameters,
  .applicationScenarios,
  .qualification,
  .rentalService,
  .caseStudy,
  .excellentService{
    margin-top: 50px;
  }

  .excellentService{
    padding-bottom: 50px;
  }
  .tech-box2 .box .box2{
    width: 100%;
  }
}




/* touch */

.touch {
  margin-top: 98px;
}

.touch .con {
  display: flex;
  justify-content: space-between;
}


.touch .msg {
  width: 62.05%;
}

.touch .touchInfo {
  width: 34%;
  padding-top: 16px;
}

.touch .touchInfo .title {
  color: #000;
  line-height: 46px;
  font-weight: 700;
}


.touch .touchInfo .txts {
  margin-top: 24px;
  color: #666;
  line-height: 30px;
}


.cForm input,
.cForm textarea {
  width: 100%;
  height: 100%;
  background-color: transparent;
}

.cForm ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cForm ul li {
  height: 54px;
  width: 48.95%;
  margin-top: 20px;
  padding: 0 20px;
  border-radius: 50px;
  border: 1px solid #D9D9D9;
  background-color: #ffffff;
}


.cForm ul li:nth-child(-n+2) {
  margin-top: 0;
}


.cForm ul li.message {
  width: 100%;
  height: 80px;
  padding: 10px 20px;
  border-radius: 16px;
  margin-top: 28px;
}

.cForm ul li.message.must::after {
  top: 14px;
}


.cForm ul li.must {
  position: relative;
}


.cForm ul li.must::after {
  content: "*";
  position: absolute;
  top: 18px;
  left: -14px;
  font-size: 14px;
  line-height: 26px;
  color: #ff000b;
}


.cForm ul li.code {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.cForm ul li.code input {
  flex: 1;
  padding: 0 11px;
}

.cForm ul li.code .codeImg {
  flex-shrink: 0;
  cursor: pointer;
  height: 100%;
  background-color: #f3fbfe;
}

.cForm ul li.code .codeImg img {
  height: 100%;
}


.cForm ul li.subBtn {
  padding: 0;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  width: max-content;
  position: relative;
  border: none;
  border-radius: 0;
  color: #003893;
  margin-top: 29px;
}

.cForm ul li.subBtn .pbtn1 {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 2px solid #003893;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  transform: translateY(-1px);
  transition: .4s ease all;
}

.cForm ul li.subBtn:hover .pbtn1 {
  background-color: #003893;
}

.cForm ul li.subBtn .pbtn1 svg {
  width: 6px !important;
  height: 10px !important;
  margin-left: 0 !important;
  transform: initial !important;
}

.cForm ul li.subBtn .pbtn1 svg path {
  fill: #003893 !important;
}

.cForm ul li.subBtn:hover .pbtn1 svg path {
  fill: #ffffff !important;
}


.cForm ul li.subBtn input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  opacity: 0;
  background-color: transparent;
  cursor: pointer;
}





.cForm input::-webkit-input-placeholder,
.cForm textarea::-webkit-input-placeholder {
  color: #999999;
}

.cForm input:-moz-placeholder,
.cForm textarea:-moz-placeholder {
  color: #999999;
}

.cForm input::-moz-placeholder,
.cForm textarea::-moz-placeholder {
  color: #999999;
}

.cForm input:-ms-input-placeholder,
.cForm textarea:-ms-input-placeholder {
  color: #999999;
}

.cForm ul li.m-formcountry {
  padding: 0;
}


.m-formcountry {
  position: relative;
}

.m-formcountry .drop-btn {
  position: relative;
  height: 100%;
  padding: 0 20px;
}

.m-formcountry .drop-btn i,
.m-formcountry .drop-btn svg {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 16px;
  color: #999999;
  width: 9px !important;
  height: 9px !important;
}

.m-formcountry .drop-btn svg path {
  fill: #999 !important;
}


.m-formcountry .drop-list {
  display: none;
  border: 1px solid #e6e6e6;
  width: 100%;
  position: absolute;
  top: 100%;
  background-color: #fff;
  max-height: 223px;
  overflow-x: hidden;
  z-index: 10001;
  scrollbar-color: #003893 rgba(0, 0, 0, 0.05);
  scrollbar-width: thin;
  border-radius: 16px;
}

.m-formcountry .drop-list::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.m-formcountry .drop-list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}

.m-formcountry .drop-list::-webkit-scrollbar-thumb {
  background-color: #003893;
}

.m-formcountry .drop-list li {
  font-size: 16px;
  line-height: 26px;
  overflow: hidden;
  padding: 5px 20px;
  cursor: pointer;
  border: none;
  border-bottom: 1px solid #e6e6e6;
  color: #999;
  height: auto;
  background-color: #ffffff;
  margin: 0;
  border-radius: 0;
  width: 100%;
  transition: .4s ease all;
}


.m-formcountry .drop-list li.on {
  background-color: #003893;
  color: #ffffff;
}

@media screen and (max-width:1580px) {
  .touch .touchInfo .title {
    line-height: 1.33333333;
  }

  .touch .touchInfo .txts {
    line-height: 1.66666667;
  }

  .touch {
    margin-top: 80px;
  }

  .cForm ul li {
    height: 45px;
  }

  .cForm ul li.message,
  .m-formcountry .drop-list {
    border-radius: 10px;
  }
}

@media screen and (max-width:1260px) {
  .touch {
    margin-top: 60px;
  }

  .cForm ul li.message,
  .m-formcountry .drop-list {
    border-radius: 5px;
  }
}

@media screen and (max-width:991px) {
  .touch {
    margin-top: 50px;
  }

  .touch .con {
    flex-direction: column;
    align-items: flex-start;
  }

  .touch .touchInfo {
    padding-top: 0;
    width: 100%;
  }

  .touch .msg {
    width: 100%;
    margin-top: 30px;
  }

  .cForm ul li {
    height: 40px;
  }

  .m-formcountry .drop-list li {
    font-size: 14px;
    line-height: 24px;
    padding: 4px 20px;
  }
}


@media screen and (max-width:767px) {
  .m-formcountry .drop-list li {
    font-size: 0.28rem;
    line-height: 1.2;
  }
}

@media screen and (max-width:538px) {
  .cForm ul li:nth-child(n) {
    width: 100%;
    margin-top: 14px;
  }

  .cForm ul li:nth-child(1) {
    margin-top: 0;
  }

  .cForm ul .m-formcountry .drop-list li {
    margin-top: 0;
  }

  .cForm ul li {
    height: 36px;
  }
}

/* faq */

.faq {
  padding: 72px 0 87px 0;
  background: #F5F5F5;
}

.faq .cn1 {
  text-align: center;
  color: #000;
}


.faq .faqList {
  max-width: 1115px;
  margin: 0 auto;
  margin-top: 34px;
}


.faqList .item {
  margin-bottom: 26px;
  cursor: pointer;
  background-color: #ffffff;
  border: 1px solid #D9D9D9;
  padding: 22px 10px 10px 24px;
}


.faqList .item:nth-child(1) .answer {
  display: block;
}


.faqList .item:last-child {
  margin-bottom: 0;
}


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


.faqList .question .name {
  color: #000;
  transition: .4s ease all;
}


.faqList .question .btns {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  margin-left: 30px;
  width: 40px;
  height: 40px;
}



.faqList .question i {
  width: 20px;
  height: 2px;
  background-color: #3D3D3D;
  border-radius: 5px;
  transition: .4s ease all;
}

.faqList .question i.move {
  width: 20px;
  height: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(90deg);
}

.faqList .item.active .question i.move {
  transform: translateX(-50%) translateY(-50%) rotate(0deg);
}


.faqList .item.active .question .name {
  font-weight: 700;
}

.faqList .answer {
  display: none;
  transition: none;
  margin-top: 8px;
  padding-bottom: 7px;
}



.faqList .answer p {
  color: #666;
}


@media screen and (max-width:1580px) {
  .faqList .item {
    padding: 14px 20px;
  }

  .faqList .answer {
    padding-bottom: 0;
    margin-top: 10px;
  }

  .faq {
    padding: 80px 0;
  }

  .faqList .item {
    margin-bottom: 20px;
  }
}

@media screen and (max-width:1260px) {
  .faq {
    padding: 60px 0;
  }

  .faqList .question .btns {
    width: 36px;
    height: 36px;
  }

  .faqList .question i:nth-child(n) {
    width: 16px;
  }
}

@media screen and (max-width:991px) {
  .faq .faqList {
    margin-top: 30px;
  }
}

/*sus related news*/
.newsChecks .swiper-wrapper {
  display: none;
}

.newsChecks .swiper-wrapper.active {
  display: flex;
}


.checkSigns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}

.checkSigns .item {
  margin: 0 0.17rem !important;
  width: 6px;
  height: 6px;
  background-color: #e0e0e0;
  opacity: 1;
  position: relative;
  cursor: pointer;
  border-radius: 50%;
}


.checkSigns .item::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.2rem;
  height: 0.2rem;
  border: 0.02rem solid #003893;
  border-radius: 50%;
  transition: all 0.5s;
  opacity: 0;
}

.checkSigns .item.active {
  background-color: #003893;
}

.checkSigns .item.active:before {
  opacity: 1;
}


@media screen and (max-width:991px) {
  .checkSigns .item {
    margin: 0 0.2rem !important;
    width: 0.2rem;
    height: 0.2rem;
  }
  .checkSigns .item::before {
    width: 0.3rem;
    height: 0.3rem;
  }
  .checkSigns {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
  }
}

.standardEdit  p a{
    color: #00AD7A;
}


.standardEdit  p a:hover{
    text-decoration: underline;
}

.tech-box4 .tech-table .public-content h3{
    font-size: 20px;
    line-height: 30px;
    margin: 20px 0;
    font-family: 'oppom', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.tech-box4 .tech-table .public-content h4{
    font-size: 18px;
    line-height: 26px;
    margin: 13px 0;
    font-family: 'oppom', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}



