:root {
  /* 基础字体大小，用于标准分辨率 */
  --base-font-size: 16px;
  /* 分辨率调整因子 */
  --resolution-factor: 1;
  /* 宽度调整因子 */
  --width-factor: 1;
}
/* 分辨率调整 */
@media screen and (min-resolution: 120dpi) and (max-resolution: 140dpi) {
  :root {
    --resolution-factor: 0.8125;
    /* 13/16 */
  }
}
@media screen and (min-resolution: 140dpi) and (max-resolution: 160dpi) {
  :root {
    --resolution-factor: 0.625;
    /* 10/16 */
  }
}
/* 宽度调整 */
@media screen and (min-width: 1280px) and (max-width: 1440px) {
  :root {
    --width-factor: 0.875;
    /* 14/16 */
  }
}
@media screen and (min-width: 1440px) and (max-width: 1680px) {
  :root {
    --width-factor: 0.9375;
    /* 15/16 */
  }
}
@media screen and (min-width: 1680px) and (max-width: 2560px) {
  :root {
    --width-factor: 1;
    /* 16/16 */
  }
}
@media screen and (min-width: 2560px) {
  :root {
    --width-factor: 1.375;
    /* 18/16 */
  }
}
/* 最终计算字体大小（分辨率优先） */
:root {
  font-size: calc(var(--base-font-size) * var(--resolution-factor) * var(--width-factor));
}
/* 或者宽度优先 */
/* :root {
  font-size: calc(var(--base-font-size) * var(--width-factor) * var(--resolution-factor));
} */
.tanchu {
  width: 100%;
  height: 0;
  padding-bottom: 0;
  transition: all 0.5s ease;
  background: rgba(0, 0, 0, 0.8);
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.tanchu .t_content {
  background: rgba(255, 255, 255, 0.8);
  width: 80%;
  height: 80vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  padding: 2.5rem;
  overflow: hidden;
  overflow-y: scroll;
}
.tanchu .t_content p {
  font-size: 1.125rem;
  color: #000;
  line-height: 1.8;
  font-weight: 100;
  text-align: left;
  margin-bottom: 1rem;
}
.tanchu .close {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #afe226;
  padding: 16px;
  cursor: pointer;
}
/*本地字体引用*/
@font-face {
  font-family: "myFontBold";
  src: url("../fonts/myFontBold.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "myFontLight";
  src: url("../fonts/myFontLight.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "myFontSemiBold";
  src: url("../fonts/myFontSemiBold.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
}
body,
div,
span,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
blockquote,
td,
tr,
th,
p {
  padding: 0;
  margin: 0;
}
li,
dd,
ol,
ul {
  list-style-type: none;
}
a {
  text-decoration: none;
  cursor: pointer;
}
img {
  border: none;
  outline: medium none;
}
img a {
  border: none;
}
input,
select,
button {
  outline: medium none;
  border: none;
  padding: 0;
  margin: 0;
  font-family: "Microsoft YaHei", Helvetica, sans-serif, "宋体";
}
textarea {
  outline: medium none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  resize: none;
  font-family: "Microsoft YaHei", Helvetica, sans-serif, "宋体";
}
i {
  font-style: normal;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}
ul li img {
  display: block;
  /* width: 100%; height: 100%;*/
  cursor: pointer;
}
:focus {
  outline: none;
}
a:hover {
  background: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
  -webkit-user-select: none;
  -moz-user-select: none;
}
input[type="button"],
input[type="submit"],
input[type="reset"],
button {
  -webkit-appearance: none;
}
textarea {
  -webkit-appearance: none;
}
/*div:after,div:before,ul:after,ul:before,li:after,li:before {*/
/*    content: " ";*/
/*    clear: both;*/
/*    display: block;*/
/*}*/
em {
  font-style: normal;
}
.clear {
  clear: both;
}
.mr {
  margin-right: 0 !important;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.mt-10 {
  margin-top: 0.625rem;
}
.mt-20 {
  margin-top: 1.25rem;
}
.mt-30 {
  margin-top: 1.875rem;
}
.mt-40 {
  margin-top: 2.5rem;
}
.mt-50 {
  margin-top: 3.125rem;
}
.mt-60 {
  margin-top: 3.75rem;
}
.mt-70 {
  margin-top: 4.375rem;
}
.mt-80 {
  margin-top: 5rem;
}
.mt-90 {
  margin-top: 5.625rem;
}
.mt-100 {
  margin-top: 6.25rem;
}
.mt-110 {
  margin-top: 6.875rem;
}
.mt-120 {
  margin-top: 7.5rem;
}
.mt-130 {
  margin-top: 8.125rem;
}
.mt-140 {
  margin-top: 8.75rem;
}
.mt-150 {
  margin-top: 9.375rem;
}
.mb-10 {
  margin-bottom: 0.625rem;
}
.mb-20 {
  margin-bottom: 1.25rem;
}
.mb-30 {
  margin-bottom: 1.875rem;
}
.mb-40 {
  margin-bottom: 2.5rem;
}
.mb-50 {
  margin-bottom: 3.125rem;
}
.mb-60 {
  margin-bottom: 3.75rem;
}
.mb-70 {
  margin-bottom: 4.375rem;
}
.mb-80 {
  margin-bottom: 5rem;
}
.mb-90 {
  margin-bottom: 5.625rem;
}
.mb-100 {
  margin-bottom: 6.25rem;
}
.mb-110 {
  margin-bottom: 6.875rem;
}
.mb-120 {
  margin-bottom: 7.5rem;
}
.mb-130 {
  margin-bottom: 8.125rem;
}
.mb-140 {
  margin-bottom: 8.75rem;
}
.mb-150 {
  margin-bottom: 9.375rem;
}
.ml-10 {
  margin-left: 0.625rem;
}
.ml-20 {
  margin-left: 1.25rem;
}
.ml-30 {
  margin-left: 1.875rem;
}
.ml-40 {
  margin-left: 2.5rem;
}
.ml-50 {
  margin-left: 3.125rem;
}
.ml-60 {
  margin-left: 3.75rem;
}
.ml-70 {
  margin-left: 4.375rem;
}
.ml-80 {
  margin-left: 5rem;
}
.ml-90 {
  margin-left: 5.625rem;
}
.ml-100 {
  margin-left: 6.25rem;
}
.ml-110 {
  margin-left: 6.875rem;
}
.ml-120 {
  margin-left: 7.5rem;
}
.ml-130 {
  margin-left: 8.125rem;
}
.ml-140 {
  margin-left: 8.75rem;
}
.ml-150 {
  margin-left: 9.375rem;
}
.mr-10 {
  margin-right: 0.625rem;
}
.mr-20 {
  margin-right: 1.25rem;
}
.mr-30 {
  margin-right: 1.875rem;
}
.mr-40 {
  margin-right: 2.5rem;
}
.mr-50 {
  margin-right: 3.125rem;
}
.mr-60 {
  margin-right: 3.75rem;
}
.mr-70 {
  margin-right: 4.375rem;
}
.mr-80 {
  margin-right: 5rem;
}
.mr-90 {
  margin-right: 5.625rem;
}
.mr-100 {
  margin-right: 6.25rem;
}
.mr-110 {
  margin-right: 6.875rem;
}
.mr-120 {
  margin-right: 7.5rem;
}
.mr-130 {
  margin-right: 8.125rem;
}
.mr-140 {
  margin-right: 8.75rem;
}
.mr-150 {
  margin-right: 9.375rem;
}
table,
table tr td {
  border: 1px solid #e5e5e5;
  text-align: center;
  font-size: 0.9375rem;
  word-wrap: break-word;
  table-layout: fixed;
}
table {
  width: 100%;
  min-height: 2.5rem;
  line-height: 2.5rem;
  text-align: center;
  border-collapse: collapse;
  padding: 2px;
}
.iconfont {
  font-family: "iconfont" !important;
  font-size: 1rem;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}
.w100 {
  width: 100%;
}
.w90 {
  width: 90%;
  margin: 0 auto;
}
.h992 {
  display: block;
}
.s992 {
  display: none;
}
.pageList {
  margin-top: 2.5rem;
  padding-bottom: 6.25rem;
}
.pageList dl {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pageList dl dd {
  display: inline-block;
  border: 1px solid #ccc;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 2px;
}
.pageList dl dd a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 0.875rem;
  color: #333;
  line-height: 2.5rem;
  font-weight: normal;
  text-align: center;
}
.n_nav_list {
  width: 100%;
  height: 4.375rem;
  line-height: 4.375rem;
  border-bottom: 2px solid #f0f0f0;
  background-color: #fff;
  overflow: hidden;
}
.n_nav_list .n_nav_list_center .left {
  float: left;
}
.n_nav_list .n_nav_list_center .left .flex {
  overflow: hidden;
}
.n_nav_list .n_nav_list_center .left .flex li {
  position: relative;
  float: left;
  font-size: 1.125rem;
  padding: 0 2.5rem;
  cursor: pointer;
}
.n_nav_list .n_nav_list_center .left .flex li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 2px;
  background: #000;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.n_nav_list .n_nav_list_center .left .flex li::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 0.75rem;
  background: #dddddd;
  left: 0;
  top: 50%;
  margin-top: -0.375rem;
}
.n_nav_list .n_nav_list_center .left .flex li a {
  font-size: 1rem;
  color: #000;
  font-weight: bold;
}
.n_nav_list .n_nav_list_center .right {
  float: right;
}
.n_nav_list .n_nav_list_center .right .home {
  overflow: hidden;
}
.n_nav_list .n_nav_list_center .right .home .index {
  color: #000;
  font-size: 0.9375rem;
}
.n_nav_list .n_nav_list_center .right .home span {
  font-size: 0.9375rem;
}
.n_nav_list .n_nav_list_center .right .home span a {
  color: #999;
}
.n_banner {
  width: 100%;
  height: 76vh;
  overflow: hidden;
  position: relative;
  border-radius: 0 0 3rem 3rem;
}
.n_banner .img img {
  width: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  animation: n_bannerScale 4s 1;
}
.n_banner .text {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: 3;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex-wrap: wrap;
}
.n_banner .text .w90 {
  margin-bottom: 6.25rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.n_banner .text .w90 .left {
  width: 70%;
}
.n_banner .text .w90 .left h1 {
  font-size: 5rem;
  color: #fff;
  line-height: 1;
  font-weight: 600;
  text-align: left;
  margin-bottom: 1.5rem;
  font-family: "myFontBold";
  letter-spacing: 2px;
}
.n_banner .text .w90 .left h1 i {
  margin-right: 0.5rem;
}
.n_banner .text .w90 .left h1 a {
  color: #fff;
}
.n_banner .text .w90 .left h4 {
  font-size: 1.75rem;
  color: #fff;
  line-height: 1;
  font-weight: 100;
  text-align: left;
  margin-bottom: 1.25rem;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}
.n_banner .text .w90 .left .l_box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.n_banner .text .w90 .left .l_box h2 {
  font-size: 7.5rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-align: left;
  font-family: Impact;
  margin-right: 5rem;
}
.n_banner .text .w90 .right p {
  font-size: 1rem;
  color: #fff;
  line-height: 1;
  font-weight: 600;
  text-align: left;
}
.n_banner .text .w90 .right > div {
  margin: 1rem auto 0;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 1.875rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  line-height: 3.75rem;
  text-align: center;
}
.n_banner .text .w90 .right > div i {
  color: #fff;
  font-size: 1rem;
  display: block;
  transform: rotate(90deg);
  animation: mouseUpDown 2s infinite;
}
.n_banner::after {
  display: block;
  content: "";
  width: 100%;
  height: 50vh;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.n_banner.proDetails_banner {
  height: 50vh;
}
@keyframes n_bannerScale {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes mouseUpDown {
  0% {
    transform: translate(0%, -16%) rotate(90deg);
    -webkit-transform: translate(0%, -16%) rotate(90deg);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    transform: translate(0%, 16%) rotate(90deg);
    -webkit-transform: translate(0%, 16%) rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateAll {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.icon {
  width: 0.5rem;
  height: 0.5rem;
  background: #be0000;
  text-align: center;
  line-height: 5rem;
  border-radius: 50%;
  position: absolute;
  top: 0.5625rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 9;
}
.animate-wave {
  width: 2.125rem;
  height: 2.125rem;
  position: absolute;
  top: -4px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@keyframes opac {
  from {
    opacity: 1;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
  }
  to {
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
}
@-webkit-keyframes opac {
  from {
    opacity: 1;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
  }
  to {
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
}
.animate-wave * {
  background: #be0000;
  position: absolute;
  border-radius: 50%;
  animation: opac 6s infinite;
}
.animate-wave .w2 {
  animation-delay: 1s;
}
.animate-wave .w3 {
  animation-delay: 2s;
}
.animate-wave .w4 {
  animation-delay: 3s;
}
.animate-wave .w5 {
  animation-delay: 4s;
}
.animate-wave .w6 {
  animation-delay: 5s;
}
@media screen and (max-width: 1440px) {
  .n_banner {
    height: 68vh;
  }
  .n_banner .text .w90 .left h1 {
    font-size: 4.125rem;
  }
  .n_banner .text .w90 .left h4 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 992px) {
  .n_banner {
    height: 30vh;
    margin-top: 3.125rem;
    border-radius: 0 0 1rem 1rem;
  }
  .n_banner .text .w90 .left h4 {
    display: none;
  }
  .n_banner .text .w90 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }
  .n_banner .text .w90 .left h1 {
    font-size: 1.75rem;
    margin-bottom: 0;
  }
  .n_banner .text .w90 .right > div {
    width: 2rem;
    height: 3rem;
  }
  .n_banner .text .w90 .right p {
    font-size: 0.75rem;
    display: none;
  }
  .n_banner::after {
    height: 12vh;
  }
  .n_banner.proDetails_banner {
    display: none;
  }
  .w90 {
    width: 90%;
  }
  .h992 {
    display: none;
  }
  .s992 {
    display: block;
  }
  .n_banner .img img {
    width: 130%;
  }
}
