/* 清除内外边距 */
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: 1;
}
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: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-flex-center{
  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;

}
.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;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.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);
          -ms-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;
}
body {
  min-width: 1200px;
  background: #fff;
  padding-top: 97px;
  position: relative;
}

.bodyBG {
  position: absolute;
  z-index: -1;
}

.bg-left {
  left: 0;
  top: 970px;
  width: 796px;
  height: 1005px;
  background: url("../img/ybj.png") no-repeat;
}

.bg-right {
  right: 0;
  bottom: 1634px;
  width: 844px;
  height: 812px;
  background: url("../img/zbj.png") no-repeat;
}

.bg-bottom {
  right: 0;
  left: 0;
  height: 925px;
  bottom: 113px;
  background: url("../img/dbj.png") no-repeat;
  background-position: bottom;
  -o-background-size: 100% 925px;
     background-size: 100% 925px;
}

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

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

h2 {
  font-size: 36px;
  font-weight: 600;
  font-stretch: normal;
  line-height: 36px;
  letter-spacing: 0px;
  color: #222;
}
h2 span {
  position: relative;
  display: inline-block;
  z-index: 11;
}
h2 span::before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -2px;
  left: -55px;
  width: 27px;
  height: 4px;
  background: url("../img/z.png") no-repeat;
}
h2 span::after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -2px;
  right: -55px;
  width: 27px;
  height: 4px;
  background: url("../img/y.png") no-repeat;
}

.gradient-btn {
  background-image: -webkit-gradient(linear, left top, right top, from(#7140ff), to(#9456ff)), -webkit-gradient(linear, left top, left bottom, from(#8259f6), to(#8259f6));
  background-image: -webkit-linear-gradient(left, #7140ff 0%, #9456ff 100%), -webkit-linear-gradient(#8259f6, #8259f6);
  background-image: -moz-linear-gradient(left, #7140ff 0%, #9456ff 100%), -moz-linear-gradient(#8259f6, #8259f6);
  background-image: -o-linear-gradient(left, #7140ff 0%, #9456ff 100%), -o-linear-gradient(#8259f6, #8259f6);
  background-image: linear-gradient(90deg, #7140ff 0%, #9456ff 100%), linear-gradient(#8259f6, #8259f6);
  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:hover {
  background-image: -webkit-gradient(linear, left top, right top, from(#9456ff), to(#7140ff)), -webkit-gradient(linear, left top, left bottom, from(#8259f6), to(#8259f6));
  background-image: -webkit-linear-gradient(left, #9456ff 0%, #7140ff 100%), -webkit-linear-gradient(#8259f6, #8259f6);
  background-image: -moz-linear-gradient(left, #9456ff 0%, #7140ff 100%), -moz-linear-gradient(#8259f6, #8259f6);
  background-image: -o-linear-gradient(left, #9456ff 0%, #7140ff 100%), -o-linear-gradient(#8259f6, #8259f6);
  background-image: linear-gradient(90deg, #9456ff 0%, #7140ff 100%), linear-gradient(#8259f6, #8259f6);
}

header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99999;
  background-color: #fff;
  -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);
}
header .container {
  height: 97px;
}
header .container > img {
  height: 51px;
}
header .container > span {
  font-size: 24px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #333333;
  margin-left: 18px;
}
header .container .gradient-btn {
  width: 140px;
  height: 48px;
  border-radius: 24px;
  font-size: 18px;
}

.underHeader {
  padding-top: 127px;
  color: #fff;
  height: 560px;
  background: url("../img/banner.png") no-repeat;
  -o-background-size: 100% 100%;
     background-size: 100% 100%;
}
.underHeader h1 {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -1px;
}
.underHeader h3 {
  font-size: 36px;
  letter-spacing: -1px;
  margin: 19px 0 29px;
}
.underHeader h4 {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: -1px;
  margin-bottom: 50px;
}
.underHeader .btns {
  color: #fff;
}
.underHeader .btns > div + div {
  margin-left: 40px;
}
.underHeader .btns a {
  width: 240px;
  height: 70px;
  border-radius: 35px;
  border: 2px solid #fcfbff;
  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;
  font-size: 26px;
  letter-spacing: -1px;
  padding-bottom: 0.1em;
}
.underHeader .btns a span {
  display: inline;
}
.underHeader .btns a:hover {
  background-color: #fcfbff;
  color: #5b33bf;
}
.underHeader .btns .deep {
  border: none;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#ff8f5e), to(#ffbd34)), -webkit-gradient(linear, left top, left bottom, from(#ffb924), to(#ffb924));
  background-image: -webkit-linear-gradient(bottom, #ff8f5e 0%, #ffbd34 100%), -webkit-linear-gradient(#ffb924, #ffb924);
  background-image: -moz-linear-gradient(bottom, #ff8f5e 0%, #ffbd34 100%), -moz-linear-gradient(#ffb924, #ffb924);
  background-image: -o-linear-gradient(bottom, #ff8f5e 0%, #ffbd34 100%), -o-linear-gradient(#ffb924, #ffb924);
  background-image: linear-gradient(0deg, #ff8f5e 0%, #ffbd34 100%), linear-gradient(#ffb924, #ffb924);
  background-blend-mode: normal, normal;
}
.underHeader .btns .deep:hover {
  color: #fff;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#ffbd34), to(#ff8f5e)), -webkit-gradient(linear, left top, left bottom, from(#ffb924), to(#ffb924));
  background-image: -webkit-linear-gradient(bottom, #ffbd34 0%, #ff8f5e 100%), -webkit-linear-gradient(#ffb924, #ffb924);
  background-image: -moz-linear-gradient(bottom, #ffbd34 0%, #ff8f5e 100%), -moz-linear-gradient(#ffb924, #ffb924);
  background-image: -o-linear-gradient(bottom, #ffbd34 0%, #ff8f5e 100%), -o-linear-gradient(#ffb924, #ffb924);
  background-image: linear-gradient(0deg, #ffbd34 0%, #ff8f5e 100%), linear-gradient(#ffb924, #ffb924);
}
.underHeader .btns span {
  display: block;
  font-size: 16px;
  font-weight: 300;
  margin-top: 15px;
}

.reasons {
  padding-top: 99px;
  background: #fff;
}
.reasons > h3 {
  margin: 14px 0 59px;
  font-size: 18px;
  color: #333;
}
.reasons ul li {
  width: 380px;
  height: 180px;
  background-color: #ffffff;
  border-radius: 8px;
  border: solid 1px #eeeeee;
  padding: 46px 0 0 35.5px;
}
.reasons ul li:hover {
  -webkit-box-shadow: 0px 4px 20px 0px rgba(73, 32, 224, 0.3);
          box-shadow: 0px 4px 20px 0px rgba(73, 32, 224, 0.3);
  border: solid 2px #a067ff;
  padding: 45px 0 0 34.5px;
}
.reasons ul li > div {
  padding-top: 4px;
}
.reasons ul li > div h3 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
}
.reasons ul li > div h4 {
  font-size: 14px;
  color: #808080;
  margin-top: 18px;
  max-width: 196px;
}
.reasons ul li img {
  width: 76px;
  height: 76px;
  margin-right: 36.5px;
}
.reasons ul li h3 {
  font-size: 24px;
  font-weight: 600;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #222222;
}
.reasons ul li h4 {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0px;
  max-width: 185px;
  color: #666;
}
.reasons a {
  width: 240px;
  height: 70px;
  margin-top: 53px;
  border-radius: 35px;
}

.function-apply-h2 {
  margin-top: 120px;
}

.function-apply {
  margin-top: 60px;
}
.function-apply + .function-apply {
  margin-top: 160px;
}
.function-apply h2 {
  margin-bottom: 60px;
}
.function-apply .gryy_ch1 {
  padding-left: 34px;
}
.function-apply ul + ul {
  border-top: 1px dashed #e0e0e0;
}
.function-apply ul li {
  padding: 58px 0 53px;
  width: 236px;
}
.function-apply ul li + li {
  margin-left: 98px;
}
.function-apply ul li h3 {
  font-size: 24px;
  font-weight: 600;
  color: #4d4d4d;
}
.function-apply ul li h5 {
  font-size: 14px;
  line-height: 24px;
  color: #808080;
  margin-top: 13px;
  max-width: 236px;
  margin-bottom: -5px;
}

.function-more {
  margin-top: 215px;
}
.function-more ul {
  margin-top: 64px;
}
.function-more ul li {
  width: 278px;
  height: 200px;
  background-color: #ffffff;
  border-radius: 16px;
  border: solid 1px #ebebeb;
  margin-bottom: 30px;
  margin-left: 27px;
}
.function-more ul li:nth-child(4n+1) {
  margin-left: 0;
}
.function-more ul li img {
  width: 68px;
  height: 68px;
}
.function-more ul li h3 {
  font-family: MicrosoftYaHei-Bold;
  font-size: 20px;
  letter-spacing: 0px;
  color: #424242;
  margin-top: 18px;
}
.function-more ul li:hover {
  -webkit-box-shadow: 0px 4px 20px 0px rgba(73, 32, 224, 0.3);
          box-shadow: 0px 4px 20px 0px rgba(73, 32, 224, 0.3);
  border: solid 2px #a067ff;
}

footer {
  margin-top: 256px;
  padding-bottom: 51px;
}
footer h1 {
  font-size: 60px;
  font-weight: 600;
  color: #5d2bd6;
}
footer h5 {
  font-size: 36px;
  font-weight: 300;
  color: #333;
  margin: 39px 0 69px;
}
footer .gradient-btn {
  width: 320px;
  height: 80px;
  border-radius: 40px;
  font-size: 28px;
  letter-spacing: -1px;
}
footer .copyright {
  margin-top: 305px;
  font-size: 14px;
  font-weight: 300;
  font-stretch: normal;
  color: #999;
}
footer .copyright a:hover {
  color: #5d2bd6;
}
.activityBanner{
  position: fixed;
  z-index: 666;
  bottom: 0;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}
.closeAD{
  position: absolute;
  right: 44px;
  right: 0;
  top: -40px;
  top: 0;
  width: 40px;
  height: 40px;
}
