body {
  margin: 0;
  padding: 0;
  /*overflow: hidden;*/
}
ul {
  padding: 0;
  margin: 0;
}
h3, h4 {
  margin: 0px;
  padding: 10px;
}
.title {
  position: relative;
  text-align: center;
  z-index: 1;
}
.swiper-container {
  width: 98%;
  /*height: 30%;*/
  padding-top: 10px;
  padding-bottom: 40px;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 500px;
  height: 550px;
}
.swiper-slide-active {
  background-color: rgba(200,200,200, 0.5);
}


  /*slider 的标题*/
  .slide-title {
    text-align: center;
  }
  /*上面图片显示块*/
  .slide-img {
    position: relative;
    width: 100%;
    height: 60%;
    text-align: center;
  }
  .slide-img img {
    width: 80%;
    height: 100%;
  }

  .link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
  }

  /*下面项目详情块*/
  .slide-detail {
    /*margin-top: 10px;*/
    padding: 0 10px;
  }

  /*个人信息块*/
  .person {
    position: relative;
    width: 60%;
    margin: auto;
    z-index: 100;
    /*pointer-events:none;*/
  }
  .moreInfo {
    display: none;
  }
  /*标题*/
  .person-title {
    position: absolute;
    left: 150px;
    top: 10px;
    text-align: center;
  }
  .person-content ul {
    position: absolute;
    left: 220px;
    list-style: none;
    margin-bottom: 15px;
  }
  .person-content ul:after {
    content: "";
    display: table;
    clear: both;
  }
  .person-content li {
    float: left;
    width: 50%;
    height: 50%;
    margin-top: 20px;
    text-align: center;
  }

  #role {
    position: relative;
    font-weight: bold;
    animation: floatTop 1.5s infinite;
    -webkit-animation: floatTop 1.5s infinite;
  }
  @keyframes floatTop {
    0% {top: 0px;}
    50% {top: -15px;}
    100% {top: 0px;}
  }
  /*信息块底部*/
  .person-footer {
    margin-top: 20px;
  }

  /*背景canvas*/
  canvas {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
  }

  @media only screen and (max-width: 768px) {
    .person {
      width: 90%;
    }
  }
