@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
}
p,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
select,
textarea,
blockquote {
  padding: 0;
  margin: 0;
}
body,
html,
a,
img,
div,
ul,
li,
p,
em,
span,
i,
input,
textarea,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
  outline: 0;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
ul,
li,
ol {
  list-style-type: none;
}
img {
  border: 0;
}
a {
  color: #666;
  text-decoration: none;
}
i,
b {
  font-weight: normal;
  font-style: normal;
}
a:hover {
  text-decoration: none;
  outline: none;
}
input,
select,
textarea {
  outline: none;
}
em {
  font-style: normal;
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  background-color: #202020;
  font-family: "Microsoft YaHei", "微软雅黑";
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clear {
  clear: both;
}
.clearfix:after {
  content: '';
  display: block;
  clear: both;
}
.flNone {
  float: none!important;
}
.hide {
  display: none;
}
.show {
  display: block;
}
.img100 {
  width: 100%;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.boxSizing,
.border_box {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.btn {
  cursor: pointer;
  /*border-radius:7px;*/
}
.btn:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
.cursor {
  cursor: pointer;
}
.cursorN {
  cursor: default;
}
.Validform_checktip {
  text-align: left;
}
select {
  border: 1px #ccc solid;
}
.text_center,
.text-center,
.text-c {
  text-align: center;
}
.text-l {
  text-align: left;
}
.text-r {
  text-align: right;
}
.bgnone {
  background: none!important;
}
.bgFFF {
  background: #fff;
}
.BgBlue {
  background: #33aae7;
  color: #fff;
}
.BgRed {
  background: #d36259;
  color: #fff;
}
.BgGreen {
  background: #3fd3a0;
  color: #fff;
}
.BgGray {
  background: #c1c1c1;
  color: #fff;
}
.font_fff,
.colorf {
  color: #fff;
}
.font_000,
.color0 {
  color: #000;
}
.mt10 {
  margin-top: 10px;
}
.mt20 {
  margin-top: 20px;
}
.mt30 {
  margin-top: 30px;
}
.ml5 {
  margin-left: 5px;
}
.ml10 {
  margin-left: 10px;
}
.ml20 {
  margin-left: 20px;
}
.mr10 {
  margin-right: 10px;
}
.mr20 {
  margin-right: 20px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb20 {
  margin-bottom: 20px  !important;
}
.mb60 {
  margin-bottom: 60px !important;
}
.margin0,
.m0 {
  margin: 0;
}
.mt0 {
  margin-top: 0 !important;
}
.m20 {
  margin: 20px;
}
.p5 {
  padding: 5px;
}
.p10 {
  padding: 10px;
}
.pl10 {
  padding-left: 10px;
}
.pr10 {
  padding-right: 10px;
}
.pt0 {
  padding-top: 0;
}
.pt5 {
  padding-top: 5px;
}
.pt10 {
  padding-top: 10px;
}
.pt20 {
  padding-top: 20px;
}
.p20 {
  padding: 20px;
}
.p25pb0 {
  padding: 25px 25px 0;
}
.pb20 {
  padding-bottom: 20px;
}
.p020 {
  padding: 0 20px;
}
.p030 {
  padding: 0 30px;
}
.p0,
.padding0 {
  padding: 0px;
}
.bordern {
  border: none;
}
.borderbtmn {
  border-bottom: none !important;
}
.textHide2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.textHide3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.textHide4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  overflow: hidden;
  line-clamp: 4;
  -webkit-box-orient: vertical;
}
.flex {
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  flex-wrap: wrap;
}
.flexLi {
  -webkit-box-flex: 1;
  -moz-flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.flexAl {
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
}
.Animation {
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
/*我的变量*/
.fs12 {
  font-size: 12px;
}
.fs14 {
  font-size: 14px;
}
.fs16 {
  font-size: 16px;
}
.fs18 {
  font-size: 18px;
}
.ft-w {
  font-weight: bold;
}
.w50 {
  width: 50% !important;
}
.header {
  z-index: 100;
}
.header.active {
  box-shadow: 0rem 0.5rem 1rem 0rem rgba(0, 0, 0, 0.48);
}
.header .con {
  position: relative;
  width: 88rem;
  margin: 1.375rem auto;
}
.header .con .logo {
  display: inline-block;
  margin: 0;
}
.header .con .header-btn {
  display: none;
  position: absolute;
  right: 0;
  top: -0.095rem;
  width: initial;
  padding: 0 1rem;
  height: 3.16rem;
  background-color: #c05555;
  box-shadow: 0.01rem 0.09rem 0.3rem 0.02rem rgba(184, 0, 0, 0.25);
  border-radius: 0.5rem;
  text-align: center;
  line-height: 3.16rem;
}
.header .con .header-btn img {
  display: inline-block;
  width: 1.06rem;
  vertical-align: middle;
}
.header .con .header-btn span {
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
  color: #ffffff;
  font-weight: bold;
  line-height: 1rem;
}
.p1 a {
  display: inline-block;
  width: initial;
  padding: 0 2rem;
}
.p1 .p1-con {
  z-index: 10;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -43%);
  width: 85rem;
  height: 45rem;
  text-align: center;
}
.p1 .p1-con h1 {
  margin-top: 9.16rem;
  margin-bottom: 2rem;
  font-size: 2.25rem;
  font-weight: bold;
  color: #ffffff;
  line-height: 2.25rem;
  position: relative;
  left: 0;
  bottom: 0;
  letter-spacing: 0.125rem;
  z-index: 2;
}
.p1 .p1-con h3 {
  margin-bottom: 4.56rem;
  font-size: 2.83rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 2.83rem;
  position: relative;
  left: 0;
  bottom: 0;
  letter-spacing: 0.125rem;
  z-index: 2;
}
.p1 .p1-con h4 {
  margin-bottom: 4.8rem;
  font-weight: 400;
  font-size: 2.25rem;
  line-height: 2.25rem;
  color: #ffffff;
}
.p1 .p1-con a {
  position: relative;
  left: 0;
  bottom: 0;
  margin: 0 auto 2rem;
}
.p1 .p1-con p {
  font-size: 1.25rem;
  line-height: 1.25rem;
  position: relative;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.p1 .p1-con .rec {
  position: relative;
  left: 0;
  top: 0;
  text-align: right;
  margin-left: 0;
  padding-right: 3.2rem;
  margin-top: 2.75rem;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.p2 h2,
.p3 h2,
.p4 h2 {
  letter-spacing: 1rem;
}
.p2 p,
.p3 p {
  margin-bottom: 3rem;
}
.p2 {
  background: #202020;
}
.p2 .item {
  visibility: visible;
  margin-right: 2.79rem;
  width: 27.5rem;
  font-size: 0;
}
.p2 .item > img {
  width: 100%;
}
.p2 .item .it-mid {
  height: 4.4rem;
  line-height: 4.4rem;
}
.p2 .item .it-mid img {
  margin-top: 0rem;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0;
}
.p2 .item .it-mid span {
  font-size: 2rem;
  font-weight: bold;
  color: #fefefe;
  line-height: 2.2rem;
  vertical-align: middle;
  display: inline-block;
  margin-top: 0;
  letter-spacing: 0;
}
.p2 .item > p {
  margin-bottom: 2.56rem;
  display: table;
  width: 100%;
  font-size: 1.25rem;
  padding: 1rem 1.75rem;
  min-height: 7rem;
  font-weight: 400;
  color: #fff;
  background: #c05555;
  border-radius: 0 0 1.25rem 1.25rem;
  line-height: inherit;
  letter-spacing: 0;
}
.p2 .item > p span {
  display: table-cell;
  line-height: 1.88rem;
  vertical-align: middle;
  text-align: center;
}
.p3 video {
  width: 61rem;
  display: inline-block;
  vertical-align: middle;
}
.p3 > div > div {
  margin-left: 1.08rem;
}
.p3 > div > div p {
  font-size: 0;
  margin-bottom: 0;
  font-weight: 400;
  line-height: inherit;
  letter-spacing: 0.5rem;
  position: relative;
  text-align: left;
  color: #fefefe;
  opacity: 1;
}
.p3 > div > div p span {
  font-size: 1.63rem;
}
.p3 > div > div p b {
  display: inline-block;
  position: relative;
  font-size: 0%;
  font-weight: bold;
}
.p3 > div > div p b i {
  z-index: 2;
  display: block;
  position: relative;
  font-size: 2.01rem;
}
.p3 > div > div p .underline1 {
  left: 0;
  top: 2rem;
  width: 120%;
  z-index: 1;
}
.p3 > div > div p .underline2 {
  left: auto;
  right: 0.5rem;
  top: 2rem;
  z-index: 1;
  width: 120%;
}
.new-title h2 {
  font-size: 2.1875rem;
  font-weight: bold;
  color: #fefefe;
  line-height: 4.375rem;
  letter-spacing: 0.6rem;
  position: relative;
  display: inline-block;
  z-index: 1;
}
.new-title h2:before {
  content: "";
  width: 1.9375rem;
  height: 1.4375rem;
  background: url(../images/screencap/title.png) no-repeat;
  background-size: cover;
  position: absolute;
  left: -1.3rem;
  top: 1.53rem;
  z-index: -1;
}
.new-title .new-title-p {
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 3.4375rem;
  opacity: 0.8;
  letter-spacing: 0.1rem;
}
.new-p1 {
  margin-bottom: 7rem;
  text-align: center;
}
.new-p1 .con {
  padding-top: 6rem;
}
.new-p1 .con ul {
  text-align: center;
  font-size: 0;
}
.new-p1 .con ul li {
  display: inline-block;
  vertical-align: top;
  margin-right: 2.6rem;
  width: 12.5rem;
  font-size: 0;
  box-shadow: 0rem 0.13rem 0.31rem 0rem rgba(0, 0, 0, 0.13);
  border-radius: 0.63rem;
  text-align: center;
}
.new-p1 .con ul li .list-top {
  display: block;
  width: 100%;
}
.new-p1 .con ul li .list-text {
  position: relative;
  padding: 0 0.9rem;
  min-height: 10.5rem;
  background-color: #A04A4A;
  border-radius: 0 0 0.63rem 0.63rem;
}
.new-p1 .con ul li .list-text .list-bg {
  position: relative;
  width: 3.13rem;
  top: -1.565rem;
}
.new-p1 .con ul li .list-text b {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.13rem;
  line-height: 1.13rem;
  font-weight: bold;
  color: #fff;
}
.new-p1 .con ul li .list-text p {
  font-size: 0.88rem;
  color: #ffffff99;
}
.new-p2 {
  text-align: center;
  margin-bottom: 9.81rem;
}
.new-p2 .con {
  padding-top: 6.63rem;
}
.new-p2 .con ul {
  text-align: center;
  font-size: 0;
}
.new-p2 .con ul li {
  display: inline-block;
  vertical-align: top;
  margin-right: 4rem;
  width: 18rem;
  font-size: 0;
  text-align: center;
}
.new-p2 .con ul li .imgBox {
  margin: 0 auto 2.44rem;
  width: 6.34rem;
  height: 6.34rem;
}
.new-p2 .con ul li .imgBox div {
  display: table-cell;
  width: 6.34rem;
  height: 6.34rem;
  border: solid 2px #ffffff;
  box-sizing: border-box;
  text-align: center;
  border-radius: 1.25rem;
  vertical-align: middle;
}
.new-p2 .con ul li .imgBox div img {
  display: inline;
}
.new-p2 .con ul li b {
  display: block;
  margin-bottom: 1.4rem;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  line-height: 1.25rem;
}
.new-p2 .con ul li p {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.88rem;
}
.new-p3 {
  text-align: center;
}
.new-p3 .con {
  padding-top: 8.8rem;
  padding-bottom: 6.94rem;
}
.new-p3 .con ul {
  text-align: center;
  font-size: 0;
}
.new-p3 .con ul li {
  display: inline-block;
  vertical-align: top;
  margin-right: 2.75rem;
  width: 15rem;
  font-size: 0;
  text-align: center;
}
.new-p3 .con ul li p {
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
}
.new-p4 {
  background-color: #1b1b1b;
}
.new-p4 .con {
  padding-top: 3.09rem;
  font-size: 0;
  text-align: center;
}
.new-p4 .con div {
  margin-bottom: 2rem;
}
.new-p4 .con div img {
  display: inline-block;
  margin-right: 0.56rem;
  vertical-align: middle;
  width: 2.31rem;
}
.new-p4 .con div span {
  display: inline-block;
  vertical-align: middle;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  line-height: 2rem;
}
.new-p4 .con p {
  margin-bottom: 3.4rem;
  font-size: 2.5rem;
  line-height: 2.5rem;
  color: #fff;
  font-weight: 400;
}
.new-p4 .con .header-btn {
  display: inline-block;
  width: initial;
  padding: 0 1rem;
  height: 4.415rem;
  background: #c05555;
  box-shadow: 0px 3px 10px 1px rgba(184, 0, 0, 0.25);
  border-radius: 1rem;
  text-align: center;
  z-index: 2;
}
.new-p4 .con .header-btn img {
  width: 1.47rem;
  margin-right: 0.9rem;
  vertical-align: middle;
}
.new-p4 .con .header-btn span {
  font-size: 1.21rem;
  font-weight: bold;
  color: #ffffff;
  line-height: 4.415rem;
  vertical-align: middle;
  letter-spacing: 0.07rem;
}
.footer {
  padding-top: 3.59rem;
}
.copyright {
  letter-spacing: 0.06rem;
  color: rgba(255, 255, 255, 0.8);
}
.copyright a {
  color: rgba(255, 255, 255, 0.8);
}
.top-laug {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 155px;
  /* height: 32px; */
  border-radius: 4px;
  border: solid 1px #fff;
  z-index: 1000;
}
.top-laug.active .top-laug-mask {
  display: block;
  z-index: 1000;
}
.top-laug.active .top-laug-show-jt {
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
}
.top-laug .top-laug-show span {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.top-laug .top-laug-show {
  display: flex;
  position: relative;
  padding: 5px 8px;
  font-size: 16px;
  color: #fff;
  /* line-height: 16px; */
  align-items: center;
  cursor: pointer;
}
.top-laug .top-laug-mask {
  display: none;
  position: absolute;
  margin-top: 5px;
  width: 100%;
  padding: 5px;
  background-color: #fff;
  box-shadow: 0px 1px 8px 0px rgba(23, 89, 133, 0.2);
  border-radius: 4px;
}
.top-laug .top-laug-mask li {
  display: flex;
  padding: 4px 0;
  font-size: 12px;
  border-bottom: 1px solid #f3f3f1;
  flex-wrap: nowrap;
  align-items: center;
  cursor: pointer;
  list-style: none;
}
.top-laug .top-laug-mask li img {
  margin-right: 5px;
  width: 22px;
}
.top-laug .top-laug-show-img {
  margin-right: 6px;
  width: 16px;
}
.top-laug .top-laug-show-jt {
  margin-left: auto;
  width: 12px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.ieBody .top-laug .top-laug-show-jt {
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -3px;
}
.ieBody.rtlData .top-laug .top-laug-show-jt {
  position: absolute;
  left: 10px;
  right: auto;
  top: 50%;
  margin-top: -3px;
}
.klaro .cookie-notice:not(.cookie-modal-notice) {
  background-color: #ffffff !important;
}
.klaro .cookie-modal p,
.klaro .cookie-modal strong,
.klaro .cookie-modal h1,
.klaro .cookie-modal h2,
.klaro .cookie-modal ul,
.klaro .cookie-modal li,
.klaro .context-notice p,
.klaro .context-notice strong,
.klaro .context-notice h1,
.klaro .context-notice h2,
.klaro .context-notice ul,
.klaro .context-notice li,
.klaro .cookie-notice p,
.klaro .cookie-notice strong,
.klaro .cookie-notice h1,
.klaro .cookie-notice h2,
.klaro .cookie-notice ul,
.klaro .cookie-notice li {
  color: #000 !important;
}
.klaro .cookie-modal .cm-modal.cm-klaro {
  background-color: #ffffff !important;
}
.klaro .cookie-modal .cm-modal .hide svg,
#klaro-new-hide svg {
  stroke: var(--light1, #000) !important;
}
.klaro .cn-body .cn-buttons .cm-btn {
  background-color: #2581c4 !important;
  min-width: 120px;
  padding: 10px !important;
}
.klaro .cookie-notice {
  padding: 10px 0;
}
.klaro .cookie-modal .cm-btn,
.klaro .context-notice .cm-btn,
.klaro .cookie-notice .cm-btn {
  background-color: #2581c4 !important;
  min-width: 120px;
  padding: 10px !important;
}
.rtlData .cm-modal .cm-purposes li {
  text-align: right;
  padding-left: 0;
  padding-right: 60px;
}
.rtlData .klaro .cookie-modal p,
.rtlData .klaro .cookie-modal h1,
.rtlData .klaro .cookie-modal h2,
.rtlData .klaro .cookie-modal ul,
.rtlData .klaro .cookie-modal li,
.rtlData .klaro .context-notice p,
.rtlData .klaro .context-notice h1,
.rtlData .klaro .context-notice h2,
.rtlData .klaro .context-notice ul,
.rtlData .klaro .context-notice li,
.rtlData .klaro .cookie-notice p,
.rtlData .klaro .cookie-notice h1,
.rtlData .klaro .cookie-notice h2,
.rtlData .klaro .cookie-notice ul,
.rtlData .klaro .cookie-notice li {
  text-align: right;
}
.rtlData .klaro .cookie-modal .cm-list-label .cm-switch,
.rtlData .klaro .context-notice .cm-list-label .cm-switch,
.rtlData .klaro .cookie-notice .cm-list-label .cm-switch {
  left: auto;
  right: 0;
}
.rtlData .header-hero-content .text {
  align-items: flex-start;
}
.rtlData .top-laug .top-laug-show-img {
  margin-right: 0;
  margin-left: 6px;
}
.rtlData #feature-last {
  direction: ltr;
}
.ieBody .top-laug .top-laug-show span {
  display: inline-block;
  vertical-align: middle;
}
button:focus {
  outline: none !important;
}
.ieBody .top-laug .top-laug-mask li span {
  display: inline-block;
}
.rtlData .top-laug .top-laug-mask li img {
  margin-left: 5px;
  margin-right: 0;
}
.rtlData .top-laug {
  left: 20px;
  right: auto;
}
.rtlData .content2 p {
  text-align: right;
}
.rtlData .content3 p {
  text-align: right;
}
.rtlData .xiangce {
  text-align: right;
}
.rtlData .jisuanji {
  text-align: right;
}
.content3 .content3-fluid > .row {
  max-width: 1920px;
  margin: 0 auto;
}
