.index-container {
  width:100%;
  height:830px;
  padding-top: 100px;
  box-sizing: border-box;
}
.company-info {
  height: 330px;
}
.company-info .content {
  /*margin-left: 50%;*/
  width: 380px;
  padding-top: 70px;
  margin: 0 auto;
}
.company-info .blue-line {
  width:120px;
  height:10px;
  background:rgba(23,135,255,1);
  margin-top: 0;
}
.company-info .company-title{
  font-size: 40px;
}
.company-info p{
  margin-top: 28px;
}
.company-info .company-pic {
  float: left;
  z-index: 10;
  margin: -100px 0 0 80px;
}
.company-info .company-pic .black-back {
  width:330px;
  height:100px;
  background:rgba(48,56,68,.5);
}
.company-info .company-pic .orange-back {
  width:330px;
  height:266px;
  background:rgba(255,177,8,1);
}
.company-info .company-pic .pic {
  width:380px;
  height:410px;
  position: absolute;
  top: 20px;
  left: -70px;
}

.product-container {
  height:1318px;
  padding: 100px 0;
  box-sizing: border-box;
  background:rgba(232,241,250,1);
}
.product-container .list li {
  width:380px;
  height:300px;
  background:rgba(255,255,255,1);
  box-shadow:0px 3px 10px 0px rgba(172,187,204,0.2);
  border-radius: 5px;
  padding-top: 56px;
  box-sizing: border-box;
  margin: 30px 10px 0;
  float: left;
  position: relative;
}
.product-container .list li p {
  text-align: center;
  position: absolute;
  width: 100%;
}
.product-container .list li .icon{
  height: 60px;
  left: 50%;
  width: 60px;
  margin-left: -30px;
  line-height: 60px;
}
.product-container .list li .list-title{
  top: 157px;
}
.product-container .list li .list-desc{
  top: 186px;
  color: #666;
}
.product-container .list li .list-detail{
  width: 300px;
  border-top: 2px solid rgba(255,255,255,.2);
  padding: 20px 20px 0 0;
  box-sizing: border-box;
  opacity: 0;
  top: 110px;
  left: 43px;
  line-height: 1.3rem;
}
.product-container .list li .list-btn{
  width:120px;
  height:36px;
  line-height: 36px;
  background:rgba(255,255,255,1);
  border:1px solid rgba(211,219,224,1);
  left: 50%;
  margin-left: -60px;
  top: 240px;
  display: block;
  text-align: center;
  position: absolute;
  color: #333;
}
.product-container .list li .hover-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  border-radius: 10px;
}
.product-container .list li .icon .icon-i{
  color: #fff;
  font-size: 60px;
  top: 0;
  position: absolute;
  left: 26px;
  opacity: 0;
}
.product-container .list li .ke-icon-arrow-right {
  vertical-align: middle;
  font-size: 12px;
  display: unset;
}
.product-container .list .list-item:hover .hover-bg {
  opacity: 1;
  transition: all .2s ease-in-out;
}
.product-container .list .list-item:hover{
  color: #fff;
  cursor: pointer;
}
.product-container .list .list-item:hover .icon{
  top: 35px;
  left: 48px;
  transition: all .2s ease-in-out;
}
.product-container .list .list-item:hover .icon .icon-i{
  opacity: 1;
}
.product-container .list .list-item:hover .icon .icon-svg{
  opacity: 0;
}
.product-container .list .list-item:hover .list-title{
  top: 60px;
  left: 125px;
  width: fit-content;
  transition: all .2s ease-in-out;
}
.product-container .list .list-item:hover .list-desc{
  opacity: 0;
  transition: all .2s ease-in-out;
}
.product-container .list li:hover .list-detail{
  opacity: 1;
  transition: all .2s ease-in-out;
}
.product-container .list li:hover .list-btn{
  width:300px;
  height:36px;
  background:rgba(23,135,255,1);
  margin-left: -150px;
  border: none;
  color: #fff;
  transition: all .2s ease-in-out;
}

.title-line-container {
  padding: 30px 0;
}
.title-line-container p {
  margin: 0 auto;
}
.title-line-container .blue-line {
  width:50px;
  height:4px;
  background:rgba(23,135,255,1);
}
.title-line-container .gray-line {
  width:246px;
  height:1px;
  background:rgba(215,220,224,1);
}

.try-container {
  width: 100%;
  height: 360px;
  /* background:linear-gradient(90deg,rgba(23,193,255,1) 0%,rgba(23,135,255,1) 100%); */
}
.try-container .try-title {
  font-size: 36px;
  padding-top: 110px;
}

.try-container .try-btn {
  width:260px;
  height:54px;
  background:rgba(255,255,255,1);
  border:1px solid rgba(210,224,239,1);
  text-align: center;
  line-height: 54px;
  color: #111;
  font-size: 18px;
  margin: 70px auto 0;
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -130px;
}
.try-container .try-btn:hover {
  background:rgba(255,132,0,1);
  box-shadow:0px 5px 15px 0px rgba(14,105,255,0.69);
  color: #fff;
  transition: all .5s ease-in-out;
  border: none;
}

.tips-container .tips p:nth-child(1){
  position: relative;
  height: 80px;
}
.tips-container .tips p:nth-child(1) img{
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -40px;
}
.tips-container .tips:hover p:nth-child(1) img{
  top: -10px;
  transition: all ease-in-out .2s;
}

.zoom8 {
  zoom: .8;
}
.service-container {
  background: url('../../../../static/img/pc_index/bg_service-min.png') no-repeat right bottom;
  background-size: cover;
}
.customer-container {
  width: 100%;
  height: 830px;
  padding-top: 100px;
  box-sizing: border-box;
  background: url('../../../../static/img/pc_index/bg_choose-min.png') rgba(232,241,250,1) no-repeat center bottom;
  background-size: cover;
}
.customer-area {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.customer-area-title {
  font-size: 36px;
  color: #222222;
  text-align: center;
}
.customer-area .member-list,.app-list {
  margin: 0 auto;
  width: fit-content;
  margin-top: 78px;
  height: 144px;
}
.customer-area .member-list .member-list-item {
  width:255px;
  height:144px;
  background:rgba(255,255,255,1);
  border-radius:15px;
  float: left;
  padding: 24px 0 0 60px;
  box-sizing: border-box;
  margin: 0 15px;
}
.customer-area .member-list .member-list-item h4 {
  font-size: 50px;
  font-weight: bold;
  color: #1787ff;
}
.customer-area .member-list .member-list-item h4 span {
  color: #1787ff;
}
.customer-area .member-list .member-list-item p {
  font-size: 22px;
  font-weight: 600;
  color: #222222;
}
.customer-area .app-list-item {
  font-size: 18px;
  color: #333333;
  float: left;
  text-align: center;
  margin: 0 58px;
}
.customer-area .app-list-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.ke-power {
  background: #fff;
  background: url('../../../../static/img/pc_index/bg_Strength-min.png') no-repeat left bottom;
  background-size: cover;
}
.ke-power-title {
  font-size: 36px;
}
.ke-power-list {
  width: fit-content;
  margin: 127px auto 0;
}
.ke-power-list .power-list-item {
  float: left;
  margin: 0 10px;
}
.ke-power-list .power-list-item img {
  width:387px;
}
.ke-power-list .power-list-item p {
  font-size: 28px;
}