.container .first-con{
  position: fixed;
  height: 100vh;
}
.container .banner{
  width: 100%;
  height: 500px;
  background: url('../image/learn/banner.jpg') center no-repeat;
  background-size:cover;
  padding: 0 8%;
  box-sizing: border-box;
  color: #fff;
}
.banner .banner-en{
  font-size: 30px;
  padding-top: 240px;
}
.banner .banner-zh{
  font-size: 20px;
  margin-top: 10px;
}

.container .main{
  padding: 0 8% 40px;
  box-sizing: border-box;
  overflow: hidden;
}
.main .nav{
  padding: 20px 0;
  border-bottom: 2px solid rgb(238,238,238);
  font-size: 16px;
  color: rgb(52,52,52);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.main .nav a{
  color: rgb(168,168,168);
}
.main .nav .tab-con{
  display: flex;
  padding-right: 20px;
  font-size: 17px;
}
.main .nav .tab-item{
  margin-left: 30px;
  position: relative;
}
.main .nav .tab-item:first-child{
  margin-left: 0;
}
.main .nav a.active{
  color: rgb(60,60,60);
}
.main .nav a.active::before{
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 100%;
  height: 3px;
  background: #005AC8;
  content: "";
}
.main .content{
  width: 100%;
  padding: 30px 0 0 30px;
  box-sizing: border-box;
}
.main .content .con-title{
  font-size: 25px;
  color: #005AC8;
  font-weight: 550;
  position: relative;
  margin-bottom: 40px;
}
.main .content .con-title::after{
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 80px;
  height: 3px;
  background: #005AC8;
  content: "";
}
.main .content .con-bg{
  display: block;
  width: 100%;
  /* height: 400px; */
}
.main .content .mobile-bg{
  display: none;
}
.container .section-bg{
  width: 100%;
  height: 100px;
  background: url('../image/learn/learn14.png') center no-repeat;
  background-size:cover;
}
.container .mobile-con{
  display: none;
}
.container .section-bg2{
  display: none;
}

@media screen and (max-width:1200px) {
  .container .banner{
    padding: 0 15px;
  }
  .container .main{
    padding: 0 15px;
  }
}
@media screen and (max-width:992px) {
  .main .content{
    padding-left: 0;
  }
  .main .content .con-bg{
    display: none;
  }
  .main .content .mobile-bg{
    display: block;
    width: 100%;
    height: 400px;
    background: url('../image/learn/mobile.jpg') center no-repeat;
    background-size:contain;
  }
  .container .mobile-con{
    display: block;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
  .container .section-bg{
    height: 40px;
  }
  .container .section-bg2{
    display: block;
  }
  .container .mobile-con .mobile2{
    display: block;
    width: 100%;
    height: 400px;
    background: url('../image/learn/mobile2.jpg') center no-repeat;
    background-size:contain;
  }
  
}
@media screen and (max-width:768px) {
  .main .nav .tab-con{
    padding: 15px 0 0 20px;
    font-size: 14px;
  }
  .main .nav .tab-item{
    margin-left: 10px;
    position: relative;
  }
  .main .content .mobile-bg{
    height: 300px;
  }
  .container .mobile-con .mobile2{
    height: 230px;
  }
}