.why {
	width: 100%;
  position: relative;
  top: -303px;
  padding-top: 304px;
  overflow: hidden;
}

.why main {
  width: 1020px;
  margin: 0 auto;
  position: relative;
  color: #fff;
}

.why-part-one {
  width: calc(860px + calc(calc(100vw - 1020px) / 2));
  display: flex;
  padding-left: 170px;
  position: relative;
  z-index: 2;
}

.why-part-two {
  width: calc(1020px + calc(calc(100vw - 1020px) / 2));
  display: flex;
  flex-direction: row-reverse;
  margin-left: calc(-170px - calc(calc(100vw - 1020px) / 2));
  margin-top: 90px;
}

.why main .fans {
  flex: 0 0 248px;
  height: 248px;
  /* background: pink url('./../images/why_fans.png') no-repeat; */
  background-size: 100% 100%;
  position: relative;
  z-index: 3;
  margin-top: 63px;
  /* background: rgba(30, 30, 30, 0); */
	backdrop-filter: saturate(180%) blur(12px);
	-webkit-backdrop-filter: saturate(180%) blur(12px);
	-moz-backdrop-filter: saturate(180%) blur(12px);
	-o-backdrop-filter: saturate(180%) blur(12px);
}

.why main .content {
  flex: 1;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  background: rgba(30, 30, 30, 0);
	backdrop-filter: saturate(180%) blur(12px);
	-webkit-backdrop-filter: saturate(180%) blur(12px);
	-moz-backdrop-filter: saturate(180%) blur(12px);
	-o-backdrop-filter: saturate(180%) blur(12px);
}

.why main .content .block {
  background: #fff;
  width: 75px;
  height: 335px;
  margin: 20px;
}

.why main .content .list {
  color: #fff;
  margin-left: 75px;
}

.why main .content .list h3 {
  font-size: 32px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
}

.why main .content .list p {
  width: 420px;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 300;
  color: #FFFFFF;
  margin: 16px 0 20px 0;
  padding: 0 0 20px 66px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.why main .content .list p img {
  width: 10px;
  height: 16px;
  margin-right: 9px;
}

.why main .content .list p:last-child {
  border: 0;
  padding-bottom: 0;
  margin: 0;
  margin-top: 20px;
}

.why-part-one .fans {
  margin-right: -50px;
  background: url('./../images/why_fans.png') no-repeat, linear-gradient(270deg, #000 1%, #000 30%, rgba(0, 0, 0, .5) 40%, transparent 50%);
}

.why-part-two .fans {
  margin-left: -50px;
  background: url('./../images/why_musician.png') no-repeat, linear-gradient(-270deg, #000 1%, #000 30%, rgba(0, 0, 0, .5) 40%, transparent 50%);
}

.why-part-two .content {
  justify-content: flex-start;
  flex-direction: row-reverse;
  text-align: right;
}

.why-part-two .content .list {
  color: #fff;
  margin-right: 75px;
}

.why-part-two .content .list p {
  text-align: right;
  justify-content: flex-end;
  padding: 0 66px 20px 0!important;
}

.why-part-two .content .list p img {
  margin-left: 9px;
}


.why-title {
  width: 700px;
  height: 416px;
  /* background: url('./../images/symbol_bg_1.png') no-repeat; */
  background-size: 100% 100%;
  position: absolute;
  top: -303px;
  left: -275px;
  z-index: 1;
}

.why-title-symbol {
  width: 278px;
  height: 274px;
  background: url('./../images/symbol_1.png') no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: -50px;
  top: -68px;
  z-index: 2;
  transform-origin: 50%;
  animation: whySymbolMove 12s ease-in-out infinite alternate;
}

.why-title .why-title-img {
  width: 278px;
  height: 80px;
  background: url('./../images/why_title.svg') no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: 271px;
  top: 168px;
  z-index: 1;
}

@keyframes whySymbolMove {
  0% {
    transform: scaleX(1)
  }
  20% {
    transform: scale(1,.9) translateX(3%) rotate(-5deg)
  }
  50% {
    transform: scale(1.1,1) translateX(-3%) rotate(0)
  }
  80% {
    transform: scale(1.1,1.1) translate(3%,5%)
  }
  100% {
    transform: scale(1,1) translate(3%,5%) rotate(5deg)
  }
}