:root {
  --main-color: #F27440;
  --yellow: #FFC64E;
  --blue: #0098C8;
  --green: #00B1B1;
}

* {
  /* word-break: break-all; */
  text-align: justify;
}

body {
  overflow-x: hidden;
  background-color: #000;
  position: relative;
}

.btn-now {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--green);
  color: #fff;
  font-size: 20px;
  line-height: 24px;
  font-weight: bold;
  position: fixed;
  top: 120px;
  right: 40px;
  z-index: 555555;

}

.btn-now::after,
.btn-now::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0%;
  left: 0%;
  box-sizing: border-box;
}

.btn-now:before {
  animation: zoom 3s infinite;
}

.btn-now:after {
  animation: zoom 3s 1s infinite;
}

@keyframes zoom {
  0% {
    border: 5px solid var(--green);
    transform: scale(1);
    opacity: 1;
  }

  100% {
    border: 1px solid var(--green);
    transform: scale(1.7);
    opacity: 0;
  }
}

.blank {
  height: 76px;
  width: 100%;
}

.wrap-0 {
  width: 100%;
  height: 0;
  background: url('./../images/bannerS.jpg') no-repeat center center;
  padding-top: 130%;
  background-color: #000;
  background-size: cover;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.deco3 {
  content: '';
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background-color: var(--main-color);
  position: absolute;
  left: -200px;
  bottom: -200px;
  z-index: 3;
  background: url('./../images/deco2.svg') no-repeat center center;
}

@media screen and (min-width:768px) {
  .deco3 {
    width: 780px;
    height: 780px;
    left: -300px;
    bottom: -600px;
  }
}

@media screen and (min-width:991px) {
  .wrap-0 {
    background: url('./../images/banner.jpg') no-repeat center center;
    padding-top: 50%;
    background-color: #000;
  }
}

@media screen and (min-width:1280px) {
  .wrap-0 {
    padding-top: 45%;
    background-size: cover;
  }
}

@media screen and (min-width:1680px) {
  .wrap-0 {
    padding-top: 40%;
    background-size: cover;
  }
}

@media screen and (min-width:1920px) {
  .wrap-0 {
    padding-top: 35%;
    background-size: cover;
  }
}


.wrap-inner {
  width: 85%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 180px 0px 180px 0px;

}

.wrap-1 {
  background-color: #FFF4DE;
  width: 100%;
  font-size: 20px;
  line-height: 34px;
}

.wrap-1>.wrap-inner {
  position: relative;
  z-index: 1;
}

.wrap-1>.wrap-inner::before {
  content: '';
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: var(--yellow);
  opacity: .5;
  position: absolute;
  right: 0px;
  top: -260px;
  z-index: -1;
}

.deco1 {
  width: 150px;
  position: absolute;
  right: 0px;
  bottom: 10px;
  z-index: 1;
  animation: deco1-spin 17s infinite cubic-bezier(.17, .67, .83, .67);
  overflow: hidden;
}

@media screen and (min-width:991px) {
  .deco1 {
    width: 298px;
    right: -120px;
    bottom: -120px;
  }
}

@keyframes deco1-spin {
  to {
    transform: rotate(1turn);
  }
}

.deco1>img {
  width: 100%;
}

.deco2 {
  width: 235px;
  height: 235px;
  border-radius: 50%;
  background-color: var(--yellow);
  position: absolute;
  left: -150px;
  bottom: -100px;
  z-index: 1;
}

@media screen and (min-width:1366px) {
  .deco2 {
    width: 335px;
    height: 335px;
    left: -360px;
    bottom: -50px;
  }
}

.wrap-2 {
  background-color: #F4FBFB;
  width: 100%;
  z-index: 0;
  position: relative;

}

.wrap2-catch {
  width: 155px;
}

.wrap2-catch img,
.wrap3-catch img,
.wrap4-catch img {
  width: 100%;
}

.wrap2-active {
  display: block;
  text-align: center;
  margin-top: 35px;
}

.wrap2-active>p {
  display: inline-block;
  margin: 0 auto;
  font-weight: bold;
  text-align: center;
  font-size: 22px;
  line-height: 34px;
  padding: 30px 25px;
  background-color: #E5E7E8;
  position: relative;
}

@media screen and (min-width:991px) {
  .wrap2-active>p {
    padding: 30px 115px;
  }
}

.wrap2-active>p::after {
  content: '';
  width: 100%;
  height: 100%;
  border: 2px solid #E5E7E8;
  position: absolute;
  top: -9.5px;
  right: -9.5px;
}

.schedule-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 90px;
}

.schedule {
  width: 100%;
}

@media screen and (min-width:991px) {
  .schedule {
    width: 47%;
  }
}


.schedule-detail {
  display: flex;
  align-items: flex-start;
  margin: 20px 25px 50px 0px;
  position: relative;
}

.schedule-detail::after {
  content: '';
  background-color: #00B1B1;
  width: 2px;
  height: calc(100% - 20px);
  position: absolute;
  top: 50px;
  left: 58px;
}


@media screen and (min-width:991px) {
  .schedule-detail:nth-last-child(1):after {
    height: 0px;
  }
}

.schedule:nth-of-type(2)>.schedule-detail:nth-last-child(1):after {
  height: 0px;
}



.time {
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  background-color: #00B1B1;
  color: #fff;
  padding: 10px 13px;
  margin-right: 25px;
  position: relative;
  flex-shrink: 0;
}

.time::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #D8D8D8;
  position: absolute;
  top: -6px;
  right: -6px;
  z-index: -5;
}

.schedule .content {
  font-size: 22px;
  line-height: 32px;
  font-weight: bold;
}

.speaker {
  font-weight: normal;
  font-size: 20px;
  line-height: 28px;
}

.wrap-3 {
  background-color: #FDF6F3;
  width: 100%;
  position: relative;
  z-index: 0;
}

.wrap3-catch {
  width: 100px;
}

.intro-wrap,
.gift-wrap {
  margin-top: 90px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.intro {
  width: 100%;
  margin-bottom: 100px;
}

@media screen and (min-width:991px) {

  .intro {
    width: 47%;
  }
}

.intro-catch {
  width: 80%;
  display: inline-block;
  font-size: 22px;
  line-height: 32px;
  font-weight: bold;
  padding: 20px 30px;
  background-color: var(--main-color);
  color: #fff;
  position: relative;
}

@media screen and (min-width:991px) {
  .intro-catch {
    width: 90%;
  }
}

.intro-catch::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #E2E2E2;
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: -1;
}

.intro-content {
  font-size: 20px;
  line-height: 28px;
  margin-top: 25px;
}

.intro-content>ul,
.speaker-content>ul,
.speaker-content4>ul {
  list-style-position: outside;
  text-indent: -1rem;
  margin-left: 2rem;

}


.intro-content>ul li,
.speaker-content>ul li,
.speaker-content4>ul li {
  font-size: 20px;
  line-height: 32px;
  margin-top: 5px;
}

.intro-content>ul li::before,
.speaker-content>ul li::before,
.speaker-content4>ul li::before {
  content: "▪";
  color: #F7B296;
  display: inline-block;
  width: 1rem;

}

.speaker-content4>ul li::before {
  color: #96D4E8;
}

.gift-wrap {
  margin-top: 120px;
  padding-top: 90px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid #888;
}

.gift {
  display: flex;
  align-items: center;
  width: 80%;
  margin: 20px 20px 80px 20px;
}

@media screen and (min-width:911px) {
  .gift {
    width: 40%;
  }
}

.gift-img {
  width: 100px;
  margin-right: 30px;
  flex-shrink: 0;
}

@media screen and (min-width:911px) {
  .gift-img {
    width: 140px;
    margin-right: 10px;
    flex-shrink: 0;
  }
}

.gift-img>img {
  width: 100%;
}

.gift-detail {
  /* font-weight: bold; */
  font-size: 18px;
  line-height: 30px;
  word-break: normal;
}

.gift-detail>span {
  font-weight: normal;
  font-size: 16px;
}

.wrap-4 {
  background-color: #F7F7F7;
  width: 100%;
}

.wrap-4>.wrap-inner {
  width: 80%;
}

/* .
@media screen and (min-width:991px) {
  .speaker-avatar {
    width: 90%;
    max-width: 1120px;
  }
} */

.wrap4-catch {
  width: 100px;
}

.speaker-avatar {
  width: 280px;
  flex-shrink: 0;
  margin: 0 auto;
}

@media screen and (min-width:991px) {
  .speaker-avatar {
    width: 380px;

  }
}

@media screen and (min-width:1024px) {
  .speaker-avatar {
    width: 380px;
    margin-right: 85px;
  }
}

.avatar {
  width: 80%;
  position: relative;
  margin: 0 auto;

}

@media screen and (min-width:991px) {
  .avatar {
    width: 337px;
  }
}

.avatar>img {
  width: 100%;
}

.avatar-ball-wrap,
.avatar-ball-wrap2,
.avatar-ball-wrap3,
.avatar-ball-wrap4 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 18px;
  right: 13px;
  z-index: 5;
  border: 1px solid #555;
}

.avatar-ball-wrap2 {
  top: initial;
  right: initial;
  left: 20px;
  bottom: 10px;
}

.avatar-ball-wrap3 {
  right: initial;
  top: 15px;
  left: 3px;
}

.avatar-ball-wrap4 {
  top: 13px;
  right: 12px;
}

.avatar-ball,
.avatar-ball2,
.avatar-ball3,
.avatar-ball4 {
  width: 80%;
  height: 80%;
  border-radius: 50%;
  position: absolute;
  top: 10%;
  right: 10%;
  z-index: 5;
  transform-origin: center;
}

.avatar-ball::after,
.avatar-ball2::after,
.avatar-ball3::after,
.avatar-ball4::after {
  content: '';
  width: 26px;
  height: 26px;
  border-radius: 50%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 5;
  background-color: var(--yellow);
  animation: spin 5s infinite linear;
  transform-origin: 90px 90px;
}

@media screen and (min-width:991px) {

  .avatar-ball::after,
  .avatar-ball2::after,
  .avatar-ball3::after,
  .avatar-ball4::after {
    width: 36px;
    height: 36px;
    transform-origin: 137px 137px;
  }
}

.avatar-ball2::after {
  animation: spin 5s infinite cubic-bezier(.55, .31, .71, .75) reverse;
  background-color: var(--green);
}

.avatar-ball3::after {
  background-color: var(--main-color);
}

.avatar-ball4::after {
  background-color: var(--blue);
  animation: spin 5s infinite cubic-bezier(.17, .67, .83, .67) reverse;
}

@keyframes spin {
  to {
    transform: rotate(1turn);
  }
}

.speaker-wrap {
  margin-top: 150px;
}

.speaker {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin-bottom: 100px;
}

@media screen and (min-width:1024px) {
  .speaker {
    flex-direction: row;
  }
}

.speaker:nth-last-child(1) {
  margin-bottom: 0px;
}

.speaker-content,
.speaker-content2,
.speaker-content3,
.speaker-content4 {
  width: 100%;
  margin-top: 30px;
}

@media screen and (min-width:1024px) {

  .speaker-content,
  .speaker-content2,
  .speaker-content3,
  .speaker-content4 {
    width: calc(100% - 465px);
    margin-top: 0px;
  }
}

.speaker-content2 {
  align-self: center;

}

.speaker-content>.name,
.speaker-content2>.name,
.speaker-content3>.name,
.speaker-content4>.name {
  font-weight: bold;
  font-size: 24px;
  color: var(--main-color);
  margin-top: 15px;
  margin-bottom: 30px;
}

.speaker-content2>.name {
  color: var(--green);
}

.speaker-content3>.name {
  color: var(--main-color);
}

.speaker-content4>.name {
  color: var(--blue);
}

footer {
  background-color: var(--main-color);
  color: #fff;
  font-size: 14px;
  padding: 30px 0px;
  text-align: center;
}

.mt100 {
  margin-top: 100px;
}