html,body{
  font-size: 16px;
  color: #fff;
}
*{
  margin: 0;
  padding: 0;
  text-decoration: none!important;
  list-style: none;
}
/*导航条区域*/
.navigation .nav-wrap{
  border: none;
  background: none;
  margin-top: 10px;
  margin-bottom: 10px;
}
.navigation{
  top: 0px;
}
.navbar-toggle.collapsed{
  margin-top: 18px;
}
.navbar-toggle{
  margin-top: 18px;
}
.navigation .nav-wrap .left a{
  color: #fff;
  font-size: 24px;
}
.navigation .nav-wrap .logo{
  display: inline-block;
  width: 60px;
  height: 60px;
  background: url('../images/icon/logo.png') no-repeat;
  background-size: cover;
  margin-top: 5px;
}
.navigation .nav-wrap .logo-title{
  position: absolute;
  left: 90px;
  top: 20px;
  text-align: center;
  align-items: center;
}
.menu{
  border: none;
}
.menu .menu-list{
  margin-top: 13px;
}
.menu .menu-list li{
  height: 50px;
  /*中小屏幕下导航条与顶部的logo对齐*/
  margin-left: -15px;
  margin-right: 20px;
}
.menu .menu-list li a{
  color: #fff;
  font-size: 18px;
  padding: 15px 15px;
}
.menu .menu-list li a:hover{
  color: #f8a837;
}

/*banner图区域*/
.banner{
  position: relative;
  width: 100%;
  height: 100%;
}
.banner .banner-top{
  width: 100%;
  height: 888px;
  background: url('../images/bg-main.png') no-repeat;
  background-size: 100% 100%;
}
.banner-top .banner-content{
  height: 380px;
  margin-top: 330px;
  color: #fff;
}
.banner-content h4{
  font-size: 24px;
  font-weight: normal;
}
.banner-content p{
  font-size: 20px;
  margin-top: 30px;
}
.banner-content p:nth-of-type(2){
  margin-top: 15px;
}
.banner-content p i{
  font-size: 20px;
  color: #f8a837;
}
.banner .mode{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 50px;
  margin-top: 30px;
  border: 2px solid #fff;
  border-radius: 4px;
  font-size: 20px;
}
.banner .mode img{
  width: 30px;
  height: 30px;
}
.banner .mode span{
  color: #fff;
  margin-left: 10px;
}

/*星星闪烁*/
.star-wrap{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.star-wrap .star{
  position: absolute;
  width: 15px;
  height: 15px;
  /* background: radial-gradient(rgba(72,  72, 255), rgb(75, 72, 237)); */
  /* background: url('./blue-dot.png') no-repeat;
  background-size: cover; */
  background: #4848FF;
  opacity: 0.7;
  filter:alpha(opacity=70);
  /*适配ie*/
  /* box-shadow: 0px 0px 3px rgb(72, 72, 255); */
  border-radius: 50%;
  /* animation: flesh 1.5s infinite alternate; */
}
.star:nth-of-type(1){
  top: 180px;
  left: 30.2%;
}
.star:nth-of-type(2){
  top: 180px;
  left: 59.8%;
}
.star:nth-of-type(3){
  top: 435px;
  left: 59.8%;
}
.star .circle{
  position: absolute;
  top: 1px;
  left: 1px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid #4848FF;
  animation: boundle 3s infinite;
}
.star.big{
  width: 20px;
  height: 20px;
}
.big .circle{
  width: 18px;
  height: 18px;
}
.circle:nth-of-type(2){
  animation-delay: 1s;
}
.circle:nth-of-type(3){
  animation-delay: 2s;
}
@keyframes flesh{
  0%{
    opacity: 0.6;
    filter:alpha(opacity=60); 
    transform: scale(0.6);
  }
  100%{
    opacity: 1;
    filter:alpha(opacity=100); 
    transform: scale(1.2);
  }
}
@keyframes boundle{
  0%{
    opacity: 1;
    filter:alpha(opacity=100); 
    transform: scale(1);
  }
  50%{
    opacity: 0.5;
    filter:alpha(opacity=50); 
    transform: scale(2);
  }
  100%{
    opacity: 0;
    filter:alpha(opacity=0); 
    transform: scale(4);
  }
}

/*业务分类*/
.banner-bottom .list{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 280px;
}
.list .image{
  width: 40px;
  height: 40px;
}
.list .title{
  margin-top: 10px;
  font-size: 20px;
  color: #333;
}
.list .info{
  margin-top: 10px;
  font-size: 16px;
  color: #a0a0a0;
}

/*关于我们*/
.about{
  position: relative;
  width: 100%;
  height: 100%;
}
.about-info{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 350px;
  background: url('../images/bg-about.png') no-repeat;
  background-size: 100% 100%;
}
.about-info dt{
  font-size: 24px;
  margin-top: 40px;
}
.about-info dd{
  font-size: 20px;
}
.about-info dd:nth-of-type(1) {
  margin-top: 30px;
  line-height: 35px;
}
.about-info dd:nth-of-type(n+2) {
  line-height: 35px;
}
.about .about-info dl{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/*关于我们中间区域的文字布局*/
.about .about-desc{
  width: 100%;
  height: 60%;
  margin-top: 20px;
}
.about-wrap{
  width: 100%;
  height: 100%;
  background: #fff;
}
.about-wrap img{
  width: 100%;
  height: 100%;
  margin-top: 36px;
}


.about-wrap .desc-top, .desc-bottom{
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.about-wrap .desc-item{
  width: 100%;
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.desc-item .desc-icon{
  width: 15px;
  height: 15px;
  background: url('../images/icon/my.png') no-repeat;
  background-size: cover;
}
.desc-item span:nth-of-type(2){
  font-size: 18px;
  margin-left: 10px;
}

/*顶部第一行显示一个居中，后面两个两边对齐*/
.desc-top .desc-item{
  width: 100%;
}
.desc-top .desc-item:nth-of-type(n+2){
  width: 50%;
}

/*底部第一行两边对对齐，后面一个居中显示*/
.desc-bottom .desc-item{
  width: 50%;
}
.desc-bottom .desc-item:nth-of-type(n+3){
  width: 100%;
}

/*中间标题区域*/
.about-wrap .advan-info{
	width: 100%;
	height: 30px;
	line-height: 30px;
	text-align: center;
}
.about-wrap .advan-info dt{
	margin-left: 10px;
}
.about-wrap .desc-center{}
.desc-center .center-title{
  width: 100%;
  height: 60px;
}
.center-title .title-content{
  width: 100%;
  height: 30px;
  line-height: 30px;
  text-align: center;
  margin: 0;
  font-size: 18px;
}
.center-list{
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.center-list .center-item{
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 50%;
  height: 40px;
  line-height: 40px;
}
.center-item .center-icon{
  width: 20px;
  height: 20px;
  background: url('../images/icon/right-arrow.png') no-repeat;
  background-size: cover;
  margin-left: 30%;
}
.center-item .center-content{
  font-size: 18px;
  color: #666;
}


.about .show-image{
  width: 100%;
  height: 100%;
}
.show-image .image-wrap{
  width: 100%;
  height: 58%;
  font-size: 30px;
  color: #fff;
  line-height: 400px;
  text-align: center;
}

.image-wrap img{
  width: 100%;
  height: 100%;
  /*box-shadow: 0px 0px 15px rgba(43, 42, 39, .2);*/
  border-bottom: 1px solid #eee;
}
/* .image-wrap>p{
	display: block;
	width: 120px;
	height: 33px;
	
	
} */

/*我们的优势*/
.advantage{
  width: 100%;
  height: 100%;
}
.advantage .container{
  border-bottom: 1px solid #eee;
}
.advantage .advan-info{
  width: 100%;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.advan-info dt{
  color: #000;
  font-size: 24px;
  line-height: 34px;
  margin-top: 36px;
}
.advan-info dd{
  color: #a39c9c;
  font-size: 20px;
  margin-top: 20px;
}
.advan-info dd:nth-of-type(2){
  margin-top: 10px;
}

/*卡片列表区域*/
.advantage .card-wrap{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 40px;
}
.card-wrap .card-item{
  width: 320px;
  height: 400px;
  box-shadow: 0px 0px 15px rgba(43,42,39, 0.15);
  border-radius: 2px;
  padding: 0;
  color: #333;
}
/**
 * 这里要做响应式
 * 大屏幕时超过第三个距离上面的有一定的距离
 * 后面根据排布方式动态设置
 */
.card-wrap .card-item:nth-of-type(n+4){
  margin-top: 40px;
}
.card-item .index-title{
  width: 320px;
  height: 140px;
}
.card-item .card-index{
  width: 35px;
  height: 35px;
  margin-top: 20px;
  margin-left: 20px;
}
.card-item .card-title{
  font-size: 20px;
  margin-top: 20px;
  margin-left: 20px;
}
.card-item .info-wrap{
  position: relative;
  width: 320px;
  height: 260px;
  overflow: hidden;
  cursor: pointer;
}
.info-wrap .info-img.data{
  width: 200px;
  height: 200px;
  margin-left: 58px;
}
.info-wrap .info-img{
  width: 200px;
  height: 200px;
  margin-top: 5px;
  margin-left: 60px;
}
.info-wrap .info-img.system{
  width: 200px;
  height: 200px;
  margin-left: 58px;
}
.info-wrap .info-img.person{
  width: 200px;
  height: 200px;
  margin-left: 58px;
}
.info-wrap .info-desc{
  position: absolute;
  width: 320px;
  height: 260px;
  background: #9999a1;
  background: rgba(153, 153, 161, 0.9);
  top: 260px;
  left: 0;
  color: #fff;
  box-sizing: border-box;
  transition: all .3s linear;
}
.info-desc{
  padding: 0px 20px;
  box-sizing: border-box;
}
.info-desc p{
  line-height: 24px;
  margin-bottom: 0;
}
.info-desc p:nth-of-type(1){
  margin-top: 50px;
}
.info-wrap:hover .info-desc{
  top: 0;
}

/* 联系我们 */
.contact{
  width: 100%;
  height: 100%;
  color: #000;
}
/**
 * 分割线，需要进行自适应处理
 */
.contact{
  position: relative;
}
.contact::after{
  display: block;
  content: "";
  width: 1px;
  height: 380px;
  position: absolute;
  top: 300px;
  left: 50%;
  background: #eee;
  transform: translate(-50%, -50%);
}
.contact .contact-title{
  width: 100%;
  margin-top: 40px;
  text-align: center;
  font-size: 24px;
}
.contact .contact-list{
  height: 420px;
}
.contact-wrap .right{
  margin-bottom: 40px;
}
.contact-list .list-item{
  display: flex;
  flex-direction: row;
  margin-top: 50px;
}
.list-item img{
  width: 20px;
  height: 20px;
}
.list-item .item-info{
  margin-left: 10px;
}
.item-info .info-title{
  font-size: 16px;
  margin-top: -3px;
}
.item-info .info-name{
  font-size: 16px;
  margin-top: 10px;
}
.contact-list.right{
  padding-left: 60px;
  margin-top: 20px;
}
.contact-list.right li input{
  border: 0;
  outline: none;
  border-bottom: 1px solid #eee;
  color: #333;
  height: 20px;
  width: 500px;
}
.contact-list.right li{
  font-size: 16px;
}
.contact-list.right li:nth-of-type(n+2){
  margin-top: 10px;
}
.contact-list.right .submit{
  width: 120px;
  height: 40px;
  border-radius: 2px;
  color: #fff;
  background: #000;
  font-size: 16px;
  border: 0;
  outline: none;
  margin-top: 28px;
}

/*底部区域*/
.download{
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  color: #fff;
}
/*分割线处理，每行显示一列时直接去掉*/
.download::after{
  position: absolute;
  display: block;
  content: "";
  width: 1px;
  height: 190px;
  top: 40px;
  left: 50%;
  background-color: #ccc;
}




.left-info{
  height: 230px;
}
.left-info h4{
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 0px;
  height: 26px;
  line-height: 26px;
  font-weight: normal;
}
.left-info li{
  display: inline-block;
  position: relative;
}
.left-info .coustome,.client,.cloent{
  width: 150px;
  height: 40px;
  display: flex;
  margin-top: 20px;
  flex-direction: row;
  justify-content: center;
  background-color: #000;
  filter:alpha(opacity=0);
  align-items: center;
  border: 2px solid #fff;
  border-radius: 8px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.left-info .left-item:nth-of-type(2){
  margin-left: 45px;
  margin-right: 45px;
}
.left-info .coustome img{
  width: 20px;
  height: 20px;
}
.left-info .coustome span{
  margin-left: 10px;
}
.left-info .client img{
  width: 20px;
  height: 20px;
}
.left-info .client span{
  margin-left: 10px;
}

.left-info .cloent img{
  width: 20px;
  height: 20px;
}
.left-info .cloent span{
  margin-left: 10px;
}






.right-nav{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-right: 20px;
  height: 240px;
}
.right-nav .footer-nav{
  margin-top: 40px;
  margin-left: 40px;
}
.footer-nav dt{
  position: relative;
  font-size: 22px;
  color: #fff;
  line-height: 26px;
  height: 26px;
  font-weight: normal;
}
.footer-nav dd:nth-of-type(1){
  margin-top: 20px;
}
.footer-nav dd:nth-of-type(2){
  margin-top: 5px;
}
.footer-nav dd a{
  font-size: 18px;
  color: #908d8d;
}
.footer-nav dd a:hover{
  color: #f8f8f8;
}
.weixin{
  margin-top: 40px;
}
.weixin h4{
  font-size: 22px;
  color: #fff;
  line-height: 26px;
  height: 26px;
  margin: 0px;
  font-weight: normal;
}
.weixin img{
  width: 140px;
  height: 140px;
  margin-top: 20px;
}

.headline{
  font-size: 24px;
}

/*回到顶部*/
.back-top{
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  display: none;
}
.back-top:hover{
  background: #68b5fb;
}
.back-top img{
  width: 20px;
  height: 20px;
  margin: 10px;
}

dt{
  font-weight: normal;
}
h4{
  font-weight: normal;
}

/*弹框样式*/
.fixed-box{
  position: absolute;
  width: 190px;
  height: 290px;
  border-radius: 5px;
  background: rgba(144,141,141,0.8);
  left: -25px;
  bottom: 0px;
  box-sizing: border-box;
  padding: 10px;
  display: none;
  filter: inherit
}
.fixed-box p{
  margin: 0px;
}
.title .title-info{
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: normal;
  font-size: 14px;
  margin-top: 0px;
}
.title .title-info img{
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.title p{
  font-size: 90%;
  margin-top: 4px;
}
.p-title{
  color: #f8a837;
}


.android{
  margin-top: 4px;
}
.android .android-list p{
  font-size: 14px;
  width: 180px;
  word-break: break-all;
}
.ios{
  display: flex;
  flex-direction: row;
  font-size: normal;
  font-size: 14px;
  margin-top: 10px;
}
.ios img{
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.fixed-box .cancel{
  position: absolute;
  width: 20px;
  height: 20px;
  top: 10px;
  right: 5px;
  cursor: pointer;
}
.fixed-box .cancel img{
  width: 100%;
  height: 100%;
}
.android-list a{
	color: white;
}
.android-list a:hover{
	color: orange;
}

/* 备案号 */
.beianhao{
	color: #676a6c;
	width:1127px;
	height: 90px;
	line-height: 80px;
	background-color: black;
	/* position: absolute; */
	/* bottom: 0px; */
	margin-top: 270px;
	font-size: 15px;
	border-top: 1px solid #3c3c3c ;
	padding-top: 10px;
}
.beianhao a{
	margin-left: 10px;
	color:white;
}