/* 清除内外边距 */
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;
}
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: #555;
  outline: none;
  -moz-outline: none;
}
// a:hover{color: #f60;}
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;
}
.d-none {
  display: none;
}
.d-block {
  display: block;
}
.d-inline-block {
  display: inline-block;
}
.d-inline {
  display: inline;
}
.d-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.d-inline-flex {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.flex-column {
  -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;
}
.row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
     -moz-box-orient: horizontal;
     -moz-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.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;
}
.w-100 {
  width: 100%;
}
.h-100 {
  height: 100%;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.text-primary {
  color: #f6891d;
}
.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;
}
@charset "UTF-8";
body {
  min-width: 1200px;
  background: #f5f3f9;
  padding-top: 95px;
  background: url("../img/bg.png") no-repeat;
}

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

.container-10px {
  width: 1220px;
  margin: 0 auto;
  padding: 10px;
}

h2 {
  font-size: 42px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 42px;
  letter-spacing: 0px;
  color: #333;
  position: relative;
}
h2::after {
  content: "";
  position: absolute;
  top: 74px;
  left: 50%;
  margin-left: -28.5px;
  width: 57px;
  height: 6px;
  background-color: #6634ff;
  border-radius: 3px;
}

.gradient-btn {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#6671ff), to(#6634ff)), -webkit-gradient(linear, left top, left bottom, from(#f6891d), to(#f6891d));
  background-image: -webkit-linear-gradient(top, #6671ff 0%, #6634ff 100%), -webkit-linear-gradient(#f6891d, #f6891d);
  background-image: -moz-linear-gradient(top, #6671ff 0%, #6634ff 100%), -moz-linear-gradient(#f6891d, #f6891d);
  background-image: -o-linear-gradient(top, #6671ff 0%, #6634ff 100%), -o-linear-gradient(#f6891d, #f6891d);
  background-image: linear-gradient(180deg, #6671ff 0%, #6634ff 100%), linear-gradient(#f6891d, #f6891d);
  background-blend-mode: normal, normal;
  font-family: MicrosoftYaHei-Bold;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0px;
  color: #ffffff;
  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;
}
.gradient-btn img {
  margin-left: 20px;
}
.gradient-btn span {
  margin-top: -0.1em;
}
.gradient-btn .bottomBtnText {
  font-weight: 400;
  margin-top: 8px;
  display: block;
}
.gradient-btn:hover {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#6634ff), to(#6671ff)), -webkit-gradient(linear, left top, left bottom, from(#f6891d), to(#f6891d));
  background-image: -webkit-linear-gradient(top, #6634ff 0%, #6671ff 100%), -webkit-linear-gradient(#f6891d, #f6891d);
  background-image: -moz-linear-gradient(top, #6634ff 0%, #6671ff 100%), -moz-linear-gradient(#f6891d, #f6891d);
  background-image: -o-linear-gradient(top, #6634ff 0%, #6671ff 100%), -o-linear-gradient(#f6891d, #f6891d);
  background-image: linear-gradient(180deg, #6634ff 0%, #6671ff 100%), linear-gradient(#f6891d, #f6891d);
}

header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99999;
}
header .container {
  height: 95px;
}
header .container > img {
  height: 35px;
}
header .container ul li + li {
  margin-left: 40px;
}
header .container a {
  color: #ccbbff;
  font-size: 14px;
}
header .container a:hover {
  color: #fff;
}
header .container .download {
  display: block;
  width: 83px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  color: #6435f5;
  background-color: #fff;
  border-radius: 4px;
}
header .container .download:hover {
  background-color: #e6deff;
  color: #6435f5;
}

.underHeader {
  margin-top: 43px;
  color: #fff;
}
.underHeader > .img {
  width: 620px;
  height: 473px;
  background: url("../img/mac.png");
  padding: 23px 23px 0;
}
.underHeader a {
  width: 249px;
  height: 78px;
  display: block;
  background-color: #fff;
  border-radius: 8px;
  color: #6435f5;
  margin-bottom: 12px;
  font-size: 32px;
  font-stretch: normal;
  line-height: 32px;
  letter-spacing: 0px;
  color: #6435f5;
}
.underHeader a img {
  width: 21px;
  height: 28px;
  margin-left: 21px;
}
.underHeader a span {
  margin-top: -0.1em;
}
.underHeader a:hover {
  background-color: #e6deff;
}
.underHeader .contactUs {
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0px;
  color: #ffffff;
  margin-top: 13px;
  cursor: pointer;
}
.underHeader .count {
  margin-top: 28px;
}
.underHeader .count .downloadCount {
  margin-right: 49px;
}
.underHeader .count h4 {
  font-size: 30px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0px;
  margin-bottom: 19px;
}
.underHeader .count h6 {
  font-size: 14px;
  font-weight: 300;
}
.underHeader h1 {
  font-size: 48px;
  font-weight: 600;
  font-stretch: normal;
  line-height: 48px;
  letter-spacing: 0px;
}
.underHeader h3 {
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0px;
  margin: 30px 0 47px;
}
.underHeader p {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0px;
  color: #ccbbff;
}

.functions {
  margin-top: 70px;
}
.functions .icons {
  margin-bottom: 41px;
}
.functions .icons li + li {
  margin-left: 20px;
}
.functions .icons a {
  width: 155px;
  color: #fff;
  height: 154px;
  background-color: #5a30de;
  border-radius: 10px;
}
.functions .icons a img {
  width: 52px;
  height: 52px;
  margin-bottom: 13.5px;
}
.functions .icons a span {
  font-size: 15px;
  line-height: 15px;
}
.functions .icons a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.functions .noIcons {
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 7px 7px rgba(90, 48, 222, 0.1);
          box-shadow: 0px 0px 7px 7px rgba(90, 48, 222, 0.1);
}
.functions .noIcons li {
  width: -webkit-calc(100% / 9);
  width: -moz-calc(100% / 9);
  width: calc(100% / 9);
  height: 80px;
  background-color: #ffffff;
}
.functions .noIcons li:nth-child(even) {
  background-color: #f7f9ff;
}
.functions .noIcons li:first-child {
  border-top-left-radius: 10px;
}
.functions .noIcons li:last-child {
  border-bottom-right-radius: 10px;
}
.functions .noIcons li:nth-child(10) {
  border-bottom-left-radius: 10px;
}
.functions .noIcons li:nth-child(9) {
  border-top-right-radius: 10px;
}
.functions .noIcons li:hover {
  -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.1);
  color: #6435f5;
}
.functions .noIcons li a {
  display: block;
  line-height: 80px;
  text-align: center;
}
.functions .noIcons li a:hover {
  color: #6435f5;
}

.reasons {
  margin-top: 110px;
}
.reasons ul {
  margin-top: 98px;
}
.reasons ul .imgWrapper {
  width: 211px;
  height: 210px;
  border-radius: 120px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 24px 0px rgba(144, 165, 255, 0.19);
          box-shadow: 0px 0px 24px 0px rgba(144, 165, 255, 0.19);
  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;
}
.reasons ul .imgWrapper img {
  width: 88px;
  height: 88px;
}
.reasons ul h3 {
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0px;
  color: #333;
  margin: 45px 0 23px;
}
.reasons ul h4 {
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: 0px;
  max-width: 13em;
  color: #808080;
}
.reasons a {
  width: 240px;
  height: 70px;
  margin-top: 53px;
  border-radius: 35px;
}

.greatEditor {
  margin-top: 129px;
}
.greatEditor > div {
  margin-top: 120px;
}
.greatEditor > div > img {
  height: 482px;
}
.greatEditor > div h3 {
  font-size: 36px;
  line-height: 36px;
  letter-spacing: 0px;
  color: #333;
}
.greatEditor > div h4 {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0px;
  color: #999;
  margin: 33px 0 58px;
  max-width: 493px;
}
.greatEditor > div a {
  width: 240px;
  height: 70px;
  border-radius: 35px;
}
.greatEditor .banner1 {
  padding-top: 81px;
}
.greatEditor .banner2 {
  padding-top: 96px;
}

/* 轮播反馈 */
.comments {
  margin-top: 128px;
}
.comments h2 + h3 {
  text-align: center;
  margin: 24px 0 60px;
  line-height: 1;
  font-size: 16px;
  letter-spacing: 1px;
  color: #999999;
}
.comments .swiper-wrapper {
  width: 1200px;
  margin: 78px auto 70px;
  position: relative;
}
.comments .swiper-wrapper .swiper-left {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 23px;
  top: 50%;
  margin-top: -23px;
  left: 0;
  cursor: pointer;
  background: url("../img/prevIcon.png") no-repeat;
  background-position: center;
}
.comments .swiper-wrapper .swiper-left:hover {
  background-image: url("../img/prevIcon_active.png");
}
.comments .swiper-wrapper .swiper-right {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 23px;
  top: 50%;
  margin-top: -23px;
  right: 0;
  cursor: pointer;
  background: url("../img/nextIcon.png") no-repeat;
  background-position: center;
}
.comments .swiper-wrapper .swiper-right:hover {
  background-image: url("../img/nextIcon_active.png");
}
.comments .swiper-wrapper .swiper {
  width: 1060px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  height: 450px;
}
.comments .swiper-wrapper .swiper .swiper-o {
  position: absolute;
  margin-top: 40px;
}
.comments .swiper-wrapper .swiper .swiper-o .swiper-row {
  width: 340px;
  height: 400px;
  background: #fff;
  float: left;
  margin: 0 8px;
  -webkit-box-shadow: 0px 1px 10px 0px rgba(45, 41, 41, 0.09);
          box-shadow: 0px 1px 10px 0px rgba(45, 41, 41, 0.09);
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 35px;
}
.comments .swiper-wrapper .swiper .swiper-o .swiper-row .headPortrait {
  width: 90px;
  height: 90px;
  border-radius: 45px;
}
.comments .swiper-wrapper .swiper .swiper-o .swiper-row h4 {
  font-size: 15px;
  line-height: 15px;
  letter-spacing: 1px;
  color: #333;
  margin: 37px 0 7px;
}
.comments .swiper-wrapper .swiper .swiper-o .swiper-row h5 {
  font-size: 13px;
  line-height: 13px;
  letter-spacing: 1px;
  color: #999;
  position: relative;
}
.comments .swiper-wrapper .swiper .swiper-o .swiper-row h5::after {
  content: "";
  position: absolute;
  width: 68px;
  height: 1px;
  background-color: #d5d4d4;
  bottom: -24px;
  left: 50%;
  margin-left: -34px;
}
.comments .swiper-wrapper .swiper .swiper-o .swiper-row h6 {
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 1px;
  color: #444444;
  margin-top: 44px;
  padding: 0 44px;
  max-width: 100%;
}

footer {
  background: #282829;
  padding: 80px 0 23px;
}
footer h1 {
  font-size: 52px;
  font-weight: 500;
  line-height: 52px;
  letter-spacing: 0px;
  color: #ffffff;
}
footer h5 {
  font-size: 26px;
  line-height: 26px;
  letter-spacing: 0px;
  color: #ffffff;
  margin: 31px 0 39px;
}
footer .gradient-btn {
  width: 240px;
  height: 71px;
  border-radius: 36px;
}
footer .gradient-btn img {
  margin-right: 20px;
  margin-left: 0;
}
footer .gradient-btn h6 {
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0px;
  color: #ffffff;
}
footer .gradient-btn span {
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 0px;
  color: #ffffff;
  margin-top: 8px;
}
footer .copyright {
  margin-top: 76px;
  color: #666;
  font-size: 12px;
}
footer .copyright a {
  color: #666;
}
footer .copyright a:hover {
  color: #fff;
}

.modalLayer {
  z-index: 10;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.modalLayer .card {
  width: 384px;
  height: 385px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -192px;
  margin-top: -192.5px;
  background-color: #fff;
  border-radius: 4px;
  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;
  -webkit-box-shadow: 0 0 14px 6px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 14px 6px rgba(0, 0, 0, 0.3);
}
.modalLayer .card .header {
  padding-left: 20px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  color: #666666;
  background-color: #f7f7f7;
  position: relative;
  border-radius: 4px 4px 0 0;
}
.modalLayer .card .header .closeLayer {
  position: absolute;
  right: 14px;
  top: 14px;
  cursor: pointer;
  width: 12px;
  height: 12px;
  background: url("../img/closeDialog.png") no-repeat;
  background-position: center;
}
.modalLayer .card .header .closeLayer:hover {
  background-image: url("../img/closeDialogActive.png");
}
.modalLayer .card .form {
  padding: 8px 30px 30px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.modalLayer .card .form .subtitle {
  font-size: 14px;
  color: #999999;
  margin-bottom: 30px;
}
.modalLayer .card .form .label {
  margin-top: 22px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.modalLayer .card .form .label input,
.modalLayer .card .form .label textarea {
  resize: none;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 2px;
  border: solid 1px #ddd;
  line-height: 32px;
  min-height: 32px;
  font-size: 14px;
  outline: none;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.modalLayer .card .form .label input::-webkit-input-placeholder, .modalLayer .card .form .label textarea::-webkit-input-placeholder {
  color: #9d9d9d;
  font-size: 13px;
  font-family: "微软雅黑";
}
.modalLayer .card .form .label input:-moz-placeholder, .modalLayer .card .form .label textarea:-moz-placeholder {
  color: #9d9d9d;
  font-size: 13px;
  font-family: "微软雅黑";
}
.modalLayer .card .form .label input::-moz-placeholder, .modalLayer .card .form .label textarea::-moz-placeholder {
  color: #9d9d9d;
  font-size: 13px;
  font-family: "微软雅黑";
}
.modalLayer .card .form .label input:-ms-input-placeholder, .modalLayer .card .form .label textarea:-ms-input-placeholder {
  color: #9d9d9d;
  font-size: 13px;
  font-family: "微软雅黑";
}
.modalLayer .card .form .label input::-ms-input-placeholder, .modalLayer .card .form .label textarea::-ms-input-placeholder {
  color: #9d9d9d;
  font-size: 13px;
  font-family: "微软雅黑";
}
.modalLayer .card .form .label input::placeholder,
.modalLayer .card .form .label textarea::placeholder {
  color: #9d9d9d;
  font-size: 13px;
  font-family: "微软雅黑";
}
.modalLayer .card .form .label textarea {
  min-height: 130px;
  overflow-y: auto;
}
.modalLayer .card .form .label .title {
  position: relative;
  line-height: 32px;
  margin-right: 10px;
  font-size: 14px;
  border-left: none;
  padding-left: 0;
  font-weight: 400;
}
.modalLayer .card .form .label .required::after {
  content: "*";
  color: #ff3434;
  font-size: 16px;
  position: absolute;
  top: 35%;
  left: 0;
  -webkit-transform: translate(-130%, -30%);
     -moz-transform: translate(-130%, -30%);
       -o-transform: translate(-130%, -30%);
          transform: translate(-130%, -30%);
}
.modalLayer .card .form .label .error-border {
  border-color: #f00;
}
.modalLayer .card .form .label p {
  position: absolute;
  top: 100%;
  left: 52px;
  line-height: 22px;
  font-size: 12px;
}
.modalLayer .card .form .formCommit {
  width: 100px;
  height: 34px;
  line-height: 34px;
  border-radius: 20px;
  text-align: center;
  background-color: #6132f2;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  margin-top: 22px;
}

.mask {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 11;
}

.alert {
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 400px;
  height: 220px;
  margin-top: -110px;
  margin-left: -185px;
  -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);
}
.alert .header {
  font-size: 18px;
  padding: 20px;
  border-bottom: 1px solid #ddd;
}
.alert .header .closeAlert {
  width: 12px;
  height: 12px;
  cursor: pointer;
  background: url("../img/closeDialog.png") no-repeat;
  -o-background-size: cover;
     background-size: cover;
}
.alert .header .closeAlert:hover {
  background-image: url("../img/closeDialogActive.png");
}
.alert .header + div {
  background-color: #fff;
  color: #666;
}
.alert .header + div .btns {
  margin-top: 40px;
}
.alert .header + div .btns .btn {
  width: 120px;
  height: 35px;
  border: 1px solid #ddd;
  border-radius: 4px;
  line-height: 33px;
  text-align: center;
  cursor: pointer;
}
.alert .header + div .btns .btn + .btn {
  margin-left: 30px;
}
.alert .header + div .btns .active {
  background-color: #8b51ff;
  border-color: #8b51ff;
  color: #fff;
}

.text-error {
  color: #f00;
}