/* 清除内外边距 */
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
legend,
button,
input,
textarea,
th,
td {
  margin: 0;
  padding: 0;
}
html body {
  font-family: "微软雅黑";
  position: relative;
}
* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
input::-ms-clear {
  display: none;
}
input::-ms-reveal {
  display: none;
}
/*设置默认字体*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  display: block;
  line-height: initial;
}
h1 {
  font-size: 24px;
}
h2 {
  font-size: 18px;
}
h3 {
  font-size: 16px;
}
h4 {
  font-size: 14px;
}
h5 {
  font-size: 12px;
}
h6 {
  font-size: 10px;
}
address,
cite,
dfn,
em,
var,
i {
  font-style: normal;
}
code,
kbd,
pre,
samp {
  font-family: courier new, courier, monospace;
}
small {
  font-size: 12px;
}
/*重置列表元素*/
ul,
ol {
  list-style: none;
}
/*重置文本格式元素*/
a,
a:hover {
  text-decoration: none;
}
a {
  color: inherit;
  outline: none;
  -moz-outline: none;
}
a img {
  display: block;
}
sup {
  vertical-align: text-top;
}
sub {
  vertical-align: text-bottom;
}
/*重置表单元素*/
legend {
  color: #000;
} /* for ie6 */
fieldset,
img {
  border: 0;
}
button,
input,
select,
textarea {
  font-size: 100%;
  outline: none;
}
/*重置表格元素*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* 重置 HTML5 元素 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  display: block;
  margin: 0;
  padding: 0;
}
.none,
.d-none {
  display: none;
}
.d-block {
  display: block;
}
.d-inline-block {
  display: inline-block;
}
.d-inline {
  display: inline;
}
/* .fl{
  float: left;
}
.fr{
  float: right;
} */
.d-flex{
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.flex-column{
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.align-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.align-start {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.align-end {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.justify-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.justify-start {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
     -moz-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.justify-end {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.space-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.space-around {
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}
.space-evenly {
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
     -moz-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.flex-wrap {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.flex-nowrap {
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.flex-fill {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.text-nowrap {
  white-space: nowrap;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.w-100 {
  width: 100%;
}
.h-100 {
  height: 100%;
}
.rotate180 {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}
.bg-white{
  background: #fff;
}
/* 显示一行文字 */
.line1 {
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
/* 显示2行文字 */

.line2 {
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.line3 {
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
@charset "UTF-8";
body {
  min-width: 1320px;
}

.toOfficialWebsite {
  cursor: pointer;
}

header {
  height: 66px;
  font-size: 16px;
  color: #626880;
  -webkit-box-shadow: 0px 4px 11px 2px rgba(45, 42, 138, 0.28);
          box-shadow: 0px 4px 11px 2px rgba(45, 42, 138, 0.28);
  z-index: 99;
  position: relative;
  background: #fff;
}
header span {
  display: block;
  height: 100%;
  line-height: 66px;
  cursor: pointer;
}
header .systemFit {
  display: none;
  font-size: 14px;
  color: #999;
}
header .download {
  color: #5a589a;
  margin-right: 40px;
}
header .download img {
  display: none;
  margin-right: 7px;
  width: 12px;
  height: 14px;
  position: static;
}
header .download + span {
  position: relative;
  color: #5a589a;
}
header .download + span img {
  display: none;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 154px;
  height: 154px;
  -webkit-transform: translate(-50%, 100%);
     -moz-transform: translate(-50%, 100%);
       -o-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
header .download + span:hover img {
  display: block;
}
header.posFix {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
header.posFix .systemFit {
  display: block;
  cursor: auto;
}
header.posFix .download {
  display: block;
  margin: 0 37px 0 14px;
  width: 114px;
  height: 32px;
  border-radius: 16px;
  background: #5760c9;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header.posFix .download img {
  display: inline-block;
  margin-right: 7px;
  width: 12px;
  height: 14px;
  position: static;
}

button {
  border: none;
  outline: none;
  font-size: 20px;
  line-height: 48px;
  letter-spacing: 0px;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  text-shadow: 1px 3px 4px rgba(160, 75, 0, 0.43);
  height: 48px;
  width: 158px;
  -webkit-box-shadow: 2px 5px 16px 0px rgba(255, 184, 47, 0.6);
          box-shadow: 2px 5px 16px 0px rgba(255, 184, 47, 0.6);
  background-image: -webkit-gradient(linear, left bottom, left top, from(#ffa800), to(#ffc34f)), -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#ffffff));
  background-image: -webkit-linear-gradient(bottom, #ffa800 0%, #ffc34f 100%), -webkit-linear-gradient(#ffffff, #ffffff);
  background-image: -moz-linear-gradient(bottom, #ffa800 0%, #ffc34f 100%), -moz-linear-gradient(#ffffff, #ffffff);
  background-image: -o-linear-gradient(bottom, #ffa800 0%, #ffc34f 100%), -o-linear-gradient(#ffffff, #ffffff);
  background-image: linear-gradient(0deg, #ffa800 0%, #ffc34f 100%), linear-gradient(#ffffff, #ffffff);
  background-blend-mode: normal, normal;
  border-radius: 24px;
}
button + button {
  margin-left: 30px;
}
button:hover {
  background-image: -webkit-gradient(linear, left bottom, left top, from(#ff8400), to(#ffc34f)), -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#ffffff));
  background-image: -webkit-linear-gradient(bottom, #ff8400 0%, #ffc34f 100%), -webkit-linear-gradient(#ffffff, #ffffff);
  background-image: -moz-linear-gradient(bottom, #ff8400 0%, #ffc34f 100%), -moz-linear-gradient(#ffffff, #ffffff);
  background-image: -o-linear-gradient(bottom, #ff8400 0%, #ffc34f 100%), -o-linear-gradient(#ffffff, #ffffff);
  background-image: linear-gradient(0deg, #ff8400 0%, #ffc34f 100%), linear-gradient(#ffffff, #ffffff);
}

.topBanner {
  height: 660px;
  background: url("../img/banner.png") no-repeat;
  -o-background-size: cover;
     background-size: cover;
  background-position: center;
}
.topBanner.mt66 {
  margin-top: 66px;
}
.topBanner .container {
  padding-top: 280px;
}
.topBanner .container .functions {
  font-size: 16px;
  letter-spacing: 0px;
  color: #ffffff;
}
.topBanner .container .functions .flex-column {
  cursor: pointer;
  position: relative;
}
.topBanner .container .functions .flex-column .iconBG {
  width: 114px;
  height: 114px;
}
.topBanner .container .functions .flex-column span {
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  text-align: center;
}
.topBanner .container .functions .flex-column:first-child .iconBG {
  background: url("../img/t1.png") no-repeat;
}
.topBanner .container .functions .flex-column:first-child .iconBG:hover {
  background: url("../img/t1_active.png") no-repeat;
}
.topBanner .container .functions .flex-column:nth-child(2) .iconBG {
  background: url("../img/t2.png") no-repeat;
}
.topBanner .container .functions .flex-column:nth-child(2) .iconBG:hover {
  background: url("../img/t2_active.png") no-repeat;
}
.topBanner .container .functions .flex-column:nth-child(3) .iconBG {
  background: url("../img/t3.png") no-repeat;
}
.topBanner .container .functions .flex-column:nth-child(3) .iconBG:hover {
  background: url("../img/t3_active.png") no-repeat;
}
.topBanner .container .functions .flex-column:nth-child(4) .iconBG {
  background: url("../img/t4.png") no-repeat;
}
.topBanner .container .functions .flex-column:nth-child(4) .iconBG:hover {
  background: url("../img/t4_active.png") no-repeat;
}
.topBanner .container .functions .flex-column:nth-child(5) .iconBG {
  background: url("../img/t5.png") no-repeat;
}
.topBanner .container .functions .flex-column:nth-child(5) .iconBG:hover {
  background: url("../img/t5_active.png") no-repeat;
}
.topBanner .container .bannerBtn {
  width: 149px;
  height: 58px;
  background: url("../img/bannerBtn.png") no-repeat;
  -o-background-size: cover;
     background-size: cover;
}
.topBanner .container .bannerBtn:hover {
  background: url("../img/bannerBtnHover.png") no-repeat;
}
.topBanner .container .btns {
  margin-left: -webkit-calc(100% - 570px);
  margin-left: -moz-calc(100% - 570px);
  margin-left: calc(100% - 570px);
  margin-top: 70px;
}
.topBanner .container .btns button {
  -webkit-box-shadow: 3px 10px 24px 0px rgba(86, 80, 210, 0.43);
          box-shadow: 3px 10px 24px 0px rgba(86, 80, 210, 0.43);
}

.rightColumn {
  margin-top: 23px;
  width: 60px;
  right: 20px;
  bottom: 170px;
  position: fixed;
  z-index: 10;
}
.rightColumn .free {
  width: 60px;
  height: 92px;
  background-color: #06f;
  background-image: -webkit-linear-gradient(328deg, #5760c9 1%, #6672fa), -webkit-linear-gradient(#06f, #06f);
  background-image: -o-linear-gradient(328deg, #5760c9 1%, #6672fa 100%), -o-linear-gradient(#06f, #06f);
  background-image: -moz-linear-gradient(328deg, #5760c9 1%, #6672fa), -moz-linear-gradient(#06f, #06f);
  background-image: -o-linear-gradient(328deg, #5760c9 1%, #6672fa), -o-linear-gradient(#06f, #06f);
  background-image: linear-gradient(122deg, #5760c9 1%, #6672fa), linear-gradient(#06f, #06f);
  background-blend-mode: normal, normal;
  -webkit-box-shadow: 0 4px 8px 0 rgba(81, 90, 187, 0.28);
  box-shadow: 0 4px 8px 0 rgba(81, 90, 187, 0.28);
  border-radius: 8px;
  cursor: pointer;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  margin-bottom: 19px;
}
.rightColumn .free i {
  display: block;
  width: 34px;
  height: 34px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACIAAAAiCAMAAAANmfvwAAAAllBMVEUAAAD////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////AJcWoAAAAMXRSTlMAzBAhA/qxSzPxpuuqFuDdX/fpoFfZvXJPQHhTRwsGnD19O+XEt7OHbmg57dO/YZAj9O+x/QAAAaxJREFUOMtt1NmW4iAQBuDKAtljFmPM5tq2o73M/O//ciMQ6Cj93XDIqUMVUIQWsqJ2EsYSpy4y+s2dMxiM360AjwNI4jbouqCNEwDcoydDBGwCX0/9YANEa1o4AnlAT4IcOJLRA9ylFy4Hej1ZA3ufLP4emHN5EbiImFz/JYYjUjVzrFzx4Yx/rrGTuVZ4F+MJGMV4w1J5o4cROMlFNmKNdcmcHw2YXGcDTpQxBGKPYMtjmFjlk/qcUQE5GdPQW2hxVRVXKKhGTDI+wpOoICFGTQ7+kPCGRhTxgXwupiGhhUMJtiTkmFTkqDKUkRy3SKjEYQ6RZZbISIpUyAHsEdKR0GAIw7BHHkoBS0zIGcNc14uLTmTKdY91miY4pzne0odrpsuVm9YKsDvF0J2jN/2NajdfbA/caBGijy5jate74RMyZ6ybRF+AvsbhA2jk3vYoV1Kor5E6iGV69vWtEoY5lJNpBrrAIZp8MlzFp2luKfI+r2TYjWmx29tmPxLtr7OlJ6N+akYDfG131oNd8i4AqrQdukPQxhWAd7vSLi1hMH6g32TF3qlg/YL+AzygOK3fq4VHAAAAAElFTkSuQmCC);
  margin-bottom: 6px;
}
.rightColumn .free span {
  width: 2em;
  text-align: center;
  display: block;
  font-size: 12px;
  line-height: initial;
  color: #fff;
  opacity: 0.8;
}
.rightColumn .free:hover {
  background-image: -webkit-linear-gradient(328deg, #7c6fff 0%, #6672fa 100%), -webkit-linear-gradient(#0066ff, #0066ff);
  background-image: -moz-linear-gradient(328deg, #7c6fff 0%, #6672fa 100%), -moz-linear-gradient(#0066ff, #0066ff);
  background-image: -o-linear-gradient(328deg, #7c6fff 0%, #6672fa 100%), -o-linear-gradient(#0066ff, #0066ff);
  background-image: linear-gradient(122deg, #7c6fff 0%, #6672fa 100%), linear-gradient(#0066ff, #0066ff);
}
.rightColumn .consult {
  width: 60px;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 16px 0 rgba(8, 8, 8, 0.1);
  box-shadow: 0 2px 16px 0 rgba(8, 8, 8, 0.1);
  border-radius: 8px;
  position: relative;
}
.rightColumn .consult li {
  padding: 20px 0;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  font-size: 12px;
  line-height: 14px;
  color: #7a7c93;
  cursor: pointer;
}
.rightColumn .consult li i,
.rightColumn .consult li span {
  display: block;
  line-height: 1;
}
.rightColumn .consult li span.int {
  width: 2em;
  text-align: center;
  line-height: initial;
  margin-top: 6px;
}
.rightColumn .consult li.hotline:before,
.rightColumn .consult li.online:before,
.rightColumn .consult li.return:before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  width: 20px;
  height: 1px;
  background-color: #7a7c93;
  opacity: 0.3;
}
.rightColumn .consult .return i {
  width: 22px;
  height: 13px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAANCAYAAACtpZ5jAAABH0lEQVQ4jZ3SvUpDQRiE4ccQrIQUQQkSREJERNDCwlavQxSEkNYiIPiDaKWdhaUp7Gy8AdHoVYigrXgB9hKLfAuLRpM4cGB35pv3HHbP2Nb2gSG0iNNY7+FpUKE4BHQBj5iM/SrW8PxXqTAAOof7DApT4c39F1zDA6b7ZNOR1UYFz6CDauadxJNUjZmZfoB+Z5wKs5l3huNYj+tdoJjpYB1vf31xRe/86pl3noFgP7ykenQqv4EnY2A+8y7Q8lOtyJLmfbvkBC7jTu9/TWpjB90+4G5k7cxbDHg5gUu4xXI2dIXmL9Ac3ozZpKVglQq4xEoWXqMxAJrDG9FJWkG7gNfMvMEmPoeAJn1G5ybzXoo4jDdPYHdEaA7fwDs+cPQFfUA3DXG0fysAAAAASUVORK5CYII=);
}
.rightColumn .consult .return:hover i {
  background: url(data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoMDAsKCwsNDhIQDQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRT/2wBDAQMEBAUEBQkFBQkUDQsNFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBT/wAARCAANABYDASIAAhEBAxEB/8QAFwABAQEBAAAAAAAAAAAAAAAABwAFCf/EACUQAAEDAwQCAgMAAAAAAAAAAAECAwQFBxEGEiExACITQRRR0f/EABcBAAMBAAAAAAAAAAAAAAAAAAMEBQb/xAAjEQABAgQGAwAAAAAAAAAAAAABAgQAAxEhEiIxMkFRBRMz/9oADAMBAAIRAxEAPwDoJe69kK1NJQxHQmoalmjbCgJ5OScBxYHO3PQ7UeB9kB6KbdWzX41yKlIcq6J6t9Zpa1klpsn13jpPHRSPQ4HWR4m2ptBFVcDUmr69UHNRVqPUnY0ZyS2EpZ24wsJyRkAgDoJA4HWG59huUw4y82l1lxJQttaQpKkkYIIPYPm0D9r4gBrIliaD9CRuqNqeQB3qTfQQl61Ts6jTqMPQuuqRcXTkatUaR80Z0YUhXC2VjtCx9KH8IyCD5eEenLOPaFu3V4+lNRyaFTZ1PEswgwl5CFfLt2jccED2wcZAVjP7vI7xm0RNq3nDAoAjEFVAPBoki2ljeDIWsjMm8f/Z);
}
.rightColumn .consult li.hotline {
  position: relative;
}
.rightColumn .consult li.hotline i.hotline {
  width: 26px;
  height: 26px;
  background: url(data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoMDAsKCwsNDhIQDQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRT/2wBDAQMEBAUEBQkFBQkUDQsNFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBT/wAARCAAaABoDASIAAhEBAxEB/8QAGgAAAgIDAAAAAAAAAAAAAAAABAkHCAAFBv/EAC8QAAEDAgUCBAQHAAAAAAAAAAECAwQFEgAGBxEhEzEIFDJSQlFhgRYiIyVBQ3H/xAAYAQADAQEAAAAAAAAAAAAAAAABAgMEBf/EABwRAAIDAQADAAAAAAAAAAAAAAABAgMRIQQSIv/aAAwDAQACEQMRAD8AsF4qPFlVafmCdk3JUw09MNRZn1Vk/qqdHCmmj8ISeCoc7ggbAbmok2s1CpTTMlzpMqWTcX3nlLcJ+dxO+JA0tRkteptRGq65bdOtkdUs9Tfzd49fTF+3r7fFbvxvgvL6NJTkbPRqblUGYw+5+HQQvlr+q60WXb+u7+PTzjtwUaliRF9N5oh4rs06Y1eNGq06TX8sqUEPxJThcdZT7mVKO4I9u9p7cHkMYplag1mmxKhClNvw5bKH2XUq4WhSQpKh/oIOFf5zRpknSjKysuOTlZ6K/wB3S8F9MJtVd3Fvqtts+He7nBtFe1IFGgCD53yQjt9Czfbp2i3b6bbYjbTGz6XAp4dd42tOYGSNVG6lTklpmvsqmvNbflS/eQ4U/RXCj9VH7V9XGebWhC2lpWsBSUlJBUD2I+e+GTavUSnVvXbSxiowIs9ktzyW5TKXEkpDRSdlA9jyMTYEJSEgJACeBsO2EXkOuEdWh9dYtjRHwq5q1Sq0aRUoMmg5ZSoKfmymy2t1HtZSobqJ921o+Z7FjVLocCi0yJT4URpiHEZQwy0lPCEJSEpT9gAMH4zGS22Vr6Mlh//Z);
}
.rightColumn .consult li.hotline p.popup0 {
  display: none;
  position: absolute;
  top: 0;
  left: -160px;
  cursor: auto;
  width: 160px;
  height: 249px;
}
.rightColumn .consult li.hotline p.popup0 a {
  color: #333;
}
.rightColumn .consult li.hotline p.popup0 .relationTime {
  color: #999;
  font-size: 14px;
  margin-top: 15px;
  text-align: center;
}
.rightColumn .consult li.hotline p.popup0 .popupS {
  display: block;
  height: 249px;
  width: 265px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding-top: 45px;
}
.rightColumn .consult li.hotline p.popup0 .popupS .relation,
.rightColumn .consult li.hotline p.popup0 .popupS .relationNum {
  display: block;
  padding-left: 77px;
  width: 265px;
  text-align: left;
  color: #333;
}
.rightColumn .consult li.hotline p.popup0 .popupS .relationNum {
  font-size: 20px;
}
.rightColumn .consult li.hotline p.popup0 .popupS .underline {
  position: relative;
}
.rightColumn .consult li.hotline p.popup0 .popupS .underline:before {
  content: "";
  position: absolute;
  width: 150px;
  border-bottom: 1px solid #f8f8f8;
  left: 77px;
  bottom: -23px;
}
.rightColumn .consult li.hotline p.popup0 .popupS .relationT {
  margin: 45px 0 16px;
}
.rightColumn .consult li.hotline p.popup0 .relation {
  font-size: 16px;
  margin: 0 0 16px;
  position: relative;
}
.rightColumn .consult li.hotline p.popup0 .relation:before {
  content: "";
  position: absolute;
  left: 32px;
  top: -5px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
}
.rightColumn .consult li.hotline p.popup0 .relation:first-child:before {
  background: #333 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAANCAYAAAB2HjRBAAABDUlEQVQokYXSu0qkQRAF4G9kDMR8vaGGC4KRgaBgYGIk+wAbaWJsJoNm5oIPouIb+AAbLKyYK4KXCUQFHRY9Ji00P/54oKC7qk7VqeruJFEwinX8wiIm0cEd/uIUR+h/EiQZSdJL0s/3eEqyXzg6Sc4xV2pd48bXGMdUOV9gTpK3qvJOEi22U+W9JdFFDwv4jxOsYbbR9R7HmMcw/nzOXNvvJO8t82401dSX1SSDkvia5CDJYeUbJFn+ivwzyUPVZbtK6lX+myQTTfJZQ+JqRV5rxG6LoqUhjGGlsaBNDKGLrUbsB/7hUZKZlgVdJrlqic2kPNULUr5ijemWz/KOR0XaPXbx3JJcY4A9PMAHQEeV6VhxkaUAAAAASUVORK5CYII=) no-repeat 50%;
}
.rightColumn .consult li.hotline p.popup0 .relation:nth-child(3):before {
  background: #333 url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAPCAYAAADUFP50AAAA1UlEQVQokZXSMUrDUByA8S92EMS1pYKL6AEsdMkBmjN4AOnoCXoAr+Di0MWxu+3SDA4ewMk5hYqgYyPydTDB1xDx9YMMebwf5B/+qDSeVJ2rpT+9q1P1PLzXRKMANPtQL9vgsVr8geryNnj9D6o7VTngtyFxpcAOzCLhVQhPgLNI2ANAPVKfI+dT/VIvUG/3QHV3iboC+pGfWbdOVIE3oBuJvoFOok6ABfAEJBFwDAzCBbiPmO1FPTTYnGyPHzMz2JxXIAc21XsJPAA3wBL4rM4L4BFgC5H3tAwfOx7pAAAAAElFTkSuQmCC) no-repeat 50%;
}
.rightColumn .consult li.hotline:hover {
  color: #5760c9;
}
.rightColumn .consult li.hotline:hover i.hotline {
  background: url(data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAMCAgMCAgMDAwMEAwMEBQgFBQQEBQoHBwYIDAoMDAsKCwsNDhIQDQ4RDgsLEBYQERMUFRUVDA8XGBYUGBIUFRT/2wBDAQMEBAUEBQkFBQkUDQsNFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBT/wAARCAAaABoDASIAAhEBAxEB/8QAGgAAAgIDAAAAAAAAAAAAAAAABAgGBwAFCf/EAC8QAAEDAgUBBgUFAAAAAAAAAAECAwQFEQAGBxIhMQgTFCIyUhVBYXGBJTNCQ1H/xAAXAQADAQAAAAAAAAAAAAAAAAADBAYI/8QAJhEAAQMDAwIHAAAAAAAAAAAAAQIDEQAEBRIxQSEiBhMjUYGx0f/aAAwDAQACEQMRAD8AaPtHdpapQq3LyrlKUYSYii1NqTX7qnB6m2z/ABCehUObg2sBysMuqzZ8oypMyRIkk3LzrqlLJ/25N8TbTpOU1agzxqSqSiBtf7wtb7+J3D17PNb19Pna/F8E0RGmZyfnE1BdRFeDznwIHdy3/Xu2jbe/r3fL0840hYMW2HaFuywokBMqCZ1FRiZ5jc+wqccUp46lK+K3GkPaTzHp7U47FTmSK1l9Sgl6NJWXHGk+5pRNwR7b2P06h7KfVodVp8abEkNvRZLSXmnEnhaFAFJH3BGOeOa0afDTbLhoS5is4lX6ml3f3YG07uvl9W3bt+V93OCqS7nwUqGIfi/Cdyjudt7bNo22/FsTuZwFtlSLlr0FSQdQjVHMfR5FMM3Cmu09wqUdrjIkLKOo7c+AkttVppUt1q3lS9uIWR9+FfcnFIqjuoUhKm1pUsApBSQVA9CMPxqfSINX1j05anQo81oomkokNJcSSA2RwQeh5GLbCEi1gBbpx0wgx4rcxmOtQ415hUk9dUbEgcHgURVqHXFQYpBtIuzhmPUWpx358ORRsvpUFPS5KChbqfa0ki6ifdbaPr0L306jwqTT4sGJGbZixmkstNhPCEJACR+ABgzGYhMznbnNOBTvalOwHH6aeZYSyOm9f//Z);
}
.rightColumn .consult li.hotline:hover .popup0 {
  display: block;
}
.rightColumn .consult li.serviceOnLine {
  position: relative;
}
.rightColumn .consult li.serviceOnLine i.serviceOnLine {
  width: 26px;
  height: 26px;
  background: url("../img/serviceOnLine.png") no-repeat;
  background-position: center;
}
.rightColumn .consult li.serviceOnLine:hover {
  color: #5760c9;
}
.rightColumn .consult li.serviceOnLine:hover i.serviceOnLine {
  background: url("../img/serviceOnLine_on.png") no-repeat;
  background-position: center;
}

.container {
  width: 1200px;
  margin: 0 auto;
}

h2 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0px;
  color: #666699;
  text-align: center;
}
h2 + h5 {
  font-size: 16px;
  color: #666699;
  margin-top: 20px;
  text-align: center;
}

.sixModules {
  height: 535px;
}
.sixModules h5 {
  margin-bottom: 50px;
}
.sixModules .left .flex-column {
  font-size: 14px;
  color: #6e6e84;
  width: 82px;
  white-space: nowrap;
  cursor: pointer;
}
.sixModules .left .flex-column + .flex-column {
  margin-left: 20px;
}
.sixModules .left .flex-column .icon {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}
.sixModules .left .flex-column:first-child .icon {
  background: url("../img/m1.png") no-repeat;
}
.sixModules .left .flex-column:first-child .icon:hover {
  background: url("../img/m1_active.png") no-repeat;
}
.sixModules .left .flex-column:nth-child(2) .icon {
  background: url("../img/m2.png") no-repeat;
}
.sixModules .left .flex-column:nth-child(2) .icon:hover {
  background: url("../img/m2_active.png") no-repeat;
}
.sixModules .left .flex-column:nth-child(3) .icon {
  background: url("../img/m3.png") no-repeat;
}
.sixModules .left .flex-column:nth-child(3) .icon:hover {
  background: url("../img/m3_active.png") no-repeat;
}
.sixModules .left .flex-column:nth-child(4) .icon {
  background: url("../img/m4.png") no-repeat;
}
.sixModules .left .flex-column:nth-child(4) .icon:hover {
  background: url("../img/m4_active.png") no-repeat;
}
.sixModules .left .flex-column:nth-child(5) .icon {
  background: url("../img/m5.png") no-repeat;
}
.sixModules .left .flex-column:nth-child(5) .icon:hover {
  background: url("../img/m5_active.png") no-repeat;
}
.sixModules .left .flex-column:nth-child(6) .icon {
  background: url("../img/m6.png") no-repeat;
}
.sixModules .left .flex-column:nth-child(6) .icon:hover {
  background: url("../img/m6_active.png") no-repeat;
}
.sixModules .left button {
  margin-top: 50px;
}
.sixModules .right {
  width: 546px;
  -webkit-box-shadow: 0px 4px 15px 1px rgba(13, 11, 126, 0.1);
          box-shadow: 0px 4px 15px 1px rgba(13, 11, 126, 0.1);
}

.efficient {
  height: 950px;
  background: #f9f9ff;
}
.efficient strong {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0px;
  color: #666699;
}
.efficient h5 {
  margin-bottom: 50px;
}
.efficient h5 + div {
  max-width: 1200px;
}
.efficient .unit {
  width: 360px;
  height: 139px;
  -webkit-box-shadow: 0px 3px 11px 1px rgba(13, 11, 126, 0.08);
          box-shadow: 0px 3px 11px 1px rgba(13, 11, 126, 0.08);
  border-radius: 8px;
  margin-left: 60px;
  margin-bottom: 40px;
  background: #fbfbff;
  cursor: pointer;
}
.efficient .unit:hover {
  background: #6c74d2;
}
.efficient .unit h3 {
  font-size: 17px;
  font-weight: 600;
  font-stretch: normal;
  color: #666699;
}
.efficient .unit p {
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
  color: #8787a0;
  margin-top: 10px;
}
.efficient .unit .wrap {
  padding: 24px;
  border-radius: 8px;
}
.efficient .unit .wrap:hover h3 {
  color: #fff;
}
.efficient .unit .wrap:hover p {
  color: #dadaf2;
}
.efficient .unit .wrap img {
  width: 50px;
  height: 50px;
  margin-right: 18px;
}
.efficient .unit .wrap div {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 0;
}
.efficient .unit:nth-child(3n+1) {
  margin-left: 0;
}
.efficient .unit:nth-child(1) .wrap {
  background: url("../img/bg01.png") no-repeat;
}
.efficient .unit:nth-child(2) .wrap {
  background: url("../img/bg02.png") no-repeat;
}
.efficient .unit:nth-child(3) .wrap {
  background: url("../img/bg03.png") no-repeat;
}
.efficient .unit:nth-child(4) .wrap {
  background: url("../img/bg04.png") no-repeat;
}
.efficient .unit:nth-child(5) .wrap {
  background: url("../img/bg05.png") no-repeat;
}
.efficient .unit:nth-child(6) .wrap {
  background: url("../img/bg06.png") no-repeat;
}
.efficient .unit:nth-child(7) .wrap {
  background: url("../img/bg07.png") no-repeat;
}
.efficient .unit:nth-child(8) .wrap {
  background: url("../img/bg08.png") no-repeat;
}
.efficient .unit:nth-child(9) .wrap {
  background: url("../img/bg09.png") no-repeat;
}
.efficient .btns {
  margin-top: 10px;
}

.comments {
  height: 630px;
}
.comments .nav-prev {
  position: absolute;
  cursor: pointer;
  top: 50%;
  margin-top: 15px;
  left: -50px;
  width: 50px;
  height: 50px;
  background: url("../img/arrowleft.png") no-repeat;
}
.comments .nav-prev:hover {
  background: url("../img/arrowleft_on.png") no-repeat;
}
.comments .nav-next {
  position: absolute;
  cursor: pointer;
  top: 50%;
  margin-top: 15px;
  right: -50px;
  width: 50px;
  height: 50px;
  background: url("../img/arrowright.png");
}
.comments .nav-next:hover {
  background: url("../img/arrowright_on.png") no-repeat;
}
.comments .swiperWrapper {
  margin-top: 2px;
  position: relative;
}
.comments .swiperWrapper .swiper-container {
  width: 968px;
  position: relative;
  padding-top: 70px;
}
.comments .swiperWrapper .swiper-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.comments .swiperWrapper .swiper-slide {
  font-size: 14px;
  height: 256px;
  background: url("../img/messagebg.png") no-repeat;
  -o-background-size: cover;
     background-size: cover;
  padding: 0 60px;
  overflow: visible;
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}
.comments .swiperWrapper .swiper-slide .wrapper {
  width: 100%;
  position: relative;
  top: -18px;
}
.comments .swiperWrapper .swiper-slide .wrapper > div > div {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 0;
}
.comments .swiperWrapper .swiper-slide .wrapper > div > div .comment {
  max-width: 100%;
}
.comments .swiperWrapper .swiper-slide .wrapper .avatar {
  width: 70px;
  display: block;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 4px 6px 1px rgba(172, 172, 175, 0.35);
          box-shadow: 0px 4px 6px 1px rgba(172, 172, 175, 0.35);
  border: solid 4px #ffffff;
  border-radius: 35px;
}
.comments .swiperWrapper .swiper-slide .wrapper .avatar + span {
  margin: 10px 0 20px;
  color: #8787a0;
}
.comments .swiperWrapper .swiper-slide .wrapper .avatar + span .name {
  font-size: 18px;
  font-weight: 600;
  color: #666699;
}
.comments .swiperWrapper .swiper-slide .wrapper .usage {
  color: #8787a0;
}
.comments .swiperWrapper .swiper-slide .wrapper .usage .title {
  font-weight: 600;
}
.comments .swiperWrapper .swiper-slide .wrapper .comment {
  margin-top: 15px;
  font-size: 14px;
  line-height: 24px;
  color: #5f5f69;
}
.comments .swiperWrapper .swiper-slide .wrapper .scenes {
  width: 171px;
  height: 97px;
  margin-right: 20px;
  border-radius: 4px;
}

.trustworthy {
  height: 540px;
  background: #f9f9ff;
}
.trustworthy h2 + h6 {
  margin-top: 18px;
}
.trustworthy h6 {
  font-size: 16px;
  line-height: 26px;
  color: #666699;
}
.trustworthy h6 + div {
  margin-top: 50px;
}
.trustworthy h6 + div > div + div {
  margin-left: 120px;
}
.trustworthy h6 + div img {
  width: 70px;
  height: 71px;
  margin-bottom: 20px;
}
.trustworthy h6 + div .title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0px;
  color: #5c59c8;
}
.trustworthy h6 + div .desc {
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
  color: #8787a0;
  margin-top: 10px;
  max-width: 160px;
  text-align: center;
}

.bottomBanner {
  position: relative;
  height: 372px;
}
.bottomBanner .bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: -1;
}
.bottomBanner .bg .bannerLeft,
.bottomBanner .bg .bannerRight {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 50%;
  height: 100%;
  position: absolute;
}
.bottomBanner .bg .bannerLeft {
  background: #5760c9;
  left: 0;
}
.bottomBanner .bg .bannerRight {
  background: url("../img/footbg.png") no-repeat;
  -o-background-size: cover;
     background-size: cover;
  right: 0;
}
.bottomBanner .thin {
  font-size: 14px;
  color: #aaaadb;
  margin: 20px 0 25px;
}
.bottomBanner .bold {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}
.bottomBanner .downloadClient {
  cursor: pointer;
}
.bottomBanner div.downloadClient {
  width: 133px;
  height: 40px;
  text-align: center;
  background-color: #5760c9;
  border-radius: 20px;
  border: solid 2px #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 36px;
  color: #fff;
  margin-top: 40px;
  cursor: pointer;
}
.bottomBanner div.downloadClient:hover {
  color: #fc0;
  border-color: #fc0;
}

footer {
  height: 50px;
  line-height: 50px;
  background-color: #47485b;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #9ea3b7;
}
footer a:hover {
  text-decoration: underline;
}

/* toast */
.el-dialog__wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  margin: 0;
}
.el-dialog__wrapper .el-dialog {
  padding: 30px;
  border-radius: 2px;
  position: relative;
  margin: 0 auto 50px;
}
.el-dialog__wrapper .el-dialog .el-dialog__body {
  color: #606266;
  font-size: 14px;
  word-break: break-all;
}
.el-dialog__wrapper .el-dialog .el-dialog__body .tipText {
  margin: 19px 0 29px;
}
.el-dialog__wrapper .el-dialog .el-dialog__footer {
  text-align: right;
}
.el-dialog__wrapper .el-dialog .el-dialog__footer .el-button {
  display: inline-block;
  text-align: center;
  width: 68px;
  height: 32px;
  margin: 0 0 0 10px;
  font-size: 14px;
  border-radius: 4px;
  line-height: 30px;
  border: 1px solid #dcdfe6;
  color: #606266;
  cursor: pointer;
  border: none;
  background: #5760c9;
  line-height: 32px;
  margin-left: 10px;
  color: #fff;
}

.v-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: #000;
}

/* 采购弹框 */
.mask {
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  -moz-opacity: 0.5;
  filter: alpha(opacity=50);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}

.popup {
  width: 560px;
  height: 580px;
  -webkit-box-shadow: 0px 0px 33px 3px rgba(102, 102, 102, 0.13);
          box-shadow: 0px 0px 33px 3px rgba(102, 102, 102, 0.13);
  border-radius: 5px;
  position: fixed;
  top: 50%;
  left: 50%;
  opacity: 1;
  margin-left: -280px;
  margin-top: -290px;
  background: #ffffff;
  z-index: 999;
  padding: 40px;
}
.popup .popup_title {
  font-size: 24px;
  letter-spacing: 2px;
  color: #444;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
}
.popup .popup_title::after {
  content: "";
  position: absolute;
  width: 36px;
  height: 3px;
  bottom: -22px;
  left: 50%;
  margin-left: -18px;
  background-image: -webkit-gradient(linear, left top, right top, from(#a5acff), to(#5861cc));
  background-image: -webkit-linear-gradient(left, #a5acff 0%, #5861cc 100%);
  background-image: -moz-linear-gradient(left, #a5acff 0%, #5861cc 100%);
  background-image: -o-linear-gradient(left, #a5acff 0%, #5861cc 100%);
  background-image: linear-gradient(90deg, #a5acff 0%, #5861cc 100%);
}
.popup > i {
  width: 12px;
  height: 12px;
  cursor: pointer;
  position: absolute;
  top: 26px;
  right: 28px;
  background: url("../img/gb_1.png");
}
.popup > i:hover {
  background: url("../img/gb_2.png");
}

.pop_textarea_box,
.pop_input_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pop_input_box {
  height: 42px;
  margin-bottom: 25px;
}
.pop_input_box .pop_textarea,
.pop_input_box .pop_input {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 0;
}

.prefix {
  white-space: nowrap;
  font-size: 13px;
  color: #333333;
  margin-right: 12px;
  line-height: 40px;
}

.pop_input {
  width: 367px;
  padding: 12px;
  border-radius: 2px;
  border: solid 1px #d9d9d9;
  outline: none;
  font-size: 13px;
}

.pop_textarea_box {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 40px;
}

.pop_textarea {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 200px;
  padding: 12px;
  border-radius: 2px;
  border: solid 1px #d9d9d9;
  outline: none;
  resize: none;
  font-size: 13px;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #c2c2c2;
  font-size: 13px;
  font-weight: 400;
}

input:-moz-placeholder, textarea:-moz-placeholder {
  color: #c2c2c2;
  font-size: 13px;
  font-weight: 400;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #c2c2c2;
  font-size: 13px;
  font-weight: 400;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #c2c2c2;
  font-size: 13px;
  font-weight: 400;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #c2c2c2;
  font-size: 13px;
  font-weight: 400;
}

input::placeholder,
textarea::placeholder {
  color: #c2c2c2;
  font-size: 13px;
  font-weight: 400;
}

.err {
  border-color: #f00;
}

.popup_buttom {
  width: 110px;
  height: 42px;
  line-height: 42px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#5861cc), to(#5861cc)), -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#ffffff));
  background-image: -webkit-linear-gradient(#5861cc, #5861cc), -webkit-linear-gradient(#ffffff, #ffffff);
  background-image: -moz-linear-gradient(#5861cc, #5861cc), -moz-linear-gradient(#ffffff, #ffffff);
  background-image: -o-linear-gradient(#5861cc, #5861cc), -o-linear-gradient(#ffffff, #ffffff);
  background-image: linear-gradient(#5861cc, #5861cc), linear-gradient(#ffffff, #ffffff);
  background-blend-mode: normal, normal;
  border-radius: 4px;
  text-align: center;
  font-size: 14px;
  color: #ffffff;
  margin: 0 auto;
  cursor: pointer;
}
.popup_buttom:not(.btnDisable):hover {
  background: #6672fa;
}

.btnDisable {
  background: #c5c5c5;
  cursor: not-allowed;
}

.pop_hint_name {
  position: absolute;
  top: 175px;
  left: 90px;
  width: 200px;
  color: #ff2222;
  font-size: 13px;
}

.pop_hint_tel {
  position: absolute;
  top: 244px;
  left: 90px;
  width: 200px;
  color: #ff2222;
  font-size: 13px;
}

.pop_hint_remark {
  position: absolute;
  top: 467px;
  left: 90px;
  width: 200px;
  color: #ff2222;
  font-size: 13px;
}

.pop_input_name_red {
  color: #ff2222;
}

.pop_input_red {
  border: solid 1px #ff2222;
  color: #ff2222;
}

.pop_input_red::-webkit-input-placeholder {
  color: #ff2222;
}

.pop_input_red:-moz-placeholder {
  color: #ff2222;
}

.pop_input_red::-moz-placeholder {
  color: #ff2222;
}

.pop_input_red:-ms-input-placeholder {
  color: #ff2222;
}

.pop_input_red::-ms-input-placeholder {
  color: #ff2222;
}

.pop_input_red::placeholder {
  color: #ff2222;
}

.state {
  position: absolute;
  bottom: 50px;
  right: 80px;
  text-align: center;
  font-size: 13px;
  color: #333;
}
/* basic */
.swiper-container {
  position: relative;
  overflow: hidden;
}

.swiper-container,
.swiper-wrapper {
  padding: 0;
  margin: 0;
  width: 100%;
}

.swiper-slide {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  overflow: hidden;

}
/* .swiper-slide a,
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
} */

/* plugin pagination */
.swiper-plugin-pagination {
  display: block;
  position: absolute;
  bottom: .26rem;
  left: 50%;
  width: 100%;
  font-size: 0;
  text-align: center;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}
.swiper-plugin-pagination__item {
  display: inline-block;
  margin: 0 .1rem;
  width: .14rem;
  height: .14rem;
  border-radius: 50% !important;
  border: none;
  background: #fff;
  -webkit-transition: background ease 0.2s;
  -o-transition: background ease 0.2s;
  -moz-transition: background ease 0.2s;
  transition: background ease 0.2s;
  cursor: pointer;
  opacity: 0.3;
}
.swiper-plugin-pagination__item.is-active {
  background: #fff;
  opacity: 1;
}

/* image lazyload */
.swiper-lazy {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  -webkit-transition: all ease 300ms;
  -o-transition: all ease 300ms;
  -moz-transition: all ease 300ms;
  transition: all ease 300ms;
}

.swiper-lazy-preloader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.swiper-lazy-loaded {
  opacity: 1;
}

.swiper-lazy-preloader::after {
  display: block;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -0.3rem 0 0 -0.3rem;
  width: .6rem;
  height: .6rem;
  border: .04rem solid rgba(0, 0, 0, 0.88);
  border-radius: 50%;
  border-bottom-color: transparent;
  -webkit-transform-origin: 50%;
     -moz-transform-origin: 50%;
       -o-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-animation: rotate 1s infinite linear;
     -moz-animation: rotate 1s infinite linear;
       -o-animation: rotate 1s infinite linear;
          animation: rotate 1s infinite linear;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate3d(0, 0, 0, 0);
            transform: rotate3d(0, 0, 0, 0);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
            transform: rotate3d(0, 0, 1, 360deg);
  }
}

@-moz-keyframes rotate {
  0% {
    -moz-transform: rotate3d(0, 0, 0, 0);
         transform: rotate3d(0, 0, 0, 0);
  }
  100% {
    -moz-transform: rotate3d(0, 0, 1, 360deg);
         transform: rotate3d(0, 0, 1, 360deg);
  }
}

@-o-keyframes rotate {
  0% {
    transform: rotate3d(0, 0, 0, 0);
  }
  100% {
    transform: rotate3d(0, 0, 1, 360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate3d(0, 0, 0, 0);
       -moz-transform: rotate3d(0, 0, 0, 0);
            transform: rotate3d(0, 0, 0, 0);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
       -moz-transform: rotate3d(0, 0, 1, 360deg);
            transform: rotate3d(0, 0, 1, 360deg);
  }
}