@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  max-width: 100%;
}
* .container-fluid {
  width: 1280px;
  margin: 0 auto;
}
@media (max-width: 1440px) {
  * .container-fluid {
    width: 90%;
  }
}
* .text-8xl {
  font-size: clamp(48px, 6.7vw, 96px);
  line-height: 1;
}
* .text-7xl {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
}
* .text-6xl {
  font-size: clamp(30px, 4.2vw, 60px);
  font-weight: 500;
  letter-spacing: 10px;
  padding: 20px 100px;
  border-radius: 80px;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 576px) {
  * .text-6xl {
    letter-spacing: 5px;
    padding: 15px 50px;
  }
}
* .text-5xl {
  font-size: clamp(22px, 3.3vw, 48px);
  line-height: 1;
}
* .text-4xl {
  font-size: clamp(20px, 2.5vw, 36px);
  line-height: 2.5rem;
}
* .text-3xl {
  font-size: clamp(18px, 2vw, 30px);
  line-height: 2.25rem;
  font-weight: 600;
}
* .text-2xl {
  font-size: clamp(16px, 1.7vw, 22px);
  line-height: 2rem;
  font-weight: 400;
}
* .text-xl {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.75rem;
  font-weight: 400;
}
* .text-lg {
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.75rem;
  font-weight: 400;
}
* .text-base {
  font-size: clamp(16px, 1vw, 16px);
  line-height: 1.5rem;
  font-weight: 400;
}
* a {
  text-decoration: none;
  outline: none;
}
* ul {
  list-style: none;
}

@keyframes imgMove {
  0% {
    transform: rotate(5deg);
    opacity: 0;
  }
  20% {
    transform: rotate(-5deg);
    opacity: 0.5;
  }
  100% {
    transform: rotate(0deg);
    opacity: 1;
  }
}
@keyframes animates01 {
  0% {
    opacity: 0;
    width: 100%;
  }
  100% {
    opacity: 1;
    width: 50%;
  }
}
@keyframes animates01mb {
  0% {
    opacity: 0;
    width: 30%;
  }
  100% {
    opacity: 1;
    width: 90%;
  }
}
@keyframes animates02 {
  0% {
    opacity: 0;
    bottom: 50%;
    transform: scale(3, 3);
  }
  60% {
    opacity: 0;
    transform: translate(0, 50px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes animates03 {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
    transform: translate(0, 50%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes animates04 {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0.1;
    transform: translateY(-3px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes animates05 {
  0% {
    opacity: 0.1;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-3px);
  }
  100% {
    opacity: 0.1;
    transform: translateY(0);
  }
}
@keyframes speaker {
  0% {
    opacity: 0;
    transform: translateX(-10%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes animates06 {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}
body {
  background-color: #fff;
  font-family: "Noto Sans TC", sans-serif;
  position: relative;
}
body .main-nav {
  color: #00a33e;
  position: fixed;
  transition: all 0.2s;
  width: 100%;
  z-index: 1000;
}
body .main-nav .nav {
  display: flex;
  padding: 10px 30px;
  justify-content: space-between;
  transition: background 0.2s;
  align-items: center;
  background-color: rgb(0, 0, 0);
  box-shadow: 0 2px 10px 1px rgba(0, 0, 0, 0.2);
}
@media (max-width: 991px) {
  body .main-nav .nav {
    padding-right: 0;
    height: 70px;
  }
}
@media (max-width: 480px) {
  body .main-nav .nav {
    height: 50px;
    padding: 10px 30px;
  }
}
body .main-nav .nav .logo {
  width: 160px;
}
body .main-nav .nav .logo a {
  display: block;
  width: 100%;
  height: 100px;
  background: url(../img/logo.png) center center/contain no-repeat;
}
@media (max-width: 991px) {
  body .main-nav .nav .logo {
    width: 100px;
  }
}
@media (max-width: 480px) {
  body .main-nav .nav .logo {
    width: 80px;
  }
}
body .main-nav .nav .nav-items {
  display: flex;
}
body .main-nav .nav .nav-items a {
  font-size: 18px;
  box-sizing: border-box;
  margin: 0 30px;
  text-decoration: none;
  color: #fff;
  transition: border 0.2s ease-in-out;
  position: relative;
}
body .main-nav .nav .nav-items a::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 0%;
  height: 2px;
  background-color: #00a33e;
  transform-origin: center;
  transition: all 0.5s ease-in-out;
}
body .main-nav .nav .nav-items a:hover::after {
  width: 70%;
}
@media (max-width: 991px) {
  body .main-nav .nav .nav-items a {
    display: none;
    padding: 0;
  }
}
body .main-nav .nav .nav-items a:last-child {
  display: none;
}
@media (max-width: 991px) {
  body .main-nav .nav .nav-items a:last-child {
    display: block;
    padding: 30px;
    margin: 0;
    border-bottom: none;
  }
}
body .main-nav .nav .nav-items a:last-child:hover {
  cursor: pointer;
  border: none;
  color: #f2f2f2;
  background-color: #16181a;
}
body .main-nav .nav-scroll {
  background-color: #16181a;
  color: #f2f2f2;
  transition: all 0.5s;
}
body .main-nav .nav-scroll span {
  margin-top: 20px;
}
body .main-nav .nav-scroll .nav-items a {
  padding: 20px 0;
  color: #f2f2f2;
  border: none;
  border-top: 3px solid transparent;
}
body .main-nav .nav-scroll .nav-items a:hover {
  border-color: #00a33e;
}
body .main-nav .nav-scroll .nav-items:active {
  color: #00a33e;
  border-color: #00a33e;
}
@media (max-width: 991px) {
  body .main-nav .nav-scroll .nav-items:last-child {
    padding: 20px;
  }
}
body .nav-mobile {
  height: 100vh;
  width: 0;
  position: fixed;
  z-index: 10000;
  background-color: #16181a;
  overflow-x: hidden;
  transition: all 0.2s;
  padding-top: 60px;
  text-align: center;
}
body .nav-mobile a {
  padding: 10px;
  text-decoration: none;
  font-size: 22px;
  color: #f2f2f2;
  display: block;
  transition: 0.2s;
}
body .nav-mobile a:hover {
  color: #fff;
}
body .nav-mobile .toggle-nav {
  position: absolute;
  top: 0;
  right: 0;
  padding: 30px;
  font-size: 22px;
}
body .nav-mobile .toggle-nav:hover {
  cursor: pointer;
  background-color: #009241;
}
body .main {
  position: relative;
  background-color: #00a33e;
}
body .main .kv {
  position: relative;
  background: url(../img/kv-pc.jpg) bottom center/cover no-repeat;
}
@media (max-width: 480px) {
  body .main .kv {
    height: 100vh;
  }
}
body .main .kv .container-fluid {
  position: relative;
}
body .main .kv .container-fluid .kv-banner {
  position: relative;
  padding: 600px 0;
}
@media (max-width: 1920px) {
  body .main .kv .container-fluid .kv-banner {
    padding: 500px 0;
  }
}
@media (max-width: 768px) {
  body .main .kv .container-fluid .kv-banner {
    padding: 450px 0;
  }
}
@media (max-width: 576px) {
  body .main .kv .container-fluid .kv-banner {
    padding: 350px 0;
  }
}
@media (max-width: 480px) {
  body .main .kv .container-fluid .kv-banner {
    padding: 350px 0;
  }
}
body .main .kv .container-fluid .kv-banner .kv-banner-top .title {
  background: url(../img/kv-title.png) center center/contain no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-60%);
  width: 50%;
  height: 100%;
  animation: animates01 3s;
  z-index: 1;
}
@media (max-width: 1440px) {
  body .main .kv .container-fluid .kv-banner .kv-banner-top .title {
    transform: translateY(-50%);
  }
}
@media (max-width: 991px) {
  body .main .kv .container-fluid .kv-banner .kv-banner-top .title {
    top: 30%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    height: 25%;
  }
}
@media (max-width: 480px) {
  body .main .kv .container-fluid .kv-banner .kv-banner-top .title {
    animation: animates01mb 3s;
    width: 90%;
    height: 30%;
    top: 20%;
  }
}
body .main .kv .container-fluid .kv-banner .kv-banner-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body .main .kv .container-fluid .kv-banner .kv-banner-bottom .subtitle {
  background: url(../img/kv-subtitle.png) bottom center/contain no-repeat;
  position: absolute;
  width: 70%;
  left: -10%;
  bottom: 0;
  z-index: 2;
  height: 100%;
  animation: animates02 5s;
}
@media (max-width: 1440px) {
  body .main .kv .container-fluid .kv-banner .kv-banner-bottom .subtitle {
    width: 60%;
    left: 0;
  }
}
@media (max-width: 480px) {
  body .main .kv .container-fluid .kv-banner .kv-banner-bottom .subtitle {
    background: url(../img/kv-subtitle-mb.png) bottom center/contain no-repeat;
    width: 90%;
    left: 0;
    bottom: 0;
    height: 100%;
    z-index: 2;
  }
}
body .main .kv .container-fluid .kv-banner .kv-banner-bottom .people {
  background: url(../img/kv-peoplehand.png) bottom center/contain no-repeat;
  position: absolute;
  width: 70%;
  right: -10%;
  bottom: 0;
  height: 100%;
  animation: animates03 5.2s;
}
@media (max-width: 1560px) {
  body .main .kv .container-fluid .kv-banner .kv-banner-bottom .people {
    right: -6%;
    width: 62%;
  }
}
@media (max-width: 1440px) {
  body .main .kv .container-fluid .kv-banner .kv-banner-bottom .people {
    width: 60%;
    right: 0;
  }
}
@media (max-width: 480px) {
  body .main .kv .container-fluid .kv-banner .kv-banner-bottom .people {
    background: url(../img/kv-peoplehand-mb.png) bottom center/contain no-repeat;
    width: 90%;
    right: 0;
    bottom: 0;
    height: 100%;
    z-index: 1;
  }
}
@media (max-width: 480px) {
  body .main .kv .full-mb {
    width: 100%;
  }
}
body .main .activity {
  position: relative;
  background-color: #00a33e;
}
body .main .activity::before {
  content: "";
  background: url(../img/activity-left.png) center center/contain no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  height: 260px;
  z-index: 0;
  animation: animates04 2.5s infinite;
}
@media (max-width: 480px) {
  body .main .activity::before {
    width: 300px;
  }
}
body .main .activity::after {
  content: "";
  background: url(../img/activity-right.png) center center/contain no-repeat;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 200px;
  z-index: 0;
  animation: animates04 5s infinite;
}
@media (max-width: 480px) {
  body .main .activity::after {
    width: 300px;
    height: 150px;
  }
}
body .main .activity .container-fluid {
  position: relative;
  padding: 160px 0;
  z-index: 2;
  color: #fff;
}
@media (max-width: 768px) {
  body .main .activity .container-fluid {
    padding: 80px 0;
  }
}
@media (max-width: 480px) {
  body .main .activity .container-fluid {
    padding: 80px 0 50px;
  }
}
body .main .activity .container-fluid .activity-title {
  padding: 60px 0;
  position: relative;
  justify-content: center;
  text-align: center;
  display: flex;
}
body .main .activity .container-fluid .activity-title .text-6xl {
  border: 2px solid #fff;
  background-color: #108d37;
  box-shadow: 10px 15px 0px 0px #005f2a;
}
body .main .activity .container-fluid .activity-title .text-6xl:hover {
  box-shadow: 2px 4px 0px 0px #005f2a;
}
body .main .activity .container-fluid .activity-des {
  text-align: center;
}
body .main .activity .container-fluid .activity-des .text-4xl {
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 3.2px;
}
body .main .activity .container-fluid .activity-des span {
  color: #fff8c1;
  font-weight: 500;
}
body .main .beautywu {
  position: relative;
  background-color: #00a33e;
}
body .main .beautywu::before {
  content: "";
  background: url(../img/beautywu-left.png) center center/contain no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 590px;
  height: 706px;
  z-index: 0;
  animation: animates04 2.5s infinite;
}
@media (max-width: 768px) {
  body .main .beautywu::before {
    width: 300px;
  }
}
body .main .beautywu::after {
  content: "";
  background: url(../img/beautywu-right0.png) center center/contain no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  width: 518px;
  height: 676px;
  z-index: 0;
  animation: animates05 2s infinite;
}
@media (max-width: 768px) {
  body .main .beautywu::after {
    width: 300px;
  }
}
body .main .beautywu .container-fluid {
  position: relative;
  padding: 160px 0;
  z-index: 2;
  color: #fff;
}
@media (max-width: 768px) {
  body .main .beautywu .container-fluid {
    padding: 80px 0;
  }
}
body .main .beautywu .container-fluid .beautywu-title {
  padding: 60px 0;
  text-align: center;
  position: relative;
}
@media (max-width: 480px) {
  body .main .beautywu .container-fluid .beautywu-title {
    padding: 60px 0 40px;
  }
}
body .main .beautywu .container-fluid .beautywu-title::before, body .main .beautywu .container-fluid .beautywu-title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 101px;
  height: 149px;
  background: url(../img/contest-li.png) center center/contain no-repeat;
}
@media (max-width: 991px) {
  body .main .beautywu .container-fluid .beautywu-title::before, body .main .beautywu .container-fluid .beautywu-title::after {
    width: 80px;
  }
}
@media (max-width: 768px) {
  body .main .beautywu .container-fluid .beautywu-title::before, body .main .beautywu .container-fluid .beautywu-title::after {
    width: 54px;
  }
}
@media (max-width: 480px) {
  body .main .beautywu .container-fluid .beautywu-title::before, body .main .beautywu .container-fluid .beautywu-title::after {
    width: 30px;
  }
}
body .main .beautywu .container-fluid .beautywu-title::before {
  left: 0;
}
body .main .beautywu .container-fluid .beautywu-title::after {
  right: 0;
}
body .main .beautywu .container-fluid .beautywu-title .top, body .main .beautywu .container-fluid .beautywu-title .bottom {
  margin: 0 auto 10px;
}
@media (max-width: 768px) {
  body .main .beautywu .container-fluid .beautywu-title .top, body .main .beautywu .container-fluid .beautywu-title .bottom {
    width: 80%;
  }
}
@media (max-width: 480px) {
  body .main .beautywu .container-fluid .beautywu-title .top, body .main .beautywu .container-fluid .beautywu-title .bottom {
    width: 60%;
  }
}
body .main .beautywu .container-fluid .beautywu-des {
  display: flex;
  justify-content: center;
  position: relative;
  padding: 30px 60px;
  background-color: #fff8c1;
  box-shadow: 8px 10px 0px 8px #0A1D90;
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 768px) {
  body .main .beautywu .container-fluid .beautywu-des {
    padding: 20px 10px;
    box-shadow: 4px 6px 0px 4px #0A1D90;
  }
}
body .main .beautywu .container-fluid .beautywu-des:hover {
  box-shadow: 2px 5px 0px 2px #0A1D90;
}
body .main .beautywu .container-fluid .beautywu-des .video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
body .main .beautywu .container-fluid .beautywu-des .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body .main .vote {
  position: relative;
  background: url(../img/vote-bg01.jpg) center top/cover no-repeat;
}
body .main .vote .container-fluid {
  position: relative;
  padding: 160px 0;
  z-index: 2;
  color: #fff;
}
@media (max-width: 768px) {
  body .main .vote .container-fluid {
    padding: 80px 0;
  }
}
body .main .vote .container-fluid .vote-title {
  padding: 60px 0;
  text-align: center;
  position: relative;
}
@media (max-width: 480px) {
  body .main .vote .container-fluid .vote-title {
    padding: 60px 0 40px;
  }
}
body .main .vote .container-fluid .vote-title::before, body .main .vote .container-fluid .vote-title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 101px;
  height: 149px;
  background: url(../img/contest-li.png) center center/contain no-repeat;
}
@media (max-width: 991px) {
  body .main .vote .container-fluid .vote-title::before, body .main .vote .container-fluid .vote-title::after {
    width: 80px;
  }
}
@media (max-width: 768px) {
  body .main .vote .container-fluid .vote-title::before, body .main .vote .container-fluid .vote-title::after {
    width: 54px;
  }
}
@media (max-width: 480px) {
  body .main .vote .container-fluid .vote-title::before, body .main .vote .container-fluid .vote-title::after {
    width: 30px;
  }
}
body .main .vote .container-fluid .vote-title::before {
  left: 0;
}
body .main .vote .container-fluid .vote-title::after {
  right: 0;
}
body .main .vote .container-fluid .vote-title img {
  width: 60%;
}
@media (max-width: 768px) {
  body .main .vote .container-fluid .vote-title img {
    width: 80%;
  }
}
@media (max-width: 480px) {
  body .main .vote .container-fluid .vote-title img {
    width: 60%;
  }
}
body .main .vote .container-fluid .vote-des {
  text-align: center;
}
body .main .vote .container-fluid .vote-des p {
  line-height: 1.5;
}
body .main .vote .container-fluid .vote-wrap {
  margin: 50px auto;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
body .main .vote .container-fluid .vote-wrap .vote-box {
  width: 42%;
  text-align: center;
  margin: 0 auto 150px;
  padding: 10px;
}
@media (max-width: 768px) {
  body .main .vote .container-fluid .vote-wrap .vote-box {
    width: 80%;
    margin: 0 auto 100px;
  }
}
@media (max-width: 480px) {
  body .main .vote .container-fluid .vote-wrap .vote-box {
    width: 100%;
  }
}
body .main .vote .container-fluid .vote-wrap .vote-box .vote-subhead {
  position: relative;
  justify-content: center;
  text-align: center;
  display: flex;
}
body .main .vote .container-fluid .vote-wrap .vote-box .vote-subhead .text-3xl, body .main .vote .container-fluid .vote-wrap .vote-box .vote-subhead .text-xl {
  border: 2px solid #0A4399;
  color: #0A4399;
  background-color: #fff;
  box-shadow: 5px 10px 0px 0px #0A1D90;
  letter-spacing: 2px;
  padding: 20px 0;
  border-radius: 80px;
  transition: all 0.5s ease-in-out;
  width: 100%;
}
body .main .vote .container-fluid .vote-wrap .vote-box .vote-subhead .text-3xl:hover, body .main .vote .container-fluid .vote-wrap .vote-box .vote-subhead .text-xl:hover {
  box-shadow: 2px 4px 0px 0px #0A1D90;
}
@media (max-width: 768px) {
  body .main .vote .container-fluid .vote-wrap .vote-box .vote-subhead .text-3xl, body .main .vote .container-fluid .vote-wrap .vote-box .vote-subhead .text-xl {
    letter-spacing: 0px;
    padding: 10px 0;
  }
}
body .main .vote .container-fluid .vote-wrap .vote-box .vote-content {
  background-color: #fff8a8;
  margin: -50px 0px;
  border-radius: 20px;
  border: 3px solid #0A1D90;
  padding: 70px 20px 20px;
}
body .main .vote .container-fluid .vote-wrap .vote-box .vote-content .video-mp4 {
  margin: 20px auto;
}
body .main .vote .container-fluid .vote-wrap .vote-box .vote-content .video-mp4 video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body .main .vote .container-fluid .vote-wrap .vote-box .vote-content .video-info {
  max-height: 130px;
  height: 130px;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  color: #16181a;
  text-align: left;
  vertical-align: middle;
}
body .main .vote .container-fluid .vote-wrap .vote-box .vote-content .video-info::-webkit-scrollbar {
  -webkit-appearance: auto;
  -webkit-overflow-scrolling: touch;
}
body .main .vote .container-fluid .vote-wrap .vote-box .vote-content .video-info::-webkit-scrollbar:vertical {
  width: 12px;
  -webkit-overflow-scrolling: touch;
}
body .main .vote .container-fluid .vote-wrap .vote-box .vote-content .video-info::-webkit-scrollbar-thumb {
  background: #D5D5D6 !important;
}
body .main .vote .container-fluid .vote-wrap .vote-box .vote-content .video-info::-webkit-scrollbar-track {
  background: #FFFDE8 !important;
}
body .main .vote .container-fluid .vote-wrap .vote-box .vote-content .video-info p {
  vertical-align: middle;
  border-style: none;
}
body .main .vote .container-fluid .vote-wrap .vote-box .vote-content .vote-btn {
  display: flex;
  margin: 10px auto;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  opacity: 1;
}
body .main .vote .container-fluid .vote-wrap .vote-box .vote-content .vote-btn:hover {
  transition: all 0.5s ease-in-out;
  opacity: 0.7;
}
body .main .vote .container-fluid .vote-wrap .vote-box .vote-content .vote-social {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-around;
  align-items: center;
  margin: 10px auto;
  color: #0A4399;
}
body .main .vote .container-fluid .vote-wrap .vote-box .vote-content .vote-social .vote-share {
  width: 45%;
  display: inline-flex;
  align-items: center;
  color: #0A3796;
  font-weight: 600;
}
body .main .vote .container-fluid .vote-wrap .vote-box .vote-content .vote-social .vote-share img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
body .main .vote .container-fluid .vote-wrap .vote-box .vote-content .vote-social .vote-count {
  width: 45%;
  text-align: right;
  color: #0A3796;
  font-weight: 600;
}
body .main .vote .container-fluid .vote-wrap .vote-box .vote-content .vote-social .vote-count span {
  margin-right: 20px;
}
body .main .contest {
  position: relative;
  background-color: #fff;
}
body .main .contest::before {
  content: "";
  background: url(../img/contest-right.png) center center/contain no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  width: 545px;
  height: 545px;
  z-index: 0;
  animation: animates06 2.5s infinite;
}
@media (max-width: 768px) {
  body .main .contest::before {
    width: 425px;
    height: 425px;
  }
}
@media (max-width: 480px) {
  body .main .contest::before {
    width: 200px;
    height: 200px;
  }
}
body .main .contest::after {
  content: "";
  background: url(../img/contest-left.png) center center/contain no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 647px;
  height: 890px;
  z-index: 0;
  animation: animates06 2s infinite;
}
@media (max-width: 768px) {
  body .main .contest::after {
    width: 447px;
  }
}
@media (max-width: 480px) {
  body .main .contest::after {
    width: 250px;
  }
}
body .main .contest .container-fluid {
  position: relative;
  padding: 160px 0;
  z-index: 2;
}
@media (max-width: 768px) {
  body .main .contest .container-fluid {
    padding: 80px 0;
  }
}
@media (max-width: 480px) {
  body .main .contest .container-fluid {
    padding: 80px 0 0;
  }
}
body .main .contest .container-fluid .contest-title {
  padding: 60px 0;
  position: relative;
  justify-content: center;
  text-align: center;
  display: flex;
}
body .main .contest .container-fluid .contest-title .text-6xl {
  border: 2px solid #fff8a8;
  color: #00a33e;
  background-color: #fff;
  box-shadow: 10px 15px 0px 0px #ffe775;
}
body .main .contest .container-fluid .contest-title .text-6xl:hover {
  box-shadow: 2px 4px 0px 0px #ffe775;
}
body .main .contest .container-fluid .contest-des {
  width: 100%;
  display: flex;
  flex-direction: reverse;
  margin: 0 auto;
}
@media (max-width: 768px) {
  body .main .contest .container-fluid .contest-des {
    width: 90%;
  }
}
@media (max-width: 991px) {
  body .main .contest .container-fluid .contest-des {
    flex-direction: column;
    width: 100%;
  }
}
body .main .contest .container-fluid .contest-des .left, body .main .contest .container-fluid .contest-des .right {
  width: 50%;
  margin: 0 50px;
}
@media (max-width: 991px) {
  body .main .contest .container-fluid .contest-des .left, body .main .contest .container-fluid .contest-des .right {
    margin: 0 20px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  body .main .contest .container-fluid .contest-des .left, body .main .contest .container-fluid .contest-des .right {
    margin: 0 15px;
  }
}
body .main .contest .container-fluid .contest-des .left .theme .subtitle, body .main .contest .container-fluid .contest-des .left .method .subtitle, body .main .contest .container-fluid .contest-des .left .qualify .subtitle, body .main .contest .container-fluid .contest-des .left .specific .subtitle, body .main .contest .container-fluid .contest-des .right .theme .subtitle, body .main .contest .container-fluid .contest-des .right .method .subtitle, body .main .contest .container-fluid .contest-des .right .qualify .subtitle, body .main .contest .container-fluid .contest-des .right .specific .subtitle {
  display: flex;
  position: relative;
}
@media (max-width: 480px) {
  body .main .contest .container-fluid .contest-des .left .theme .subtitle, body .main .contest .container-fluid .contest-des .left .method .subtitle, body .main .contest .container-fluid .contest-des .left .qualify .subtitle, body .main .contest .container-fluid .contest-des .left .specific .subtitle, body .main .contest .container-fluid .contest-des .right .theme .subtitle, body .main .contest .container-fluid .contest-des .right .method .subtitle, body .main .contest .container-fluid .contest-des .right .qualify .subtitle, body .main .contest .container-fluid .contest-des .right .specific .subtitle {
    padding-left: 10%;
  }
}
body .main .contest .container-fluid .contest-des .left .theme .subtitle::before, body .main .contest .container-fluid .contest-des .left .method .subtitle::before, body .main .contest .container-fluid .contest-des .left .qualify .subtitle::before, body .main .contest .container-fluid .contest-des .left .specific .subtitle::before, body .main .contest .container-fluid .contest-des .right .theme .subtitle::before, body .main .contest .container-fluid .contest-des .right .method .subtitle::before, body .main .contest .container-fluid .contest-des .right .qualify .subtitle::before, body .main .contest .container-fluid .contest-des .right .specific .subtitle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -50px;
  transform: translateY(-50%);
  background: url(../img/contest-li.png) center center/contain no-repeat;
  width: 48px;
  height: 71px;
}
@media (max-width: 480px) {
  body .main .contest .container-fluid .contest-des .left .theme .subtitle::before, body .main .contest .container-fluid .contest-des .left .method .subtitle::before, body .main .contest .container-fluid .contest-des .left .qualify .subtitle::before, body .main .contest .container-fluid .contest-des .left .specific .subtitle::before, body .main .contest .container-fluid .contest-des .right .theme .subtitle::before, body .main .contest .container-fluid .contest-des .right .method .subtitle::before, body .main .contest .container-fluid .contest-des .right .qualify .subtitle::before, body .main .contest .container-fluid .contest-des .right .specific .subtitle::before {
    width: 28px;
    left: 0;
  }
}
body .main .contest .container-fluid .contest-des .left .theme .subtitle .text-3xl, body .main .contest .container-fluid .contest-des .left .method .subtitle .text-3xl, body .main .contest .container-fluid .contest-des .left .qualify .subtitle .text-3xl, body .main .contest .container-fluid .contest-des .left .specific .subtitle .text-3xl, body .main .contest .container-fluid .contest-des .right .theme .subtitle .text-3xl, body .main .contest .container-fluid .contest-des .right .method .subtitle .text-3xl, body .main .contest .container-fluid .contest-des .right .qualify .subtitle .text-3xl, body .main .contest .container-fluid .contest-des .right .specific .subtitle .text-3xl {
  color: #00a33e;
  letter-spacing: 10px;
  margin: 30px 0;
}
body .main .contest .container-fluid .contest-des .left .theme .text-2xl, body .main .contest .container-fluid .contest-des .left .method .text-2xl, body .main .contest .container-fluid .contest-des .left .qualify .text-2xl, body .main .contest .container-fluid .contest-des .left .specific .text-2xl, body .main .contest .container-fluid .contest-des .right .theme .text-2xl, body .main .contest .container-fluid .contest-des .right .method .text-2xl, body .main .contest .container-fluid .contest-des .right .qualify .text-2xl, body .main .contest .container-fluid .contest-des .right .specific .text-2xl {
  letter-spacing: 3px;
  line-height: 1.4;
  padding: 0 0 10px 0;
  position: relative;
}
body .main .contest .container-fluid .contest-des .left .theme .text-2xl::before, body .main .contest .container-fluid .contest-des .left .method .text-2xl::before, body .main .contest .container-fluid .contest-des .left .qualify .text-2xl::before, body .main .contest .container-fluid .contest-des .left .specific .text-2xl::before, body .main .contest .container-fluid .contest-des .right .theme .text-2xl::before, body .main .contest .container-fluid .contest-des .right .method .text-2xl::before, body .main .contest .container-fluid .contest-des .right .qualify .text-2xl::before, body .main .contest .container-fluid .contest-des .right .specific .text-2xl::before {
  content: "";
  position: absolute;
  top: 13px;
  left: -15px;
  width: 5px;
  height: 5px;
  background-color: #000;
  border-radius: 50%;
}
@media (max-width: 480px) {
  body .main .contest .container-fluid .contest-des .left .theme .text-2xl::before, body .main .contest .container-fluid .contest-des .left .method .text-2xl::before, body .main .contest .container-fluid .contest-des .left .qualify .text-2xl::before, body .main .contest .container-fluid .contest-des .left .specific .text-2xl::before, body .main .contest .container-fluid .contest-des .right .theme .text-2xl::before, body .main .contest .container-fluid .contest-des .right .method .text-2xl::before, body .main .contest .container-fluid .contest-des .right .qualify .text-2xl::before, body .main .contest .container-fluid .contest-des .right .specific .text-2xl::before {
    left: -8px;
  }
}
body .main .contest .container-fluid .contest-des .left .theme .text-2xl:last-child::before, body .main .contest .container-fluid .contest-des .left .method .text-2xl:last-child::before, body .main .contest .container-fluid .contest-des .left .qualify .text-2xl:last-child::before, body .main .contest .container-fluid .contest-des .left .specific .text-2xl:last-child::before, body .main .contest .container-fluid .contest-des .right .theme .text-2xl:last-child::before, body .main .contest .container-fluid .contest-des .right .method .text-2xl:last-child::before, body .main .contest .container-fluid .contest-des .right .qualify .text-2xl:last-child::before, body .main .contest .container-fluid .contest-des .right .specific .text-2xl:last-child::before {
  display: none;
}
@media (max-width: 480px) {
  body .main .contest .container-fluid .contest-des .left .theme .text-2xl, body .main .contest .container-fluid .contest-des .left .method .text-2xl, body .main .contest .container-fluid .contest-des .left .qualify .text-2xl, body .main .contest .container-fluid .contest-des .left .specific .text-2xl, body .main .contest .container-fluid .contest-des .right .theme .text-2xl, body .main .contest .container-fluid .contest-des .right .method .text-2xl, body .main .contest .container-fluid .contest-des .right .qualify .text-2xl, body .main .contest .container-fluid .contest-des .right .specific .text-2xl {
    padding: 0 15px 10px 5px;
  }
}
body .main .contest .container-fluid .contest-des .left .theme .text-2xl .bold, body .main .contest .container-fluid .contest-des .left .method .text-2xl .bold, body .main .contest .container-fluid .contest-des .left .qualify .text-2xl .bold, body .main .contest .container-fluid .contest-des .left .specific .text-2xl .bold, body .main .contest .container-fluid .contest-des .right .theme .text-2xl .bold, body .main .contest .container-fluid .contest-des .right .method .text-2xl .bold, body .main .contest .container-fluid .contest-des .right .qualify .text-2xl .bold, body .main .contest .container-fluid .contest-des .right .specific .text-2xl .bold {
  font-weight: 600;
}
body .main .contest .container-fluid .contest-des .left .theme .text-2xl .green, body .main .contest .container-fluid .contest-des .left .method .text-2xl .green, body .main .contest .container-fluid .contest-des .left .qualify .text-2xl .green, body .main .contest .container-fluid .contest-des .left .specific .text-2xl .green, body .main .contest .container-fluid .contest-des .right .theme .text-2xl .green, body .main .contest .container-fluid .contest-des .right .method .text-2xl .green, body .main .contest .container-fluid .contest-des .right .qualify .text-2xl .green, body .main .contest .container-fluid .contest-des .right .specific .text-2xl .green {
  color: #00a33e;
  word-wrap: break-word;
}
body .main .contest .container-fluid .contest-des .left .theme .text-2xl .yellowbg, body .main .contest .container-fluid .contest-des .left .method .text-2xl .yellowbg, body .main .contest .container-fluid .contest-des .left .qualify .text-2xl .yellowbg, body .main .contest .container-fluid .contest-des .left .specific .text-2xl .yellowbg, body .main .contest .container-fluid .contest-des .right .theme .text-2xl .yellowbg, body .main .contest .container-fluid .contest-des .right .method .text-2xl .yellowbg, body .main .contest .container-fluid .contest-des .right .qualify .text-2xl .yellowbg, body .main .contest .container-fluid .contest-des .right .specific .text-2xl .yellowbg {
  background-color: #fff8a8;
}
body .main .contest .container-fluid .contest-des .left .theme a, body .main .contest .container-fluid .contest-des .left .method a, body .main .contest .container-fluid .contest-des .left .qualify a, body .main .contest .container-fluid .contest-des .left .specific a, body .main .contest .container-fluid .contest-des .right .theme a, body .main .contest .container-fluid .contest-des .right .method a, body .main .contest .container-fluid .contest-des .right .qualify a, body .main .contest .container-fluid .contest-des .right .specific a {
  color: #00a33e;
}
body .main .contest .container-fluid .contest-des .left .website, body .main .contest .container-fluid .contest-des .right .website {
  width: 100%;
  position: relative;
}
body .main .contest .container-fluid .contest-des .left .website a, body .main .contest .container-fluid .contest-des .right .website a {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (max-width: 480px) {
  body .main .contest .container-fluid .contest-des .left .website, body .main .contest .container-fluid .contest-des .right .website {
    left: -10px;
  }
}
body .main .sectionBg {
  background: url(../img/section-bg.jpg) top center/cover no-repeat;
  position: relative;
}
body .main .sectionBg::before {
  content: "";
  background: url(../img/timeline-left.png) center center/contain no-repeat;
  position: absolute;
  top: 25%;
  left: 0;
  transform: translateX(0%);
  width: 25%;
  height: 1103px;
  z-index: 0;
  animation: speaker 3s;
}
@media (max-width: 1440px) {
  body .main .sectionBg::before {
    width: 25%;
  }
}
@media (max-width: 1200px) {
  body .main .sectionBg::before {
    top: 20%;
    width: 28%;
  }
}
@media (max-width: 768px) {
  body .main .sectionBg::before {
    top: 30%;
    width: 30%;
  }
}
@media (max-width: 576px) {
  body .main .sectionBg::before {
    top: 30%;
    width: 32%;
  }
}
@media (max-width: 480px) {
  body .main .sectionBg::before {
    top: 36%;
    width: 35%;
  }
}
body .main .sectionBg::after {
  content: "";
  position: absolute;
  background: url(../img/wave.png) center top/cover no-repeat;
  width: 100%;
  height: 10%;
  bottom: 0;
  left: 0;
  z-index: 0;
}
@media (max-width: 768px) {
  body .main .sectionBg::after {
    height: 6%;
  }
}
body .main .sectionBg .prize, body .main .sectionBg .score, body .main .sectionBg .timeline, body .main .sectionBg .signup {
  position: relative;
  padding: 80px 0;
  z-index: 2;
}
@media (max-width: 991px) {
  body .main .sectionBg .prize, body .main .sectionBg .score, body .main .sectionBg .timeline, body .main .sectionBg .signup {
    padding: 80px 0;
  }
}
@media (max-width: 480px) {
  body .main .sectionBg .prize, body .main .sectionBg .score, body .main .sectionBg .timeline, body .main .sectionBg .signup {
    padding: 50px 0;
  }
}
@media (max-width: 480px) {
  body .main .sectionBg .timeline, body .main .sectionBg .signup {
    padding: 100px 0 50px;
  }
}
body .main .sectionBg .prize .prize-title {
  padding: 80px 0;
  position: relative;
  justify-content: center;
  text-align: center;
  display: flex;
}
body .main .sectionBg .prize .prize-title .text-6xl {
  border: 2px solid #0A4399;
  color: #0A4399;
  background-color: #fff;
  box-shadow: 10px 15px 0px 0px #0A1D90;
}
body .main .sectionBg .prize .prize-title .text-6xl:hover {
  box-shadow: 2px 4px 0px 0px #0A1D90;
}
body .main .sectionBg .prize .prize-des {
  width: 100%;
  display: flex;
  flex-direction: reverse;
}
@media (max-width: 480px) {
  body .main .sectionBg .prize .prize-des {
    flex-direction: column;
  }
}
body .main .sectionBg .prize .prize-des .left, body .main .sectionBg .prize .prize-des .right {
  margin: 0 50px;
}
@media (max-width: 991px) {
  body .main .sectionBg .prize .prize-des .left, body .main .sectionBg .prize .prize-des .right {
    margin: 0 20px;
  }
}
@media (max-width: 768px) {
  body .main .sectionBg .prize .prize-des .left, body .main .sectionBg .prize .prize-des .right {
    margin: 0;
  }
}
body .main .sectionBg .prize .prize-des .left {
  width: 40%;
}
@media (max-width: 768px) {
  body .main .sectionBg .prize .prize-des .left {
    margin: 0 20px 0 0;
  }
}
@media (max-width: 480px) {
  body .main .sectionBg .prize .prize-des .left {
    margin: 0 auto;
    width: 80%;
  }
}
body .main .sectionBg .prize .prize-des .right {
  width: 60%;
}
@media (max-width: 480px) {
  body .main .sectionBg .prize .prize-des .right {
    width: 100%;
    padding: 20px 0 0;
  }
}
body .main .sectionBg .score .score-title {
  position: relative;
  justify-content: center;
  text-align: center;
  display: flex;
}
body .main .sectionBg .score .score-title .text-6xl {
  border: 2px solid #0A4399;
  color: #0A4399;
  background-color: #fff;
  box-shadow: 10px 15px 0px 0px #0A1D90;
}
body .main .sectionBg .score .score-title .text-6xl:hover {
  box-shadow: 2px 4px 0px 0px #0A1D90;
}
body .main .sectionBg .score .score-des {
  width: 100%;
  display: flex;
  flex-direction: reverse;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 50px 0 0;
}
@media (max-width: 480px) {
  body .main .sectionBg .score .score-des {
    flex-direction: column;
  }
}
body .main .sectionBg .score .score-des .left, body .main .sectionBg .score .score-des .right, body .main .sectionBg .score .score-des .center {
  width: 30%;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 480px) {
  body .main .sectionBg .score .score-des .left, body .main .sectionBg .score .score-des .right, body .main .sectionBg .score .score-des .center {
    width: 60%;
    padding: 5px 0;
  }
}
body .main .sectionBg .score .score-txt {
  margin: 20px 0;
}
body .main .sectionBg .score .score-txt .text-base {
  font-weight: 500;
  letter-spacing: 3px;
  margin: 5px 0;
  position: relative;
}
body .main .sectionBg .score .score-txt .text-base::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -10px;
  width: 5px;
  height: 5px;
  background-color: #000;
  border-radius: 50%;
}
@media (max-width: 480px) {
  body .main .sectionBg .score .score-txt .text-base::before {
    left: -5px;
  }
}
@media (max-width: 480px) {
  body .main .sectionBg .score .score-txt .text-base {
    padding: 0 0px 10px 10px;
  }
}
body .main .sectionBg .timeline .timeline-title {
  position: relative;
  justify-content: center;
  text-align: center;
  display: flex;
}
body .main .sectionBg .timeline .timeline-title .text-6xl {
  border: 2px solid #0A4399;
  color: #0A4399;
  background-color: #fff;
  box-shadow: 10px 15px 0px 0px #0A1D90;
}
body .main .sectionBg .timeline .timeline-title .text-6xl:hover {
  box-shadow: 2px 4px 0px 0px #0A1D90;
}
body .main .sectionBg .timeline .timeline-des {
  width: 100%;
  display: flex;
  flex-direction: reverse;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 120px 0 0px;
}
@media (max-width: 480px) {
  body .main .sectionBg .timeline .timeline-des {
    flex-direction: column;
    width: 85%;
    margin: 0 auto;
  }
}
body .main .sectionBg .timeline .timeline-des .timeline-date {
  width: 22%;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 768px) {
  body .main .sectionBg .timeline .timeline-des .timeline-date {
    width: 46%;
  }
}
@media (max-width: 480px) {
  body .main .sectionBg .timeline .timeline-des .timeline-date {
    width: 100%;
  }
}
body .main .sectionBg .timeline .timeline-txt {
  margin: 20px 0;
  color: #fff;
}
body .main .sectionBg .timeline .timeline-txt .dropdown {
  width: 100%;
  margin: 0 auto;
}
body .main .sectionBg .timeline .timeline-txt .dropdown .dropdown-btn {
  position: relative;
  width: 20%;
  margin: 80px auto 20px;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  border-radius: 80px;
  background: #fff;
  color: #0A4399;
  border: 2px solid #0A4399;
  padding: 10px 40px;
}
@media (max-width: 768px) {
  body .main .sectionBg .timeline .timeline-txt .dropdown .dropdown-btn {
    width: 40%;
    padding: 10px 40px 10px 10px;
  }
}
body .main .sectionBg .timeline .timeline-txt .dropdown .dropdown-btn::after {
  content: "";
  border: 4px solid #0A4399;
  border-top: none;
  border-left: none;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 8px;
  height: 8px;
  transform: rotate(45deg) translateY(-50%);
  transition: transform 0.5s;
}
body .main .sectionBg .timeline .timeline-txt .dropdown .dropdown-btn.turnicon::after {
  transform: rotate(225deg);
}
body .main .sectionBg .timeline .timeline-txt .dropdown .dropdown-content {
  display: none;
}
body .main .sectionBg .timeline .timeline-txt .active {
  height: 100%;
}
body .main .sectionBg .contact {
  padding: 0 0 50px 0;
  z-index: 5;
  position: relative;
}
body .main .sectionBg .contact .contact-title {
  padding: 200px 0 50px;
  position: relative;
  justify-content: center;
  text-align: center;
  display: flex;
}
@media (max-width: 1200px) {
  body .main .sectionBg .contact .contact-title {
    padding: 100px 0 50px;
  }
}
body .main .sectionBg .contact .contact-title .text-6xl {
  border: 2px solid #fff8a8;
  color: #00a33e;
  background-color: #fff;
  box-shadow: 10px 15px 0px 0px #fff8a8;
}
body .main .sectionBg .contact .contact-title .text-6xl:hover {
  box-shadow: 2px 4px 0px 0px #fff8a8;
}
body .main .sectionBg .contact .contact-des {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  body .main .sectionBg .contact .contact-des {
    width: 70%;
  }
}
@media (max-width: 480px) {
  body .main .sectionBg .contact .contact-des {
    width: 90%;
    padding: 0 0 50px;
  }
}
body .main .sectionBg .contact .contact-des .phone, body .main .sectionBg .contact .contact-des .mail {
  display: flex;
  align-items: center;
}
body .main .sectionBg .contact .contact-des .phone .text-2xl, body .main .sectionBg .contact .contact-des .phone .text-base, body .main .sectionBg .contact .contact-des .phone a, body .main .sectionBg .contact .contact-des .mail .text-2xl, body .main .sectionBg .contact .contact-des .mail .text-base, body .main .sectionBg .contact .contact-des .mail a {
  color: #fff;
}
body .main .sectionBg .contact .contact-des .phone .text-2xl, body .main .sectionBg .contact .contact-des .mail .text-2xl {
  font-weight: 500;
  margin: 0 10px 0 0;
}
body .main .footer {
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background-color: #fff;
}
body .main .footer .container-fluid {
  position: relative;
  padding: 30px 0;
  background-color: #fff;
}
body .main .footer .container-fluid .logo {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
@media (max-width: 480px) {
  body .main .footer .container-fluid .logo {
    width: 50%;
    margin: 0 auto;
  }
}
body .m_menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: none;
  width: 100%;
  background-color: transparent;
}
@media (max-width: 480px) {
  body .m_menu {
    display: block;
  }
}
body .m_menu .mask {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: none;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  padding-bottom: 60px;
}
body .m_menu .controlBox {
  position: relative;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
@media (max-width: 480px) {
  body .m_menu .controlBox {
    padding: 5px 0px;
  }
}
body .m_menu .controlBox .m_logo {
  width: 135px;
  padding: 5px 0;
}
@media (max-width: 480px) {
  body .m_menu .controlBox .m_logo {
    width: 110px;
  }
}
body .m_menu .controlBox .m_logo a {
  display: block;
  width: 100%;
  background: url(../img/logo.png) center center/contain no-repeat;
  height: 55px;
}
body .m_menu .controlBox .hamburger {
  position: relative;
  width: 60px;
  height: 60px;
}
body .m_menu .controlBox .hamburger span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 1px;
  background-color: #00a33e;
  transition: all 0.5s;
}
body .m_menu .controlBox .hamburger span::before, body .m_menu .controlBox .hamburger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #00a33e;
  transition: all 0.5s ease-in-out;
}
body .m_menu .controlBox .hamburger span::before {
  top: -7px;
}
body .m_menu .controlBox .hamburger span::after {
  bottom: -7px;
}
body .m_menu .controlBox .show span {
  background-color: transparent;
}
body .m_menu .controlBox .show span::before {
  top: 0;
  transform: rotate(45deg);
}
body .m_menu .controlBox .show span::after {
  bottom: 0;
  transform: rotate(-45deg);
}
body .m_menu .hideBox {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 11;
  width: 100%;
  display: none;
  padding: 60px 0;
  overflow-y: auto;
  background-color: #16181a;
}
body .m_menu .hideBox .nav {
  margin-top: 80px;
  display: block;
}
body .m_menu .hideBox .nav .dropDown {
  position: relative;
}
body .m_menu .hideBox .nav .dropDown:hover span a::after {
  content: "";
  display: block;
  width: 9px;
  height: 1px;
  background-color: #fff;
  right: 4rem;
  top: 50%;
  transform: translateY(-50%);
}
body .m_menu .hideBox .nav .dropDown span {
  padding: 20px 0;
}
body .m_menu .hideBox .nav .dropDown span a {
  position: relative;
  display: block;
  padding: 20px 0;
  color: #fff;
  text-align: center;
}
body .m_menu .show {
  display: block;
}
body .side a {
  position: fixed;
  display: block;
  width: 120px;
  height: 120px;
  bottom: 30px;
  right: 10px;
  z-index: 5;
}
@media (max-width: 991px) {
  body .side a {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 480px) {
  body .side a {
    width: 80px;
    height: 80px;
  }
}
body .bgMode {
  background-color: rgb(0, 0, 0);
  box-shadow: 0 2px 10px 1px rgba(0, 0, 0, 0.2);
}/*# sourceMappingURL=index.css.map */