@charset "UTF-8";
::selection {
  color: #fff;
  background: #ff0000;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0 auto;
  width: 100%;
  max-width: 1920px;
  overflow-x: hidden;
  font-family: "Microsoft YaHei", 微软雅黑;
  font-size: 16px;
  font-size: 1.6rem;
  color: #333;
  line-height: 1.2;
  background-color: #fff;
}

@media screen and (max-device-width: 320px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
}
@media screen and (max-device-width: 480px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  body {
    -webkit-text-size-adjust: 100%;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
}
a {
  color: #333;
  text-decoration: none;
  outline: none;
  tap-highlight-color: transparent;
  focus-ring-color: transparent;
  -webkit-tap-highlight-color: transparent;
  -webkit-focus-ring-color: transparent;
  -moz-tap-highlight-color: transparent;
  -moz-focus-ring-color: transparent;
  transition: all 550ms;
}
a:hover {
  color: #ff0000;
}

ol, ul {
  list-style: none;
}

img {
  max-width: 100%;
  border: 0px solid #ccc;
  height: auto;
}

table, embed, video {
  max-width: 100%;
}

input, textarea {
  border: none;
  background: none;
  font-family: inherit;
}
input:focus, textarea:focus {
  outline: none;
}

input[type=submit] {
  cursor: pointer;
}
input[type=checkbox] {
  cursor: pointer;
}
input[type=radio] {
  cursor: pointer;
}

input[type=submit], input[type=reset], input[type=button], button {
  -webkit-appearance: none; /*去掉苹果的默认UI来渲染按钮*/
}

textarea {
  resize: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

em, i {
  font-style: normal;
}

/* .c-xx start */
.c-fl {
  float: left;
}

.c-fr {
  float: right;
}

.c-cb {
  clear: both;
}

.c-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.c-mg {
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
}

.c-oh {
  overflow: hidden;
}

.c-wd {
  width: 770px;
}

.c-tsn {
  transition: all 550ms;
}

.c-bbx {
  box-sizing: border-box;
}

.c-pr {
  position: relative;
}

.c-mt-5 {
  margin-top: 5px;
}

.c-mt-10 {
  margin-top: 10px;
}

.c-mt-15 {
  margin-top: 15px;
}

.c-mt-20 {
  margin-top: 20px;
}

.c-mt-25 {
  margin-top: 25px;
}

.c-mt-30 {
  margin-top: 30px;
}

.c-mt-35 {
  margin-top: 35px;
}

.c-mt-40 {
  margin-top: 40px;
}

.c-mt-45 {
  margin-top: 45px;
}

.c-mt-50 {
  margin-top: 50px;
}

.c-nomt {
  margin-top: 0 !important;
}

.c-nomr {
  margin-right: 0 !important;
}

.c-nomb {
  margin-bottom: 0 !important;
}

.c-noml {
  margin-left: 0 !important;
}

.c-nomg {
  margin: 0 !important;
}

.c-nopt {
  padding-top: 0 !important;
}

.c-nopr {
  padding-right: 0 !important;
}

.c-nopb {
  padding-bottom: 0 !important;
}

.c-nopl {
  padding-left: 0 !important;
}

.c-nopd {
  padding: 0 !important;
}

.c-nofont {
  line-height: 0;
  font-size: 0;
}

.c-nobg {
  background: none !important;
}

/* .c-xx end */
/* .f-xx start */
.f-czjz {
  position: relative;
  top: 50%;
  transform: translate(0px, -50%);
}

.f-box {
  width: calc(100% - 120px);
  max-width: 770px;
  margin: auto;
}

@media screen and (max-width: 991px) {
  .f-box {
    max-width: 96%;
    width: 100%;
  }
}
/* .f-xx end */
/* @keyframes start */
@keyframes boxshadown {
  0% {
    box-shadow: 0 0 0 1px rgba(51, 51, 51, 0.2);
  }
  100% {
    box-shadow: 0 0 0 15px rgba(51, 51, 51, 0);
  }
}
/* @keyframes end */
/* .an-xx start */
.an-hoverimg-xy {
  position: relative;
  overflow: hidden;
}
.an-hoverimg-xy:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 2;
  transform: scaleX(0);
  transition: all 550ms;
  visibility: hidden;
}
.an-hoverimg-xy:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 1;
  transform: scaleY(0);
  transition: all 550ms;
  visibility: hidden;
}
.an-hoverimg-xy img {
  transition: all 550ms;
}
.an-hoverimg-xy:hover img {
  transform: scale(1.1);
}
.an-hoverimg-xy:hover:before {
  visibility: visible;
  transform: scaleX(1);
}
.an-hoverimg-xy:hover:after {
  visibility: visible;
  transform: scaleX(1);
}

.an-hoverimg-beforex {
  position: relative;
  overflow: hidden;
}
.an-hoverimg-beforex:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 2;
  transform: scaleX(0);
  transition: all 550ms;
  visibility: hidden;
}
.an-hoverimg-beforex img {
  transition: all 550ms;
}
.an-hoverimg-beforex:hover img {
  transform: scale(1.1);
}
.an-hoverimg-beforex:hover:before {
  visibility: visible;
  transform: scaleX(1);
}

.an-hoverimg-beforey {
  position: relative;
  overflow: hidden;
}
.an-hoverimg-beforey:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 2;
  transform: scaleY(0);
  transition: all 550ms;
  visibility: hidden;
}
.an-hoverimg-beforey img {
  transition: all 550ms;
}
.an-hoverimg-beforey:hover img {
  transform: scale(1.1);
}
.an-hoverimg-beforey:hover:before {
  visibility: visible;
  transform: scaleY(1);
}

.an-hoverbtn-beforey {
  position: relative;
}
.an-hoverbtn-beforey > * {
  position: relative;
}
.an-hoverbtn-beforey:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scaleY(0);
  background-color: #ff0000;
  transition: all 550ms;
}
.an-hoverbtn-beforey:hover {
  color: #fff;
}
.an-hoverbtn-beforey:hover:before {
  transform: scaleY(1);
}

.an-hoverbtn-beforex {
  position: relative;
}
.an-hoverbtn-beforex > * {
  position: relative;
}
.an-hoverbtn-beforex:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  background-color: #ff0000;
  transition: all 550ms;
}
.an-hoverbtn-beforex:hover {
  color: #fff;
}
.an-hoverbtn-beforex:hover:before {
  transform: scaleX(1);
}

.an-hoverbtn-beforer {
  position: relative;
  overflow: hidden;
}
.an-hoverbtn-beforer > * {
  position: relative;
}
.an-hoverbtn-beforer:before {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ff0000;
  transition: all 550ms;
}
.an-hoverbtn-beforer:hover {
  color: #fff;
}
.an-hoverbtn-beforer:hover:before {
  right: 0;
}

.an-boxsd:hover {
  animation: boxshadown 1s infinite cubic-bezier(0.66, 0, 0, 1);
}

/* .an-xx end */
/* .m-xx start */
.table table {
  width: 100%;
  border-collapse: collapse;
  line-height: 22px;
  border: 1px solid #ccc;
}

.table table tr td {
  padding: 10px;
  height: 30px;
  border: 1px solid #ccc;
}

@media screen and (max-width: 991px) {
  .table {
    width: 100%;
    overflow-x: auto;
  }
}
@media screen and (max-width: 991px) {
  [class*=-item] .item-title {
    font-size: 14px;
    font-size: 1.4rem;
  }
  [class*=-item] .item-desc {
    font-size: 13px;
    font-size: 1.3rem;
  }
  [class*=-item] .item-link {
    font-size: 13px;
    font-size: 1.3rem;
  }
  [class*=-item] .item-modal {
    display: none;
  }
}
/* .m-xx end */
/* .j-xx start */
.j-offset-top {
  transition: all 750ms;
  transform: translateY(100px);
  opacity: 0;
}
.j-offset-top.run {
  transform: translateY(0);
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .j-offset-top {
    transform: none !important;
  }
}

.j-offset-left {
  transition: all 750ms;
  transform: translateX(100px);
  opacity: 0;
}
.j-offset-left.run {
  transform: translateX(0);
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .j-offset-left {
    transform: none !important;
  }
}

.j-offset-right {
  transition: all 750ms;
  transform: translateX(-100px);
  opacity: 0;
}
.j-offset-right.run {
  transform: translateX(0);
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .j-offset-right {
    transform: none !important;
  }
}

.j-fadein {
  transition: all 750ms;
  opacity: 0;
}
.j-fadein.run {
  transform: translateX(0);
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .j-fadein {
    transform: none !important;
  }
}

.j-lazy {
  min-width: 100%;
}

/* .j-xx end */
[class*=-item] .item-pic {
  position: relative;
  display: block;
  line-height: 0;
  font-size: 0;
  text-align: center;
  overflow: hidden;
}
[class*=-item] .item-pic img {
  transition: all 550ms;
}
[class*=-item] .item-pic:hover img {
  transform: scale(1.1);
}
[class*=-item] .item-title {
  overflow: hidden;
}
[class*=-item] .item-title a:hover {
  color: #ff0000;
}
[class*=-item] .item-desc {
  overflow: hidden;
}
[class*=-item] .item-desc a {
  display: block;
}
[class*=-item] .item-desc a:hover {
  color: #ff0000;
}

.at-resp-share-element .at4-share-count-container {
  text-decoration: none;
  float: right;
  padding-right: 15px;
  line-height: 25px !important;
}

.at-resp-share-element .at-icon {
  width: 24px !important;
  height: 24px !important;
}

.at-style-responsive .at-share-btn {
  padding: 0 !important;
  border-radius: 2px !important;
}

.at-resp-share-element .at-share-btn .at-icon-wrapper {
  width: 24px !important;
  height: 24px !important;
}

.at-resp-share-element .at-share-btn {
  margin-bottom: 0 !important;
  margin-right: 3px !important;
}

.at-resp-share-element .at-icon {
  width: 24px !important;
  height: 24px !important;
}

.at-style-responsive .at-share-btn {
  padding: 0 !important;
  border-radius: 2px !important;
}

.at-resp-share-element .at-share-btn .at-icon-wrapper {
  width: 24px !important;
  height: 24px !important;
}

.at-resp-share-element .at-share-btn {
  margin-bottom: 0 !important;
  margin-right: 3px !important;
}

#preloader {
  background-color: #333;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 1;
  margin-top: 0px;
  top: 0px;
  z-index: 99;
}

#loading-center {
  width: 100%;
  height: 100%;
  position: relative;
}

#loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 150px;
  width: 150px;
  margin-top: -75px;
  margin-left: -75px;
  text-align: center;
}

.object {
  width: 20px;
  height: 20px;
  background-color: #FFF;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: middle;
  margin-right: 20px;
  margin-top: 65px;
  border-radius: 50% 50% 50% 50%;
}

#object_one {
  animation: object_one 1.5s infinite;
}

#object_two {
  animation: object_two 1.5s infinite;
  animation-delay: 0.25s;
}

#object_three {
  margin-right: 0;
  animation: object_three 1.5s infinite;
  animation-delay: 0.5s;
}

@keyframes object_one {
  75% {
    transform: scale(0);
  }
}
@keyframes object_two {
  75% {
    transform: scale(0);
  }
}
@keyframes object_three {
  75% {
    transform: scale(0);
  }
}
.site-welcome {
  visibility: hidden;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 99;
  opacity: 0;
  transition: all 550ms;
}

.m-crm {
  margin-top: 10px;
  line-height: 30px;
  font-size: 14px;
  font-size: 1.4rem;
  color: #666;
}
.m-crm a {
  color: #666;
}
.m-crm a:hover {
  color: #ff0000;
}
.m-crm a.active {
  color: #ff0000;
}

.m-oths {
  margin-top: 18px;
}
.m-oths .oths-item {
  padding-left: 22px;
  height: 20px;
  line-height: 20px;
  font-size: 14px;
  font-size: 1.4rem;
  color: #666666;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background-repeat: no-repeat;
  background-position: left center;
}
.m-oths .oths-item a {
  color: #666;
}
.m-oths .oths-item a:hover {
  color: #ff0000;
}
.m-oths .oths-item-1 {
  margin-bottom: 12px;
  background-image: url("../images/oths1.png");
}
.m-oths .oths-item-2 {
  background-image: url("../images/oths2.png");
}
.m-oths a {
  color: #666666;
}

.m-page {
  margin-top: 65px;
  letter-spacing: 0;
  font-size: 0;
  text-align: center;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-start;
}
.m-page a, .m-page span {
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 5px;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  min-width: 35px;
  height: 30px;
  line-height: 28px;
  font-size: 14px;
  font-size: 1.4rem;
  color: #333;
  text-align: center;
  border: 1px solid #DCDCDC;
  box-sizing: border-box;
  transition: all 550ms;
  padding: 0 5px;
}
.m-page a.big, .m-page span.big {
  min-width: 84px;
}
.m-page a:hover {
  color: white;
  border-color: #ff0000;
  background-color: #ff0000;
}
.m-page a.active {
  color: white;
  border-color: #ff0000;
  background-color: #ff0000;
}
.m-page .page-form {
  margin-left: 8px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
.m-page .form-btn {
  min-width: 150px;
  line-height: 30px;
  height: 30px;
  padding: 0 20px;
  font-size: 14px;
  font-size: 1.4rem;
  color: #fff;
  box-sizing: border-box;
  background-color: #ff0000;
}

.m-page2 {
  position: relative;
}

@media screen and (max-width: 991px) {
  .m-page {
    margin-top: 45px;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
  }
  .m-page a {
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 10px;
  }
}
.m-kf {
  position: fixed;
  z-index: 10;
  right: 0;
  top: 30%;
}
.m-kf .kf-item {
  position: relative;
  display: block;
  line-height: 0;
  font-size: 0;
  width: 70px;
  line-height: 70px;
  margin-bottom: 1px;
  font-size: 30px;
  font-size: 3rem;
  color: #fff;
  text-align: center;
  background-color: #2d2d27;
  border-radius: 5px;
}
.m-kf .kf-item:hover {
  color: #fff;
  background-color: #ff0000;
}
.m-kf .kf-item.active {
  background-color: #ff0000;
}
.m-kf .kf-wx {
  position: absolute;
  display: none;
  bottom: 0;
  right: 100%;
  width: 120px;
  font-size: 0;
  line-height: 0;
}
.m-kf .gotop {
  display: none;
}

@media screen and (max-width: 991px) {
  .m-kf {
    right: 0;
    top: auto;
    bottom: 0;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    width: 100%;
    background-color: #2d2d27;
  }
  .m-kf .kf-item {
    width: 20%;
    text-align: center;
    line-height: 60px;
    font-size: 26px;
    font-size: 2.6rem;
    background-color: #2d2d27 !important;
  }
  .m-kf .kf-item2 {
    position: relative;
  }
  .m-kf .kf-wx {
    bottom: 100%;
    right: 0;
  }
  .m-kf .gotop {
    width: 20%;
    line-height: 60px;
    font-size: 20px;
    font-size: 2rem;
    color: #fff;
    text-align: center;
    display: block;
  }
  .g-ft {
    padding-bottom: 63px;
  }
}
.returntop {
  position: fixed;
  *position: absolute;
  z-index: 9;
  right: 6px;
  bottom: 150px;
  width: 48px;
  height: 48px;
  line-height: 48px;
  font-size: 18px;
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  background-color: #ff0000;
  border-radius: 5px;
  display: none;
}
.returntop:hover {
  color: #fff;
  background-color: #ff0000;
}

@media screen and (max-width: 991px) {
  .returntop {
    display: none !important;
  }
}
.j-videomodal {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}
.j-videomodal iframe {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1200px;
  height: 600px;
  max-width: 90%;
  max-height: 80%;
}

.m-desc {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 30px;
}
.m-desc a {
  color: #ff0000;
}
.m-desc a:hover {
  text-decoration: underline;
}
.m-desc em {
  font-size: 18px;
  font-size: 1.8rem;
}
.m-desc h3 {
  font-weight: bold;
  font-size: 18px;
  font-size: 1.8rem;
}
.m-desc p, .m-desc h3, .m-desc figure {
  margin: 1.4em 0;
}
.m-desc .lazy {
  cursor: zoom-in;
}
.m-desc p, .m-desc h3 {
  text-indent: 2em;
}
@media screen and (max-width: 991px) {
  .m-desc {
    line-height: 26px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .m-desc em, .m-desc h3 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.m-mtext .wx-box {
  margin: 1.4em 0;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 34px;
  font-size: 18px;
  font-size: 1.8rem;
  color: #666;
  position: relative;
}
.m-mtext .wx-box .wx {
  position: relative;
  color: #ff0000;
  font-weight: bold;
  font-size: 24px;
  font-size: 2.4rem;
  margin-right: 35px;
}
.m-mtext .wx-box .title {
  position: relative;
  color: #666;
}
.m-mtext .wx-box:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, #c4ecc3 0%, #effff0 100%), linear-gradient(#ff0000, #ff0000);
  background-blend-mode: normal, normal;
  box-shadow: inset 0px 3px 29px 2px rgba(104, 139, 110, 0.2);
  border-radius: 10px;
  opacity: 0.5;
}
@media screen and (max-width: 991px) {
  .m-mtext .wx-box {
    line-height: 26px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .m-mtext .wx-box .wx {
    margin-right: 10px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.m-pl {
  padding: 30px 20px;
  border-radius: 6px;
  border: solid 1px #dcdcdc;
}
.m-pl .box-title {
  line-height: 26px;
  font-size: 16px;
  font-size: 1.6rem;
  color: #666;
}
.m-pl .box-input {
  margin-top: 17px;
  height: 80px;
  padding: 10px 15px;
  line-height: 26px;
  font-size: 16px;
  font-size: 1.6rem;
  color: #999;
  background-color: #f4f4f4;
  border-radius: 6px;
}
.m-pl .box-pl1 .pl-item {
  padding-top: 20px;
  padding-bottom: 29px;
  border-bottom: 1px solid #ebebeb;
}
.m-pl .box-pl1 .item-top {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
}
.m-pl .box-pl1 .item-pic {
  width: 50px;
  line-height: 0;
  font-size: 0;
  border-radius: 4px;
  margin-right: 12px;
}
.m-pl .box-pl1 .item-name {
  line-height: 26px;
  font-size: 16px;
  font-size: 1.6rem;
  color: #666;
}
.m-pl .box-pl1 .item-name span {
  color: #999;
}
.m-pl .box-pl1 .item-desc {
  margin-top: 3px;
  padding-left: 62px;
  line-height: 30px;
  font-size: 16px;
  font-size: 1.6rem;
  color: #666;
}
.m-pl .box-pl1 .item-img {
  margin-top: 20px;
  padding-left: 62px;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
}
.m-pl .box-pl2 {
  padding-left: 62px;
}
.m-pl .box-pl2 .pl-item {
  margin-top: 20px;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.m-pl .box-pl2 .item-pic {
  width: 40px;
  margin-right: 12px;
}
.m-pl .box-pl2 .item-desc {
  padding-left: 0;
  margin-left: 52px;
  padding-bottom: 7px;
  border-bottom: 1px solid #ebebeb;
}
@media screen and (max-width: 991px) {
  .m-pl .box-pl .item-desc {
    line-height: 26px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.m-wx {
  position: fixed;
  top: 10px;
  left: 50%;
  margin-left: 425px;
  width: 190px;
  padding: 24px 10px;
  text-align: center;
  line-height: 28px;
  font-size: 14px;
  font-size: 1.4rem;
  color: #666;
  text-align: center;
  background-color: #ffffff;
  border: solid 1px #7d7d7d;
}
.m-wx span {
  font-weight: bold;
}
.m-wx .ewm {
  line-height: 0;
  font-size: 0;
}
.m-wx p {
  margin-top: 14px;
}
.m-wx p:first-child {
  margin-top: 0;
}
@media screen and (max-width: 1240px) {
  .m-wx {
    left: auto;
    margin-left: 0;
    right: 10px;
  }
}
@media screen and (max-width: 991px) {
  .m-wx {
    display: none;
  }
}

body {
  padding-bottom: 70px;
}

.m-copywx {
  position: fixed;
  z-index: 999;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  width: 100%;
  max-width: 640px;
  padding: 15px 20px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  background-color: #eee;
}
.m-copywx .box-title {
  line-height: 30px;
  font-size: 16px;
  font-size: 1.6rem;
}
.m-copywx .btn {
  display: inline-block;
  min-width: 100px;
  line-height: 40px;
  border-radius: 12px;
  font-size: 16px;
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  box-shadow: 0 1px 3px 0 #000;
  background-color: #3c9f0e;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .m-copywx .box-title {
    line-height: 26px;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .m-copywx .btn {
    min-width: 80px;
    line-height: 30px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.m-copymodal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  width: 100%;
  height: 100%;
  display: none;
}
.m-copymodal .box-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.m-copymodal .box-wp {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 12px;
  text-align: center;
  width: 320px;
  max-width: 100%;
  padding: 10px;
  line-height: 30px;
  font-size: 16px;
  font-size: 1.6rem;
}
.m-copymodal .box-icon img {
  width: 40px;
}
.m-copymodal .box-btn {
  margin-top: 10px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
.m-copymodal .btn {
  border: 1px solid #333;
  padding: 0 5px;
  font-size: 20px;
  font-size: 2rem;
  border-radius: 5px;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}
.m-copymodal .qd {
  color: #00D48C;
  border-color: #00D48C;
}