@charset "utf-8";
html, body {
  font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  font-size: 14px;
  min-height: 100%;
  margin: auto;
  padding: 0;
  max-width: 750px;
  position: relative;
}

abbr, input, address, article, aside, map, area, audio, b, blockquote, canvas, caption, cite, code, dd, del, details, dfn, div, dl, dt, em, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, p, pre, q, samp, section, small, span, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, ul, var, video {
  margin: 0;
  padding: 0;
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-style: normal;
  font-weight: normal;
}

article, aside, details, figcaption, figure, footer, header, hgroup, hr, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

a {
  outline: 0;
  text-decoration: none;
}

img {
  border: 0;
  max-width: 100%;
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, td, th {
  text-align: left;
  font-weight: normal;
  border: 0;
}

a, input, label, div, img {
  /* 去除移动端a标签点击有阴影 */
  -webkit-tap-highlight-color: rgba(255, 0, 0, 0);
}

.clear:after {
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.elip {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.elip2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

a {
  text-decoration: none;
  color: #262626;
}

a:hover {
  text-decoration: none;
}

.music {
  position: fixed;
  right: 30px;
  top: 40px;
  width: 40px;
  height: 40px;
}

.music img {
  width: 100%;
  height: 100%;
}

.part-1 {
  background: url(../images/indexbg.jpg) no-repeat center center; top: 0; left: 0; width: 100%;height: 100vh;background-size: cover; overflow: auto; z-index: 999;
}

.part-1 p {
  text-align: center;
}





img.note {
  width: 54%;
  padding: 18% 0 0 10%;
}

.content {
  color: #fff;
  margin: 10% 5% 0 10%;
  line-height: 26px;
  font-size: 14px;
  height: 270px;
  overflow: auto;
  font-weight:bold
}

.content p {
  text-indent: 25px;
  padding-right: 10px;
  font-weight: 100;
}

img.more {
  width: 40%;
  padding: 9% 0 27% 7%;
}

/* 滚动条整体部分 */

.content::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  /**/
}

/* 滚动条的轨道 */

.content::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
  border: 1px solid #fff;
}

/*   滚动条里面的小方块，能向上向下移动 */

.content::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 5px;
}

.rotateOut {
  animation-iteration-count: infinite;
  animation-duration: 3s;
  opacity: 1;
  animation-timing-function: linear;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
    transform: rotate3d(0, 0, 1, 360deg);
    opacity: 1
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    opacity: 1
  }
  100% {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
    -ms-transform: rotate3d(0, 0, 1, 360deg);
    transform: rotate3d(0, 0, 1, 360deg);
    opacity: 1
  }
}