/* 清除内外边距 */
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-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-center{
  -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;
}
.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;
}
.line3 {
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* 轮播反馈 */
#feedback{
  text-align: center;
}
.feedback-wrap{
  width: 1200px;
  height: 607px;
  margin: 0 auto;
}
.feedback-wrap h2{
  font-family: MicrosoftYaHei;
	font-size: 42px;
	font-weight: normal;
	font-stretch: normal;
	line-height: 42px;
	letter-spacing: 2px;
  color: #333333;
  margin-bottom: 64px;
  text-align: center;
}
.swiperUnit{
  padding: 29px 20px;
}
.swiperUnit img{
  height: 73px;
  width: 73px;
  border-radius: 50%;
}
.swiperUnit h3{
  font-family: MicrosoftYaHei-Bold;
	font-size: 16px;
	line-height: 22px;
	letter-spacing: 0px;
  color: #333333;
  margin-top: 20px;
  margin-bottom: 10px;
}
.swiperUnit .position{
	font-family: MicrosoftYaHei;
	font-size: 12px;
	line-height: 22px;
	letter-spacing: 0px;
	color: #999999;
}
.swiperUnit .divider{
	width: 244px;
	height: 1px;
  background-color: #dddddd;
  margin-top: 15px;
  margin-bottom: 41px;
}
.swiperUnit .content{
	font-family: MicrosoftYaHei;
	font-size: 14px;
	line-height: 24px;
  letter-spacing: 0px;
  width: 241px;
  text-align: left;
	color: #444444;
}
#certify {
	position: relative;
	width: 1200px;
	margin: 0 auto
}
#certify .swiper-container{
    width: 940px;
    overflow: visible;
}
#certify  .swiper-slide {
	width: 285px!important;
	height: 435px!important;
	background: #fff;
    -webkit-box-shadow: 0 0 10px #ddd;
            box-shadow: 0 0 10px #ddd;
    border-radius: 10px;
}

.swiper-button-prev {
	left: 0;
	width: 45px;
	height: 45px;
}

.swiper-button-next {
	right: 0;
	width: 45px;
	height: 45px;
}

.swiper-button-next::after,
.swiper-button-prev::after{
    content: unset;
}
.swiper-button-prev, 
.swiper-container-rtl .swiper-button-next,
.swiper-button-next, 
.swiper-container-rtl .swiper-button-prev{
    outline: unset;
    background: unset!important;
    background-image: none!important;
}

body {
  min-width: 1200px;
  background: url("../img/banner.png") no-repeat;
  background-position: center top;

}

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

.download {
  cursor: pointer;
  background: #ffad0f;
  text-align: 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;
  -webkit-box-shadow: 0px 2px 0px 0px rgba(255, 219, 184, 0.27), 0px 3px 0px 0px rgba(246, 137, 29, 0.65);
          box-shadow: 0px 2px 0px 0px rgba(255, 219, 184, 0.27), 0px 3px 0px 0px rgba(246, 137, 29, 0.65);
}
.download:hover {
  background: #ff9327;
}

.header .container {
  height: 87px;
  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: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header .left {
  display: inline-block;
  line-height: 47px;
  height: 47px;
  font-size: 0;
  color: #fff;
}
.header .left img {
  width: 47px;
  height: 47px;
  margin-right: 16px;
  vertical-align: middle;
}
.header .left span {
  font-size: 22px;
  line-height: 47px;
  letter-spacing: 1px;
  vertical-align: middle;
}

.banner {
  height: 585px;
  background-position: center;
  padding-top: 310px;
  color: #fff;
}
.banner .btns a {
  width: 230px;
  height: 66px;
  border-radius: 33px;
  border: solid 3px #ffffff;
  color: #fff;
  font-size: 32px;
  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;
  letter-spacing: 0px;
}
.banner .btns a:hover {
  background-color: #ffffff;
  color: #3258e9;
}
.banner .btns a:hover span i {
  display: block;
}
.banner .btns a span {
  position: relative;
  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;
  height: 100%;
}
.banner .btns a span i {
  display: none;
  position: absolute;
  white-space: nowrap;
  right: 1px;
  top: -14px;
  color: #3870f1;
  font-size: 18px;
  line-height: 32px;
  padding: 0 11px;
  border-radius: 3px;
  background-color: #fff;
  -webkit-transform: translate(100%, -100%);
     -moz-transform: translate(100%, -100%);
       -o-transform: translate(100%, -100%);
          transform: translate(100%, -100%);
}
.banner .btns a span i::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  border-left: 8px solid #fff;
  border-right: 8px solid transparent;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  -webkit-transform: translateY(50%);
     -moz-transform: translateY(50%);
       -o-transform: translateY(50%);
          transform: translateY(50%);
}
.banner .btns .deep {
  background-color: #ffb619;
  margin-right: 23px;
  border: none;
}
.banner .btns .deep:hover {
  color: #fff;
  background-color: #ff9327;
}
.banner .btns .deep span i {
  top: -11px;
}

.abilities {
  margin-top: 62px;
  padding-bottom: 135px;
  position: relative;
}
.abilities h2 {
  font-size: 42px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 40px;
  letter-spacing: 0px;
  color: #333333;
  text-align: center;
  line-height: 1;
  margin-top: 74px;
}
.abilities .list1 {
  font-size: 0;
  text-align: left;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.abilities .list1 li {
  text-align: center;
  display: inline-block;
  width: 264px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  margin-left: 33px;
  margin-top: 72px;
}
.abilities .list1 li > a {
  display: inline-block;
  position: relative;
  margin-top: 30px;
}
.abilities .list1 li > a img {
  width: 106px;
  height: 106px;
}
.abilities .list1 li > a span {
  font-size: 26px;
  line-height: 40px;
  color: #333;
  margin: 20px 0;
}
.abilities .list1 li > a .desc {
  display: block;
  max-width: 17em;
  line-height: 24px;
  color: #666;
  font-size: 16px;
  text-align: left;
}
.abilities .list1 li > a > * {
  display: block;
  margin: 0 auto;
}
.abilities .list1 li:hover {
  background: rgba(255, 255, 255, 0.07);
}
.abilities .list1 li:nth-child(4n+1) {
  margin-left: 0;
}

.radiusContent {
  background: #fff;
  overflow: hidden;
  border-top-right-radius: 100px;
  border-bottom-left-radius: 100px;
}
.radiusContent .animate1 {
  position: relative;
  height: 544px;
}
.radiusContent .animate1 .img1 .highLight {
  height: 30px;
  line-height: 30px;
  background: #ffaa3b;
  opacity: 0.35;
  width: 0px;
  -webkit-animation: highLight 9s infinite;
     -moz-animation: highLight 9s infinite;
       -o-animation: highLight 9s infinite;
          animation: highLight 9s infinite;
  position: absolute;
  left: 522px;
  top: 235px;
}
.radiusContent .animate1 .img1 .dashLine {
  height: 0;
  width: 0;
  border-bottom: 2px dashed #f6891d;
  -webkit-animation: dashLine 9s infinite;
     -moz-animation: dashLine 9s infinite;
       -o-animation: dashLine 9s infinite;
          animation: dashLine 9s infinite;
  position: absolute;
  left: 367px;
  top: 355px;
}
.radiusContent .animate1 .img1 .text {
  float: right;
  margin-top: 106px;
}
.radiusContent .animate1 .img1 .text h2 {
  font-size: 42px;
  line-height: 42px;
  color: #333;
  position: relative;
  margin-bottom: 58px;
}
.radiusContent .animate1 .img1 .text h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -28px;
  width: 62px;
  height: 6px;
  border-radius: 3px;
  background: #f6891d;
}
.radiusContent .animate1 .img1 .text h3 {
  max-width: 291px;
  font-size: 18px;
  line-height: 28px;
  color: #999;
  margin-bottom: 54px;
}
.radiusContent .animate1 .img1 .text .download {
  display: block;
  width: 260px;
  height: 68px;
  line-height: 68px;
  border-radius: 35px;
  font-size: 26px;
  color: #fff;
}
.radiusContent .animate1 .img1 .text .download > * {
  vertical-align: middle;
}
.radiusContent .animate1 .img1 .text .download img {
  display: inline-block;
  margin-left: 7px;
  width: 24px;
  height: 24px;
}
.radiusContent .animate1 .img1 .animation {
  position: absolute;
  right: 365px;
  top: 0;
  bottom: 0;
  width: 899px;
  background: url("../img/pic1/1.png") no-repeat;
  background-position: left;
  -o-background-size: cover;
     background-size: cover;
}
.radiusContent .animate1 .img1 .animation .icon {
  position: absolute;
}
.radiusContent .animate1 .img1 .animation .iconImage {
  top: 66px;
  left: 64px;
  width: 108px;
  height: 100px;
}
.radiusContent .animate1 .img1 .animation .iconPage {
  width: 97px;
  height: 93px;
  right: 10px;
  top: 0;
}
.radiusContent .animate1 .img1 .animation .iconTree {
  left: 89px;
  bottom: 72px;
  width: 57px;
  height: 103px;
}
.radiusContent .animate1 .img1 .animation .iconPerson {
  right: 19px;
  bottom: 49px;
  width: 157px;
  height: 258px;
}
.radiusContent .animate2 {
  position: relative;
  height: 505px;
  margin-top: 139px;
}
.radiusContent .animate2 .img2 .text {
  float: left;
  margin-top: 69px;
}
.radiusContent .animate2 .img2 .text h2 {
  font-size: 42px;
  line-height: 42px;
  color: #333;
  position: relative;
  margin-bottom: 58px;
}
.radiusContent .animate2 .img2 .text h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -28px;
  width: 62px;
  height: 6px;
  border-radius: 3px;
  background: #f6891d;
}
.radiusContent .animate2 .img2 .text h3 {
  max-width: 269px;
  font-size: 18px;
  line-height: 28px;
  color: #999;
  margin-bottom: 54px;
}
.radiusContent .animate2 .img2 .text .download {
  display: block;
  width: 260px;
  height: 68px;
  line-height: 68px;
  border-radius: 35px;
  font-size: 26px;
  color: #fff;
}
.radiusContent .animate2 .img2 .text .download > * {
  vertical-align: middle;
}
.radiusContent .animate2 .img2 .text .download img {
  display: inline-block;
  margin-left: 7px;
  width: 24px;
  height: 24px;
}
.radiusContent .animate2 .img2 .animation {
  position: absolute;
  left: 390px;
  top: 0;
  bottom: 0;
  width: 875px;
  background: url("../img/pic2/1.png") no-repeat;
  -o-background-size: cover;
     background-size: cover;
  background-position: left;
}
.radiusContent .animate2 .img2 .animation .icon {
  position: absolute;
}
.radiusContent .animate2 .img2 .animation .iconTeam {
  top: 26px;
  left: 24px;
  width: 88px;
  height: 83px;
}
.radiusContent .animate2 .img2 .animation .iconHandShock {
  width: 100px;
  height: 76px;
  right: 0;
  top: 0;
}
.radiusContent .animate2 .img2 .animation .iconPeople {
  left: 24px;
  bottom: 71px;
  width: 124px;
  height: 188px;
}
.radiusContent .animate2 .img2 .animation .iconTree {
  right: 66px;
  bottom: 71px;
  width: 56px;
  height: 103px;
}
.radiusContent .animate2 .img2 .animation .img2_main {
  position: absolute;
  top: 31px;
  left: 148px;
  right: 148px;
  bottom: 106px;
  overflow: hidden;
}
.radiusContent .animate2 .img2 .animation .img2_main .img2_ul {
  position: absolute;
  width: 200%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-animation: img2_change 12s infinite;
     -moz-animation: img2_change 12s infinite;
       -o-animation: img2_change 12s infinite;
          animation: img2_change 12s infinite;
}
.radiusContent .animate2 .img2 .animation .img2_main .img2_ul .img2_1,
.radiusContent .animate2 .img2 .animation .img2_main .img2_ul .img2_2 {
  position: relative;
  width: 50%;
  height: 100%;
  float: left;
  -o-background-size: cover;
     background-size: cover;
}
.radiusContent .animate2 .img2 .animation .img2_main .img2_ul .img2_1 {
  background: url("../img/pic2/2.png") no-repeat;
}
.radiusContent .animate2 .img2 .animation .img2_main .img2_ul .img2_1 .highLight {
  position: absolute;
  height: 34px;
  line-height: 34px;
  background: #ffaa3b;
  opacity: 0.35;
  left: 165px;
  top: 120px;
  -webkit-animation: highLight2 6s infinite;
     -moz-animation: highLight2 6s infinite;
       -o-animation: highLight2 6s infinite;
          animation: highLight2 6s infinite;
}
.radiusContent .animate2 .img2 .animation .img2_main .img2_ul .img2_1 .textMouth {
  position: absolute;
  height: 27px;
  width: 11px;
  left: 160px;
  top: 123px;
  -webkit-animation: textMouth 6s infinite;
     -moz-animation: textMouth 6s infinite;
       -o-animation: textMouth 6s infinite;
          animation: textMouth 6s infinite;
}
.radiusContent .animate2 .img2 .animation .img2_main .img2_ul .img2_1 .innerTip {
  position: absolute;
  right: 117px;
  bottom: 148px;
  height: 83px;
  width: 174px;
  opacity: 0;
  -webkit-animation: showTip 6s infinite;
     -moz-animation: showTip 6s infinite;
       -o-animation: showTip 6s infinite;
          animation: showTip 6s infinite;
}
.radiusContent .animate2 .img2 .animation .img2_main .img2_ul .img2_2 {
  background: url("../img/pic2/9.png") no-repeat;
}
.radiusContent .animate2 .img2 .animation .img2_main .img2_ul .img2_2 .arrow {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 265px;
  top: 84px;
  -webkit-animation: arrowMove 6s infinite;
     -moz-animation: arrowMove 6s infinite;
       -o-animation: arrowMove 6s infinite;
          animation: arrowMove 6s infinite;
}
.radiusContent .animate2 .img2 .animation .img2_main .img2_ul .img2_2 .transform {
  top: 166px;
  left: 220px;
  width: 255px;
  height: 136px;
  position: absolute;
  opacity: 0;
  -webkit-animation: showTransform 6s infinite;
     -moz-animation: showTransform 6s infinite;
       -o-animation: showTransform 6s infinite;
          animation: showTransform 6s infinite;
}
.radiusContent .animate2 .img2 .animation .img2_main .img2_ul .img2_2 .success {
  top: 166px;
  left: 220px;
  width: 255px;
  height: 136px;
  position: absolute;
  opacity: 0;
  -webkit-animation: showSuccess 6s infinite;
     -moz-animation: showSuccess 6s infinite;
       -o-animation: showSuccess 6s infinite;
          animation: showSuccess 6s infinite;
}
.radiusContent .centerBanner {
  background: #f7f9ff;
  margin: 109px 0 106px;
  height: 408px;
  padding-top: 100px;
  font-size: 0;
}
.radiusContent .centerBanner .container {
  height: 208px;
  line-height: 208px;
  white-space: nowrap;
}
.radiusContent .centerBanner .container > * {
  display: inline-block;
  vertical-align: middle;
}
.radiusContent .centerBanner .container .left img {
  display: block;
  width: 310px;
  margin-bottom: 33px;
}
.radiusContent .centerBanner .container .left div {
  font-size: 16px;
  line-height: 16px;
  color: #999;
}
.radiusContent .centerBanner .container .left div .theCode {
  font-size: 29px;
  line-height: 29px;
  color: #f6891d;
}
.radiusContent .centerBanner .container .verticalDash {
  height: 199px;
  border-left: 2px dashed #dee3f4;
  margin: 0 52px;
}
.radiusContent .centerBanner .container .center h3 {
  font-size: 28px;
  line-height: 50px;
  font-weight: 300;
  background-image: 50px;
  color: #333;
  margin-bottom: 41px;
  max-width: 606px;
  white-space: pre-wrap;
}
.radiusContent .centerBanner .container .center .download {
  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;
  width: 300px;
  height: 69px;
  border-radius: 40px;
  font-size: 32px;
  color: #fff;
}
.radiusContent .centerBanner .container .center .download > * {
  vertical-align: middle;
  line-height: 67px;
}
.radiusContent .centerBanner .container .center .download img {
  display: inline-block;
  margin-left: 17.5px;
  width: 28px;
  height: 28px;
}
.radiusContent .centerBanner .container .rightImg {
  width: 109px;
  height: 164px;
  vertical-align: bottom;
  margin-left: 73px;
}
.radiusContent .why {
  text-align: center;
  padding-bottom: 119px;
}
.radiusContent .why h2 {
  font-size: 42px;
  line-height: 42px;
  margin-bottom: 98px;
  position: relative;
}
.radiusContent .why h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -28px;
  width: 62px;
  height: 6px;
  border-radius: 3px;
  margin-left: -31px;
  margin-top: -50px;
  z-index: 999;
  background: #f6891d;
}
.radiusContent .why ul {
  display: inline-block;
  font-size: 0;
  white-space: nowrap;
}
.radiusContent .why ul li + li {
  margin-left: 80px;
}
.radiusContent .why ul li {
  display: inline-block;
}
.radiusContent .why ul li > * {
  display: block;
  margin: 0 auto;
}
.radiusContent .why ul li .circle {
  width: 211px;
  height: 210px;
  line-height: 210px;
  border-radius: 105px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 24px 0px rgba(153, 153, 153, 0.19);
          box-shadow: 0px 0px 24px 0px rgba(153, 153, 153, 0.19);
  text-align: center;
  margin-bottom: 45px;
}
.radiusContent .why ul li .circle img {
  width: 88px;
  height: 88px;
  vertical-align: middle;
}
.radiusContent .why ul li h3 {
  font-size: 32px;
  line-height: 32px;
  color: #333;
}
.radiusContent .why ul li h4 {
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  margin-top: 23px;
  max-width: 242px;
  white-space: pre-wrap;
  color: #999;
}

footer {
  height: 470px;
  text-align: center;
  color: #fff;
  background-color: #333;
}
footer h2 {
  font-size: 52px;
  line-height: 52px;
  font-weight: 500;
}
footer h2 span {
  font-weight: 300;
}
footer h3 {
  font-size: 26px;
  line-height: 40px;
  margin: 20px 0 43px;
}
footer .btns span a {
  width: 230px;
  height: 66px;
  border-radius: 33px;
  border: solid 3px #ffffff;
  color: #fff;
  font-size: 32px;
  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;
  letter-spacing: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .btns span a:hover {
  background-color: #ffffff;
  color: #3258e9;
}
footer .btns span i {
  display: block;
  white-space: nowrap;
  text-align: center;
  margin-top: 13px;
  border-radius: 3px;
  font-size: 16px;
  color: #ccc;
}
footer .btns .deep {
  margin-right: 23px;
}
footer .btns .deep a {
  background-color: #ffb619;
  margin-right: 23px;
  border: none;
  width: 230px;
  height: 66px;
  border-radius: 33px;
}
footer .btns .deep a:hover {
  color: #fff;
  background-color: #ff9327;
}

@-webkit-keyframes showTransform {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 0;
  }
  34% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes showTransform {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 0;
  }
  34% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@-o-keyframes showTransform {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 0;
  }
  34% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes showTransform {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 0;
  }
  34% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes showSuccess {
  0% {
    opacity: 0;
  }
  67% {
    opacity: 0;
  }
  68% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes showSuccess {
  0% {
    opacity: 0;
  }
  67% {
    opacity: 0;
  }
  68% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes showSuccess {
  0% {
    opacity: 0;
  }
  67% {
    opacity: 0;
  }
  68% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes showSuccess {
  0% {
    opacity: 0;
  }
  67% {
    opacity: 0;
  }
  68% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes arrowMove {
  0% {
    right: 265px;
    top: 84px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  32% {
    right: 265px;
    top: 84px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  33% {
    right: 275px;
    top: 74px;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  38% {
    right: 265px;
    top: 84px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  65% {
    right: 265px;
    top: 84px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  66% {
    right: 275px;
    top: 74px;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  71% {
    right: 265px;
    top: 84px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    right: 265px;
    top: 84px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-moz-keyframes arrowMove {
  0% {
    right: 265px;
    top: 84px;
    -moz-transform: scale(1);
         transform: scale(1);
  }
  32% {
    right: 265px;
    top: 84px;
    -moz-transform: scale(1);
         transform: scale(1);
  }
  33% {
    right: 275px;
    top: 74px;
    -moz-transform: scale(0.9);
         transform: scale(0.9);
  }
  38% {
    right: 265px;
    top: 84px;
    -moz-transform: scale(1);
         transform: scale(1);
  }
  65% {
    right: 265px;
    top: 84px;
    -moz-transform: scale(1);
         transform: scale(1);
  }
  66% {
    right: 275px;
    top: 74px;
    -moz-transform: scale(0.9);
         transform: scale(0.9);
  }
  71% {
    right: 265px;
    top: 84px;
    -moz-transform: scale(1);
         transform: scale(1);
  }
  100% {
    right: 265px;
    top: 84px;
    -moz-transform: scale(1);
         transform: scale(1);
  }
}
@-o-keyframes arrowMove {
  0% {
    right: 265px;
    top: 84px;
    -o-transform: scale(1);
       transform: scale(1);
  }
  32% {
    right: 265px;
    top: 84px;
    -o-transform: scale(1);
       transform: scale(1);
  }
  33% {
    right: 275px;
    top: 74px;
    -o-transform: scale(0.9);
       transform: scale(0.9);
  }
  38% {
    right: 265px;
    top: 84px;
    -o-transform: scale(1);
       transform: scale(1);
  }
  65% {
    right: 265px;
    top: 84px;
    -o-transform: scale(1);
       transform: scale(1);
  }
  66% {
    right: 275px;
    top: 74px;
    -o-transform: scale(0.9);
       transform: scale(0.9);
  }
  71% {
    right: 265px;
    top: 84px;
    -o-transform: scale(1);
       transform: scale(1);
  }
  100% {
    right: 265px;
    top: 84px;
    -o-transform: scale(1);
       transform: scale(1);
  }
}
@keyframes arrowMove {
  0% {
    right: 265px;
    top: 84px;
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
  }
  32% {
    right: 265px;
    top: 84px;
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
  }
  33% {
    right: 275px;
    top: 74px;
    -webkit-transform: scale(0.9);
       -moz-transform: scale(0.9);
         -o-transform: scale(0.9);
            transform: scale(0.9);
  }
  38% {
    right: 265px;
    top: 84px;
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
  }
  65% {
    right: 265px;
    top: 84px;
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
  }
  66% {
    right: 275px;
    top: 74px;
    -webkit-transform: scale(0.9);
       -moz-transform: scale(0.9);
         -o-transform: scale(0.9);
            transform: scale(0.9);
  }
  71% {
    right: 265px;
    top: 84px;
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
  }
  100% {
    right: 265px;
    top: 84px;
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes img2_change {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: 0;
  }
  51% {
    margin-left: -100%;
  }
  100% {
    margin-left: -100%;
  }
}
@-moz-keyframes img2_change {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: 0;
  }
  51% {
    margin-left: -100%;
  }
  100% {
    margin-left: -100%;
  }
}
@-o-keyframes img2_change {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: 0;
  }
  51% {
    margin-left: -100%;
  }
  100% {
    margin-left: -100%;
  }
}
@keyframes img2_change {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: 0;
  }
  51% {
    margin-left: -100%;
  }
  100% {
    margin-left: -100%;
  }
}
@-webkit-keyframes highLight {
  0% {
    width: 0;
  }
  5% {
    width: 1em;
  }
  33% {
    width: 11.3em;
  }
  100% {
    width: 11.3em;
  }
}
@-moz-keyframes highLight {
  0% {
    width: 0;
  }
  5% {
    width: 1em;
  }
  33% {
    width: 11.3em;
  }
  100% {
    width: 11.3em;
  }
}
@-o-keyframes highLight {
  0% {
    width: 0;
  }
  5% {
    width: 1em;
  }
  33% {
    width: 11.3em;
  }
  100% {
    width: 11.3em;
  }
}
@keyframes highLight {
  0% {
    width: 0;
  }
  5% {
    width: 1em;
  }
  33% {
    width: 11.3em;
  }
  100% {
    width: 11.3em;
  }
}
@-webkit-keyframes highLight2 {
  0% {
    width: 0;
  }
  33% {
    width: 8em;
  }
  100% {
    width: 8em;
  }
}
@-moz-keyframes highLight2 {
  0% {
    width: 0;
  }
  33% {
    width: 8em;
  }
  100% {
    width: 8em;
  }
}
@-o-keyframes highLight2 {
  0% {
    width: 0;
  }
  33% {
    width: 8em;
  }
  100% {
    width: 8em;
  }
}
@keyframes highLight2 {
  0% {
    width: 0;
  }
  33% {
    width: 8em;
  }
  100% {
    width: 8em;
  }
}
@-webkit-keyframes textMouth {
  0% {
    left: 160px;
    opacity: 1;
  }
  33% {
    left: 305px;
    opacity: 1;
  }
  100% {
    left: 305px;
    opacity: 1;
  }
}
@-moz-keyframes textMouth {
  0% {
    left: 160px;
    opacity: 1;
  }
  33% {
    left: 305px;
    opacity: 1;
  }
  100% {
    left: 305px;
    opacity: 1;
  }
}
@-o-keyframes textMouth {
  0% {
    left: 160px;
    opacity: 1;
  }
  33% {
    left: 305px;
    opacity: 1;
  }
  100% {
    left: 305px;
    opacity: 1;
  }
}
@keyframes textMouth {
  0% {
    left: 160px;
    opacity: 1;
  }
  33% {
    left: 305px;
    opacity: 1;
  }
  100% {
    left: 305px;
    opacity: 1;
  }
}
@-webkit-keyframes showTip {
  0% {
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
    opacity: 0;
  }
  33% {
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
    opacity: 0;
  }
  34% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  66% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@-moz-keyframes showTip {
  0% {
    -moz-transform: scale(0.3);
         transform: scale(0.3);
    opacity: 0;
  }
  33% {
    -moz-transform: scale(0.3);
         transform: scale(0.3);
    opacity: 0;
  }
  34% {
    -moz-transform: scale(1);
         transform: scale(1);
    opacity: 1;
  }
  66% {
    -moz-transform: scale(1);
         transform: scale(1);
    opacity: 1;
  }
  100% {
    -moz-transform: scale(1);
         transform: scale(1);
    opacity: 1;
  }
}
@-o-keyframes showTip {
  0% {
    -o-transform: scale(0.3);
       transform: scale(0.3);
    opacity: 0;
  }
  33% {
    -o-transform: scale(0.3);
       transform: scale(0.3);
    opacity: 0;
  }
  34% {
    -o-transform: scale(1);
       transform: scale(1);
    opacity: 1;
  }
  66% {
    -o-transform: scale(1);
       transform: scale(1);
    opacity: 1;
  }
  100% {
    -o-transform: scale(1);
       transform: scale(1);
    opacity: 1;
  }
}
@keyframes showTip {
  0% {
    -webkit-transform: scale(0.3);
       -moz-transform: scale(0.3);
         -o-transform: scale(0.3);
            transform: scale(0.3);
    opacity: 0;
  }
  33% {
    -webkit-transform: scale(0.3);
       -moz-transform: scale(0.3);
         -o-transform: scale(0.3);
            transform: scale(0.3);
    opacity: 0;
  }
  34% {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  66% {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes dashLine {
  0% {
    width: 0;
  }
  33% {
    width: 0;
  }
  66% {
    width: 21em;
  }
  100% {
    width: 21em;
  }
}
@-moz-keyframes dashLine {
  0% {
    width: 0;
  }
  33% {
    width: 0;
  }
  66% {
    width: 21em;
  }
  100% {
    width: 21em;
  }
}
@-o-keyframes dashLine {
  0% {
    width: 0;
  }
  33% {
    width: 0;
  }
  66% {
    width: 21em;
  }
  100% {
    width: 21em;
  }
}
@keyframes dashLine {
  0% {
    width: 0;
  }
  33% {
    width: 0;
  }
  66% {
    width: 21em;
  }
  100% {
    width: 21em;
  }
}