* {
  margin: 0;
  padding: 0;
  list-style: none;
}
html,body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* 中心部分 */
.swiper-wrapper {
  /* -webkit-transition-delay: 0.1s;
  -ms-transition-delay: 0.1s; */
}
.swiper-container {
  width: 100%;
  height: 100%;
}

/* 1、logo 模块 */
.logo {
  width: 1rem;
  height: 1rem;
  position: fixed;
  left: 0.48rem;
  top: 0.2rem;
  z-index: 9;
}
.logo img{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
/* 2、导航模块 */
#nav {
  width: 100%;
  height: 1rem;
  line-height: 1rem;
  position: fixed;
  right: 0;
  top: 0;
  text-decoration:none;
  color: #ffffff;
  padding-right: 0.8rem;
  box-sizing: border-box;
  z-index: 9;
}
#nav li {
  float: right;
  font-size: 0.3rem;
  font-family: PingFangSC-Semibold;
  height: 0.7rem;
  margin-left: 0.8rem;
}
/* 鼠标经过变成小手 */
#nav li:hover {
  cursor:pointer;
}
.border-active {
  border-bottom: 2px solid #fff;
}

/*3、轮播图模块 */
/*3.1、 中间右侧数字导航 */
.num-point {
  height: 4vw;
  position: fixed;
  top: 50%;
  right: 2vw;
  margin-top: -1.5vw;
  z-index: 13;
  color: #fff;
  font-size: 1vw;
  font-family: PingFangSC-Semibold;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.line-point {
  width: 100%;
  height: 3px;
  margin: 3px 0;
  background-color: #fff;
}
.swiper-pagination {
  display: none !important;
}
/* 将小圆点  更改为 数字格式 */
.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  width: 50px !important;
  height: 50px !important;
  font-size: 20px !important;
  bottom: none !important;
  left: 100% !important;
  margin-left: -50px;
  top: 50% !important;
  margin-top: -25px !important;
  color: #fff !important;
}
/* 3.2、上下按钮*/
.arrow-top {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background-color: #fff;
  transform:rotateZ(90deg)
}

.arrow-bottom {
  width: 0.48rem !important;
  height: 0.48rem !important;
  border-radius: 50% !important;
  background-color: #fff;
  transform:rotateZ(90deg)
}
.swiper-button-next, .swiper-button-prev {
  position: fixed!important;
  right: 0.4rem !important;
  cursor: pointer;
  background-size: 0.28rem 0.28rem;
  -webkit-background-position: center;
  -ms-background-position: center;
  -webkit-background-repeat: no-repeat;
  -ms-background-repeat: no-repeat;
  z-index: 10;
}
.swiper-button-next {
  bottom: 0.79rem;
}
.swiper-button-prev {
  bottom: 1.49rem;
}
.arrow-top:hover {
  box-shadow: 0px 0px 0.1rem #fff;
}
.arrow-bottom:hover {
  box-shadow: 0px 0px 0.1rem #fff;
}
/* 4、查看更多模块 */

.look-more {
  display: inline-block;
  letter-spacing:3px !important;
	font-family: PingFangSC-Regular;
	font-size: 0.2rem;
  color: #ffffff;
  padding-bottom: 0.5vw;
  overflow: hidden;
  position: absolute;
  left: 1.14rem;
  bottom: 0.95rem;
  opacity: 0;
}
/* 鼠标经过变成小手 */
.look-more:hover {
  cursor:pointer;
}
/* 鼠标经过查看更多时 显示底边框 */
.look-more:before,.look-more:after {
  content:"";
  display:block;
  width: 0;
  height:0;
  border-bottom:2px solid transparent;
  box-sizing: border-box;
  position: absolute;
}
 
.look-more:before {
  bottom:0;
  right:0;
  -webkit-transition: border-color 0s ease-out 0.1s,width 0.2s ease-out 0.6s,height 0.2s ease-out 0.1s;
  -ms-transition: border-color 0s ease-out 0.1s,width 0.2s ease-out 0.6s,height 0.2s ease-out 0.1s;
}
.look-more:after{
  left:0;
  bottom:0;
  -webkit-transition: border-color 0s ease-out 0.1s, width 0.2s ease-out 0.2s, height 0.2s ease-out;
  -ms-transition: border-color 0s ease-out 0.1s, width 0.2s ease-out 0.2s, height 0.2s ease-out;
}
 
.look-more:hover:before{
  width:100%;
  height:100%;
  -webkit-transition:width 0.2s ease-out ,height 0.2s ease-out 0.2s;
  -ms-transition:width 0.2s ease-out ,height 0.2s ease-out 0.2s;
}
.look-more:hover:after{
  width:100%;
  height:100%;
  -webkit-transition: border-color 0s ease-out 0.1s,width 0.2s ease-out 0.1s,height 0.1s ease-out 0.1s;
  -ms-transition: border-color 0s ease-out 0.1s,width 0.2s ease-out 0.1s,height 0.1s ease-out 0.1s;
  border-bottom-color:#fff;
}