/* 头部 */

header {
    height: 64px;
    background-color: #7F50FA;
    color: #fff;
    z-index: 2020 !important;
}

.header {
    height: 100%;
    display: flex;
    align-items: center;
}

.header-logo {
    float: left;
    height: 42px;
}

.header-tabs {
    float: right;
    width: 380px;
}

.header-lang select {
    display: block;
    width: auto;
    padding: 0 2%;
    margin: 0 auto;
    height: 100%;
    border: none;
    color: #fff;
    background-color: #7F50FA;
    text-align-last: center;
    text-align: center;
}

.header-lang select option {
    margin-top: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box:after {
    display: inline-block;
    content: "";
    width: 12px;
    height: 6px;
    background-image: url('../image/down.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-left: 4px;
    margin-bottom: 4px;
}

.header-tabs .mainmenu {
    float: right;
    height: 100%;
    font-size: 22px;
    justify-content: space-between;
}

.header-tabs ul .tabs {
    padding: 0 20px;
    height: 35px;
    line-height: 35px;
    position: relative;
}
.header-tabs ul .tabs .nav-link {
  color: rgba(255, 255, 255, .5);
}

.header-tabs ul li .hover:hover {
    opacity: 1;
    color: #fff;
    text-decoration: none;
}

.header .mainmenu {
    display: flex;
}


.mainmenu li a:after {
  position: absolute;
  right: 0;
  top: 38px;
  bottom: 15px;
  height: 4px;
  content: "";
  background-color: #fff;
  z-index: -1;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  border-radius: 5px;
  z-index: 2020;
}

.mainmenu li a.active:after,
.mainmenu li:hover a:after {
  width: 16px;
  left: 50%;
  transform: translateX(-50%);
  right: auto;
}

.mainmenu li ul li a:after {
  opacity: 0;
}

.animate_bg {
  position: absolute;
  animation: animatepic 3s linear infinite;
}

@keyframes animatepic {
  0% {
      -webkit-transform: translateY(0);
      transform: translateY(0deg);
  }
  50% {
      -webkit-transform: translateY(20px);
      transform: translateY(20px);
      opacity: .2;
  }
  100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
  }
}

/* 下拉框 */
.dropdowns {
  color: #ffffff;
  position: relative;
}

.dropdowns input{
  outline-style: none;
  outline: none;
  border: none;
  background-color: #7F50FA;
  cursor: pointer;
  border: 1px solid #ffffff;
  border-radius: 8px;
}

.dropdown-menu_1{
  width: 100%;
  text-align: center;
}

.dropdown-menu_1 li{
  width: 100%;
  padding: 10px 0;
  cursor: pointer;
}

.dropdown-menu_1 li a{
  text-decoration: none;
  color: #000000;
}
.dropdown-menu_1 li:first-child{
  border-bottom: 1px solid rgba(238, 238, 238, 1);
}
.click-active a{
  color: rgba(127, 80, 250, 1) !important;
}

.xiala{
  position: absolute;
  right: 7px;
  top: 45%;
  width: 12px;
  height: 6px;
  transform-origin:50% 50%;
}
.xiala img{
  display: block;
  width: 100%;
}

.xiala-animation{
  animation: iconAnimate 1s;
  animation-fill-mode: forwards;
}

@keyframes iconAnimate{
  0%{
    transform: translateY(-0%) rotate(0);
  }
  100%{
    transform: translateY(-0%) rotate(180deg);
  }
}


/* 主体-视频部分 */

.video {
    height: 1000px;
    position: relative;
}

.video-download {
    position: absolute;
    text-align: center;
    width: 500px;
    color: #fff;
    left: 50%;
    top: 0;
    margin-top: 230px;
    transform: translateX(-50%);
}

.video video {
    vertical-align: bottom;
}

.content video {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .1);
}

.download-logo {
    width: 200px;
}

.video-download {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.download-txt {
    margin: 25px 0 70px 0;
}
.ios-icon{
  width: 30px;
  height: 30px;
}
.download-box {
    /* width: 100%; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.video-download a{
  text-decoration: none !important;
}
.black{
  color: #000;
}
.ios,
.android {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 240px;
    background-color: #fff;
    border-radius: 8px;
    color: #000000;
    margin-right: 24px;
    
}
.android:last-child{
  margin-right: 0px;
}

.download-icon {
    color:#000;
    height: 26px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 18px 0;
}
.download-icon a{
  color: #000;
}
.download-box .icon{
  color: #39B448;
  font-size: 22px;
}
.download-box .ios-icon{
  color: #000;
  font-size: 22px;
}
.download-box :hover {
  cursor: pointer;
  background-color: #7F50FA !important;
  color: #fff !important;
}
.download-box :hover .icon{
  color: #fff !important;
}
.download-box :hover a{
  color: #fff !important;
}

.down-animation{
  animation: downAnimate 1s;
  animation-fill-mode: forwards;
}

@keyframes downAnimate{
  0%{
    transform: scale(1);
  }
  50%{
    transform: scale(.8);
  }
  100%{
    transform: scale(1);
  }
}

.download-pull {
    margin-top: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pull-icon {
    margin: 0 auto 16px;
    width: 50px;
}

/* 主体-banner部分 */

.content .banner {
    width: 100%;
    height: 1150px;
}

.banner:nth-child(2n) {
    background-color: #F4F6FE;
}

.box-left {
    float: left;
    width: 50%;
}

.box-right {
    float: right;
    width: 50%;
}

.banner-left {
    height: 100%;
    float: left;
    color: #666666;
    font-size: 24px;
}

.banner-left div {
    width: 352px;
}

.banner-right {
    float: right;
    height: 100%;
}

.banner-right1 {
    position: absolute;
    top: 230px;
    right: 50px;
}

.banner-right2 {
    position: absolute;
    top: 170px;
    right: 200px;
}

.banner-right3 {
    position: absolute;
    top: 282px;
    right: 280px;
}

.banner-right img,
.banner-right3 img {
    width: 464px;
}

.banner-right2 img {
    width: 210px;
}

.txt-mid {
    margin: 24px 0;
    color: #222222;
    font-size: 60px;
}

.txt-top {
    margin-top: 384px;
    font-size: 24px;
    color: #666666;
}

.txt-bottom {
    font-size: 24px;
    color: #666666;
    line-height: 33px;
}


/* 
  * banner1
 */

.banner1-left {
    float: left;
}

.banner1-left .txt-mid {
    width: 412px;
}

.banner1-right {
    float: right;
}

.banner1-left img {
    width: 496px;
}

.banner1-left2 img {
    width: 432px;
}

.banner1-left1 {
    position: absolute;
    top: 200px;
    left: 30px;
}

.banner1-left2 {
    position: absolute;
    top: 190px;
    left: 223px;
    z-index: -1;
}


/* 
  *banner3
 */

.banner3-left {
    float: left;
}

.banner3-left div {
    width: 518px;
}

.banner3-right {
    float: right;
}

.banner3-right1 {
    position: absolute;
    top: 187px;
    right: 0;
}

.banner3-right1 img {
    width: 497px;
}


/* footer */

.foot {
    vertical-align: bottom;
    color: #fff;
    /* height: 72px; */
    box-sizing: border-box;
    padding: 13px 0 20px;
    text-align: center;
    background: linear-gradient(90deg, #7F50FA 0%, #A25CF8 100%);
}

.foot p {
    margin: 10px auto 0;
    font-size: 12px;
}

.foot-icon {
    margin: 0 auto 0;
    width: 180px;
}

.foot-tip{
  font-size: 12px;
  cursor: pointer;
}
.foot-tip:hover{
  color: blue;
}

.f-box,.f-box-span{
  display: inline-block;
}
.f-box-span{
  margin-top: 16px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.f-box-span a{
  text-decoration:underline;
}


/* about页面 */
.content-middle{
  font-size: 16px;
  background-color: rgba(244, 246, 254, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.middle-logo img{
  width: 233.72px;
}
.content-middle .container{
  background-color: #fff;
}
.content-box{
  background-color: #fff;
  width: 868px;
  margin: 0 auto 0;
  padding-top: 118px;
  padding-bottom: 250px;
  
}
.content-box p{
  line-height: 22px;
  text-align: left;
  line-height: 40px;
}
.content-middle h4{
  font-size: 30px;
}
.margin-10{
  margin-top: 10px;
}
.margin-70{
  margin-top: 70px;
}
.margin-24{
  margin-top: 24px;
}

h5{
  font-weight: bold !important;
  text-align: left ;
}

.gg-down{
  background-image: url(../image//google.png);
  width: 100%;
  height: 62px;
  margin: 0 !important;
  background-size: 100% 100%;
  border-radius: 8px;
  overflow: hidden;
}
.down-page{
  width: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: none !important;
}
.down-tips{
  width: 520px;
  height: 160px;
}
.down-tips img{
  display: block;
  width: 100%;
}

.official-down-tips{
  margin-top: 20px;
  width: 504px;
  height: 64px;
  padding-left: 27px;
  text-align: left;
  line-height: 64px;
  background: url(../image//button—bg.png);
  background-size: 100% 100%;
}
.official-down-tips a{
  display: block;
}

.official-down-tips a:hover{
  color: #fff;
}