/* 引入Swiper的样式库 */
@import url('https://unpkg.com/swiper/swiper-bundle.min.css');
.main *{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.main{
  width: 100%;
  position: relative;
  overflow-x: hidden;
}
.top{
  width: 100%;
  height: 50px;
  background: rgba(0, 0, 0, 0.2);
  /*position: fixed;*/
  top:0;
  left:0;
  z-index: 10;
}
/*.topBar{*/
/*  width: 1200px;*/
/*  height: 50px;*/
/*  font-size: 16px;*/
/*  color: #FFFFFF;*/
/*  margin:0 auto;*/
/*}*/
.topBar .name{
  height: 50px;
  line-height: 50px;
  font-size: 19px;
  color: #FFFFFF;
  letter-spacing: 0;
  font-weight: 700;
  display: inline-block;
}
.topBar .information{
  float: right;
}
.information ul{
  list-style: none;
}
.information ul li{
  display: inline-block;
  height: 20px;
  padding:0 20px;
  margin:15px 0;
  cursor: pointer;
}
.information ul li:nth-child(1){
  border-right: 1px solid #fff;
}
.swiper-container{
  width: 100%;
  height: 320px;
  background:url("../img/swiperBack.png") no-repeat;
  background-size: 100%;
  --swiper-theme-color: rgba(0,0,0,0.5);
  --swiper-pagination-color: #fff;/* 两种都可以 */
}
.swiper-wrapper{
  width: 100%;
  height: 260px;
}
.swiper-slide{
  background-color: transparent;
}
.mainText{
  display: inline-block;
  margin-top: 4%;
  margin-bottom: 18px;
  font-size: 32px;
  font-weight: 700;
  color:#fff;
  background:#fff -webkit-linear-gradient(-45deg,#fff 0%,rgba(255,216,108,.7),rgba(255,216,108,1),rgba(255,216,108,.7),#fff 20%) no-repeat;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  -webkit-animation:cliptext 3s linear infinite;
  line-height: 38px;
}
@-webkit-keyframes cliptext{
  0%{background-position:left 0;}
  100%{background-position:300px 0;}
}
.tips{
  width: 635px;
  height: 93px;
  background: rgba(0,0,0,0.20);
  margin:0 auto;
  font-size: 18px;
  color: #FFFFFF;
  line-height: 28px;
  padding:19px 17px;
  border-top: 1px solid #7BC8FF;
  text-align: center;
}
@media (min-width:1900px){
  .mainText{
    margin-top: 4%;
  }
}
