.rel {
  position: relative;
}
.abs {
  position: absolute;
}
.fixed {
  position: fixed;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.regular {
  font-family: "regular";
}
.medium {
  font-family: "medium";
}
.flex {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.flex-wrap {
  flex-flow: wrap;
}
.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.inline-block {
  display: inline-block;
}
.block {
  display: block;
}
.hide {
  display: none;
}
.txt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 一行省略溢出显示省略号*/
.bold {
  font-weight: 700;
}
.txt-center {
  text-align: center;
}
.txt-left {
  text-align: left;
}
.txt-right {
  text-align: right;
}
.ss span {
  position: relative;
  z-index: 1;
}
.ss i {
  display: block;
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
}
.ss i:before {
  position: relative;
  content: '';
  display: block;
  margin-top: 100%;
}
.ss i:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50%;
}
.ss:hover i {
  -moz-animation: anim-out 0.75s;
  -webkit-animation: anim-out 0.75s;
  animation: anim-out 0.75s;
}
.ss:hover i:after {
  -moz-animation: anim-out-pseudo 0.75s;
  -webkit-animation: anim-out-pseudo 0.75s;
  animation: anim-out-pseudo 0.75s;
}
.img_rotate {
  -moz-animation: rotate 15s infinite linear;
  -webkit-animation: rotate 15s infinite linear;
  animation: rotate 15s infinite linear;
}
@-moz-keyframes rotate {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(-360deg);
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.linear {
  transition-timing-function: linear;
  -o-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  -webkit-transition-timing-function: linear;
}
.ease {
  transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
}
.ease-in {
  transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  -moz-transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
}
.ease-out {
  transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
}
.ease-in-out {
  transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
}
@-webkit-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-moz-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-ms-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@-moz-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@-ms-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@keyframes fadeOfOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes am_top {
  0% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_top {
  0% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes am_left {
  0% {
    -webkit-transform: translate(30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_left {
  0% {
    -webkit-transform: translate(30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes am_right {
  0% {
    -webkit-transform: translate(-30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_right {
  0% {
    -webkit-transform: translate(-30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes upDown {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}
@-webkit-keyframes upDown {
  from {
    -webkit-transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10px);
  }
}
.before {
  opacity: 0;
  visibility: hidden;
}
.after {
  opacity: 1;
  visibility: visible;
}
.upper {
  text-transform: uppercase;
}
.middle {
  vertical-align: middle;
}
.background {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.coverbackground {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.product {
  background: #f9f9f9;
  padding-bottom: 1.2rem;
}
.product .links::after {
  content: '';
  display: block;
  clear: both;
}
.product .links ul {
  font-size: 0;
}
.product .links li {
  display: inline-block;
  font-size: var(--fs16);
  font-family: 'Mont-L';
  padding-right: 0.5rem;
}
.product .links li:last-child {
  padding-right: 0;
}
.product .links li a {
  position: relative;
  display: block;
  line-height: 0.72rem;
  padding-left: 0.42rem;
  color: #999;
}
.product .links li a .ico {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.15rem;
  width: 0.3rem;
}
.product .links li a .ico img {
  position: absolute;
  left: 0;
  top: 0;
  width: 0.3rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.product .links li a .ico .img1 {
  opacity: 0;
  transform: scale3d(0, 0, 0);
  -webkit-transform: scale3d(0, 0, 0);
  -moz-transform: scale3d(0, 0, 0);
}
.product .links li a:hover {
  color: #062f67;
}
.product .links li a:hover .ico img {
  opacity: 0;
}
.product .links li a:hover .ico .img1 {
  opacity: 1;
  transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  -moz-transform: scale3d(1, 1, 1);
}
.product .links li .on {
  color: #062f67;
}
.product .links li .on .ico img {
  opacity: 0;
}
.product .links li .on .ico .img1 {
  opacity: 1;
  transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  -moz-transform: scale3d(1, 1, 1);
}
.product .list {
  padding: 0.3rem 0 0.2rem;
}
.product .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.product .list li {
  width: calc((100% - 0.78rem) / 4);
  margin-right: 0.26rem;
  margin-bottom: 0.5rem;
}
.product .list li:nth-child(4n) {
  margin-right: 0;
}
.product .list li .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 3.6rem;
  background: #fff;
  border-radius: 0.2rem;
  overflow: hidden;
}
.product .list li .imgDiv img {
  max-width: 3.2rem;
  max-height: 3.2rem;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.product .list li .name {
  margin-top: 0.23rem;
  line-height: 0.3rem;
  font-size: var(--fs18);
  color: #333;
  text-align: center;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.product .list li:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.product .list li:hover .name {
  color: #062f67;
}
.moreBtn {
  width: 2.5rem;
  margin: 0 auto;
}
.moreBtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  width: 100%;
  height: 0.5rem;
  border-radius: 4px;
  font-size: var(--fs16);
  color: #333;
  overflow: hidden;
  z-index: 1;
}
.moreBtn a::before {
  content: '';
  z-index: -1;
  border-radius: inherit;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #333;
  box-sizing: border-box;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.moreBtn a::after {
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333;
  -webkit-transform: scale3d(1.2, 1.2, 1);
  transform: scale3d(1.2, 1.2, 1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  opacity: 0;
}
.moreBtn a:hover {
  color: #fff;
}
.moreBtn a:hover::before {
  opacity: 0;
  -webkit-transform: scale3d(0.8, 0.8, 1);
  transform: scale3d(0.8, 0.8, 1);
}
.moreBtn a:hover::after {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
@media (max-width: 1004px) {
  .product {
    padding-top: 0.2rem;
    padding-bottom: 0.9rem;
  }
  .product .links {
    height: 0.9rem;
    overflow: hidden;
    overflow-x: auto;
    white-space: nowrap;
  }
  .product .links li {
    font-size: var(--fs14);
    padding-right: 0.4rem;
  }
  .product .links li a {
    padding-left: 0.48rem;
    line-height: 0.9rem;
  }
  .product .links li a .ico {
    margin-top: -0.18rem;
    width: 0.36rem;
  }
  .product .links li a .ico img {
    width: 0.36rem;
  }
  .product .list {
    padding: 0.3rem 0 0.4rem;
  }
  .product .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
  }
  .product .list li:nth-child(4n) {
    margin-right: 0.2rem;
  }
  .product .list li:nth-child(2n) {
    margin-right: 0;
  }
  .product .list li .imgDiv img {
    max-width: 2.8rem;
    max-height: 2.8rem;
  }
  .product .list li .name {
    margin-top: 0.2rem;
    line-height: 0.42rem;
    font-size: var(--fs14);
  }
  .moreBtn {
    width: 4.2rem;
  }
  .moreBtn a {
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .moreBtn a::before {
    border: 2px solid #333;
  }
}
.material {
  background: #f9f9f9;
  padding-bottom: 1.2rem;
}
.material .links::after {
  content: '';
  display: block;
  clear: both;
}
.material .links ul {
  font-size: 0;
}
.material .links li {
  display: inline-block;
  font-size: var(--fs16);
  font-family: 'Mont-L';
  padding-right: 0.5rem;
}
.material .links li:last-child {
  padding-right: 0;
}
.material .links li a {
  position: relative;
  display: block;
  line-height: 0.72rem;
  padding-left: 0.42rem;
  color: #999;
}
.material .links li a .ico {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.15rem;
  width: 0.3rem;
}
.material .links li a .ico img {
  position: absolute;
  left: 0;
  top: 0;
  width: 0.3rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.material .links li a .ico .img1 {
  opacity: 0;
  transform: scale3d(0, 0, 0);
  -webkit-transform: scale3d(0, 0, 0);
  -moz-transform: scale3d(0, 0, 0);
}
.material .links li a:hover {
  color: #062f67;
}
.material .links li a:hover .ico img {
  opacity: 0;
}
.material .links li a:hover .ico .img1 {
  opacity: 1;
  transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  -moz-transform: scale3d(1, 1, 1);
}
.material .links li .on {
  color: #062f67;
}
.material .links li .on .ico img {
  opacity: 0;
}
.material .links li .on .ico .img1 {
  opacity: 1;
  transform: scale3d(1, 1, 1);
  -webkit-transform: scale3d(1, 1, 1);
  -moz-transform: scale3d(1, 1, 1);
}
.material .list {
  padding: 0.3rem 0 0.2rem;
}
.material .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.material .list li {
  width: calc((100% - 1rem) / 5);
  margin-right: 0.25rem;
  margin-bottom: 0.5rem;
}
.material .list li:nth-child(5n) {
  margin-right: 0;
}
.material .list li .imgDiv {
  height: 2.84rem;
  border-radius: 0.2rem;
  overflow: hidden;
}
.material .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.material .list li .name {
  margin-top: 0.23rem;
  line-height: 0.3rem;
  font-size: var(--fs18);
  color: #333;
  text-align: center;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.material .list li .zi {
  font-family: 'Mont-L';
  font-size: var(--fs16);
  color: #999;
  line-height: 0.3rem;
  text-align: center;
}
.material .list li:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.material .list li:hover .name {
  color: #062f67;
}
@media (max-width: 1004px) {
  .material {
    padding-top: 0.2rem;
    padding-bottom: 0.9rem;
  }
  .material .links {
    height: 0.9rem;
    overflow: hidden;
    overflow-x: auto;
    white-space: nowrap;
  }
  .material .links li {
    font-size: var(--fs14);
    padding-right: 0.4rem;
  }
  .material .links li a {
    padding-left: 0.48rem;
    line-height: 0.9rem;
  }
  .material .links li a .ico {
    margin-top: -0.18rem;
    width: 0.36rem;
  }
  .material .links li a .ico img {
    width: 0.36rem;
  }
  .material .list {
    padding: 0.3rem 0 0.4rem;
  }
  .material .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
  }
  .material .list li:nth-child(5n) {
    margin-right: 0.2rem;
  }
  .material .list li:nth-child(2n) {
    margin-right: 0;
  }
  .material .list li .imgDiv {
    height: 2.6rem;
  }
  .material .list li .name {
    margin-top: 0.2rem;
    line-height: 0.42rem;
    font-size: var(--fs14);
  }
  .material .list li .zi {
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .moreBtn {
    width: 4.2rem;
  }
  .moreBtn a {
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .moreBtn a::before {
    border: 2px solid #333;
  }
}
.loginBox {
  position: relative;
  width: 100%;
  height: 100vh;
  background: center no-repeat;
  background-size: cover;
  display: flex;
  /* 添加flex布局 */
  justify-content: center;
  /* 水平居中 */
  align-items: center;
  /* 垂直居中 */
}
.loginBox .baozhe {
  background: #fff;
  border-radius: 0.16rem;
  width: 7.2rem;
  padding: 0.6rem 1rem;
  position: relative;
  z-index: 1;
}
.loginBox .baozhe .title {
  font-size: var(--fs36);
  line-height: 0.48rem;
  text-align: center;
  color: #000;
  font-weight: bold;
  margin-bottom: 5px;
}
.loginBox .baozhe .msg {
  font-size: var(--fs24);
  line-height: 0.36rem;
  text-align: center;
  padding-bottom: 0.36rem;
}
.loginBox .baozhe .form li {
  position: relative;
  margin-bottom: 0.16rem;
}
.loginBox .baozhe .form li em {
  position: absolute;
  left: 0.32rem;
  top: 0;
  line-height: 0.56rem;
  font-size: var(--fs16);
}
.loginBox .baozhe .form li .input1 {
  width: 100%;
  height: 0.56rem;
  border-radius: 6px;
  background: #f6f6f6;
  padding-left: 1.35rem;
  font-size: var(--fs16);
}
.loginBox .baozhe .form li .yzm {
  position: absolute;
  right: 0.1rem;
  top: 50%;
  margin-top: -0.2rem;
}
.loginBox .baozhe .form li .yzm img {
  height: 0.4rem;
}
.loginBox .baozhe .btnDiv a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  width: 100%;
  height: 0.5rem;
  border-radius: 4px;
  font-size: var(--fs16);
  color: #fff;
  overflow: hidden;
  z-index: 1;
}
.loginBox .baozhe .btnDiv a::before {
  content: '';
  z-index: -1;
  border-radius: inherit;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border: 1px solid #333;
  -webkit-transform: scale3d(1.2, 1.2, 1);
  transform: scale3d(1.2, 1.2, 1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  opacity: 0;
}
.loginBox .baozhe .btnDiv a::after {
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.loginBox .baozhe .btnDiv a:hover {
  color: #333;
}
.loginBox .baozhe .btnDiv a:hover::before {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.loginBox .baozhe .btnDiv a:hover::after {
  opacity: 0;
  -webkit-transform: scale3d(0.8, 0.8, 1);
  transform: scale3d(0.8, 0.8, 1);
}
.loginBox .baozhe .tips {
  padding-top: 0.4rem;
  font-size: var(--fs16);
  text-align: center;
  color: rgba(102, 102, 102, 0.6);
  font-family: 'Mont-L';
}
.loginBox .baozhe .tips a {
  color: #062f67;
  text-decoration: underline;
  font-family: 'Mont-R';
}
.loginBox .copyright {
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
  bottom: 0.2rem;
  font-size: var(--fs16);
  color: #fff;
  line-height: 0.32rem;
}
.loginBox .copyright a {
  color: #fff;
}
.loginBox .copyright a:hover {
  text-decoration: underline;
}
@media (max-width: 1004px) {
  .loginBox {
    padding: 1.4rem var(--offset) 2.4rem;
    height: auto;
  }
  .loginBox .baozhe {
    border-radius: 0.24rem;
    width: 100%;
    padding: 0.6rem 0.3rem;
  }
  .loginBox .baozhe .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
    margin-bottom: 0.15rem;
  }
  .loginBox .baozhe .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
    padding-bottom: 0.45rem;
  }
  .loginBox .baozhe .form li {
    margin-bottom: 0.2rem;
  }
  .loginBox .baozhe .form li em {
    left: 0.25rem;
    line-height: 0.86rem;
    font-size: var(--fs13);
  }
  .loginBox .baozhe .form li .input1 {
    height: 0.86rem;
    padding-left: 1.86rem;
    font-size: var(--fs14);
  }
  .loginBox .baozhe .form li .yzm {
    margin-top: -0.3rem;
  }
  .loginBox .baozhe .form li .yzm img {
    height: 0.6rem;
  }
  .loginBox .baozhe .btnDiv a {
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .loginBox .baozhe .tips {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .loginBox .copyright {
    bottom: 0.3rem;
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
}
.regBox {
  position: relative;
  width: 100%;
  height: 100vh;
  background: center no-repeat;
  background-size: cover;
  display: flex;
  /* 添加flex布局 */
  justify-content: center;
  /* 水平居中 */
  align-items: center;
  /* 垂直居中 */
}
.regBox .baozhe {
  background: #fff;
  border-radius: 0.16rem;
  width: 7.2rem;
  padding: 0.6rem 1rem;
  position: relative;
  z-index: 1;
}
.regBox .baozhe .title {
  font-size: var(--fs36);
  line-height: 0.48rem;
  text-align: center;
  color: #000;
  font-weight: bold;
  margin-bottom: 5px;
}
.regBox .baozhe .tips {
  padding-bottom: 0.25rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  text-align: center;
  color: rgba(102, 102, 102, 0.6);
  font-family: 'Mont-L';
}
.regBox .baozhe .tips a {
  color: #062f67;
  text-decoration: underline;
  font-family: 'Mont-R';
}
.regBox .baozhe .form li {
  position: relative;
  margin-bottom: 0.16rem;
}
.regBox .baozhe .form li em {
  position: absolute;
  left: 0.32rem;
  top: 0;
  line-height: 0.56rem;
  font-size: var(--fs16);
}
.regBox .baozhe .form li .input1 {
  width: 100%;
  height: 0.56rem;
  border-radius: 6px;
  background: #f6f6f6;
  padding-left: 2rem;
  font-size: var(--fs16);
}
.regBox .baozhe .btnDiv a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  width: 100%;
  height: 0.5rem;
  border-radius: 4px;
  font-size: var(--fs16);
  color: #fff;
  overflow: hidden;
  z-index: 1;
}
.regBox .baozhe .btnDiv a::before {
  content: '';
  z-index: -1;
  border-radius: inherit;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border: 1px solid #333;
  -webkit-transform: scale3d(1.2, 1.2, 1);
  transform: scale3d(1.2, 1.2, 1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  opacity: 0;
}
.regBox .baozhe .btnDiv a::after {
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.regBox .baozhe .btnDiv a:hover {
  color: #333;
}
.regBox .baozhe .btnDiv a:hover::before {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.regBox .baozhe .btnDiv a:hover::after {
  opacity: 0;
  -webkit-transform: scale3d(0.8, 0.8, 1);
  transform: scale3d(0.8, 0.8, 1);
}
.regBox .copyright {
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
  bottom: 0.2rem;
  font-size: var(--fs16);
  color: #fff;
  line-height: 0.32rem;
}
.regBox .copyright a {
  color: #fff;
}
.regBox .copyright a:hover {
  text-decoration: underline;
}
@media (max-width: 1004px) {
  .regBox {
    padding: 1.4rem var(--offset) 2.4rem;
    height: auto;
  }
  .regBox .baozhe {
    border-radius: 0.24rem;
    width: 100%;
    padding: 0.6rem 0.3rem;
  }
  .regBox .baozhe .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
    margin-bottom: 0.15rem;
  }
  .regBox .baozhe .tips {
    padding-bottom: 0.35rem;
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .regBox .baozhe .form li {
    margin-bottom: 0.2rem;
  }
  .regBox .baozhe .form li em {
    left: 0.25rem;
    line-height: 0.86rem;
    font-size: var(--fs13);
  }
  .regBox .baozhe .form li .input1 {
    height: 0.86rem;
    padding-left: 2.6rem;
    font-size: var(--fs14);
  }
  .regBox .baozhe .btnDiv a {
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .regBox .copyright {
    bottom: 0.3rem;
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
}
.album {
  background: #f9f9f9;
  padding: 0.6rem 0 1.2rem;
}
.album .title {
  font-size: var(--fs30);
  line-height: 0.32rem;
  color: #062f67;
  font-family: 'Mont-B';
}
.album .list {
  padding: 0.3rem 0 0.2rem;
}
.album .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.album .list li {
  width: calc((100% - 0.81rem) / 4);
  margin-right: 0.27rem;
  padding-bottom: 0.3rem;
}
.album .list li:nth-child(4n) {
  margin-right: 0;
}
.album .list li .mxfDiv {
  position: relative;
  height: 5.4rem;
  border-radius: 0.2rem;
  overflow: hidden;
}
.album .list li .zi {
  position: absolute;
  left: 0;
  bottom: 0.2rem;
  width: 100%;
  font-size: var(--fs30);
  color: #fff;
  line-height: 0.42rem;
  text-align: center;
  padding: 0 0.45rem;
}
.album .list li .zi em {
  display: block;
  position: relative;
}
.album .list li .zi em::before,
.album .list li .zi em::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(100% - 2.2rem);
  height: 1px;
  background-color: #fff;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.album .list li .zi em::before {
  left: 0;
}
.album .list li .zi em::after {
  right: 0;
}
.album .list li .imgDiv {
  height: 5.4rem;
  position: relative;
}
.album .list li .imgDiv::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.album .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.album .list li .name {
  margin-top: 0.23rem;
  line-height: 0.3rem;
  font-size: var(--fs18);
  color: #333;
  text-align: center;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.album .list li:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.album .list li:hover .name {
  color: #062f67;
}
.album .list li:hover .zi em::before {
  width: 0;
}
.album .list li:hover .zi em::after {
  width: 0;
}
@media (max-width: 1004px) {
  .album {
    padding-top: 0.7rem;
    padding-bottom: 0.9rem;
  }
  .album .title {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .album .list {
    padding: 0.3rem 0 0.4rem;
  }
  .album .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    padding-bottom: 0.4rem;
  }
  .album .list li:nth-child(4n) {
    margin-right: 0.2rem;
  }
  .album .list li:nth-child(2n) {
    margin-right: 0;
  }
  .album .list li .mxfDiv {
    height: 4.2rem;
  }
  .album .list li .zi {
    font-size: var(--fs18);
    line-height: 0.54rem;
    padding: 0 0.2rem;
  }
  .album .list li .zi em::before,
  .album .list li .zi em::after {
    width: calc(100% - 2.1rem);
  }
  .album .list li .imgDiv {
    height: 4.2rem;
  }
  .album .list li .name {
    margin-top: 0.2rem;
    line-height: 0.42rem;
    font-size: var(--fs14);
  }
  .moreBtn {
    width: 4.2rem;
  }
  .moreBtn a {
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .moreBtn a::before {
    border: 2px solid #333;
  }
}
.productP1 {
  padding: 0.2rem 0 1.2rem;
  background: center no-repeat;
  background-size: cover;
  overflow: hidden;
}
.productP1 .mxfDiv {
  padding-top: 0.36rem;
}
.productP1 .mxfDiv::after {
  content: '';
  display: block;
  clear: both;
}
.productP1 .leftDiv {
  width: 8.4rem;
  padding-left: 1.65rem;
  position: relative;
}
.productP1 .baozhe {
  position: absolute;
  height: 6.75rem;
  left: 0;
  top: 0;
  width: 1.4rem;
}
.productP1 .img-swiper {
  position: absolute;
  left: 0;
  top: 0;
  width: 1.4rem;
  height: 6.06rem;
  overflow: hidden;
}
.productP1 .img-swiper .swiper-slide {
  height: 1.38rem !important;
}
.productP1 .img-swiper .swiper-slide .limg {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  cursor: pointer;
  height: 1.38rem;
  border: #fff solid 2px;
  border-radius: 4px;
  background: #fff;
}
.productP1 .img-swiper .swiper-slide .limg img {
  max-width: 1.2rem;
  max-height: 1.2rem;
}
.productP1 .img-swiper .swiper-slide-active .limg {
  border: #2890cb solid 2px;
}
.productP1 .img-swiper.three {
  height: 4.5rem;
}
.productP1 .img-swiper.two {
  height: 2.94rem;
}
.productP1 .detail-box {
  width: 100%;
  position: relative;
}
.productP1 .detail-box .item {
  display: none;
  position: relative;
}
.productP1 .detail-box .item .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 6.75rem;
  background: #fff;
  border-radius: 0.16rem;
  overflow: hidden;
}
.productP1 .detail-box .item .imgDiv img {
  max-width: 5.6rem;
  max-height: 5.6rem;
}
.productP1 .detail-box .item.on {
  display: block;
  animation: fadeOfOpacity 0.5s linear;
}
.productP1 .swiper-btn {
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.4rem;
  border-radius: 4px;
  z-index: 2;
}
.productP1 .prev {
  display: none;
  top: 0;
  background: #fff url(../img/nimg22_top.png) center no-repeat;
  background-size: 0.22rem;
}
.productP1 .prev:hover {
  background: #062f67 url(../img/nimg22_topon.png) center no-repeat;
  background-size: 0.22rem;
}
.productP1 .next {
  bottom: 0;
  background: #fff url(../img/nimg22_bot.png) center no-repeat;
  background-size: 0.22rem;
}
.productP1 .next:hover {
  background: #062f67 url(../img/nimg22_boton.png) center no-repeat;
  background-size: 0.22rem;
}
.productP1 .rightDiv {
  width: 7.2rem;
}
.productP1 .name {
  color: #062f67;
  font-size: var(--fs48);
  line-height: 0.6rem;
  font-family: 'Mont-B';
}
.productP1 .msg {
  padding: 0.15rem 0 0.85rem;
  line-height: 0.3rem;
  font-size: var(--fs18);
  color: #333;
  font-family: 'Mont-L';
}
.productP1 .msgList {
  position: relative;
}
.productP1 .msgList li {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  position: relative;
  padding: 0.2rem 0;
  min-height: 0.9rem;
}
.productP1 .msgList li:first-child::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: rgba(6, 47, 103, 0.2);
}
.productP1 .msgList li::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(6, 47, 103, 0.2);
}
.productP1 .msgList li em {
  font-size: var(--fs24);
  color: #062f67;
  line-height: 0.32rem;
  font-family: 'Mont-M';
  width: 50%;
  padding-right: 0.3rem;
}
.productP1 .msgList li span {
  width: 50%;
  text-align: right;
  font-size: var(--fs16);
  color: #333;
  line-height: 0.24rem;
  font-family: 'Mont-L';
}
.productP1 .moreGroup {
  text-align: center;
  margin: 0.6rem auto 0;
}
.productP1 .moreGroup ul li {
  display: inline-block;
  width: 2rem;
  margin: 0 0.1rem;
}
.productP1 .moreGroup ul li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  width: 100%;
  height: 0.5rem;
  border-radius: 4px;
  font-size: var(--fs16);
  color: #333;
  overflow: hidden;
  z-index: 1;
}
.productP1 .moreGroup ul li a::before {
  content: '';
  z-index: -1;
  border-radius: inherit;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #333;
  box-sizing: border-box;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.productP1 .moreGroup ul li a::after {
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333;
  -webkit-transform: scale3d(1.2, 1.2, 1);
  transform: scale3d(1.2, 1.2, 1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  opacity: 0;
}
.productP1 .moreGroup ul li a:hover {
  color: #fff;
}
.productP1 .moreGroup ul li a:hover::before {
  opacity: 0;
  -webkit-transform: scale3d(0.8, 0.8, 1);
  transform: scale3d(0.8, 0.8, 1);
}
.productP1 .moreGroup ul li a:hover::after {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.productP1 .moreGroup ul li:first-child a.gray {
  pointer-events: none;
  color: gray;
}
.productP1 .moreGroup ul li:first-child a.gray::before {
  border: gray solid 2px;
}
.productP2 {
  padding: 1.1rem 0;
}
.productP2 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #333;
  font-family: 'Mont-B';
  margin-bottom: 0.5rem;
}
.productP2 .videobox {
  overflow: hidden;
  position: relative;
}
.productP2 .videobox .imgDiv {
  width: 14.4rem;
  margin: 0 auto;
  border-radius: 0.2rem;
  overflow: hidden;
  -webkit-transition: all 0.6s linear;
  transition: all 0.6s linear;
}
.productP2 .videobox .imgDiv img {
  width: 100%;
}
.productP2 .videobox .videoDiv {
  display: none;
}
.productP2 .videobox .playbox {
  cursor: pointer;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.81rem;
  height: 0.81rem;
  margin-left: -0.4rem;
  margin-top: -0.4rem;
  z-index: 1;
}
.productP2 .videobox .playbox img {
  width: 0.81rem;
}
.videoModal-box {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  align-items: center;
  z-index: 999;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  opacity: 0;
  visibility: hidden;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.videoModal-box.on {
  opacity: 1;
  visibility: visible;
}
.videoLayer {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.videoLayer .mxfDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 100%;
  height: 100vh;
}
.videoLayer .mxfDiv video {
  max-width: 100%;
  max-height: 100%;
}
.videoLayer .mxfDiv iframe {
  width: 10rem;
  height: 5.6rem;
}
.videoLayer .close {
  position: absolute;
  display: block;
  right: 20px;
  top: 20px;
  width: 48px;
  z-index: 2;
  height: 48px;
  border-radius: 50%;
  background: #062f67 url(../img/close.png) center no-repeat;
  background-size: 20px;
  opacity: 1;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.videoLayer .close:hover {
  transform: rotate(-90deg);
  opacity: 1;
}
.productP3 {
  padding: 1.2rem 0 0.6rem;
  background: #edf0f4;
}
.productP3 .toptop {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-bottom: 0.5rem;
}
.productP3 .toptop .title {
  font-size: var(--fs48);
  color: #333;
  font-family: 'Mont-B';
}
.productP3 .toptop .more a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  width: 1.46rem;
  height: 0.5rem;
  font-size: var(--fs16);
  color: #333;
  overflow: hidden;
  z-index: 1;
  text-transform: uppercase;
}
.productP3 .toptop .more a em {
  margin-left: 0.2rem;
  width: 0.15rem;
  height: 0.12rem;
  background: url(../img/ico1.png) no-repeat;
  background-size: 0.15rem;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.productP3 .toptop .more a::before {
  content: '';
  z-index: -1;
  border-radius: inherit;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid #333;
  box-sizing: border-box;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.productP3 .toptop .more a::after {
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333;
  -webkit-transform: scale3d(1.2, 1.2, 1);
  transform: scale3d(1.2, 1.2, 1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  opacity: 0;
}
.productP3 .toptop .more a:hover {
  color: #fff;
}
.productP3 .toptop .more a:hover em {
  background: url(../img/ico1on.png) no-repeat;
  background-size: 0.15rem;
}
.productP3 .toptop .more a:hover::before {
  opacity: 0;
  -webkit-transform: scale3d(0.8, 0.8, 1);
  transform: scale3d(0.8, 0.8, 1);
}
.productP3 .toptop .more a:hover::after {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
.productP3 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.productP3 .list li {
  width: calc((100% - 0.81rem) / 4);
  margin-right: 0.27rem;
  padding-bottom: 0.5rem;
}
.productP3 .list li:nth-child(4n) {
  margin-right: 0;
}
.productP3 .list li .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 3.6rem;
  background: #fff;
  border-radius: 0.2rem;
  overflow: hidden;
}
.productP3 .list li .imgDiv img {
  max-width: 3.2rem;
  max-height: 3.2rem;
  transition: All 1s ease;
  -webkit-transition: All 1s ease;
  -moz-transition: All 1s ease;
  -o-transition: All 1s ease;
}
.productP3 .list li .name {
  margin-top: 0.23rem;
  line-height: 0.3rem;
  font-size: var(--fs18);
  padding: 0 0.3rem;
  color: #333;
  text-align: center;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.productP3 .list li:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.productP3 .list li:hover .name {
  color: #062f67;
}
@media (max-width: 1600px) {
  .productP1 .rightDiv {
    width: 7rem;
  }
}
@media (max-width: 1004px) {
  .productP1 {
    padding: 0.2rem 0 0.9rem;
  }
  .productP1 .mxfDiv {
    padding-top: 0.6rem;
  }
  .productP1 .leftDiv {
    width: auto;
    float: none;
    padding-left: 0;
  }
  .productP1 .baozhe {
    position: relative;
    height: auto;
    width: 100%;
  }
  .productP1 .img-swiper {
    position: relative;
    margin-top: 0.3rem;
    width: 100%;
    height: 1.2rem;
  }
  .productP1 .img-swiper .swiper-slide {
    height: 1.2rem !important;
  }
  .productP1 .img-swiper .swiper-slide .limg {
    height: 1.2rem;
    border: #fff solid 1px;
  }
  .productP1 .img-swiper .swiper-slide .limg img {
    max-height: 0.9rem;
  }
  .productP1 .img-swiper .swiper-slide-active .limg {
    border: #2890cb solid 1px;
  }
  .productP1 .img-swiper.three {
    height: 1.2rem;
  }
  .productP1 .img-swiper.two {
    width: 68.66%;
    height: 1.2rem;
  }
  .productP1 .detail-box .item .imgDiv {
    height: 5.2rem;
    border-radius: 0.24rem;
  }
  .productP1 .detail-box .item .imgDiv img {
    max-width: 5.2rem;
    max-height: 5.2rem;
  }
  .productP1 .swiper-btn {
    width: 0.4rem;
    height: 100%;
    opacity: 0.6;
  }
  .productP1 .prev {
    display: block;
    background: #eee url(../img/nimg8_left.png) center no-repeat;
    background-size: 8px;
  }
  .productP1 .prev:hover {
    opacity: 1;
    background: #062f67 url(../img/nimg8_lefton.png) center no-repeat;
    background-size: 8px;
  }
  .productP1 .next {
    left: auto;
    top: 0;
    right: 0;
    bottom: auto;
    background: #eee url(../img/nimg8_right.png) center no-repeat;
    background-size: 8px;
  }
  .productP1 .next:hover {
    opacity: 1;
    background: #062f67 url(../img/nimg8_righton.png) center no-repeat;
    background-size: 8px;
  }
  .productP1 .rightDiv {
    float: none;
    width: auto;
    padding-top: 0.8rem;
  }
  .productP1 .name {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .productP1 .msg {
    padding: 0.15rem 0 0.6rem;
    line-height: 0.52rem;
    font-size: var(--fs15);
  }
  .productP1 .msgList li {
    display: block;
    min-height: 0.6rem;
  }
  .productP1 .msgList li em {
    display: block;
    font-size: var(--fs14);
    line-height: 0.48rem;
    width: auto;
    padding-right: 0;
    padding-bottom: 0.1rem;
  }
  .productP1 .msgList li span {
    width: auto;
    text-align: left;
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .productP1 .moreGroup {
    margin: 0.75rem auto 0;
  }
  .productP1 .moreGroup ul li {
    width: 2.8rem;
  }
  .productP1 .moreGroup ul li a {
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .productP1 .moreGroup ul li a::before {
    border: 2px solid #333;
  }
  .productP2 {
    padding-top: 0.6rem;
    padding-bottom: 0.8rem;
  }
  .productP2 .title {
    font-size: var(--fs24);
  }
  .productP2 .videobox .imgDiv {
    width: 100%;
    border-radius: 0;
  }
  .productP2 .videobox .playbox {
    width: 1rem;
    height: 1rem;
    margin-left: -0.5rem;
    margin-top: -0.5rem;
  }
  .productP2 .videobox .playbox img {
    width: 1rem;
  }
  .videoLayer .close {
    right: 0.3rem;
    top: 1.3rem;
    width: 0.8rem;
    height: 0.8rem;
    background-size: 0.36rem;
  }
  .videoLayer .mxfDiv iframe {
    width: 100%;
    height: 4rem;
  }
  .productP3 {
    padding: 0.8rem 0 0.4rem;
  }
  .productP3 .toptop {
    display: block;
    margin-bottom: 0.65rem;
  }
  .productP3 .toptop .title {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .productP3 .toptop .more {
    margin-top: 0.4rem;
  }
  .productP3 .toptop .more a {
    width: 2.16rem;
    height: 0.8rem;
    font-size: var(--fs14);
  }
  .productP3 .toptop .more a::before {
    border: #333 solid 2px;
  }
  .productP3 .toptop .more a em {
    width: 0.24rem;
    height: 0.2rem;
    background-size: 0.24rem;
  }
  .productP3 .toptop .more a:hover em {
    background-size: 0.24rem;
  }
  .productP3 .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
  }
  .productP3 .list li:nth-child(4n) {
    margin-right: 0.2rem;
  }
  .productP3 .list li:nth-child(2n) {
    margin-right: 0;
  }
  .productP3 .list li .imgDiv img {
    max-width: 2.8rem;
    max-height: 2.8rem;
  }
  .productP3 .list li .name {
    margin-top: 0.2rem;
    line-height: 0.42rem;
    font-size: var(--fs14);
  }
}
.menu-flex {
  position: fixed;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  pointer-events: none;
  transition: 0.88s;
}
.menu-bg {
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.88s 0.3s;
}
.menu-right {
  position: absolute;
  right: -6.4rem;
  top: 0;
  width: 6.4rem;
  height: 100%;
  background: #fff;
  transition: 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.menu-right .toptop {
  width: 100%;
  left: 0;
  top: 0;
  height: 1.2rem;
  padding: 0.6rem 0.6rem 0;
  position: absolute;
}
.menu-right .toptop::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #f2f2f2;
}
.menu-right .toptop .title {
  font-size: var(--fs30);
  line-height: 0.32rem;
  color: #333;
  margin: 0;
}
.menu-right .toptop .title em {
  padding-left: 0.2rem;
  color: #999;
  font-size: var(--fs18);
  font-family: 'Mont-L';
}
.menu-right .toptop .close {
  display: none;
  position: absolute;
  right: 0.3rem;
  top: 50%;
  margin-top: -0.21rem;
  opacity: 1;
}
.menu-right .toptop .close a {
  display: block;
  width: 0.42rem;
  height: 0.42rem;
  background: url(../img/close2.png) no-repeat;
  background-size: 0.42rem;
}
.menu-right .toptop .return {
  position: absolute;
  right: 0.6rem;
  top: 0.56rem;
}
.menu-right .toptop .return a {
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  border: #dcab5e solid 1px;
  border-radius: 50%;
  background: url(../img/ico7.png) center no-repeat;
}
.menu-right .toptop .return a:hover {
  border: #062f67 solid 1px;
  background: #062f67 url(../img/ico7on.png) center no-repeat;
}
.menu-right .botbot {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2rem;
  padding: 0.9rem 0.6rem 0;
}
.menu-right .botbot::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: #f2f2f2;
}
.menu-right .botbot .orderBtn {
  position: absolute;
  left: 0.6rem;
  top: 0.3rem;
}
.menu-right .botbot .orderBtn em {
  display: block;
  cursor: pointer;
  border-radius: 4px;
  line-height: 0.28rem;
  height: 0.3rem;
  border: #eff0f5 solid 1px;
  background: #f7f8fc url(../img/nimg16_1.png) 0.2rem center no-repeat;
  background-size: 0.16rem;
  width: 1.5rem;
  padding-left: 0.48rem;
  color: #666;
  font-size: var(--fs14);
}
.menu-right .botbot .orderBtn em:hover {
  border: #062f67 solid 1px;
  color: #062f67;
  background: #f7f8fc url(../img/nimg16_1on.png) 0.2rem center no-repeat;
  background-size: 0.16rem;
}
.menu-right .botbot .orderBtn .layer {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 0;
  bottom: 0.32rem;
  width: 4.6rem;
  padding: 0.18rem;
  border-radius: 4px;
  border: #eff0f5 solid 1px;
  background: #fff;
  z-index: 3;
  box-shadow: 0 0 0.16rem 0 rgba(0, 0, 0, 0.09);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.menu-right .botbot .orderBtn .layer textarea {
  width: 100%;
  padding: 0.15rem;
  font-size: var(--fs14);
  line-height: 0.24rem;
  background: #f7f8fc;
  border-radius: 6px;
  height: 1.5rem;
  font-family: 'Mont-L';
}
.menu-right .botbot .orderBtn .layer textarea:-webkit-autofill,
.menu-right .botbot .orderBtn .layer textarea:-webkit-autofill:hover,
.menu-right .botbot .orderBtn .layer textarea:-webkit-autofill:focus,
.menu-right .botbot .orderBtn .layer textarea:-webkit-autofill:active {
  /* 设置背景色为白色（或你的设计颜色） */
  -webkit-box-shadow: 0 0 0 1000px #f7f8fc inset !important;
  /* 添加过渡效果 */
  transition: background-color 5000s ease-in-out 0s;
}
.menu-right .botbot .orderBtn .layer .btnGroup {
  margin-top: 0.2rem;
  overflow: hidden;
}
.menu-right .botbot .orderBtn .layer .btnGroup li {
  float: left;
  margin-left: 0.2rem;
  font-size: var(--fs16);
  font-family: 'Mont-R';
}
.menu-right .botbot .orderBtn .layer .btnGroup li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 0.48rem;
  width: 1.2rem;
  height: 0.4rem;
  background: #062f67;
  color: #fff;
}
.menu-right .botbot .orderBtn .layer .btnGroup li:first-child a {
  background: none;
  border: #062f67 solid 1px;
  color: #062f67;
}
.menu-right .botbot .orderBtn .layer .btnGroup li:first-child a:hover {
  border: #062f67 solid 1px;
  background: #062f67;
  color: #fff;
}
.menu-right .botbot .orderBtn.cur .layer {
  opacity: 1;
  visibility: visible;
}
.menu-right .botbot .moreBtn {
  width: 100%;
}
.menu-right .midmid {
  padding: 1.5rem 0.6rem 0;
}
.menu-right .guideList {
  height: calc(100vh - 3.7rem);
  overflow: auto;
}
.menu-right .guideList::-webkit-scrollbar {
  width: 4px;
}
.menu-right .guideList::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
}
.menu-right .guideList::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
}
.menu-right .guideList li .zi {
  height: 0.6rem;
  background: #ebebeb;
  border-radius: 0.48rem;
  position: relative;
  padding-left: 0.7rem;
  font-size: var(--fs18);
  line-height: 0.6rem;
  color: #222;
  font-family: 'Mont-R';
}
.menu-right .guideList li .num {
  position: absolute;
  left: 0.2rem;
  top: 50%;
  margin-top: -0.15rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: #062f67;
  color: #fff;
  text-align: center;
  line-height: 0.3rem;
}
.menu-right .guideList li .msg {
  position: relative;
  padding: 0.25rem 0 0.5rem 0.7rem;
  font-size: var(--fs16);
  line-height: 0.24rem;
}
.menu-right .guideList li .msg::before {
  content: '';
  position: absolute;
  left: 0.35rem;
  top: 0;
  width: 1px;
  height: 100%;
  background: url(../img/line1.png) repeat-y;
}
.menu-right .guideList li:last-child .msg::before {
  display: none;
}
.menu-right .cartList {
  height: calc(100vh - 3.7rem);
  overflow: auto;
}
.menu-right .cartList::-webkit-scrollbar {
  width: 4px;
}
.menu-right .cartList::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
}
.menu-right .cartList::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
}
.menu-right .cartList li {
  margin-bottom: 0.2rem;
  padding-left: 1.5rem;
  padding-top: 0.18rem;
  height: 1.2rem;
  position: relative;
}
.menu-right .cartList li .imgDiv {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  border: #f2f2f2 solid 1px;
}
.menu-right .cartList li .imgDiv img {
  max-width: 100%;
  max-height: 100%;
}
.menu-right .cartList li .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 0.24rem;
  min-height: 0.48rem;
  padding-right: 0.6rem;
  font-size: var(--fs18);
  color: #333;
  font-family: 'Mont-R';
}
.menu-right .cartList li .del {
  position: absolute;
  right: 0;
  top: 0.5rem;
}
.menu-right .cartList li .del img {
  width: 0.19rem;
}
.menu-right .cartList li .msg {
  margin-top: 0.1rem;
  font-size: var(--fs14);
  color: #333;
  line-height: 0.24rem;
  word-break: break-all;
  font-family: 'Mont-L';
}
.menu-right .lybDiv {
  display: none;
}
.menu-right .formList {
  height: calc(100vh - 3.7rem);
  overflow: auto;
}
.menu-right .formList::-webkit-scrollbar {
  width: 4px;
}
.menu-right .formList::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
}
.menu-right .formList::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
}
.menu-right .formList li {
  margin-bottom: 0.2rem;
}
.menu-right .formList li .lbox {
  position: relative;
  background: #f2f2f2;
  padding-left: 1.4rem;
  border-radius: 6px;
  overflow: hidden;
}
.menu-right .formList li .zi {
  position: absolute;
  left: 0.4rem;
  top: 0;
  font-size: var(--fs16);
  line-height: 0.6rem;
  color: #333;
  font-family: 'Mont-R';
}
.menu-right .formList li .zi em {
  color: #ff0909;
}
.menu-right .formList li .input1 {
  width: 100%;
  height: 0.6rem;
  line-height: 0.6rem;
  font-size: var(--fs16);
  background: none;
  color: #222;
  font-family: 'Mont-L';
}
.menu-right .formList li .input1::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.menu-right .formList li .input1:-moz-placeholder {
  color: #999;
  opacity: 1;
}
.menu-right .formList li .input1::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.menu-right .formList li .input1:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.menu-right .formList li .input1:-webkit-autofill,
.menu-right .formList li .input1:-webkit-autofill:hover,
.menu-right .formList li .input1:-webkit-autofill:focus,
.menu-right .formList li .input1:-webkit-autofill:active {
  /* 设置背景色为白色（或你的设计颜色） */
  -webkit-box-shadow: 0 0 0 1000px #f2f2f2 inset !important;
  /* 添加过渡效果 */
  transition: background-color 5000s ease-in-out 0s;
}
.menu-right .formList li .yzm {
  position: absolute;
  right: 0.4rem;
  top: 50%;
  margin-top: -0.18rem;
  z-index: 1;
}
.menu-right .formList li .yzm img {
  height: 0.36rem;
}
.menu-right .formList li textarea {
  background: #f2f2f2;
  border-radius: 6px;
  width: 100%;
  font-size: var(--fs16);
  line-height: 0.28rem;
  color: #222;
  font-family: 'Mont-L';
  padding: 0.2rem 0.4rem;
  height: 2.8rem;
}
.menu-right .formList li textarea::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.menu-right .formList li textarea:-moz-placeholder {
  color: #999;
  opacity: 1;
}
.menu-right .formList li textarea::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.menu-right .formList li textarea:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.menu-right .formList li:last-child .lbox {
  padding-left: 2rem;
}
.menu-right .successDiv {
  display: none;
}
.menu-right .successDiv .mxfDiv {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  text-align: center;
  height: 100vh;
}
.menu-right .successDiv .ico img {
  width: 1.2rem;
}
.menu-right .successDiv .msg {
  margin: 0.3rem 0 0.75rem;
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #000;
  font-family: 'Mont-R';
}
.menu-right .successDiv .lbtn {
  width: 3.2rem;
  margin: 0 auto;
}
.menu-right .successDiv .lbtn a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 100%;
  height: 0.56rem;
  border-radius: 0.48rem;
  color: #dba95b;
  font-size: var(--fs16);
  font-family: 'Mont-R';
  border: #dba95b solid 1px;
}
.menu-right .successDiv .lbtn a:hover {
  border: #062f67 solid 1px;
  background: #062f67;
  color: #fff;
}
.menu-flex.show {
  visibility: visible;
  pointer-events: visible;
}
.menu-flex.show .menu-bg {
  opacity: 1;
  visibility: visible;
  transition: 0.88s 0s;
}
.menu-flex.show .menu-right {
  right: 0;
}
@media (max-width: 1004px) {
  .menu-right {
    right: -100%;
    width: 100%;
  }
  .menu-right .toptop {
    padding: 0.4rem 0.3rem 0;
  }
  .menu-right .toptop .title {
    font-size: var(--fs18);
    line-height: 0.48rem;
  }
  .menu-right .toptop .title em {
    font-size: var(--fs13);
  }
  .menu-right .toptop .close {
    display: block;
  }
  .menu-right .toptop .return {
    right: 0.3rem;
    top: 50%;
    margin-top: -0.3rem;
  }
  .menu-right .toptop .return a {
    width: 0.6rem;
    height: 0.6rem;
  }
  .menu-right .botbot {
    padding: 0.9rem 0.3rem 0;
  }
  .menu-right .botbot .orderBtn {
    left: 0.3rem;
    top: 0.2rem;
  }
  .menu-right .botbot .orderBtn em {
    line-height: 0.48rem;
    height: 0.5rem;
    background-size: 12px;
    width: 2.4rem;
    padding-left: 0.6rem;
    font-size: var(--fs13);
  }
  .menu-right .botbot .orderBtn em:hover {
    background-size: 12px;
  }
  .menu-right .botbot .orderBtn .layer {
    bottom: 0.52rem;
    width: 6.2rem;
    padding: 0.2rem;
  }
  .menu-right .botbot .orderBtn .layer textarea {
    padding: 0.2rem;
    line-height: 0.48rem;
    height: 2.5rem;
  }
  .menu-right .botbot .orderBtn .layer .btnGroup li {
    font-size: var(--fs14);
  }
  .menu-right .botbot .orderBtn .layer .btnGroup li a {
    width: 2rem;
    height: 0.7rem;
  }
  .menu-right .botbot .btnDiv a {
    border: #dba95b solid 1px;
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .menu-right .botbot .btnDiv a:hover {
    border: #062f67 solid 1px;
  }
  .menu-right .midmid {
    padding: 1.6rem 0.3rem 0;
  }
  .menu-right .guideList li .zi {
    height: 0.86rem;
    padding-left: 0.9rem;
    font-size: var(--fs14);
    line-height: 0.86rem;
  }
  .menu-right .guideList li .num {
    margin-top: -0.24rem;
    width: 0.48rem;
    height: 0.48rem;
    line-height: 0.48rem;
  }
  .menu-right .guideList li .msg {
    padding: 0.2rem 0 0.4rem 0.9rem;
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .menu-right .guideList li .msg::before {
    left: 0.45rem;
  }
  .menu-right .guideList li:last-child .msg::before {
    display: none;
  }
  .menu-right .cartList li {
    padding-top: 0;
    padding-left: 2.1rem;
    height: 1.9rem;
  }
  .menu-right .cartList li .imgDiv {
    width: 1.9rem;
    height: 1.9rem;
  }
  .menu-right .cartList li .name {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    min-height: 1.26rem;
    line-height: 0.42rem;
    font-size: var(--fs15);
  }
  .menu-right .cartList li .del {
    top: 0.3rem;
  }
  .menu-right .cartList li .del img {
    width: 0.3rem;
  }
  .menu-right .cartList li .msg {
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: var(--fs12);
    line-height: 0.34rem;
    max-height: 0.34rem;
    overflow: hidden;
  }
  .menu-right .formList li {
    margin-bottom: 0.3rem;
  }
  .menu-right .formList li .lbox {
    padding-left: 2rem;
  }
  .menu-right .formList li .zi {
    left: 0.3rem;
    font-size: var(--fs13);
    line-height: 0.9rem;
  }
  .menu-right .formList li .input1 {
    height: 0.9rem;
    line-height: 0.9rem;
    font-size: var(--fs14);
  }
  .menu-right .formList li .yzm {
    right: 0.2rem;
    margin-top: -0.24rem;
  }
  .menu-right .formList li .yzm img {
    height: 0.48rem;
  }
  .menu-right .formList li textarea {
    font-size: var(--fs14);
    line-height: 0.48rem;
    padding: 0.3rem;
    height: 3rem;
  }
  .menu-right .formList li:last-child .lbox {
    padding-left: 3rem;
  }
  .menu-right .successDiv .ico img {
    width: 1.5rem;
  }
  .menu-right .successDiv .msg {
    margin: 0.3rem 0 0.6rem;
    font-size: var(--fs16);
    line-height: 0.56rem;
  }
  .menu-right .successDiv .lbtn {
    width: 4.2rem;
  }
  .menu-right .successDiv .lbtn a {
    width: 100%;
    height: 0.86rem;
    font-size: var(--fs14);
  }
}
.pageCon {
  background: #f9f9f9;
  padding: 1.2rem 0;
}
.pageCon .title {
  text-align: center;
  font-size: var(--fs48);
  color: #333;
  font-weight: bold;
  line-height: 0.48rem;
  margin-bottom: 0.45rem;
}
.pageCon .content {
  font-size: var(--fs18);
  line-height: 0.36rem;
}
@media (max-width: 1004px) {
  .pageCon {
    padding: 1rem 0;
  }
  .pageCon .title {
    font-size: var(--fs22);
    line-height: 0.56rem;
  }
  .pageCon .content {
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
}
