@charset "UTF-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

html {
  line-height: 1.5;
  font-size: 16px;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

img {
  display: block;
  border: none;
  width: 100%;
}

* {
  scroll-behavior: smooth;
}

.fixed_btn {
  position: fixed;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  right: 30px;
  bottom: 30px;
}
@media (max-width: 1440px) {
  .fixed_btn {
    right: 7px;
    gap: 25px;
    bottom: 20px;
  }
}
@media (max-width: 980px) {
  .fixed_btn {
    transform: scale(0.8);
    right: 0;
    bottom: 5px;
  }
}
.fixed_btn .announcement {
  max-width: 79px;
  display: inline-block;
}
@media (max-width: 1440px) {
  .fixed_btn .announcement {
    max-width: 60px;
  }
}
.fixed_btn .signIn {
  max-width: 100px;
  display: inline-block;
}
@media (max-width: 1440px) {
  .fixed_btn .signIn {
    max-width: 78px;
  }
}

.project {
  overflow-x: hidden;
  position: relative;
}

.scroll {
  /* 整個 scrollbar 區域 */
  /* scrollbar 軌道（背景） */
  /* scrollbar 的滑塊（可以拖動的那塊） */
}
.scroll::-webkit-scrollbar {
  width: 5px; /* 垂直捲軸寬度 */
}
.scroll::-webkit-scrollbar-track {
  background: #f0eff5;
  border: 1px solid #f0eff5;
}
.scroll::-webkit-scrollbar-thumb {
  background: #ff2239;
}

.sec .container {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1440px) {
  .sec .container {
    max-width: 1110px;
    padding: 0 10px;
  }
}
@media (max-width: 980px) {
  .sec .container {
    padding: 0 20px;
  }
}
@media (max-width: 375px) {
  .sec .container {
    padding: 0 10px;
  }
}

.method {
  background-color: #f0eff5;
  position: relative;
}
.method::before {
  content: "";
  position: absolute;
  z-index: 1;
  background-color: #f0eff5;
  top: 99%;
  height: 300px;
  width: 100%;
}
.method .container {
  padding-top: 80px;
  padding-bottom: 160px;
}
@media (max-width: 1440px) {
  .method .container {
    padding: 60px 20px 100px;
  }
}
@media (max-width: 980px) {
  .method .container {
    padding: 40px 20px 80px;
  }
}
.method .title {
  display: inline-block;
  max-width: 285px;
  width: 100%;
  margin: 0 auto 75px;
}
@media (max-width: 1440px) {
  .method .title {
    max-width: 260px;
    margin-bottom: 50px;
  }
}
@media (max-width: 980px) {
  .method .title {
    max-width: 200px;
    margin-bottom: 30px;
  }
}
.method .title img {
  width: 100%;
}
.method .method_txt {
  position: relative;
  z-index: 2;
  color: black;
  font-size: 22px;
  letter-spacing: 1px;
  font-weight: bold;
  margin-bottom: 70px;
}
@media (max-width: 1440px) {
  .method .method_txt {
    font-size: 19px;
  }
}
@media (max-width: 980px) {
  .method .method_txt {
    font-size: 16px;
    margin-bottom: 50px;
  }
}
.method .step {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 120px;
  position: relative;
}
.method .step:after {
  content: "";
  position: absolute;
  background-image: url(../images/light_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  left: 53%;
  transform: translateX(-50%);
  top: -210px;
  width: 160%;
  padding-bottom: 50.9166666667%;
}
@media (max-width: 980px) {
  .method .step {
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
  }
}
@media (max-width: 580px) {
  .method .step {
    gap: 20px;
  }
}
.method .step li {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
@media (max-width: 980px) {
  .method .step li {
    flex-direction: column;
    align-items: flex-start;
    width: 33.3333333333%;
  }
}
@media (max-width: 580px) {
  .method .step li {
    gap: 2px;
  }
}
.method .step li .step_img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  display: inline-block;
  min-width: 169px;
  height: 169px;
}
@media (max-width: 1440px) {
  .method .step li .step_img {
    min-width: 135px;
    height: 135px;
  }
}
@media (max-width: 980px) {
  .method .step li .step_img {
    margin: auto;
    min-width: unset;
    width: 25vw;
    height: 25vw;
    max-width: 150px;
  }
}
.method .step li .step_img.step1 {
  background-image: url(../images/step1.svg);
}
.method .step li .step_img.step2 {
  background-image: url(../images/step2.svg);
}
.method .step li .step_img.step3 {
  background-image: url(../images/step3.svg);
}
.method .step li .step_info {
  max-width: 190px;
  width: 100%;
  transform: translateY(65px);
  color: black;
  font-weight: bold;
}
@media (max-width: 1440px) {
  .method .step li .step_info {
    transform: translateY(50px);
    max-width: 176px;
  }
}
@media (max-width: 980px) {
  .method .step li .step_info {
    max-width: unset;
    transform: translateY(10px);
  }
}
.method .step li .step_info_title {
  font-size: 40px;
  line-height: 1.1;
  font-style: italic;
  position: relative;
}
@media (max-width: 1440px) {
  .method .step li .step_info_title {
    font-size: 34px;
  }
}
@media (max-width: 980px) {
  .method .step li .step_info_title {
    font-size: 24px;
  }
}
@media (max-width: 580px) {
  .method .step li .step_info_title {
    font-size: 18px;
  }
}
.method .step li .step_info_title:after {
  content: "";
  position: absolute;
  width: 100%;
  background-color: #c6810d;
  height: 3px;
  bottom: -12px;
}
.method .step li .step_info_title span {
  font-style: normal;
  display: block;
  font-size: 30px;
}
@media (max-width: 1440px) {
  .method .step li .step_info_title span {
    font-size: 24px;
  }
}
@media (max-width: 980px) {
  .method .step li .step_info_title span {
    font-size: 18px;
  }
}
@media (max-width: 580px) {
  .method .step li .step_info_title span {
    font-size: 16px;
  }
}
.method .step li .step_info_subtitle {
  margin-top: 25px;
  letter-spacing: 1px;
}
.method .startBtn {
  display: block;
  background-image: url(../images/start_btn.png);
  width: 529px;
  height: 178px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  animation: scaleUpDown 1s alternate-reverse infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
@media (max-width: 1440px) {
  .method .startBtn {
    width: 440px;
    height: 140px;
  }
}
@media (max-width: 980px) {
  .method .startBtn {
    animation: scaleUpDownM 1s alternate-reverse infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
    width: 340px;
    height: 102px;
    margin-bottom: 30px;
  }
}
@media (max-width: 375px) {
  .method .startBtn {
    width: 290px;
  }
}

@keyframes scaleUpDown {
  0% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes scaleUpDownM {
  0% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.07, 1.07, 1.07);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.prize {
  position: relative;
  background-image: url(../images/blue_bg.png);
  background-size: cover;
  width: 100%;
  padding-bottom: 130px;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: 2;
}
.prize::before, .prize::after {
  content: "";
  position: absolute;
  width: 100%;
  background-repeat: no-repeat;
  z-index: 0;
  background-size: cover;
}
@media (max-width: 980px) {
  .prize {
    padding-bottom: 60px;
  }
}
.prize .container {
  position: relative;
  z-index: 1;
  padding-top: 190px;
}
@media (max-width: 1440px) {
  .prize .container {
    padding-top: 170px;
  }
}
@media (max-width: 980px) {
  .prize .container {
    padding-top: 120px;
  }
}
.prize .title {
  position: absolute;
  top: -140px;
  margin-bottom: 10px;
  max-width: 211px;
  width: 100%;
  margin: auto;
}
@media (max-width: 1440px) {
  .prize .title {
    margin-top: 50px;
    max-width: 190px;
    top: -175px;
  }
}
@media (max-width: 980px) {
  .prize .title {
    max-width: 150px;
  }
}
@media (max-width: 575px) {
  .prize .title {
    margin-top: 80px;
  }
}
.prize .subtitle {
  max-width: 164px;
  width: 100%;
  margin: 25px auto 0;
}
@media (max-width: 980px) {
  .prize .subtitle {
    max-width: 120px;
  }
}
.prize .subtitle img {
  width: 100%;
}
.prize .subscribe_txt {
  font-size: 32px;
  font-weight: bold;
  margin: 5px auto 50px;
}
@media (max-width: 1440px) {
  .prize .subscribe_txt {
    font-size: 18px;
    margin-bottom: 40px;
  }
}
@media (max-width: 980px) {
  .prize .subscribe_txt {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
@media (max-width: 580px) {
  .prize .subscribe_txt {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.prize .winner_item_title {
  font-size: 22px;
  padding: 5px 125px 10px 115px;
}
@media (max-width: 1440px) {
  .prize .winner_item_title {
    padding: 5px 105px 5px 100px;
  }
}
@media (max-width: 980px) {
  .prize .winner_item_title {
    padding: 5px 15px 5px 10px;
    font-size: 16px;
  }
}
.prize .scroll_bar {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 0 115px;
  height: 275px;
  overflow-y: overlay;
}
@media (max-width: 1440px) {
  .prize .scroll_bar {
    padding: 0 100px;
    height: 245px;
  }
}
@media (max-width: 1024px) {
  .prize .scroll_bar {
    padding: 0 5vw;
  }
}
@media (max-width: 980px) {
  .prize .scroll_bar {
    padding: 0 10px;
  }
}
.prize .prize_winner {
  background-color: #fff;
  border: 3px solid #ebebeb;
  width: 100%;
  padding: 45px 15px 50px;
  border-radius: 10px;
  margin-bottom: 85px;
  position: relative;
}
@media (max-width: 1440px) {
  .prize .prize_winner {
    padding: 35px 15px 40px;
  }
}
@media (max-width: 980px) {
  .prize .prize_winner {
    padding: 25px 10px 35px;
    margin-bottom: 50px;
  }
}
.prize .prize_winner::before, .prize .prize_winner:after {
  content: "";
  position: absolute;
  background-image: url(../images/colorful_dot.svg);
  width: 100%;
  height: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-position: center center;
  background-repeat: no-repeat;
}
.prize .prize_winner::before {
  top: -15px;
}
.prize .prize_winner::after {
  bottom: -15px;
}
.prize .prize_winner_list {
  font-weight: bold;
}
.prize .prize_winner_list > div {
  display: flex;
}
@media (max-width: 980px) {
  .prize .prize_winner_list > div {
    gap: 10px;
  }
}
.prize .prize_winner_list span {
  display: inline-block;
}
.prize .prize_winner_list .date {
  width: 30%;
  padding-left: 100px;
}
@media (max-width: 980px) {
  .prize .prize_winner_list .date {
    padding-left: 20px;
    width: 25%;
  }
}
@media (max-width: 375px) {
  .prize .prize_winner_list .date {
    padding-left: 13px;
  }
}
.prize .prize_winner_list .prize_txt {
  width: 45%;
}
.prize .prize_winner_list .name {
  width: 25%;
}
.prize .winner_item {
  display: flex;
  font-size: 28px;
  border-radius: 6px;
  padding: 3px 0;
}
@media (max-width: 1440px) {
  .prize .winner_item {
    font-size: 24px;
  }
}
@media (max-width: 980px) {
  .prize .winner_item {
    align-items: center;
    font-size: 16px;
    gap: 10px;
    padding: 5px 0;
  }
}
.prize .winner_item:nth-of-type(odd) {
  background-color: #e4f1f7;
}
.prize .winner_item:nth-of-type(even) {
  background-color: #ecf3bd;
}
.prize .prize_content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 70px;
}
@media (max-width: 1440px) {
  .prize .prize_content {
    gap: 30px;
  }
}
@media (max-width: 980px) {
  .prize .prize_content {
    gap: 20px;
    margin-bottom: 50px;
  }
}
@media (max-width: 450px) {
  .prize .prize_content {
    gap: 15px;
  }
}
.prize .prize_content li {
  text-align: center;
}
.prize .prize_content li:not(.row) {
  width: calc(25% - 30px);
}
@media (max-width: 1440px) {
  .prize .prize_content li:not(.row) {
    width: calc(25% - 23px);
  }
}
@media (max-width: 980px) {
  .prize .prize_content li:not(.row) {
    width: calc(50% - 10px);
  }
}
.prize .prize_content li:not(.row) .prize_outline {
  background-color: #e0e0e0;
}
@media (max-width: 980px) {
  .prize .prize_content li:not(.row) .tag {
    padding-bottom: 15%;
    background-position: center center;
  }
}
@media (max-width: 450px) {
  .prize .prize_content li:not(.row) .tag {
    padding-bottom: 17%;
  }
}
.prize .prize_content li.row {
  width: calc(33.3333333333% - 27px);
}
@media (max-width: 1440px) {
  .prize .prize_content li.row {
    width: calc(33.3333333333% - 20px);
  }
}
@media (max-width: 980px) {
  .prize .prize_content li.row {
    max-width: 470px;
    width: 100%;
  }
}
.prize .prize_content li.row .prize_outline {
  height: 127px;
  max-height: 127px;
}
@media (max-width: 1440px) {
  .prize .prize_content li.row .prize_outline {
    height: unset;
  }
}
@media (max-width: 980px) {
  .prize .prize_content li.row .prize_outline {
    max-height: unset;
    min-height: unset;
  }
}
.prize .prize_content li.row .prize_outline figure {
  padding-bottom: 33%;
}
@media (max-width: 1440px) {
  .prize .prize_content li.row .prize_outline figure {
    padding-bottom: 35%;
  }
}
.prize .prize_content li.hunter .prize_outline {
  justify-content: center;
}
.prize .prize_content li.hunter .prize_outline figure {
  padding-bottom: 35%;
  width: 80%;
}
.prize .prize_content li.kfc .prize_outline figure {
  padding-bottom: 75%;
  background-size: contain;
}
.prize .prize_content .lion_prize .prize_outline figure {
  padding-bottom: 70%;
}
@media (max-width: 1440px) {
  .prize .prize_content .lion_prize .prize_outline figure {
    padding-bottom: 75%;
  }
}
@media (max-width: 980px) {
  .prize .prize_content .lion_prize .prize_outline figure {
    padding-bottom: 70%;
  }
}
@media (max-width: 580px) {
  .prize .prize_content .lion_prize .prize_outline figure {
    padding-bottom: 80%;
  }
}
@media (max-width: 450px) {
  .prize .prize_content .lion_prize .prize_outline figure {
    padding-bottom: 85%;
  }
}
@media (max-width: 375px) {
  .prize .prize_content .lion_prize .prize_outline figure {
    padding-bottom: 90%;
  }
}
.prize .prize_content .roots .prize_outline figure {
  padding-bottom: 70%;
}
@media (max-width: 1440px) {
  .prize .prize_content .roots .prize_outline figure {
    padding-bottom: 73%;
  }
}
@media (max-width: 980px) {
  .prize .prize_content .roots .prize_outline figure {
    padding-bottom: 65%;
  }
}
@media (max-width: 580px) {
  .prize .prize_content .roots .prize_outline figure {
    padding-bottom: 75%;
  }
}
.prize .prize_content .kfc .prize_outline figure {
  padding-bottom: 40%;
  background-size: contain;
}
@media (max-width: 1440px) {
  .prize .prize_content .kfc .prize_outline figure {
    padding-bottom: 43%;
  }
}
@media (max-width: 580px) {
  .prize .prize_content .kfc .prize_outline figure {
    padding-bottom: 45%;
  }
}
.prize .prize_content .pizza .prize_outline figure {
  background-position: center center;
  padding-bottom: 70%;
}
@media (max-width: 1440px) {
  .prize .prize_content .pizza .prize_outline figure {
    padding-bottom: 73%;
  }
}
@media (max-width: 450px) {
  .prize .prize_content .pizza .prize_outline figure {
    padding-bottom: 76%;
  }
}
.prize .prize_content .prize_outline {
  height: 180px;
  max-height: 180px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-radius: 10px 10px 0 0;
  border: 3px solid white;
}
@media (max-width: 1440px) {
  .prize .prize_content .prize_outline {
    height: 165px;
  }
}
@media (max-width: 980px) {
  .prize .prize_content .prize_outline {
    height: 30vw;
    max-height: unset;
    min-height: 150px;
  }
}
@media (max-width: 580px) {
  .prize .prize_content .prize_outline {
    height: 25vw;
  }
}
@media (max-width: 450px) {
  .prize .prize_content .prize_outline {
    height: 21vw;
    min-height: 135px;
  }
}
.prize .prize_content figure {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding-bottom: 135%;
}
@media (max-width: 980px) {
  .prize .prize_content figure {
    padding-bottom: 120%;
  }
}
@media (max-width: 580px) {
  .prize .prize_content figure {
    padding-bottom: 130%;
  }
}
.prize .tag {
  background-image: url(../images/tag_red.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 13%;
  position: relative;
}
.prize .tag span {
  color: white;
  font-size: 26px;
  font-weight: bold;
  word-break: keep-all;
  position: absolute;
  left: 50%;
  top: 43%;
  width: 100%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1440px) {
  .prize .tag span {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .prize .tag span {
    font-size: 18px;
  }
}
@media (max-width: 450px) {
  .prize .tag span {
    font-size: 16px;
    top: 44%;
  }
}
.prize .description {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: black;
  font-weight: bold;
  padding: 10px;
  border-radius: 0 0 10px 10px;
}

.more_info_btn {
  background-color: #e6373f;
  display: flex;
  justify-content: center;
  max-width: 500px;
  width: 100%;
  margin: auto;
  border-radius: 40px;
  border: 2px solid white;
  margin-bottom: 135px;
  padding: 5px 10px;
  transition: all 0.17s linear;
}
.more_info_btn:hover {
  transform: scale(1.02);
}
@media (max-width: 980px) {
  .more_info_btn {
    max-width: 260px;
    margin-bottom: 60px;
    padding: 8px 10px;
  }
}
.more_info_btn span {
  font-weight: bold;
  font-size: 36px;
  letter-spacing: 2px;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  color: white;
  transform: translateX(-10px);
  position: relative;
}
@media (max-width: 980px) {
  .more_info_btn span {
    transform: translateX(-7px);
  }
}
.more_info_btn span:after {
  content: "";
  position: absolute;
  background-image: url(../images/cta.svg);
  width: 30px;
  height: 42px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% + 10px);
  animation: shake 0.7s alternate infinite ease-in-out;
}
@media (max-width: 980px) {
  .more_info_btn span:after {
    width: 15px;
    height: 21px;
    left: calc(100% + 5px);
  }
}
@media (max-width: 980px) {
  .more_info_btn span {
    font-size: 18px;
  }
}

@keyframes shake {
  0% {
    transform: translate(7px, -50%);
  }
  100% {
    transform: translate(0px, -50%);
  }
}
.rule {
  background-color: #fff;
  border: 5px solid #ebebeb;
  border-radius: 15px;
  position: relative;
}
.rule:before {
  content: "";
  position: absolute;
  background-image: url(../images/rule_dec.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 182px;
  height: 116px;
  left: 46%;
  top: -70px;
}
@media (max-width: 980px) {
  .rule:before {
    transform: scale(0.6);
    left: 38%;
    top: -65px;
  }
}
.rule_container {
  margin: auto;
  padding: 35px 0 30px;
  font-weight: bold;
}
@media (max-width: 980px) {
  .rule_container {
    padding: 30px 0;
  }
}
.rule_title {
  margin: 0 50px;
  padding-bottom: 15px;
  font-size: 28px;
  border-bottom: 3px solid #ebebeb;
}
@media (max-width: 980px) {
  .rule_title {
    font-size: 22px;
    margin: 0 30px 0px;
    padding-bottom: 10px;
  }
}
.rule_list_container {
  padding: 0 15px 0 50px;
}
@media (max-width: 980px) {
  .rule_list_container {
    margin-top: 10px;
    padding-left: 30px;
  }
}
.rule_list {
  padding-top: 8px;
  margin-top: 10px;
  overflow-y: auto;
  display: inline-block;
  height: 177px;
  padding-right: 25px;
}
@media (max-width: 980px) {
  .rule_list {
    padding-right: 10px;
    padding-top: 0;
    margin-top: 5px;
  }
}
.rule_list li {
  line-height: 1.7;
}

.prize_biggest {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
  margin-bottom: 55px;
}
@media (max-width: 980px) {
  .prize_biggest {
    flex-direction: column;
    max-width: 600px;
    gap: 30px;
  }
}
.prize_biggest figure {
  width: 50%;
  padding-bottom: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border: 2px solid white;
  border-radius: 10px;
  position: relative;
}
@media (max-width: 980px) {
  .prize_biggest figure {
    width: 100%;
    padding-bottom: 60.612244898%;
  }
}
.prize_biggest figure::before, .prize_biggest figure:after {
  content: "";
  position: absolute;
}
.prize_biggest figure::before {
  background-image: url(../images/star1.svg);
  width: 164px;
  height: 164px;
  left: -83px;
  top: -82px;
}
.prize_biggest figure:after {
  background-image: url(../images/star2.svg);
  width: 58px;
  height: 58px;
  right: 0;
  bottom: -30px;
}
.prize_biggest .tv {
  border-radius: 10px;
  border: 2px solid white;
  background-color: #fff;
  width: 50%;
  position: relative;
  text-align: center;
  font-weight: bold;
}
@media (max-width: 980px) {
  .prize_biggest .tv {
    width: 100%;
    padding: 0 10px;
  }
}
.prize_biggest .tv::before {
  content: "";
  position: absolute;
  background-image: url(../images/tv_upper.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  padding-bottom: 21.512605042%;
  left: 0;
  top: 0px;
}
.prize_biggest .tv:after {
  content: "";
  position: absolute;
  background-image: url(../images/tv_circle.png);
  width: 70.8333333333%;
  padding-bottom: 13.1666666667%;
  left: 50%;
  transform: translateX(-50%);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  bottom: -40px;
}
@media (max-width: 980px) {
  .prize_biggest .tv:after {
    width: 43.3673469388%;
    padding-bottom: 8.0612244898%;
    bottom: -4vw;
  }
}
@media (max-width: 580px) {
  .prize_biggest .tv:after {
    transform: translateX(-50%) scale(1.3);
  }
}
.prize_biggest .tv .prize_title {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 40px;
  padding-top: 20px;
}
@media (max-width: 1440px) {
  .prize_biggest .tv .prize_title {
    font-size: 36px;
  }
}
@media (max-width: 980px) {
  .prize_biggest .tv .prize_title {
    padding-top: 20px;
  }
}
@media (max-width: 580px) {
  .prize_biggest .tv .prize_title {
    padding-top: 2.5vw;
    font-size: 24px;
  }
}
@media (max-width: 375px) {
  .prize_biggest .tv .prize_title {
    font-size: 24px;
  }
}
.prize_biggest .tv .prize_time {
  position: relative;
  z-index: 2;
  color: white;
  background-color: #d62724;
  padding: 1px 38px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 7px auto 25px;
  font-size: 30px;
  border-radius: 30px;
}
@media (max-width: 1440px) {
  .prize_biggest .tv .prize_time {
    margin-bottom: 15px;
    font-size: 26px;
  }
}
@media (max-width: 980px) {
  .prize_biggest .tv .prize_time {
    margin-bottom: 30px;
    margin-top: 2vw;
    font-size: 26px;
  }
}
@media (max-width: 580px) {
  .prize_biggest .tv .prize_time {
    font-size: 16px;
    padding: 2px 30px;
    margin-bottom: 15px;
  }
}
.prize_biggest .tv .prize_name {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 5px;
}
@media (max-width: 1440px) {
  .prize_biggest .tv .prize_name {
    font-size: 30px;
  }
}
@media (max-width: 580px) {
  .prize_biggest .tv .prize_name {
    font-size: 24px;
  }
}
.prize_biggest .tv .prize_description {
  margin-bottom: 35px;
}
@media (max-width: 1440px) {
  .prize_biggest .tv .prize_description {
    margin-bottom: 25px;
  }
}
.prize_biggest .tv .prize_remind {
  font-size: 14px;
}
@media (max-width: 980px) {
  .prize_biggest .tv .prize_remind {
    margin-bottom: 80px;
  }
}
@media (max-width: 580px) {
  .prize_biggest .tv .prize_remind {
    margin-bottom: 50px;
  }
}