@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
  background: #ffffff;
  width: 100%;
  font-family: "Noto Sans TC", sans-serif;
  letter-spacing: 0.07rem;
  overflow-x: hidden;
}

section {
  width: 100%;
  margin: 0;
  padding: 60px 0 40px 0;
  position: relative;
}

.display_none {
  display: none;
}

/*禁止滑動*/
.modal-open {
  overflow: hidden !important;
  padding-right: 0 !important;
}

.title_con {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 20px;
}
.title_con img {
  width: auto;
  height: 108px;
}

/* logo ------------------------------*/
.logo_con {
  width: 100%;
  height: 60px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
.logo_con img {
  width: auto;
  height: 30px;
  margin: 0 10px;
}

/* nav ------------------------------*/
nav {
  position: absolute;
  padding: 10px 30px;
  background: #fff;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50px;
  margin-top: 18px;
  z-index: 20;
}
nav .menu_icon {
  display: none;
}
nav .nav_main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
nav .nav_main ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  height: 100%;
}
nav .nav_main ul li a {
  font-size: 1rem;
  margin: 0 7px;
  transition: all 0.3s;
}
nav .nav_main ul li a:hover {
  color: #db0011;
}
nav .nav_main .share_con {
  padding-left: 10px;
}
nav .nav_main .share_con a {
  margin: 0 5px;
}
nav .nav_main .share_con a img {
  width: 36px;
}
nav.fixed {
  position: fixed;
  margin-top: 0;
  width: 100%;
  left: 0;
  transform: translateX(0);
  top: 0;
  border-radius: 0;
}

/* header ------------------------------*/
header {
  width: 100%;
  height: 640px;
  background: #db0011;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
header .header_kv {
  width: 1063px;
  margin-left: -120px;
}
header .header_main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-left: 42px;
  margin-top: 50px;
}
header .header_main .header_title {
  width: 362px;
  margin-bottom: 28px;
}
header .header_main .header_date {
  width: 357px;
  margin-bottom: 18px;
}
header .header_main a {
  width: 158px;
  height: 48px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  border-radius: 10px;
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 18px;
  transition: all 0.3s;
}
header .header_main a::after {
  content: "";
  display: block;
  width: 13px;
  height: 8px;
  background: url(../images/arrow.svg) center no-repeat;
  background-size: cover;
  margin-left: 10px;
}
header .header_main a:hover {
  transform: scale(1.1);
}

article {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  text-align: center;
  width: 100%;
  height: 240px;
  font-size: 1rem;
  line-height: 1.9rem;
  position: relative;
}
article::before, article::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 138px;
  height: 138px;
}
article::before {
  background: url(../images/text_pic_left.svg) center no-repeat;
  background-size: cover;
  left: 0;
}
article::after {
  background: url(../images/text_pic_right.svg) center no-repeat;
  background-size: cover;
  right: 0;
}

/* 知識補給站 ------------------------------*/
.section1 .s1_con {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.section1 .s1_con .item {
  width: 500px;
  height: 282px;
  aspect-ratio: 600/338;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid #db0011;
  margin: 20px;
  position: relative;
}
.section1 .s1_con .item .pic {
  position: absolute;
  width: 102%;
  left: -1%;
  top: -1%;
  transition: all 0.3s;
}
.section1 .s1_con .item p {
  width: 100%;
  height: 45px;
  position: absolute;
  background: #db0011;
  color: #fff;
  text-align: center;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  transition: all 0.3s;
}
.section1 .s1_con .item .icon {
  position: absolute;
  width: 36px;
  left: 50%;
  top: calc(50% - 36px);
  transform: translate(-50%);
  transition: all 0.3s;
}
.section1 .s1_con .item:hover .pic {
  transform: scale(1.1);
}
.section1 .s1_con .item:hover p {
  height: 70px;
}

/* 主題說明 ------------------------------*/
.bg_shape {
  background: url(../images/bg_p.webp) top center repeat;
}

.section2 .title_con h5 {
  padding: 0 30px;
  background: #2c3032;
  border-radius: 30px;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.4rem;
  margin-top: 15px;
}
.section2 .s2_con {
  width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.section2 .s2_con .icon_box {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.section2 .s2_con .icon_box div {
  position: relative;
  width: 100%;
  height: 100%;
}
.section2 .s2_con .icon_box div .pic_o {
  position: absolute;
  top: -100px;
  left: -120px;
}
.section2 .s2_con .icon_box div .pic_x {
  position: absolute;
  bottom: -120px;
  right: -105px;
}
.section2 .s2_con .txt_box {
  text-align: center;
  margin: 30px;
  margin-top: 40px;
}
.section2 .s2_con .theme_box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.section2 .s2_con .theme_box .item {
  width: 460px;
  height: 320px;
  background: #db0011;
  color: #fff;
  margin: 0 30px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.section2 .s2_con .theme_box .item .pic_box {
  height: 160px;
}
.section2 .s2_con .theme_box .item .pic_box img {
  width: 131px;
  filter: brightness(2);
}
.section2 .s2_con .theme_box .item .pic_box img.s2_icon2 {
  width: 148px;
}
.section2 .s2_con .theme_box .item h6 {
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.3rem;
  margin-bottom: 23px;
}
.section2 .s2_con .theme_box .item p {
  font-size: 1rem;
  line-height: 1.6rem;
}

/* 活動辦法 ------------------------------*/
.section3 {
  position: relative;
}
.section3::before {
  content: "";
  display: block;
  width: 100%;
  height: 30px;
  background: url(../images/bg_share.png) top center repeat-x;
  background-size: auto 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.section3 .s3_con {
  width: 1100px;
  margin: 0 auto;
  padding-bottom: 30px;
}
.section3 .s3_con .item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  margin-bottom: 15px;
}
.section3 .s3_con .item .sub_tt {
  flex: 0 0 110px;
  height: 34px;
  background: #2c3032;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  color: #fff;
}
.section3 .s3_con .item .sub_tt h5 {
  font-weight: 400;
  font-size: 1rem;
}
.section3 .s3_con .item .txt_box {
  margin-left: 40px;
  font-size: 1rem;
  line-height: 1.9rem;
}
.section3 .s3_con .item .txt_box span {
  font-weight: 700;
}
.section3 .s3_con .item .txt_box span.red {
  font-weight: 500;
  color: #db0011;
}

/* 活動時程 ------------------------------*/
.bg_b {
  background: url(../images/bg_b.png) top center repeat;
}

.section4 .s4_con {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin: 40px 0 0;
}
.section4 .s4_con .date_box {
  width: 240px;
  height: 300px;
  background: #db0011;
  margin: 0 15px;
  border-radius: 20px;
  text-align: center;
}
.section4 .s4_con .date_box .date_con {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 240px;
  border-radius: 20px;
  height: 296px;
  background: #fff;
}
.section4 .s4_con .date_box .date_con .icon {
  margin-bottom: 30px;
}
.section4 .s4_con .date_box .date_con .icon img {
  height: 50px;
  width: auto;
}
.section4 .s4_con .date_box .date_con .txt_box h5 {
  font-size: 1.5rem;
  color: #db0011;
  font-weight: 600;
  height: 50px;
  position: relative;
}
.section4 .s4_con .date_box .date_con .txt_box h5::after {
  content: "";
  display: block;
  width: 20px;
  height: 5px;
  background: #d9d9d9;
  border-radius: 5px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.section4 .s4_con .date_box .date_con .txt_box p {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 1rem;
  line-height: 1.7rem;
  height: 55px;
  margin-top: 15px;
}
.section4 .s4_con .date_box .date_con .txt_box p span {
  font-size: 0.75rem;
  opacity: 0.5;
}
.section4 .s4_con .date_box:nth-child(4) .date_con .icon img {
  height: 60px;
}
.section4 .s4_con .date_box:nth-child(4) .date_con .txt_box p {
  line-height: 1.55rem;
  margin-top: 25px;
}
.section4 .s4_con .date_box:nth-child(4) .date_con .txt_box p span {
  font-size: 0.7rem;
  letter-spacing: 0.04rem;
}

/* 報名流程 ------------------------------*/
.section5 .txt_ain {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.section5 .txt_ain .gift_icon {
  width: 2.4rem;
  margin-right: 0.7rem;
  animation: gift_ain 0.3s infinite alternate-reverse cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.section5 .txt_ain h4 {
  color: #fff;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 2rem;
}
.section5 .txt_ain h4 span {
  display: inline-block;
  margin: 0 3px;
  animation: gift_txt 0.3s infinite alternate-reverse;
}
.section5 .s5_con {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin: 40px 0;
}
.section5 .s5_con .step {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 500px;
  height: 220px;
  background: #fff;
  border-radius: 20px;
  margin: 0 25px;
  overflow: hidden;
  position: relative;
}
.section5 .s5_con .step::before {
  content: "";
  display: block;
  height: 100%;
  width: 33px;
  background: #db0011;
  position: absolute;
  left: 0;
  top: 0;
}
.section5 .s5_con .step .icon {
  width: 148px;
  height: 148px;
  background: #db0011;
  border-radius: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.section5 .s5_con .step .icon img {
  width: 60px;
}
.section5 .s5_con .step .txt_box {
  width: 162px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-left: 40px;
}
.section5 .s5_con .step .txt_box h4 {
  font-size: 1.875rem;
  width: 100%;
  color: #b2b2b2;
  font-weight: 100;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  border-bottom: 1px dotted #b2b2b2;
  margin: 10px 0;
}
.section5 .s5_con .step .txt_box p {
  margin: 10px 0;
}
.section5 .s5_con .step .txt_box .btn_box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.section5 .s5_con .step .txt_box a {
  margin: 10px 3px;
  width: 115px;
  height: 37px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  color: #db0011;
  border: 2px solid #db0011;
  border-radius: 10px;
  transition: all 0.3s;
}
.section5 .s5_con .step .txt_box a:hover {
  background: #db0011;
  color: #fff;
}

@keyframes gift_ain {
  0% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(-20deg) scale(1.05);
  }
}
@keyframes gift_txt {
  0% {
    color: #fff;
    transform: translateY(0);
  }
  100% {
    color: #ffd95c;
    transform: translateY(-1px);
  }
}
/* 評選辦法 ------------------------------*/
.bg_w {
  background: url(../images/bg_w.png) top center repeat;
}

.section6 {
  position: relative;
  padding-top: 100px;
}
.section6::before {
  content: "";
  display: block;
  width: 100%;
  height: 29px;
  background: url(../images/bg_share.png) top center repeat-x;
  background-size: auto 100%;
  position: absolute;
  top: -1px;
  left: 0;
  transform: rotateX(-180deg);
}
.section6 .s6_con {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.section6 .s6_con .pic_con {
  width: 115px;
  height: 115px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-right: 15px;
  border-radius: 70px;
}
.section6 .s6_con .pic_con img {
  width: 87px;
}
.section6 .s6_con ul {
  font-size: 1rem;
  line-height: 1.8rem;
}
.section6 .s6_con ul li {
  padding: 0.2rem;
}

/* 獎勵辦法 ------------------------------*/
.section7 .s7_con {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
.section7 .s7_con .item {
  width: 330px;
  height: 280px;
  aspect-ratio: 330/280;
  background: url(../images/s7_pic_bg.webp) center no-repeat;
  background-size: cover;
  margin: 0 15px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
}
.section7 .s7_con .item img {
  width: 134px;
  margin-top: 15px;
}
.section7 .s7_con .item h4 {
  margin-top: 44px;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.7rem;
}
.section7 .s7_con .item h6 {
  font-weight: 300;
  font-size: 1rem;
  line-height: 2rem;
  margin-top: 10px;
}
.section7 .s7_con .item p {
  position: absolute;
  background: #db0011;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  border-top-left-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  top: 15px;
  left: 18px;
  font-size: 1.125rem;
}

/* 注意事項 ------------------------------*/
.section8::before {
  content: "";
  display: block;
  width: 100%;
  height: 30px;
  background: url(../images/bg_line.webp) top center repeat-x;
  background-size: auto 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.section8 ol {
  max-width: 1000px;
  width: 86%;
  margin: 0 auto;
  font-size: 0.875rem;
  line-height: 1.75rem;
}
.section8 ol span {
  color: #db0011;
}
.section8 ol a {
  color: #4889dd;
}

/* footer ------------------------------*/
footer {
  background: #2d2d2d;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
footer p {
  font-size: 0.75rem;
  color: #fff;
  text-align: center;
  line-height: 1.3rem;
}

.gotop {
  position: fixed;
  width: 40px;
  right: 1.5rem;
  bottom: 1.5rem;
  transition: all 0.4s;
  transform: translateX(160%);
  z-index: 7;
}
.gotop.show {
  transform: translateX(0%);
}
.gotop img {
  width: 100%;
}

@media screen and (max-width: 1400px) and (min-width: 768px) {
  /* nav ------------------------------*/
  nav {
    width: 670px;
    padding: 0.6vw 1.6vw;
    margin-top: 1.9vw;
  }
  nav .nav_main ul li a {
    font-size: 1rem;
    margin: 0 7px;
  }
  nav .nav_main .share_con {
    padding-left: 0.5vw;
  }
  nav .nav_main .share_con a {
    margin: 0 0.2vw;
  }
  nav .nav_main .share_con a img {
    width: 2.6vw;
  }
  /* header ------------------------------*/
  header {
    height: 45.71vw;
  }
  header .header_kv {
    width: 75.928vw;
    margin-left: -10.5vw;
  }
  header .header_main {
    margin-left: 1vw;
    margin-top: 2.6vw;
  }
  header .header_main .header_title {
    width: 26.85vw;
    margin-bottom: 1.6vw;
  }
  header .header_main .header_date {
    width: 26.5vw;
    margin-bottom: 0.5vw;
  }
  header .header_main a {
    width: 14.5vw;
  }
  /* 知識補給站 ------------------------------*/
  .section1 .s1_con .item {
    width: 42.85vw;
    height: 21vw;
    border-radius: 2.142vw;
    margin: 1.42vw;
  }
  .section1 .s1_con .item p {
    height: 4vw;
  }
}
@media screen and (max-width: 1300px) and (min-width: 768px) {
  article {
    height: auto;
    padding-top: 4vw;
  }
  article::before, article::after {
    width: 9.857vw;
    height: 9.857vw;
  }
  /* 主題說明 ------------------------------*/
  .section2 .s2_con {
    width: 92vw;
  }
  .section2 .s2_con .theme_box .item {
    width: 42vw;
    height: 28vw;
    margin: 0 1.42vw;
  }
  .section2 .s2_con .theme_box .item .pic_box {
    height: 14vw;
  }
  .section2 .s2_con .theme_box .item .pic_box img {
    width: 11vw;
  }
  .section2 .s2_con .theme_box .item .pic_box img.s2_icon2 {
    width: 12.5vw;
  }
  .section2 .s2_con .theme_box .item p {
    padding: 0 2vw;
  }
  /* 活動辦法 ------------------------------*/
  .section3 .s3_con {
    width: 90vw;
  }
  /* 報名流程 ------------------------------*/
  .section5 .s5_con .step {
    width: 44vw;
    height: 20vw;
    margin: 0 2vw;
  }
  .section5 .s5_con .step::before {
    width: 3vw;
  }
  .section5 .s5_con .step .icon {
    width: 12vw;
    height: 12vw;
    border-radius: 12vw;
  }
  .section5 .s5_con .step .icon img {
    width: 5.5vw;
  }
  .section5 .s5_con .step .txt_box {
    width: 21vw;
    margin: 1vw 0;
    margin-left: 1vw;
  }
  .section5 .s5_con .step .txt_box h4 {
    font-size: 4vw;
    height: 6vw;
    margin: 1vw 0;
  }
  .section5 .s5_con .step .txt_box a {
    margin: 1vw 0.3vw 2vw;
    width: 12vw;
    height: 37px;
  }
  /* 評選辦法 ------------------------------*/
  .section6 .s6_con .pic_con {
    display: none;
  }
  .section6 .s6_con ul {
    width: 90%;
  }
  /* 注意事項 ------------------------------*/
  .section8::before {
    content: "";
    display: block;
    width: 100%;
    height: 30px;
    background: url(../images/bg_line.webp) top center repeat-x;
    background-size: auto 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .section8 ol {
    max-width: 1000px;
    width: 86%;
    margin: 0 auto;
    font-size: 0.875rem;
    line-height: 1.75rem;
  }
  .section8 ol span {
    color: #db0011;
  }
  .section8 ol a {
    color: #4889dd;
  }
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .section2 .s2_con .theme_box .item {
    height: 34vw;
  }
  /* 活動時程 ------------------------------*/
  .section4 .s4_con {
    flex-wrap: wrap;
  }
  .section4 .s4_con .date_box {
    width: 42vw;
    height: 20.5vw;
    margin: 0.6vw 1.2vw;
  }
  .section4 .s4_con .date_box .date_con {
    width: 42vw;
    height: 20vw;
    flex-direction: row;
  }
  .section4 .s4_con .date_box .date_con .icon {
    margin-bottom: 0;
    width: 32%;
  }
  .section4 .s4_con .date_box .date_con .icon img {
    height: 7vw;
    padding-left: 3vw;
  }
  .section4 .s4_con .date_box .date_con .txt_box {
    width: 68%;
  }
  .section4 .s4_con .date_box .date_con .txt_box h5 {
    height: 5vw;
  }
  .section4 .s4_con .date_box:nth-child(4) .date_con .icon img {
    height: 7vw;
  }
  .section4 .s4_con .date_box:nth-child(4) .date_con .txt_box h5 {
    height: 4.5vw;
  }
  /* 獎勵辦法 ------------------------------*/
  .section7 .s7_con .item {
    width: 29vw;
    height: 31vw;
    background: #2c3032 url(../images/s7_pic_bg.webp) top center no-repeat;
    background-size: 100% auto;
    margin: 0 1vw;
    justify-content: flex-start;
    border-radius: 20px;
  }
  .section7 .s7_con .item img {
    width: 11vw;
    margin-top: 3.5vw;
  }
  .section7 .s7_con .item h4 {
    margin-top: 5.5vw;
    font-size: 3.5vw;
  }
  .section7 .s7_con .item h6 {
    font-size: 2vw;
    line-height: 3vw;
    margin-top: 2vw;
    padding: 0 3vw;
    text-align: center;
  }
  .section7 .s7_con .item p {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border-top-left-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    top: 15px;
    left: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  html,
  body {
    letter-spacing: normal;
  }
  .pc_none {
    display: none;
  }
  .title_con img {
    width: auto;
    height: 24vw;
    max-height: 120px;
  }
  /* logo ------------------------------*/
  .logo_con {
    height: 60px;
    padding: 0 0.5vw;
    padding-right: 60px;
  }
  .logo_con img {
    height: 5.2vw;
    margin: 0 0.4vw;
  }
  /* nav ------------------------------*/
  nav {
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 0px;
    margin-top: 0;
    position: fixed;
    background: transparent;
    padding: 0;
    transform: translateX(0);
    height: auto;
  }
  nav .menu_icon {
    position: fixed;
    display: block;
    width: 60px;
    height: 60px;
    top: 0;
    right: 0;
    z-index: 40;
    background: #db0011;
  }
  nav .menu_icon::before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 15px;
    top: 15px;
    background: url(../images/menu_open.svg) center no-repeat;
    background-size: 100% auto;
  }
  nav .menu_icon.open::before {
    background: url(../images/menu_close.svg) center no-repeat;
    background-size: 100% auto;
  }
  nav .nav_main {
    position: absolute;
    transition: all 0.3s;
    transform: translateX(100%);
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    color: #fff;
    background: #db0011;
    padding: 20px 0;
  }
  nav .nav_main.open {
    transform: translateX(0);
  }
  nav .nav_main ul {
    width: 100%;
    margin-top: 80px;
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
  }
  nav .nav_main ul li {
    height: 13vw;
  }
  nav .nav_main .share_con {
    padding-left: 10px;
  }
  nav .nav_main .share_con a {
    margin: 0 5px;
  }
  nav .nav_main .share_con a img {
    width: 36px;
  }
  /* header ------------------------------*/
  header {
    height: auto;
    flex-direction: column;
    overflow-x: hidden;
  }
  header .header_kv {
    width: 114%;
    margin-left: -6%;
    order: 2;
  }
  header .header_main {
    margin-left: 0;
    margin-top: 50px;
    order: 1;
  }
  header .header_main .header_title {
    width: 80%;
    margin-bottom: 28px;
  }
  header .header_main .header_date {
    width: 80%;
    margin-bottom: 18px;
  }
  article {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0 7vw;
    padding-top: 20vw;
  }
  article::before, article::after {
    width: 20vw;
    height: 20vw;
    top: 0;
  }
  /* 知識補給站 ------------------------------*/
  .section1 .s1_con {
    flex-direction: column;
  }
  .section1 .s1_con .item {
    width: 88vw;
    height: 57vw;
    margin: 2vw;
  }
  .section1 .s1_con .item p {
    height: 9vw;
  }
  .section1 .s1_con .item:hover p {
    height: 11vw;
  }
  /* 主題說明 ------------------------------*/
  .section2 {
    padding-bottom: 0;
  }
  .section2 .s2_con {
    width: 100%;
  }
  .section2 .s2_con .icon_box {
    display: none;
  }
  .section2 .s2_con .txt_box {
    width: 86%;
    margin: 0 auto;
    margin-top: 20px;
    line-height: 1.7rem;
  }
  .section2 .s2_con .theme_box {
    flex-direction: column;
  }
  .section2 .s2_con .theme_box .item {
    width: 88vw;
    height: auto;
    margin: 10px 0;
    padding: 8vw 8vw;
  }
  .section2 .s2_con .theme_box .item .pic_box {
    height: auto;
    margin-bottom: 5vw;
  }
  .section2 .s2_con .theme_box .item .pic_box img {
    width: 24vw;
  }
  .section2 .s2_con .theme_box .item .pic_box img.s2_icon2 {
    width: 27vw;
    margin-top: -3vw;
  }
  /* 活動辦法 ------------------------------*/
  .section3 .s3_con {
    width: 100%;
    margin: 0 auto;
  }
  .section3 .s3_con .item {
    flex-direction: column;
    margin-bottom: 15px;
  }
  .section3 .s3_con .item .sub_tt {
    flex: 0 0 auto;
    width: 50%;
    margin: 10px auto;
  }
  .section3 .s3_con .item .txt_box {
    margin-left: 12vw;
    padding-right: 5vw;
  }
  /* 活動時程 ------------------------------*/
  .section4 {
    padding-bottom: 0;
  }
  .section4 .s4_con {
    width: 100%;
    flex-direction: column;
    margin-top: 0;
  }
  .section4 .s4_con .date_box {
    width: 90%;
    height: auto;
    margin: 1.5vw auto;
  }
  .section4 .s4_con .date_box .date_con {
    width: 100%;
    height: calc(100% - 4px);
    flex-direction: row;
    justify-content: flex-start;
  }
  .section4 .s4_con .date_box .date_con .icon {
    margin-bottom: 0;
    width: 30%;
    margin-left: 6vw;
  }
  .section4 .s4_con .date_box .date_con .icon img {
    height: auto;
    width: 60%;
  }
  .section4 .s4_con .date_box .date_con .txt_box {
    width: 60%;
  }
  .section4 .s4_con .date_box .date_con .txt_box h5 {
    height: auto;
    line-height: normal;
    margin-bottom: 3vw;
    padding-top: 3vw;
  }
  .section4 .s4_con .date_box .date_con .txt_box h5::after {
    position: relative;
    margin-top: 4vw;
  }
  .section4 .s4_con .date_box .date_con .txt_box p {
    height: auto;
    margin-top: 2vw;
    margin-bottom: 4vw;
  }
  .section4 .s4_con .date_box .date_con .txt_box p span {
    font-size: 0.75rem;
    opacity: 0.5;
  }
  .section4 .s4_con .date_box:nth-child(4) {
    height: auto;
  }
  .section4 .s4_con .date_box:nth-child(4) .date_con .icon img {
    height: auto;
    width: 65%;
  }
  .section4 .s4_con .date_box:nth-child(4) .date_con .txt_box {
    width: 70%;
  }
  .section4 .s4_con .date_box:nth-child(4) .date_con .txt_box p {
    margin-top: 2.5vw;
    margin-bottom: 4vw;
  }
  .section4 .s4_con .date_box:nth-child(4) .date_con .txt_box p span {
    font-size: 0.7rem;
  }
  /* 報名流程 ------------------------------*/
  .section5 .txt_ain {
    padding-left: 7vw;
    padding-right: 3vw;
    margin-bottom: 4vw;
  }
  .section5 .s5_con {
    flex-direction: column;
    margin: 0px;
  }
  .section5 .s5_con .step {
    width: 88%;
    height: auto;
    margin: 2vw 0;
    padding: 3vw 0;
  }
  .section5 .s5_con .step::before {
    width: 5vw;
  }
  .section5 .s5_con .step .icon {
    width: 21vw;
    height: 21vw;
    margin-left: 2vw;
  }
  .section5 .s5_con .step .icon img {
    width: 10vw;
  }
  .section5 .s5_con .step .txt_box {
    width: 50vw;
    margin-left: 4vw;
  }
  /* 評選辦法 ------------------------------*/
  .section6 {
    padding-bottom: 0;
  }
  .section6 .s6_con {
    flex-direction: column;
  }
  .section6 .s6_con .pic_con {
    display: none;
  }
  .section6 .s6_con ul {
    width: 86%;
  }
  /* 獎勵辦法 ------------------------------*/
  .section7 .s7_con {
    flex-direction: column;
  }
  .section7 .s7_con .item {
    width: 80vw;
    height: 67.9vw;
    margin: 2vw auto;
    justify-content: flex-start;
  }
  .section7 .s7_con .item img {
    width: 33vw;
    margin-top: 8vw;
  }
  .section7 .s7_con .item h4 {
    margin-top: 11.5vw;
    font-size: 7vw;
  }
  .section7 .s7_con .item h6 {
    font-size: 4.2vw;
    margin-top: 2vw;
  }
  .section7 .s7_con .item p {
    width: 12vw;
    height: 12vw;
    border-radius: 20vw;
    border-top-left-radius: 0;
    top: 5vw;
    left: 5vw;
    font-size: 4.5vw;
  }
  /* 注意事項 ------------------------------*/
  .section8 ol {
    padding-left: 20px;
  }
}/*# sourceMappingURL=style.css.map */