html,body{
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  /* cursor: none; */
}
html{
  font-size: 0px;
  background-color: #fff;
}
a{
  text-decoration: none;
}

#all_wrap{
  position: relative;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  min-width: 1200px;
  max-width: 1920px;
  min-height: 100vh;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  overflow: hidden;
  /*
  background:repeating-linear-gradient(
  -45deg,
  #ffffff,
  #ffffff 7px,
  #fffbf0 0,
  #fffbf0 14px
  );
  */
  background-color: #ffffff;
}

#cd{
  position: relative;
  width: 100%;
  height: auto;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 500px;
  padding: 0;
  background-repeat: no-repeat;
  background-position: center top;
}
#cd > .headerBG{
  position: relative;
  width: 100%;
  height: 370px;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
}
#cd > .cdWrap{
  display: block;
  position: relative;
  width: 1200px;
  height: auto;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  margin-bottom: 100px;
  padding: 0;
  top: 0;
  left: 0;
  text-align: center;
}
.cdBox{
  display: block;
  position: relative;
  width: auto;
  height: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  padding: 0;
  cursor: pointer;
  text-align: center;
}
.cdBox img{
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  padding: 0;
}
.cdBox img.bust{
  position: absolute;
}
.slick-active .cdBox img.bust{
  animation-name: bustAnim;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-delay: 0.1s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
}
.cdBox.SoundPlay img.bust{
  /* animation-name: bustAnim02; */
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
}
@-webkit-keyframes bustAnim {
  0% {
    transform: skew(1.3deg, 1.3deg);
  }
  10% {
    transform: skew(-0.6deg, -0.6deg);
  }
  20% {
    transform: skew(1.2deg, 1.2deg);
  }
  30% {
    transform: skew(-0.6deg, -0.6deg);
  }
  40% {
    transform: skew(0.9deg, 0.9deg);
  }
  50% {
    transform: skew(-0.6deg, -0.6deg);
  }
  60% {
    transform: skew(0.3deg, 0.3deg);
  }
  70% {
    transform: skew(-0.2deg, -0.2deg);
  }
  80% {
    transform: skew(0.1deg, 0.1deg);
  }
	100% {
    transform: skew(0deg, 0deg);
	}
}
@-webkit-keyframes bustAnim02 {
  0% {
    transform: skew(1.3deg, 1.3deg);
  }
  10% {
    transform: skew(-0.6deg, -0.6deg);
  }
  20% {
    transform: skew(1.2deg, 1.2deg);
  }
  30% {
    transform: skew(-0.6deg, -0.6deg);
  }
  40% {
    transform: skew(0.9deg, 0.9deg);
  }
  50% {
    transform: skew(-0.6deg, -0.6deg);
  }
  60% {
    transform: skew(0.3deg, 0.3deg);
  }
  70% {
    transform: skew(-0.2deg, -0.2deg);
  }
  80% {
    transform: skew(0.1deg, 0.1deg);
  }
	100% {
    transform: skew(0deg, 0deg);
	}
}
.cdBox .banner{
  position: absolute;
  right: 500px;
  top: 100px;
}
.cdBox .banner img{
  position: absolute;
  left: 0;
  top: 0;
}

/* slick.js */
.prev-arrow,
.next-arrow {
    display: block;
    position: absolute;
    width: 50px;
    height: 100px;
    top: 300px;
    margin: auto 0;
    padding: 0;
    background: coral;
    border-radius: 10px;
    transition: all .3s ease;
    cursor: pointer;
    z-index: 50;
}

.prev-arrow {
    left: 250px;
    transform: rotate(180deg);
}
.next-arrow {
    right: 250px;
}

.prev-arrow::before,
.next-arrow::before{
    position:absolute;
    content: "";
    width:10px;
    height:10px;
    border-right: 2px solid #FFF;
    border-top: 2px solid #FFF;
    top:0;
    bottom:0;
    left:0;
    right:0;
    margin:auto;
    transform:rotate(45deg);
}


.dots-wrap {
    display: flex;
    justify-content: center;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    padding: 0;
}

.dots-wrap li {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #fff;
    border-radius: 50%;
    background-color: lightgray;
    cursor: pointer;
}

.dots-wrap li:hover,
.dots-wrap li.slick-active {
    background: coral;
}
.dots-wrap li button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}
