/**
* Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
* http://cssreset.com
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* custom */
a {
  color: #7e8c8d;
  text-decoration: none;
  -webkit-backface-visibility: hidden;
}

li {
  list-style: none;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  background: #f4f7fd;
  -webkit-text-size-adjust: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html {
  touch-action: manipulation;
}
input {
  appearance: none;
  -webkit-appearance: none;
}
i {
  display: block;
}
.clear {
  clear: both;
}
.clear:after {
  content: "020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
input::-ms-clear,
input::-ms-reveal {
  display: none;
}

/* 自定义 */
body,
html {
  font-family: "微软雅黑";
  min-width: 1200px;
}
body {
  background: url("../imgs/bg.png") no-repeat top;
  transition: 0.2s;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* 头部 */
header {
  width: 1200px;
  margin: 0 auto;
  height: 60px;
}
header .logo {
  font-family: "SourceHanSansCN-Heavy", "微软雅黑";
  font-size: 20px;
  color: #424242;
  font-weight: bold;
  line-height: 60px;
}
header .logo img {
  width: 51px;
  height: 32px;
  float: left;
  margin: 14px 12px 0 5px;
}
header .right {
  float: right;
  padding-top: 12px;
}
header .right .land {
  width: 112px;
  height: 36px;
  border-radius: 18px;
  border: solid 1px #28ad62;
  line-height: 34px;
  color: #28ad62;
  cursor: pointer;
  font-size: 14px;
  text-align: center;
  box-sizing: border-box;
}
header .right .land .split {
  width: 1px;
  height: 10px;
  background-color: #28ad62;
  display: inline-block;
  content: "";
  margin: 0 4px;
}
header .right .land:hover {
  color: #ffffff;
  background-image: linear-gradient(90deg, #3ec6b1 0%, #6fcdde 100%),
    linear-gradient(#4ce4ad, #4ce4ad);
  border: none;
}
header .right .land:active {
  color: #ffffff;
  background-image: linear-gradient(90deg, #32c0aa 0%, #51b5c7 100%),
    linear-gradient(#4ce4ad, #4ce4ad);
  border: none;
}
header .right .land:hover .split {
  background-color: #ffffff;
}
header .right .sign {
  margin-top: 2px;
  height: 40px;
  position: relative;
}
header .right .sign .avatar {
  width: 32px;
  height: 32px;
  border-radius: 32px;
  margin-right: 10px;
}
header .right .sign .info {
  width: 82px;
  float: right;
}
header .right .sign .info .nickname {
  overflow: hidden;
  height: 32px;
}
header .right .sign .info .nickname #nickname_text {
  font-size: 12px;
  line-height: 32px;
  color: #666666;
  width: 69px;
  float: left;
  cursor: default;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
header .right .sign .info .nickname .down {
  width: 8px;
  height: 5px;
  float: left;
  margin: 15px 0 0 5px;
}
header .right .sign .list {
  position: absolute;
  top: 40px;
  right: 0px;
  width: 137px;
  height: 90px;
  background-color: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  padding: 12px 0;
  display: none;
  box-sizing: border-box;
  z-index: 10;
}
header .right .sign:hover .list {
  display: block;
}
header .right .sign:hover .info .nickname .down {
  transform: rotate(180deg);
}
header .right .sign .list li {
  height: 32px;
  line-height: 32px;
  font-size: 14px;
  padding: 0 20px;
  color: #666666;
}
header .right .sign .list .logout {
  cursor: pointer;
}
header .right .sign .list .logout:hover {
  background-color: #f8f8f8;
  color: #28ad62;
}
header .right .none {
  display: none;
}
header .links {
  line-height: 32px;
  margin-right: 50px;
}
header .links a {
  color: #424242;
  font-size: 14px;
  margin-left: 35px;
  transition: 0.2s;
}
header .links a:hover {
  color: #28ad62;
}

/* 大标题 */
.banner {
  width: 1200px;
  height: 557px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.banner h1 {
  display: none;
}
.banner .title {
  width: 281px;
  height: 45px;
  margin: 93px 0 30px 3px;
}
.banner p {
  font-size: 20px;
  line-height: 35px;
  letter-spacing: 2.4px;
  color: #424242;
  margin-bottom: 61px;
  padding-left: 8px;
}
.banner .download {
  margin-left: 7px;
}
.banner .download:hover {
  opacity: 0.8;
}
.banner .download:active {
  background: #33cb88;
}
.banner .info {
  font-size: 12px;
  margin: 28px 0 0 2px;
  color: #666666;
  padding-left: 7px;
}
.banner .info li {
  margin-bottom: 10px;
}
.banner .bannerImg {
  position: absolute;
  left: 417px;
  top: 45px;
}

/* 下载按钮 */
.download {
  width: 200px;
  height: 60px;
  background-image: linear-gradient(267deg, #49dea5 0%, #36ce8c 100%),
    linear-gradient(#ffffff, #ffffff);
  box-shadow: 0px 3px 8px 0px rgba(0, 215, 90, 0.34);
  border-radius: 30px;
  display: block;
  text-align: center;
  font-size: 20px;
  line-height: 60px;
  color: #ffffff;
  font-weight: bold;
}
.download img {
  width: 20px;
  height: 21px;
  margin: 0 12px -4px 0;
}

.main {
  width: 1200px;
  margin: 0 auto;
  height: 2106px;
  background-color: #ffffff;
  border-radius: 63px;
}
/* 标题 */
h2 {
  font-size: 28px;
  font-weight: bold;
  color: #212121;
  padding-top: 48px;
  text-align: center;
}
h2::before,
h2::after {
  display: inline-block;
  width: 20px;
  height: 6px;
  background-color: #d6f9e5;
  border-radius: 3px;
  content: "";
  margin-bottom: 7px;
}
h2::before {
  margin-right: 20px;
}
h2::after {
  margin-left: 20px;
}

/* 功能展示 */
.funcs {
  height: 621px;
}
.funcs .flex {
  padding: 41px 30px 0 30px;
  box-sizing: border-box;
}
.funcs .flex li {
  width: 360px;
  height: 138px;
  background-color: #fafafa;
  border-radius: 16px;
  margin-bottom: 30px;
}
.funcs .flex li img {
  width: 90px;
  height: 90px;
  float: left;
  margin: 24px 21px 24px 24px;
}
.funcs .flex li h3 {
  font-size: 20px;
  color: #424242;
  font-weight: bold;
  margin: 49px 0 11px 0;
}
.funcs .flex li p {
  font-size: 17px;
  color: #cccccc;
  font-family: "Arial-BoldMT", "微软雅黑";
  font-weight: bold;
}

/* 软件特色 */
.special h2 {
  padding-top: 52px;
}
.special ul {
  margin-top: 21px;
}
.special ul li {
  width: 100%;
  height: 280px;
}
.special ul li img {
  width: 480px;
  height: 280px;
}
.special ul li .content {
  float: left;
  padding-left: 74px;
}
.special ul li .leftImg {
  float: left;
  margin: 0 129px 0 41px;
}
.special ul li .rightImg {
  float: right;
  margin-right: 48px;
}
.special ul li h3 {
  font-size: 28px;
  font-weight: bold;
  color: #333333;
  padding: 84px 0 18px;
}
.special ul li p {
  font-size: 20px;
  line-height: 36px;
  color: #666666;
}

/* 用户评价 */
.remarks {
  position: relative;
}
.remarks h2 {
  padding-top: 59px;
}
.remarks .content {
  padding-top: 79px;
  width: 1070px;
  margin: 0 auto;
  height: 420px;
  box-sizing: border-box;
}
.remarks .content .list li {
  width: 320px;
  height: 296px;
  background-color: #ffffff;
  box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  text-align: center;
  margin: 0 20px;
  padding: 80px 37px 0 37px;
  float: left;
  position: relative;
  box-sizing: border-box;
}
.remarks .content .list li .remarksAvatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  position: absolute;
  left: 115px;
  top: -35px;
}
.remarks .content .list li .name {
  font-size: 18px;
  color: #333333;
}
.remarks .content .list li .work {
  font-size: 12px;
  color: #999999;
  margin: 14px 0 17px 0;
}
.remarks .content .list li .split {
  width: 100%;
  height: 1px;
  background-color: #d9d9d9;
  margin: 6px auto 35px;
  position: relative;
}
.remarks .content .list li .split::before {
  display: block;
  content: "";
  width: 66px;
  height: 3px;
  background: #3bc996;
  position: absolute;
  left: 90px;
  top: -2px;
}
.remarks .content .list li .desc {
  font-size: 12px;
  line-height: 21px;
  color: #666666;
  text-align: left;
}
.swiperButtonPrev,
.swiperButtonNext {
  width: 34px;
  height: 34px;
  opacity: 0.8;
  position: absolute;
  top: 284px;
  cursor: pointer;
  outline: none;
}
.swiperButtonPrev img,
.swiperButtonNext img {
  width: 34px;
  height: 34px;
}
.swiperButtonPrev {
  left: 30px;
}
.swiperButtonNext {
  right: 20px;
}
.arrowHover {
  display: none;
}
.swiperButtonPrev:hover .arrowHover,
.swiperButtonNext:hover .arrowHover {
  display: block;
}
.swiperButtonPrev:hover .arrow,
.swiperButtonNext:hover .arrow {
  display: none;
}

/* 页脚 */
footer {
  height: 93px;
  line-height: 93px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: #e7fff6;
}
footer a {
  color: #e7fff6;
}
footer a:hover {
  opacity: 0.8;
}

/* 固定下载 */
.fix {
  height: 100px;
  width: 100%;
  line-height: 100px;
  background-image: linear-gradient(90deg, #15afcb 0%, #1cc57b 100%),
    linear-gradient(#007aff, #007aff);
  position: fixed;
  bottom: 0;
  z-index: 10;
  padding-top: 20px;
  box-sizing: border-box;
  display: none;
}
.fix .container {
  width: 1200px;
  margin: 0 auto;
}
.fix .download {
  float: right;
  background: #ffffff;
  color: #3bc996;
  box-shadow: 0px 3px 8px 0px rgba(4, 130, 89, 0.34);
}
.fix .download:hover {
  background-color: #dafff3;
}
.fix .download:active {
  background-color: #ccfcec;
}

/* 底部下载 */
.down-box {
  width: 1200px;
  margin: 50px auto 0;
  height: 500px;
  background: url("../imgs/down-box.png") no-repeat center;
  padding-top: 54px;
  box-sizing: border-box;
}
.down-box .logo {
  display: block;
  width: 190px;
  height: 191px;
  margin: 0 auto;
}
.down-box h3 {
  font-size: 36px;
  color: #ffffff;
  margin: 16px 0 68px;
  text-align: center;
  font-weight: bold;
}
.down-box .download {
  margin: 0 auto;
  background-image: linear-gradient(-82deg, #ffd428 0%, #ffd735 100%),
    linear-gradient(#ffd554, #ffd554);
  color: #094c44;
  box-shadow: 0px 3px 8px 0px rgba(4, 130, 89, 0.34);
}
.down-box .download:hover {
  background: #ffdb4e;
}
.down-box .download:active {
  background: #fabf20;
}
.sidebar {
  width: 60px;
  height: 70px;
  background-color: #ffffff;
  box-shadow: 0px 2px 20px 0px rgba(3, 3, 3, 0.12);
  border-radius: 4px;
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.sidebar i {
  display: block;
  background: url("../imgs/customer.png") no-repeat;
  width: 24px;
  height: 22px;
  margin: 16px auto 5px;
}
.sidebar b {
  font-size: 12px;
  color: #b9b9b9;
  text-align: center;
  display: block;
  font-weight: normal;
}
.sidebar:hover .sidebar-hover {
  display: block;
}
.sidebar:hover b {
  color: #47dca2;
}
.sidebar:hover i {
  background: url("../imgs/customerHover.png") no-repeat;
}
.sidebar .sidebar-hover {
  width: 120px;
  background: #ffffff;
  box-shadow: 0px 0px 10px 1px rgba(228, 228, 255, 0.68);
  border-radius: 16px 16px 16px 16px;
  border: 1px solid rgba(0, 0, 0, 0);
  position: absolute;
  right: 75px;
  top: 0px;
  display: none;
}
.sidebar .sidebar-hover em {
  width: 0;
  height: 0;
  border-left: 13px solid #fff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  position: absolute;
  right: -14px;
  top: 24px;
}
.sidebar .sidebar-hover span {
  font-size: 12px;
  color: #666;
  display: block;
  text-align: center;
  margin: 14px 0 5px;
}
.sidebar .sidebar-hover img {
  width: 100px;
  height: 100px;
  display: block;
  margin: 0 auto 10px;
}
