@media (min-width: 120px) {
  @keyframes animated-border {
    0% {
      border: 0.4rem solid yellow;
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    100% {
      border: 0.4rem solid orangered;
      box-shadow: 0 0 0 0.5rem rgba(255, 255, 255, 0);
    }
  }
  .my_nav {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100%;
    height: 11rem;
    background: url('') no-repeat;
    background-size: 100% 11rem;
    border: 1px solid #666;
    font-size: 3.5rem;
    line-height: 11rem;
    text-indent: 1rem;
    color: #fff;
    cursor: pointer;
  }
  .my_nav a {
    color: #fff;
  }
  .header {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
  }
  .header .banner_detail {
    position: relative;
    margin: 0 auto;
    width: 100%;
    height: 56.25rem;
    border: 0.1rem solid #666;
    box-shadow: 5px 5px 8px -5px #191919;
  }
  .header .banner_detail .prev {
    position: absolute;
    /* 垂直置中修正：讓箭頭看起來更低，更接近中心 */
    top: 49%;
    left: 0;
    width: 10%;
    font-family: 'icomoon';
    font-size: 8rem;
    text-align: center;
    color: #fff;
    z-index: 9;
    cursor: pointer;
  }
  .header .banner_detail .prev::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: -1;
  }
  .header .banner_detail .banner_pics ul {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    height: 100%;
    overflow: hidden;
  }
  .header .banner_detail .banner_pics ul li {
    display: none;
  }
  .header .banner_detail .banner_pics ul li img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
  }
  .header .banner_detail .banner_pics ul iframe {
    width: 96rem;
    height: 54rem;
    border-radius: 1rem;
  }
  .header .banner_detail .main_words {
    position: absolute;
    padding: 2rem;
    top: 7rem;
    left: 0;
    width: 100%;
    height: 16rem;
    font-size: 6rem;
    line-height: 12rem;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    z-index: 9;
    white-space: nowrap;
    /* 確保文本不換行 */
    overflow: hidden;
    /* 隱藏溢出容器邊界的內容 */
    text-overflow: ellipsis;
    /* 在溢出處顯示省略號 */
  }
  .header .banner_detail .next {
    position: absolute;
    /* 垂直置中修正：讓箭頭看起來更低，更接近中心 */
    top: 49%;
    right: 0;
    width: 10%;
    font-family: 'icomoon';
    font-size: 8rem;
    /* **【水平置中關鍵修正】** */
    text-align: center;
    color: #fff;
    z-index: 9;
    cursor: pointer;
  }
  .header .banner_detail .next::before {
    content: '';
    position: absolute;
    top: 0;
    right: 10%;
    width: 80%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: -1;
  }
  .header .banner_detail .banner_mark ol {
    position: absolute;
    bottom: 1rem;
    left: 2rem;
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
  .header .banner_detail .banner_mark ol li {
    width: 8rem;
    height: 0.5rem;
    margin: 0 1rem;
    border-radius: 0.15rem;
    background-color: #c2bcbc;
    z-index: 9;
    transition: all 5s linear;
  }
  .header .banner_detail .banner_mark ol li .trans {
    background-color: red;
  }
  .header .banner_detail .act_try_img,
  .header .banner_detail .host_link,
  .header .banner_detail .surprise,
  .header .banner_detail .actShareIcon,
  .header .banner_detail .test_play_bingo {
    position: absolute;
    top: 48rem;
    left: 77rem;
    width: 19.2rem;
    height: 6rem;
    border-radius: 1rem;
    overflow: hidden;
    z-index: 9;
  }
  .header .banner_detail .act_try_img img,
  .header .banner_detail .host_link img,
  .header .banner_detail .surprise img,
  .header .banner_detail .actShareIcon img,
  .header .banner_detail .test_play_bingo img {
    width: 100%;
    height: 100%;
  }
  .header .banner_detail .test_play_bingo {
    z-index: 8;
  }
  .header .banner_detail .act_try_img {
    top: 0;
  }
  .header .banner_detail .surprise {
    top: 45rem;
    left: 5rem;
    width: 31rem;
    height: 31rem;
    z-index: 99;
  }
  .header .banner_detail .actShareIcon {
    top: 45rem;
    left: 5rem;
    width: 27rem;
    height: 27rem;
    z-index: 98;
    border-radius: 6rem;
  }
  .header .banner_detail .ask_join_brief {
    display: none;
    position: absolute;
    padding: 8rem;
    top: 0;
    left: 0;
    width: 100%;
    height: 65rem;
    background-color: #be25b9;
    border-radius: 1rem;
    font-size: 4rem;
    line-height: 8rem;
    color: #fff;
    overflow: hidden;
    z-index: 99;
  }
  .header .main {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin: 0 auto;
    margin-top: 4rem;
    width: 92%;
    animation: animated-border 5s infinite;
    background-image: linear-gradient(225deg, #fff 0%, #fff7e1 50%, #fffee7 70%, #fff 100%);
    box-shadow: 5px 5px 8px -5px #191919;
    color: #000;
    border-radius: 1rem;
  }
  .header .main .more_detail {
    position: absolute;
    top: 77.7%;
    right: 2%;
    font-size: 4rem;
    line-height: 8.8rem;
    border-radius: 1rem;
  }
  .header .main .act_bingo {
    position: absolute;
    top: 17rem;
    right: 8.8rem;
    width: 30rem;
    height: 30rem;
    overflow: hidden;
    border-radius: 3rem;
  }
  .header .main .act_bingo img {
    width: 100%;
  }
  .header .main .get_more {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: 'icomoon';
    font-size: 3rem;
  }
  .header .main .ticket_no {
    position: absolute;
    top: -8rem;
    right: 0;
    margin-right: 2rem;
    font-size: 4rem;
    text-align: right;
    color: #999;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 0.5rem;
  }
  .header .main .share {
    position: absolute;
    appearance: none;
    /* 標準的移除預設樣式屬性 */
    -webkit-appearance: none;
    top: 0rem;
    right: 0;
    width: 100%;
    height: 6.5rem;
    background-color: #ee1abc;
    color: #fff;
    outline: none;
    border: 0.1rem solid #fff;
    box-shadow: 5px 5px 8px -5px #666;
    border-radius: 1rem;
    font-size: 4rem;
    line-height: 6.5rem;
    text-align: center;
    cursor: pointer;
  }
  .header .main h2 {
    margin: 4rem 0 0 2rem;
    text-align: center;
    font-size: 5rem;
  }
  .header .main h5 {
    margin: 1rem 0 0 2rem;
    font-weight: normal;
    font-size: 4rem;
    line-height: 8rem;
  }
  .header .main p {
    white-space: nowrap;
    /* 確保文本不換行 */
    overflow: hidden;
    /* 隱藏溢出容器邊界的內容 */
    text-overflow: ellipsis;
    /* 在溢出處顯示省略號 */
    margin: 0 0 0 2rem;
    font-size: 4rem;
  }
  .header .main p span {
    text-decoration: line-through;
  }
  .header .main p i {
    font-family: 'icomoon';
    color: red;
  }
  .header .main .agree {
    margin: 1rem 0 1rem 2rem;
    line-height: 8rem;
    font-size: 4rem;
    cursor: pointer;
    z-index: 1;
  }
  .header .main .icons {
    display: flex;
    justify-content: space-around;
  }
  .header .main .icons .qty {
    font-weight: bold;
    font-size: 4rem;
    line-height: 8rem;
  }
  .header .main .icons button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 27rem;
    height: 7rem;
    margin-bottom: 6rem;
    font-family: 'icomoon';
    font-size: 4.5rem;
    color: #fff;
    border-radius: 2rem;
    border: none;
    box-shadow: 5px 5px 8px -5px rgba(245, 181, 6, 0.932);
    cursor: pointer;
  }
  .header .main .icons button:hover {
    border: 2px solid rgba(245, 181, 6, 0.932);
  }
  .header .main .icons button a {
    color: #fff;
  }
  .header .main .icons .one {
    background-color: rgba(223, 20, 196, 0.849);
  }
  .header .main .icons .two {
    background-color: rgba(19, 156, 49, 0.849);
  }
  .header .main .icons .three {
    background-color: rgba(18, 102, 212, 0.897);
  }
  .header .main .icons .not_use {
    width: 40rem;
    background-color: rgba(248, 6, 58, 0.897);
  }
  .header .main .icons .empty_btn,
  .header .main .icons .pre_sale_btn {
    background-color: rgba(223, 20, 196, 0.849);
    width: 88rem;
    height: 10rem;
    cursor: pointer;
  }
  .header .main .icons .plan_order_btn {
    width: 88rem;
    height: 10rem;
    background: url('/img/plan_order.webp') no-repeat;
    background-size: 88rem 10rem;
    border: 0.2rem solid #666;
    box-shadow: 5px 5px 8px -5px rgba(245, 181, 6, 0.932);
  }
  .header .main .zero_box {
    position: absolute;
    margin: 0 auto;
    top: 8.5rem;
    left: 4.5rem;
    width: 88rem;
    height: 40rem;
    background-color: #191919;
    border-radius: 2rem;
    border: none;
    box-shadow: 5px 5px 8px -5px rgba(245, 181, 6, 0.932);
    opacity: 0.9;
    z-index: 9;
  }
  .header .main .zero_box .close_up {
    position: absolute;
    top: 4rem;
    right: 4rem;
    font-family: 'icomoon';
    color: #fff;
    font-size: 7rem;
    cursor: pointer;
  }
  .header .main .zero_box .zero_words {
    text-align: center;
    line-height: 40rem;
    font-size: 5rem;
    color: #fff;
  }
  .header .main .grab_box,
  .header .main .ad_box,
  .header .main .bingo_box,
  .header .main .share_box,
  .header .main .line_box,
  .header .main .be_lucky_box,
  .header .main .ask_join_box,
  .header .main .get_ticket_box,
  .header .main .not_allow_box,
  .header .main .not_login_box,
  .header .main .counter_box {
    position: relative;
    margin: 0 auto;
    width: 100%;
    height: 51.75rem;
    background: url('/img/act-wait.gif') no-repeat;
    background-size: 100% 51.75rem;
    border-radius: 1rem;
    border: none;
    box-shadow: 5px 5px 8px -5px rgba(245, 181, 6, 0.932);
  }
  .header .main .grab_box #count-down-timer,
  .header .main .ad_box #count-down-timer,
  .header .main .bingo_box #count-down-timer,
  .header .main .share_box #count-down-timer,
  .header .main .line_box #count-down-timer,
  .header .main .be_lucky_box #count-down-timer,
  .header .main .ask_join_box #count-down-timer,
  .header .main .get_ticket_box #count-down-timer,
  .header .main .not_allow_box #count-down-timer,
  .header .main .not_login_box #count-down-timer,
  .header .main .counter_box #count-down-timer {
    position: absolute;
    top: 8rem;
    left: 23.5rem;
    font-size: 6.5rem;
  }
  .header .main .grab_box .grab_end_time,
  .header .main .ad_box .grab_end_time,
  .header .main .bingo_box .grab_end_time,
  .header .main .share_box .grab_end_time,
  .header .main .line_box .grab_end_time,
  .header .main .be_lucky_box .grab_end_time,
  .header .main .ask_join_box .grab_end_time,
  .header .main .get_ticket_box .grab_end_time,
  .header .main .not_allow_box .grab_end_time,
  .header .main .not_login_box .grab_end_time,
  .header .main .counter_box .grab_end_time,
  .header .main .grab_box .begin_time,
  .header .main .ad_box .begin_time,
  .header .main .bingo_box .begin_time,
  .header .main .share_box .begin_time,
  .header .main .line_box .begin_time,
  .header .main .be_lucky_box .begin_time,
  .header .main .ask_join_box .begin_time,
  .header .main .get_ticket_box .begin_time,
  .header .main .not_allow_box .begin_time,
  .header .main .not_login_box .begin_time,
  .header .main .counter_box .begin_time {
    position: absolute;
    bottom: 3rem;
    left: 2rem;
    line-height: 6rem;
    font-size: 3rem;
    color: #fff;
  }
  .header .main .grab_box .grab_end_time,
  .header .main .ad_box .grab_end_time,
  .header .main .bingo_box .grab_end_time,
  .header .main .share_box .grab_end_time,
  .header .main .line_box .grab_end_time,
  .header .main .be_lucky_box .grab_end_time,
  .header .main .ask_join_box .grab_end_time,
  .header .main .get_ticket_box .grab_end_time,
  .header .main .not_allow_box .grab_end_time,
  .header .main .not_login_box .grab_end_time,
  .header .main .counter_box .grab_end_time {
    bottom: 6.5rem;
  }
  .header .main .grab_box .grab_ticket_btn,
  .header .main .ad_box .grab_ticket_btn,
  .header .main .bingo_box .grab_ticket_btn,
  .header .main .share_box .grab_ticket_btn,
  .header .main .line_box .grab_ticket_btn,
  .header .main .be_lucky_box .grab_ticket_btn,
  .header .main .ask_join_box .grab_ticket_btn,
  .header .main .get_ticket_box .grab_ticket_btn,
  .header .main .not_allow_box .grab_ticket_btn,
  .header .main .not_login_box .grab_ticket_btn,
  .header .main .counter_box .grab_ticket_btn {
    position: absolute;
    bottom: 1rem;
    left: 3.5rem;
    width: 81rem;
    height: 9rem;
    background-color: green;
    border-radius: 1rem;
    border: none;
    box-shadow: 5px 5px 8px -5px rgba(245, 181, 6, 0.932);
    text-align: center;
    line-height: 9rem;
    font-size: 6rem;
    color: #fff;
    cursor: pointer;
  }
  .header .main .grab_box #give_up,
  .header .main .ad_box #give_up,
  .header .main .bingo_box #give_up,
  .header .main .share_box #give_up,
  .header .main .line_box #give_up,
  .header .main .be_lucky_box #give_up,
  .header .main .ask_join_box #give_up,
  .header .main .get_ticket_box #give_up,
  .header .main .not_allow_box #give_up,
  .header .main .not_login_box #give_up,
  .header .main .counter_box #give_up,
  .header .main .grab_box #actShare_finished,
  .header .main .ad_box #actShare_finished,
  .header .main .bingo_box #actShare_finished,
  .header .main .share_box #actShare_finished,
  .header .main .line_box #actShare_finished,
  .header .main .be_lucky_box #actShare_finished,
  .header .main .ask_join_box #actShare_finished,
  .header .main .get_ticket_box #actShare_finished,
  .header .main .not_allow_box #actShare_finished,
  .header .main .not_login_box #actShare_finished,
  .header .main .counter_box #actShare_finished {
    position: absolute;
    bottom: -7rem;
    left: 1.5rem;
    font-size: 4rem;
    color: red;
    cursor: pointer;
  }
  .header .main .not_allow_box,
  .header .main .not_login_box {
    background: url('/img/act-login.webp') no-repeat;
    background-size: 100% 51.75rem;
  }
  .header .main .not_allow_box .not_allow_words,
  .header .main .not_login_box .not_allow_words,
  .header .main .not_allow_box .login_words,
  .header .main .not_login_box .login_words,
  .header .main .not_allow_box .login_remind,
  .header .main .not_login_box .login_remind,
  .header .main .not_allow_box .login_benefit,
  .header .main .not_login_box .login_benefit {
    position: absolute;
    top: 2.5rem;
    left: 13rem;
    font-size: 5rem;
  }
  .header .main .not_allow_box .not_allow_words,
  .header .main .not_login_box .not_allow_words {
    left: 35rem;
    color: #fff;
  }
  .header .main .not_allow_box .login_remind,
  .header .main .not_login_box .login_remind {
    top: 13rem;
    left: 13rem;
    color: red;
  }
  .header .main .not_allow_box .login_benefit,
  .header .main .not_login_box .login_benefit {
    top: 23rem;
    left: 13rem;
  }
  .header .main .not_allow_box .login_btn,
  .header .main .not_login_box .login_btn {
    position: absolute;
    bottom: 1rem;
    left: 5.5rem;
    width: 81rem;
    height: 12rem;
    background-color: green;
    border-radius: 1rem;
    border: none;
    box-shadow: 5px 5px 8px -5px rgba(245, 181, 6, 0.932);
    text-align: center;
    line-height: 12rem;
    font-size: 6rem;
    color: #fff;
    cursor: pointer;
  }
  .header .main .not_allow_box #scan_register,
  .header .main .not_login_box #scan_register {
    position: absolute;
    bottom: -7rem;
    left: 1.5rem;
    font-size: 4rem;
    color: #FF3CAC;
    cursor: default;
  }
  .header .main .not_allow_box {
    background: url('/img/act-stop.webp') no-repeat;
    background-size: 100% 51.75rem;
  }
  .header .main .get_ticket_box {
    background: url('/img/act_get.webp') no-repeat;
    background-size: 100% 51.75rem;
  }
  .header .main .get_ticket_box .get_qty {
    position: absolute;
    top: 6.5rem;
    left: 20rem;
    font-size: 4.5rem;
    color: #191919;
  }
  .header .main .get_ticket_box .get_agreement {
    position: absolute;
    top: 15rem;
    left: 8rem;
    font-size: 4rem;
    color: #191919;
  }
  .header .main .get_ticket_box .get_ticket_btn {
    position: absolute;
    bottom: 1rem;
    left: 5.5rem;
    width: 81rem;
    height: 12rem;
    background-color: green;
    border-radius: 1rem;
    border: none;
    box-shadow: 5px 5px 8px -5px rgba(245, 181, 6, 0.932);
    text-align: center;
    line-height: 12rem;
    font-size: 6rem;
    color: #fff;
    cursor: pointer;
  }
  .header .main .ask_join_box {
    background: url('/img/act_ask.gif') no-repeat;
    background-size: 100% 51.75rem;
  }
  .header .main .ask_join_box .ask_words {
    position: absolute;
    top: 10.5rem;
    left: 22rem;
    font-size: 4.5rem;
    color: #191919;
  }
  .header .main .ask_join_box .ask_steps {
    position: absolute;
    top: 23rem;
    left: 3.5rem;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 1rem;
  }
  .header .main .ask_join_box .ask_steps .ask_img {
    margin: 2rem;
    width: 20.5rem;
    height: 20.5rem;
    border-radius: 1rem;
    overflow: hidden;
  }
  .header .main .ask_join_box .ask_steps .ask_img img {
    width: 100%;
    height: 100%;
  }
  .header .main .ask_join_box .ask_steps #brief_icon {
    margin-top: 12rem;
    width: 29rem;
    height: 11rem;
    cursor: pointer;
  }
  .header .main .ask_join_box .half_btn,
  .header .main .ask_join_box .qr_half_btn,
  .header .main .ask_join_box .qr_ask_btn {
    position: absolute;
    bottom: 1rem;
    left: 5.5rem;
    width: 81rem;
    height: 12rem;
    background-color: rgba(19, 156, 49, 0.849);
    border-radius: 1rem;
    border: none;
    box-shadow: 5px 5px 8px -5px rgba(245, 181, 6, 0.932);
    text-align: center;
    line-height: 12rem;
    font-size: 6rem;
    color: #fff;
    cursor: pointer;
  }
  .header .main .ask_join_box .half_btn,
  .header .main .ask_join_box .qr_half_btn {
    width: 38.5rem;
    height: 9rem;
    font-size: 4.5rem;
  }
  .header .main .ask_join_box .half_btn {
    bottom: 1rem;
    left: 45.5rem;
    background-color: rgba(147, 156, 19, 0.849);
  }
  .header .main .line_box {
    background: url('/img/act_line.webp') no-repeat;
    background-size: 100% 51.75rem;
  }
  .header .main .line_box .line_words {
    position: absolute;
    top: 7rem;
    left: 13.5rem;
    font-size: 4.5rem;
  }
  .header .main .line_box .line_agreement {
    position: absolute;
    top: 25.5rem;
    left: 9.5rem;
    font-size: 4rem;
    color: #fff;
  }
  .header .main .line_box .line_btn {
    position: absolute;
    bottom: 1rem;
    left: 3.5rem;
    width: 81rem;
    height: 9rem;
    background-color: green;
    border-radius: 1rem;
    border: none;
    box-shadow: 5px 5px 8px -5px rgba(245, 181, 6, 0.932);
    text-align: center;
    line-height: 9rem;
    font-size: 6rem;
    color: #fff;
    cursor: pointer;
  }
  .header .main .share_box {
    background: url('/img/act_share.webp') no-repeat;
    background-size: 100% 51.75rem;
  }
  .header .main .share_box .share_words {
    position: absolute;
    top: 1rem;
    left: 15rem;
    font-size: 5rem;
  }
  .header .main .share_box .share_btn {
    position: absolute;
    bottom: 1rem;
    left: 3.5rem;
    width: 81rem;
    height: 9rem;
    background-color: rgba(19, 156, 49, 0.849);
    border-radius: 1rem;
    border: none;
    box-shadow: 5px 5px 8px -5px rgba(245, 181, 6, 0.932);
    text-align: center;
    line-height: 9rem;
    font-size: 6rem;
    color: #fff;
    cursor: pointer;
  }
  .header .main .ad_box {
    background: url('/img/act_ad.webp') no-repeat;
    background-size: 100% 51.75rem;
  }
  .header .main .ad_box .ad_words {
    position: absolute;
    top: 5rem;
    left: 21rem;
    font-size: 5rem;
  }
  .header .main .ad_box .ad_btn {
    position: absolute;
    bottom: 1rem;
    left: 3.5rem;
    width: 81rem;
    height: 9rem;
    background-color: rgba(19, 156, 49, 0.849);
    border-radius: 1rem;
    border: none;
    box-shadow: 5px 5px 8px -5px rgba(245, 181, 6, 0.932);
    text-align: center;
    line-height: 9rem;
    font-size: 6rem;
    color: #fff;
    cursor: pointer;
  }
  .header .main .bingo_box {
    background: url('/img/act_bingo.webp') no-repeat;
    background-size: 100% 51.75rem;
  }
  .header .main .bingo_box .bingo_words {
    position: absolute;
    top: 5rem;
    left: 21rem;
    font-size: 5rem;
  }
  .header .main .bingo_box .bingo_btn {
    position: absolute;
    bottom: 1rem;
    left: 3.5rem;
    width: 81rem;
    height: 9rem;
    background-color: rgba(19, 156, 49, 0.849);
    border-radius: 1rem;
    border: none;
    box-shadow: 5px 5px 8px -5px rgba(245, 181, 6, 0.932);
    text-align: center;
    line-height: 9rem;
    font-size: 6rem;
    color: #fff;
    cursor: pointer;
  }
  .header .main .grab_box {
    background: url('/img/act_grab.webp') no-repeat;
    background-size: 100% 51.75rem;
  }
  .header .main .grab_box #count-down-timer {
    position: absolute;
    top: 2rem;
    left: 37.5rem;
    font-size: 6rem;
    color: #fff;
  }
  .header .main .grab_box .grab_agreement,
  .header .main .grab_box .grab_remaine_tickets {
    position: absolute;
    top: 13.5rem;
    left: 5.5rem;
    font-size: 7rem;
    color: #fff;
  }
  .header .main .grab_box .grab_agreement {
    top: 22.5rem;
    left: 5.5rem;
    font-size: 3.5rem;
  }
  .header .main .grab_box .grab_btn {
    position: absolute;
    bottom: 3.5rem;
    left: 5.5rem;
    width: 77rem;
    height: 9rem;
    background-color: orangered;
    border-radius: 2rem;
    border: none;
    box-shadow: 5px 5px 8px -5px rgba(245, 181, 6, 0.932);
    text-align: center;
    line-height: 9rem;
    font-size: 6rem;
    color: #fff;
    cursor: pointer;
  }
  .header .social_icon {
    position: absolute;
    bottom: -113rem;
    right: 22rem;
    display: flex;
    justify-content: space-around;
    padding-right: 2rem;
    font-size: 4rem;
    line-height: 8rem;
  }
  .header .social_icon i {
    font-family: 'icomoon';
    color: red;
  }
  .header .track {
    position: absolute;
    bottom: -113rem;
    right: 2rem;
    padding-right: 2rem;
  }
  .header .track p {
    font-family: 'icomoon';
    font-size: 4rem;
    line-height: 8rem;
    color: #666;
  }
  .header .track p i {
    margin-right: 3rem;
    color: red;
    cursor: pointer;
  }
  .tabs {
    position: relative;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 100%;
    margin: 4rem auto;
  }
  .tabs .link_btn,
  .tabs #union_link_btn {
    margin: 4rem;
    width: 40rem;
    height: 40rem;
    border-radius: 2rem;
    font-size: 4rem;
    line-height: 40rem;
    text-align: center;
    color: #fff;
  }
  .tabs #union_link_btn {
    position: absolute;
    bottom: -5rem;
    left: 2rem;
  }
  .tabs #icon-01,
  .tabs #icon-01-1 {
    background: url('/img/seller_icons/07.webp') no-repeat;
    background-size: 100% 100%;
  }
  .tabs #icon-01-1 {
    background: url('/img/seller_icons/19.webp') no-repeat;
    background-size: 100% 100%;
  }
  .tabs #icon-02 {
    background: url('/img/seller_icons/17.webp') no-repeat;
    background-size: 100% 100%;
  }
  .tabs #icon-03 {
    background: url('/img/seller_icons/06.webp') no-repeat;
    background-size: 100% 100%;
  }
  .tabs #icon-04 {
    background: url('/img/detail_icon-04.webp') no-repeat;
    background-size: 100% 100%;
  }
  .tabs #icon-05 {
    background: url('/img/product_details.gif') no-repeat;
    background-size: 100% 100%;
  }
  .detail {
    width: 95%;
    margin: 13rem 0 0 2.5rem;
    border-radius: 1rem;
  }
  .detail .detail_head,
  .detail .detail_content {
    position: relative;
    border: 0.1rem solid #666;
    border-radius: 1rem;
  }
  .detail .detail_head h2,
  .detail .detail_content h2 {
    color: red;
    margin: 4rem;
    font-size: 5rem;
  }
  .detail .detail_head .locking,
  .detail .detail_content .locking {
    position: absolute;
    top: 3rem;
    right: 3rem;
    width: 60rem;
    height: 6rem;
    background: url('/img/locking.gif') no-repeat;
    background-size: 60rem 6rem;
    border-radius: 0.5rem;
    border: 0.1rem solid #666;
    box-shadow: 5px 5px 8px -5px rgba(245, 181, 6, 0.932);
    z-index: 9;
  }
  .detail .detail_head .act_brief,
  .detail .detail_content .act_brief,
  .detail .detail_head .plan_brief,
  .detail .detail_content .plan_brief,
  .detail .detail_head .declare,
  .detail .detail_content .declare {
    color: #191919;
    word-break: break-all;
    margin: 4rem;
    font-size: 4rem;
    line-height: 7rem;
  }
  .detail .detail_head .prize_a,
  .detail .detail_content .prize_a {
    margin-left: 4rem;
    font-size: 4rem;
    line-height: 7rem;
  }
  .detail .detail_head .prize_a .prize_btn,
  .detail .detail_content .prize_a .prize_btn {
    position: absolute;
    top: -8.8rem;
    left: 0.5rem;
    width: 40rem;
    height: 8rem;
    border: 1px solid #666;
    border-radius: 1rem;
    background-color: #db19b1;
    box-shadow: 5px 5px 8px -5px #191919;
    line-height: 8rem;
    text-align: center;
    font-size: 4.5rem;
    color: #fff;
  }
  .detail .detail_head .announce,
  .detail .detail_content .announce {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    padding: 10%;
    border: 1px solid #666;
    border-radius: 1rem;
    background-color: #999;
  }
  .detail .detail_head .announce h3,
  .detail .detail_content .announce h3 {
    text-align: center;
    font-size: 5rem;
    line-height: 10rem;
    color: #c530c0;
    background-color: #333;
  }
  .detail .detail_head .announce #close_button,
  .detail .detail_content .announce #close_button {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 5rem;
    line-height: 8rem;
    font-family: 'icomoon';
    color: #fff;
    cursor: pointer;
  }
  .detail .detail_head .announce .announce_title,
  .detail .detail_content .announce .announce_title {
    text-align: center;
    font-size: 5rem;
    line-height: 10rem;
    color: blue;
  }
  .detail .detail_head .announce .announce_content,
  .detail .detail_content .announce .announce_content {
    padding: 2rem;
    font-size: 4rem;
    line-height: 8rem;
    background-color: #666;
    border-radius: 1rem;
    color: #fff;
  }
  .detail .act_link,
  .detail .plan_link {
    margin-left: 4rem;
    font-size: 4rem;
    line-height: 12rem;
  }
  .search_box {
    width: 50%;
    margin: 2rem auto;
  }
  .search_box #keywords {
    width: 100%;
    height: 8rem;
    line-height: 8rem;
    font-size: 4rem;
    margin: 2rem 0;
    border: 1px solid #666;
    border-radius: 1rem;
    outline: none;
  }
  .search_box #keywords::placeholder {
    text-align: center;
    font-size: 4rem;
    color: #c9c4c4;
  }
  .redeem {
    margin: 2rem auto;
  }
  .redeem h2,
  .redeem .publish_h2 {
    margin: 0 auto;
    height: 10rem;
    font-size: 6rem;
    line-height: 6rem;
    text-align: center;
    color: #fff;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(32, 32, 31, 0.9)), to(rgba(71, 71, 69, 0.9)));
  }
  .redeem .publish_h2 {
    height: 100%;
  }
  .redeem h3 {
    height: 12rem;
    font-size: 4rem;
    line-height: 12rem;
    cursor: pointer;
  }
  .redeem ul {
    display: flex;
    flex-direction: column;
    width: 95rem;
    margin: 1rem auto;
  }
  .redeem ul #prize_item,
  .redeem ul .prize_item {
    margin: 0 auto;
    width: 95rem;
    height: 10rem;
    font-size: 6rem;
    line-height: 10rem;
    text-align: center;
    color: #fff;
    background-color: #191919;
  }
  .redeem ul #not_win_switch,
  .redeem ul .not_win_switch {
    margin: 1rem;
    text-align: center;
    font-size: 5rem;
    cursor: pointer;
  }
  .redeem ul li {
    display: flex;
    flex-direction: column;
  }
  .redeem ul li p {
    height: 8rem;
    font-size: 4rem;
    line-height: 8rem;
    border: 1px solid #666;
    margin: -1px 0 0 -1px;
    padding: 0 2rem;
  }
  .redeem ul li p span {
    height: 8rem;
    margin: 0 2rem;
  }
  .redeem ul li p .logo_img {
    display: inline-block;
    width: 24rem;
    overflow: hidden;
    border-radius: 1rem;
  }
  .redeem ul li p .logo_img img {
    width: 100%;
    height: 100%;
  }
  .redeem ul li p:nth-child(1) {
    color: black;
    font-weight: 800;
    background-color: #999;
  }
  .redeem .demo {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 100rem;
    border-radius: 2rem;
  }
  .redeem .demo .demo_transfer,
  .redeem .demo .demo_redeem {
    position: relative;
    width: 96rem;
    height: 63rem;
    margin: 1.5rem 0 0 2.5rem;
    border: 0.1rem solid #666;
    box-shadow: 5px 5px 8px -5px #191919;
    border-radius: 1rem;
  }
  .redeem .demo .demo_transfer h5,
  .redeem .demo .demo_redeem h5 {
    margin: 1rem;
    font-size: 5rem;
    text-align: center;
  }
  .redeem .demo .demo_transfer video,
  .redeem .demo .demo_redeem video,
  .redeem .demo .demo_transfer img,
  .redeem .demo .demo_redeem img,
  .redeem .demo .demo_transfer iframe,
  .redeem .demo .demo_redeem iframe {
    width: 96rem;
    height: 54rem;
    border-radius: 1rem;
  }
  .redeem .demo .demo_transfer .yt_icon,
  .redeem .demo .demo_redeem .yt_icon {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 96rem;
    height: 54rem;
    border-radius: 1rem;
    z-index: 7;
  }
  .promotion h3 {
    margin: 8rem 0 0 0;
    font-size: 4rem;
    text-align: center;
  }
  .promotion .zero_act_box {
    margin: 1rem auto;
    width: 90rem;
    border-radius: 1rem;
    border: 1px solid #666666;
    box-shadow: 0.8rem 0.8rem 0.8rem -0.7rem rgba(0, 0, 0, 0.3);
    overflow: hidden;
  }
  .promotion .zero_act_box img {
    width: 100%;
    height: 100%;
  }
  .promotion .prom_ul {
    display: flex;
    flex-direction: column;
    width: 98%;
    margin: 2rem 0 2rem 2rem;
  }
  .promotion .prom_ul .prom_li {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 2rem 0;
  }
  .promotion .prom_ul .prom_li .prom_words {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 96rem;
    margin-top: 3rem;
    background-color: #fff;
    border-radius: 2rem;
    border: 1px solid #666;
    box-shadow: 0.8rem 0.8rem 0.8rem -0.7rem rgba(0, 0, 0, 0.3);
  }
  .promotion .prom_ul .prom_li .prom_words h2 {
    width: 90rem;
    height: 10rem;
    margin: 2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 5rem;
    line-height: 8rem;
    text-align: center;
    color: red;
  }
  .promotion .prom_ul .prom_li .prom_words .prom_p {
    width: 95%;
    margin-bottom: 2rem;
    word-break: break-all;
    font-size: 4rem;
    line-height: 8rem;
  }
  .promotion .prom_ul .prom_li .prom_words .period {
    font-size: 4rem;
  }
  .promotion .prom_ul .prom_li .prom_words a {
    display: block;
    width: 88rem;
    margin: 2rem;
    height: 6rem;
    text-align: center;
    font-size: 4rem;
    line-height: 6rem;
    border-radius: 2rem;
    border: 1px solid #666;
    box-shadow: 0.8rem 0.8rem 0.8rem -0.7rem rgba(0, 0, 0, 0.3);
  }
  .promotion .prom_ul .prom_li .pic {
    position: relative;
    margin-top: 2rem;
  }
  .promotion .prom_ul .prom_li .pic .join,
  .promotion .prom_ul .prom_li .pic .track {
    position: absolute;
    top: 0.5rem;
    left: 23rem;
    color: #fff;
    background-color: #191919;
    border-radius: 1rem;
    font-size: 4rem;
    line-height: 6rem;
    white-space: nowrap;
    z-index: 9;
  }
  .promotion .prom_ul .prom_li .pic .track {
    left: 2rem;
  }
  .promotion .prom_ul .prom_li .pic .track i {
    color: red;
    font-size: 5rem;
    line-height: 5rem;
    font-family: 'icomoon';
    cursor: pointer;
  }
  .promotion .prom_ul .prom_li .pic .pic_box {
    width: 96rem;
    height: 54rem;
    border-radius: 2rem;
    box-shadow: 0.8rem 0.8rem 0.8rem -0.7rem rgba(238, 183, 2, 0.3);
    overflow: hidden;
  }
  .promotion .prom_ul .prom_li .pic .pic_box img {
    width: 100%;
    height: 100%;
  }
  .promotion .prom_ul .prom_li .pic .name_words {
    position: absolute;
    top: 7rem;
    left: 0;
    width: 100%;
    height: 12rem;
    font-size: 6rem;
    line-height: 12rem;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    z-index: 9;
  }
  .promotion .prom_ul .prom_li .pic .act_try_img {
    position: absolute;
    top: 0;
    right: 4rem;
    width: 19.2rem;
    height: 6rem;
    border-radius: 1rem;
    overflow: hidden;
    z-index: 9;
  }
  .promotion .prom_ul .prom_li .pic .act_try_img img {
    width: 100%;
    height: 100%;
  }
  .promotion .prom_ul .prom_li .pic .host_link,
  .promotion .prom_ul .prom_li .pic .test_play_bingo {
    position: absolute;
    top: 48rem;
    left: 77rem;
    width: 19.2rem;
    height: 6rem;
    border-radius: 1rem;
    overflow: hidden;
    z-index: 9;
  }
  .promotion .prom_ul .prom_li .pic .host_link img,
  .promotion .prom_ul .prom_li .pic .test_play_bingo img {
    width: 100%;
    height: 100%;
  }
  .promotion .prom_ul .prom_li .pic .test_play_bingo {
    z-index: 8;
  }
  .promotion .prom_ul .prom_li .pic .video_container {
    position: relative;
    padding-bottom: 56.25%;
  }
  .promotion .prom_ul .prom_li .pic .video_container iframe,
  .promotion .prom_ul .prom_li .pic .video_container object,
  .promotion .prom_ul .prom_li .pic .video_container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 96rem;
    height: 54rem;
    border-radius: 2rem;
    box-shadow: 0.8rem 0.8rem 0.8rem -0.7rem rgba(0, 0, 0, 0.3);
  }
  .promotion .prom_ul .prom_li .words_L {
    position: absolute;
    top: 50rem;
    left: 0;
    width: 100%;
    height: 12rem;
    font-size: 5.5rem;
    line-height: 12rem;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    z-index: 9;
  }
  .brand_ad {
    width: 96rem;
    margin: 1.5rem 0 0 1rem;
    border: 0.1rem solid #666;
    box-shadow: 5px 5px 8px -5px #191919;
    border-radius: 1rem;
  }
  .brand_ad h2 {
    width: 100%;
    height: 10rem;
    font-size: 6rem;
    line-height: 10rem;
    text-align: center;
    color: #fff;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(32, 32, 31, 0.9)), to(rgba(71, 71, 69, 0.9)));
  }
  .brand_ad .about_ul .about_li .img {
    position: relative;
  }
  .brand_ad .about_ul .about_li .img img {
    width: 96rem;
    height: 54rem;
    border-radius: 1rem;
    box-shadow: 0.8rem 0.8rem 0.8rem -0.7rem rgba(0, 0, 0, 0.3);
  }
  .brand_ad .about_ul .about_li .img .yt_icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 96rem;
    height: 54rem;
    border-radius: 1rem;
    z-index: 7;
  }
  .brand_ad .about_ul .about_li .brand_content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 92rem;
    height: 51.75rem;
    border-bottom: 1px solid #666;
    box-shadow: 5px 5px 8px -5px #191919;
    padding: 0 2rem;
    font-size: 3.5rem;
    line-height: 10.5rem;
    text-align: left;
    background-color: #fff;
    border-radius: 1rem;
    border: 1px solid #666;
    box-shadow: 0.8rem 0.8rem 0.8rem -0.7rem rgba(0, 0, 0, 0.3);
  }
  .share_brief {
    width: 97%;
    margin: 3rem 0 0 1rem;
    border: 0.1rem solid #666;
    box-shadow: 5px 5px 8px -5px #191919;
    border-radius: 2rem;
    background: url('/img/act_share-css.webp') no-repeat;
    background-size: 100rem 100rem;
  }
  .share_brief .mobile_img_box {
    display: block;
    width: 97rem;
    height: 60rem;
    border-radius: 2rem;
    overflow: hidden;
  }
  .share_brief .mobile_img_box img {
    border-radius: 2rem;
    width: 100%;
    height: 100%;
  }
  .share_brief .web_img_box {
    display: none;
  }
  .share_brief .center_box {
    width: 97rem;
    margin: 1rem auto;
    border: 0.1rem solid #666;
    box-shadow: 5px 5px 8px -5px #191919;
    border-radius: 1rem;
    background-color: #fff;
    text-align: center;
  }
  .share_brief .center_box h3 {
    margin: 2rem;
    font-size: 5rem;
    color: #ff0055;
  }
  .share_brief .center_box .brief,
  .share_brief .center_box .share_link {
    width: 100%;
    font-size: 4rem;
    line-height: 8rem;
  }
  .share_brief .center_box .brief .brief_words,
  .share_brief .center_box .share_link .brief_words {
    text-align: left;
    padding: 2rem;
  }
  .share_brief .center_box .brief #link,
  .share_brief .center_box .share_link #link {
    word-break: break-all;
  }
  .share_brief .center_box .agree_btn,
  .share_brief .center_box .copy_btn {
    width: 100%;
    text-align: center;
    font-size: 5rem;
    line-height: 10rem;
    background-color: #ff0055;
    border-radius: 1rem;
    color: #fff;
    cursor: pointer;
  }
}
@media (min-width: 750.1px) {
  .my_nav {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 99.8%;
    height: 4rem;
    background: url('') no-repeat;
    background-size: 99.8% 4rem;
    border: 1px solid #666;
    font-size: 1.5rem;
    line-height: 4rem;
    text-indent: 1rem;
  }
  .header {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 99%;
    margin: 0 auto;
  }
  .header .main {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin: 1rem;
    width: 48rem;
    height: 27rem;
    border: 0.1rem solid #666;
    box-shadow: 5px 5px 8px -5px #191919;
    border-radius: 1rem;
  }
  .header .main .more_detail {
    position: absolute;
    top: 73.5%;
    right: 1.75%;
    font-size: 1.5rem;
    line-height: 4rem;
    border-radius: 0.5rem;
  }
  .header .main .act_bingo {
    position: absolute;
    top: 7.8rem;
    right: 4rem;
    width: 15rem;
    height: 15rem;
    overflow: hidden;
    border-radius: 1.5rem;
  }
  .header .main .act_bingo img {
    width: 100%;
  }
  .header .main .get_more {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-family: 'icomoon';
    font-size: 1rem;
  }
  .header .main .ticket_no {
    position: absolute;
    top: 25rem;
    right: 48.5rem;
    white-space: nowrap;
    font-size: 1.25rem;
    text-align: right;
    color: #999;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 0.25rem;
  }
  .header .main .share {
    position: absolute;
    top: 0.25rem;
    right: 3.75rem;
    width: 39rem;
    height: 3.25rem;
    background-color: #ee1abc;
    color: #fff;
    outline: none;
    border: 0.1rem solid #fff;
    box-shadow: 5px 5px 8px -5px #666;
    border-radius: 0.5rem;
    font-size: 1.5rem;
    line-height: 3.25rem;
    text-align: center;
    cursor: pointer;
  }
  .header .main h2 {
    margin: 2rem 0 0 2rem;
    font-size: 2rem;
  }
  .header .main h5 {
    margin: 1rem 0 0 2rem;
    font-weight: normal;
    font-size: 1.75rem;
    line-height: 3.5rem;
  }
  .header .main p {
    margin: 0 0 0 2rem;
    font-size: 1.5rem;
  }
  .header .main p span {
    text-decoration: line-through;
  }
  .header .main p i {
    font-family: 'icomoon';
    color: red;
  }
  .header .main .agree {
    margin: 0 0 0rem 2rem;
    line-height: 2.5rem;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 1;
  }
  .header .main .icons {
    display: flex;
    justify-content: space-around;
  }
  .header .main .icons .qty {
    font-weight: bold;
    font-size: 2rem;
    line-height: 4rem;
  }
  .header .main .icons button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10rem;
    height: 4rem;
    margin-bottom: 2rem;
    font-family: 'icomoon';
    font-size: 2rem;
    color: #fff;
    border-radius: 1rem;
    border: none;
    box-shadow: 5px 5px 8px -5px rgba(245, 181, 6, 0.932);
  }
  .header .main .icons button:hover {
    border: 2px solid rgba(245, 181, 6, 0.932);
  }
  .header .main .icons button a {
    color: #fff;
  }
  .header .main .icons .one {
    background-color: rgba(223, 20, 196, 0.849);
  }
  .header .main .icons .two {
    background-color: rgba(19, 156, 49, 0.849);
  }
  .header .main .icons .three {
    background-color: rgba(18, 102, 212, 0.897);
  }
  .header .main .icons .not_use {
    width: 16rem;
    background-color: rgba(248, 6, 58, 0.897);
  }
  .header .main .icons .empty_btn,
  .header .main .icons .pre_sale_btn {
    background-color: rgba(223, 20, 196, 0.849);
    width: 44rem;
    height: 5rem;
    cursor: pointer;
  }
  .header .main .icons .plan_order_btn {
    width: 44rem;
    height: 5rem;
    cursor: pointer;
    background: url('/img/plan_order.webp') no-repeat;
    background-size: 44rem 5rem;
    border: 0.1rem solid #666;
    box-shadow: 5px 5px 8px -5px rgba(245, 181, 6, 0.932);
  }
  .header .main .zero_box {
    position: absolute;
    margin: 0 auto;
    top: 3.95rem;
    left: 3.25rem;
    width: 41rem;
    height: 21rem;
    background-color: #191919;
    border-radius: 2rem;
    border: none;
    box-shadow: 5px 5px 8px -5px rgba(245, 181, 6, 0.932);
    z-index: 9;
  }
  .header .main .zero_box .close_up {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-family: 'icomoon';
    color: #fff;
    font-size: 4rem;
    cursor: pointer;
  }
  .header .main .zero_box .zero_words {
    text-align: center;
    line-height: 20rem;
    font-size: 2.5rem;
    color: #fff;
  }
  .header .main .grab_box,
  .header .main .ad_box,
  .header .main .bingo_box,
  .header .main .share_box,
  .header .main .line_box,
  .header .main .be_lucky_box,
  .header .main .ask_join_box,
  .header .main .get_ticket_box,
  .header .main .not_allow_box,
  .header .main .not_login_box,
  .header .main .counter_box {
    position: relative;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    background: url('/img/act-wait.gif') no-repeat;
    background-size: 100% 100%;
    border-radius: 1rem;
    border: none;
    box-shadow: 5px 5px 8px -5px rgba(245, 181, 6, 0.932);
  }
  .header .main .grab_box #count-down-timer,
  .header .main .ad_box #count-down-timer,
  .header .main .bingo_box #count-down-timer,
  .header .main .share_box #count-down-timer,
  .header .main .line_box #count-down-timer,
  .header .main .be_lucky_box #count-down-timer,
  .header .main .ask_join_box #count-down-timer,
  .header .main .get_ticket_box #count-down-timer,
  .header .main .not_allow_box #count-down-timer,
  .header .main .not_login_box #count-down-timer,
  .header .main .counter_box #count-down-timer {
    position: absolute;
    top: 4.5rem;
    left: 12rem;
    font-size: 3.5rem;
  }
  .header .main .grab_box .grab_end_time,
  .header .main .ad_box .grab_end_time,
  .header .main .bingo_box .grab_end_time,
  .header .main .share_box .grab_end_time,
  .header .main .line_box .grab_end_time,
  .header .main .be_lucky_box .grab_end_time,
  .header .main .ask_join_box .grab_end_time,
  .header .main .get_ticket_box .grab_end_time,
  .header .main .not_allow_box .grab_end_time,
  .header .main .not_login_box .grab_end_time,
  .header .main .counter_box .grab_end_time,
  .header .main .grab_box .begin_time,
  .header .main .ad_box .begin_time,
  .header .main .bingo_box .begin_time,
  .header .main .share_box .begin_time,
  .header .main .line_box .begin_time,
  .header .main .be_lucky_box .begin_time,
  .header .main .ask_join_box .begin_time,
  .header .main .get_ticket_box .begin_time,
  .header .main .not_allow_box .begin_time,
  .header .main .not_login_box .begin_time,
  .header .main .counter_box .begin_time {
    position: absolute;
    bottom: 1.5rem;
    left: 1rem;
    line-height: 3rem;
    font-size: 1.5rem;
    color: #fff;
  }
  .header .main .grab_box .grab_end_time,
  .header .main .ad_box .grab_end_time,
  .header .main .bingo_box .grab_end_time,
  .header .main .share_box .grab_end_time,
  .header .main .line_box .grab_end_time,
  .header .main .be_lucky_box .grab_end_time,
  .header .main .ask_join_box .grab_end_time,
  .header .main .get_ticket_box .grab_end_time,
  .header .main .not_allow_box .grab_end_time,
  .header .main .not_login_box .grab_end_time,
  .header .main .counter_box .grab_end_time {
    bottom: 4.5rem;
  }
  .header .main .grab_box .grab_ticket_btn,
  .header .main .ad_box .grab_ticket_btn,
  .header .main .bingo_box .grab_ticket_btn,
  .header .main .share_box .grab_ticket_btn,
  .header .main .line_box .grab_ticket_btn,
  .header .main .be_lucky_box .grab_ticket_btn,
  .header .main .ask_join_box .grab_ticket_btn,
  .header .main .get_ticket_box .grab_ticket_btn,
  .header .main .not_allow_box .grab_ticket_btn,
  .header .main .not_login_box .grab_ticket_btn,
  .header .main .counter_box .grab_ticket_btn {
    position: absolute;
    bottom: 0.5rem;
    left: 1.5rem;
    width: 37rem;
    height: 4.5rem;
    background-color: green;
    border-radius: 1rem;
    border: none;
    box-shadow: 5px 5px 8px -5px rgba(245, 181, 6, 0.932);
    text-align: center;
    line-height: 4.5rem;
    font-size: 3rem;
    color: #fff;
  }
  .header .main .grab_box #give_up,
  .header .main .ad_box #give_up,
  .header .main .bingo_box #give_up,
  .header .main .share_box #give_up,
  .header .main .line_box #give_up,
  .header .main .be_lucky_box #give_up,
  .header .main .ask_join_box #give_up,
  .header .main .get_ticket_box #give_up,
  .header .main .not_allow_box #give_up,
  .header .main .not_login_box #give_up,
  .header .main .counter_box #give_up,
  .header .main .grab_box #actShare_finished,
  .header .main .ad_box #actShare_finished,
  .header .main .bingo_box #actShare_finished,
  .header .main .share_box #actShare_finished,
  .header .main .line_box #actShare_finished,
  .header .main .be_lucky_box #actShare_finished,
  .header .main .ask_join_box #actShare_finished,
  .header .main .get_ticket_box #actShare_finished,
  .header .main .not_allow_box #actShare_finished,
  .header .main .not_login_box #actShare_finished,
  .header .main .counter_box #actShare_finished {
    position: absolute;
    bottom: -2.5rem;
    left: 1.5rem;
    font-size: 1rem;
    color: red;
    cursor: pointer;
  }
  .header .main .not_allow_box,
  .header .main .not_login_box {
    background: url('/img/act-login.webp') no-repeat;
    background-size: 100% 100%;
  }
  .header .main .not_allow_box .not_allow_words,
  .header .main .not_login_box .not_allow_words,
  .header .main .not_allow_box .login_words,
  .header .main .not_login_box .login_words,
  .header .main .not_allow_box .login_remind,
  .header .main .not_login_box .login_remind,
  .header .main .not_allow_box .login_benefit,
  .header .main .not_login_box .login_benefit {
    position: absolute;
    top: 1.5rem;
    left: 4.5rem;
    font-size: 2rem;
  }
  .header .main .not_allow_box .not_allow_words,
  .header .main .not_login_box .not_allow_words {
    left: 17rem;
    color: #fff;
  }
  .header .main .not_allow_box .login_remind,
  .header .main .not_login_box .login_remind {
    top: 6.5rem;
    left: 4.5rem;
    color: red;
  }
  .header .main .not_allow_box .login_benefit,
  .header .main .not_login_box .login_benefit {
    top: 11.8rem;
    left: 4.5rem;
  }
  .header .main .not_allow_box .login_btn,
  .header .main .not_login_box .login_btn {
    position: absolute;
    bottom: 0.5rem;
    left: 4.5rem;
    width: 37rem;
    height: 6rem;
    background-color: green;
    border-radius: 1rem;
    border: none;
    box-shadow: 5px 5px 8px -5px rgba(245, 181, 6, 0.932);
    text-align: center;
    line-height: 6rem;
    font-size: 3rem;
    color: #fff;
  }
  .header .main .not_allow_box #scan_register,
  .header .main .not_login_box #scan_register {
    position: absolute;
    bottom: -2.5rem;
    left: 1.5rem;
    font-size: 1.25rem;
    color: #FF3CAC;
    cursor: default;
  }
  .header .main .not_allow_box {
    background: url('/img/act-stop.webp') no-repeat;
    background-size: 100% 100%;
  }
  .header .main .get_ticket_box {
    background: url('/img/act_get.webp') no-repeat;
    background-size: 100% 100%;
  }
  .header .main .get_ticket_box .get_qty {
    position: absolute;
    top: 4rem;
    left: 12rem;
    font-size: 2rem;
    color: #191919;
  }
  .header .main .get_ticket_box .get_agreement {
    position: absolute;
    top: 8.5rem;
    left: 9rem;
    font-size: 1.5rem;
    color: #191919;
  }
  .header .main .get_ticket_box .get_ticket_btn {
    position: absolute;
    bottom: 0.5rem;
    left: 4.5rem;
    width: 37rem;
    height: 6rem;
    background-color: green;
    border-radius: 1rem;
    border: none;
    box-shadow: 5px 5px 8px -5px rgba(245, 181, 6, 0.932);
    text-align: center;
    line-height: 6rem;
    font-size: 3rem;
    color: #fff;
  }
  .header .main .ask_join_box {
    background: url('/img/act_ask.gif') no-repeat;
    background-size: 100% 100%;
  }
  .header .main .ask_join_box .ask_words {
    position: absolute;
    top: 5.5rem;
    left: 13rem;
    font-size: 2rem;
    color: #191919;
  }
  .header .main .ask_join_box .ask_steps {
    position: absolute;
    top: 13rem;
    left: 1rem;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 2rem;
  }
  .header .main .ask_join_box .ask_steps .ask_img {
    margin: 1rem;
    width: 9.5rem;
    height: 9.5rem;
    border-radius: 0.5rem;
    overflow: hidden;
  }
  .header .main .ask_join_box .ask_steps .ask_img img {
    width: 100%;
    height: 100%;
  }
  .header .main .ask_join_box .ask_steps #brief_icon {
    margin-top: 6rem;
    width: 15rem;
    height: 5rem;
  }
  .header .main .ask_join_box .half_btn,
  .header .main .ask_join_box .qr_half_btn,
  .header .main .ask_join_box .qr_ask_btn {
    position: absolute;
    bottom: 0.5rem;
    left: 4.5rem;
    width: 37rem;
    height: 6rem;
    background-color: rgba(19, 156, 49, 0.849);
    border-radius: 1rem;
    border: none;
    box-shadow: 5px 5px 8px -5px rgba(245, 181, 6, 0.932);
    text-align: center;
    line-height: 6rem;
    font-size: 3rem;
    color: #fff;
  }
  .header .main .ask_join_box .half_btn,
  .header .main .ask_join_box .qr_half_btn {
    width: 18rem;
    height: 4.5rem;
  }
  .header .main .ask_join_box .half_btn {
    bottom: 0.5rem;
    left: 20.5rem;
    background-color: rgba(19, 156, 49, 0.849);
  }
  .header .main .line_box {
    background: url('/img/act_line.webp') no-repeat;
    background-size: 100% 100%;
  }
  .header .main .line_box .line_words {
    position: absolute;
    top: 3.75rem;
    left: 5.8rem;
    font-size: 2rem;
  }
  .header .main .line_box .line_btn {
    position: absolute;
    bottom: 0.5rem;
    left: 1.5rem;
    width: 37rem;
    height: 4.5rem;
    background-color: green;
    border-radius: 1rem;
    border: none;
    box-shadow: 5px 5px 8px -5px rgba(245, 181, 6, 0.932);
    text-align: center;
    line-height: 4.5rem;
    font-size: 3rem;
    color: #fff;
  }
  .header .main .line_box .line_agreement {
    position: absolute;
    top: 13.5rem;
    left: 7rem;
    font-size: 1.5rem;
    color: #fff;
  }
  .header .main .share_box {
    background: url('/img/act_share.webp') no-repeat;
    background-size: 100% 100%;
  }
  .header .main .share_box .share_words {
    position: absolute;
    top: 1.5rem;
    left: 7rem;
    font-size: 2rem;
  }
  .header .main .share_box .share_btn {
    position: absolute;
    bottom: 0.5rem;
    left: 1.5rem;
    width: 37rem;
    height: 4.5rem;
    background-color: rgba(19, 156, 49, 0.849);
    border-radius: 1rem;
    border: none;
    box-shadow: 5px 5px 8px -5px rgba(245, 181, 6, 0.932);
    text-align: center;
    line-height: 4.5rem;
    font-size: 3rem;
    color: #fff;
  }
  .header .main .ad_box {
    background: url('/img/act_ad.webp') no-repeat;
    background-size: 100% 100%;
  }
  .header .main .ad_box .ad_words {
    position: absolute;
    top: 2.75rem;
    left: 11rem;
    font-size: 2rem;
  }
  .header .main .ad_box .ad_btn {
    position: absolute;
    bottom: 0.5rem;
    left: 1.5rem;
    width: 37rem;
    height: 4.5rem;
    background-color: rgba(19, 156, 49, 0.849);
    border-radius: 1rem;
    border: none;
    box-shadow: 5px 5px 8px -5px rgba(245, 181, 6, 0.932);
    text-align: center;
    line-height: 4.5rem;
    font-size: 3rem;
    color: #fff;
  }
  .header .main .bingo_box {
    background: url('/img/act_bingo.webp') no-repeat;
    background-size: 100% 100%;
  }
  .header .main .bingo_box .bingo_words {
    position: absolute;
    top: 3.75rem;
    left: 13rem;
    font-size: 2rem;
  }
  .header .main .bingo_box .bingo_btn {
    position: absolute;
    bottom: 0.5rem;
    left: 5.5rem;
    width: 37rem;
    height: 4.5rem;
    background-color: rgba(19, 156, 49, 0.849);
    border-radius: 1rem;
    border: none;
    box-shadow: 5px 5px 8px -5px rgba(245, 181, 6, 0.932);
    text-align: center;
    line-height: 4.5rem;
    font-size: 3rem;
    color: #fff;
  }
  .header .main .grab_box {
    background: url('/img/act_grab.webp') no-repeat;
    background-size: 100% 100%;
  }
  .header .main .grab_box #count-down-timer {
    position: absolute;
    top: 1rem;
    left: 18rem;
    font-size: 3rem;
    color: #fff;
  }
  .header .main .grab_box .grab_agreement,
  .header .main .grab_box .grab_remaine_tickets {
    position: absolute;
    top: 7.25rem;
    left: 2.5rem;
    font-size: 3.5rem;
    color: #fff;
  }
  .header .main .grab_box .grab_agreement {
    top: 12.25rem;
    left: 2.5rem;
    font-size: 1.25rem;
  }
  .header .main .grab_box .grab_btn {
    position: absolute;
    bottom: 1.75rem;
    left: 2.25rem;
    width: 35.5rem;
    height: 4.5rem;
    background-color: orangered;
    border-radius: 1rem;
    border: none;
    box-shadow: 5px 5px 8px -5px rgba(245, 181, 6, 0.932);
    text-align: center;
    line-height: 4.5rem;
    font-size: 3rem;
    color: #fff;
  }
  .header .social_icon {
    position: absolute;
    bottom: -33.5rem;
    right: 21rem;
    display: flex;
    justify-content: space-around;
    padding-right: 1rem;
    font-size: 1.5rem;
  }
  .header .social_icon i {
    font-family: 'icomoon';
    color: red;
  }
  .header .track {
    position: absolute;
    bottom: -33.5rem;
    right: 0;
    padding-right: 1rem;
  }
  .header .track p {
    font-family: 'icomoon';
    font-size: 1.5rem;
    color: #666;
  }
  .header .track p i {
    margin-right: 1.5rem;
    color: red;
    cursor: pointer;
  }
  .tabs {
    display: flex;
    justify-content: space-between;
    width: 98%;
    margin: 2rem auto;
  }
  .tabs .link_btn,
  .tabs #union_link_btn {
    margin: 2rem;
    width: 20rem;
    height: 20rem;
    border-radius: 0.5rem;
    font-size: 1.5rem;
    line-height: 20rem;
    text-align: center;
    color: #fff;
  }
  .tabs #union_link_btn {
    position: absolute;
    bottom: -5rem;
    left: 2rem;
  }
  .tabs #icon-01,
  .tabs #icon-01-1 {
    background: url('/img/seller_icons/07.webp') no-repeat;
    background-size: 100% 100%;
  }
  .tabs #icon-01-1 {
    background: url('/img/seller_icons/19.webp') no-repeat;
    background-size: 100% 100%;
  }
  .tabs #icon-02 {
    background: url('/img/seller_icons/17.webp') no-repeat;
    background-size: 100% 100%;
  }
  .tabs #icon-03 {
    background: url('/img/seller_icons/06.webp') no-repeat;
    background-size: 100% 100%;
  }
  .tabs #icon-04 {
    background: url('/img/detail_icon-04.webp') no-repeat;
    background-size: 100% 100%;
  }
  .tabs #icon-05 {
    background: url('/img/product_details.gif') no-repeat;
    background-size: 100% 100%;
  }
  .detail {
    width: 98%;
    margin: 5rem auto;
  }
  .detail .detail_head,
  .detail .detail_content {
    position: relative;
  }
  .detail .detail_head h2,
  .detail .detail_content h2 {
    color: red;
    margin: 2rem;
    font-size: 2rem;
  }
  .detail .detail_head .locking,
  .detail .detail_content .locking {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 30rem;
    height: 3rem;
    background: url('/img/locking.gif') no-repeat;
    background-size: 30rem 3rem;
    border-radius: 0.5rem;
    border: 0.1rem solid #666;
    box-shadow: 5px 5px 8px -5px rgba(245, 181, 6, 0.932);
    z-index: 9;
  }
  .detail .detail_head .act_brief,
  .detail .detail_content .act_brief,
  .detail .detail_head .plan_brief,
  .detail .detail_content .plan_brief,
  .detail .detail_head .declare,
  .detail .detail_content .declare {
    color: #191919;
    margin: 2rem;
    font-size: 1.5rem;
    line-height: 3rem;
  }
  .detail .detail_head .prize_a,
  .detail .detail_content .prize_a {
    margin-left: 2rem;
    font-size: 1.5rem;
    line-height: 3rem;
  }
  .detail .detail_head .prize_a .prize_btn,
  .detail .detail_content .prize_a .prize_btn {
    position: absolute;
    top: -5rem;
    left: 0.5rem;
    width: 20rem;
    height: 4rem;
    border: 1px solid #666;
    border-radius: 0.5rem;
    background-color: #db19b1;
    box-shadow: 5px 5px 8px -5px #191919;
    line-height: 4rem;
    text-align: center;
    font-size: 1.5rem;
    color: #fff;
  }
  .detail .detail_head .announce,
  .detail .detail_content .announce {
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    padding: 5%;
    border: 1px solid #666;
    border-radius: 0.5rem;
    background-color: #999;
  }
  .detail .detail_head .announce h3,
  .detail .detail_content .announce h3 {
    text-align: center;
    font-size: 2.5rem;
    line-height: 5rem;
    color: #c530c0;
    background-color: #333;
  }
  .detail .detail_head .announce #close_button,
  .detail .detail_content .announce #close_button {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-size: 2.5rem;
    line-height: 4rem;
    font-family: 'icomoon';
    color: #fff;
    cursor: pointer;
  }
  .detail .detail_head .announce .announce_title,
  .detail .detail_content .announce .announce_title {
    text-align: center;
    font-size: 2rem;
    line-height: 4rem;
    color: blue;
  }
  .detail .detail_head .announce .announce_content,
  .detail .detail_content .announce .announce_content {
    padding: 1rem;
    font-size: 1.5rem;
    line-height: 3rem;
    background-color: #666;
    border-radius: 0.5rem;
    color: #fff;
  }
  .detail .act_link,
  .detail .plan_link {
    margin-left: 2rem;
    font-size: 1.5rem;
    line-height: 5rem;
  }
  .search_box {
    width: 30%;
    margin: 1rem auto;
  }
  .search_box #keywords {
    width: 100%;
    height: 3rem;
    line-height: 3rem;
    font-size: 1.5rem;
    margin: 1rem 0;
    border: 1px solid #666;
    border-radius: 0.25rem;
    outline: none;
  }
  .search_box #keywords::placeholder {
    font-size: 1.5rem;
    color: #c9c4c4;
  }
  .redeem {
    margin: 1rem auto;
  }
  .redeem h2,
  .redeem .publish_h2 {
    margin: 0 auto;
    height: 5rem;
    font-size: 3rem;
    line-height: 3rem;
    text-align: center;
    color: #fff;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(32, 32, 31, 0.9)), to(rgba(71, 71, 69, 0.9)));
  }
  .redeem .publish_h2 {
    height: 100%;
  }
  .redeem h3 {
    height: 4rem;
    font-size: 1.5rem;
    line-height: 4rem;
    cursor: pointer;
  }
  .redeem ul {
    display: flex;
    flex-direction: column;
    width: 88rem;
    margin: 1rem auto;
  }
  .redeem ul #prize_item,
  .redeem ul .prize_item {
    margin: 0 auto;
    width: 88rem;
    height: 5rem;
    font-size: 3rem;
    line-height: 5rem;
    text-align: center;
    color: #fff;
    background-color: #191919;
  }
  .redeem ul #not_win_switch,
  .redeem ul .not_win_switch {
    margin: 0.5rem;
    text-align: center;
    font-size: 2rem;
    cursor: pointer;
  }
  .redeem ul li {
    display: flex;
    flex-direction: column;
  }
  .redeem ul li p {
    height: 4rem;
    font-size: 2rem;
    line-height: 4rem;
    border: 1px solid #666;
    margin: -1px 0 0 -1px;
    padding: 0 2rem;
  }
  .redeem ul li p span {
    height: 4rem;
    margin: 0 2rem;
  }
  .redeem ul li p .logo_img {
    display: inline-block;
    width: 12rem;
    overflow: hidden;
    border-radius: 0.5rem;
  }
  .redeem ul li p .logo_img img {
    width: 100%;
    height: 100%;
  }
  .redeem ul li p:nth-child(1) {
    color: black;
    font-weight: 700;
    background-color: #999;
  }
  .redeem .demo {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 98%;
    height: 35rem;
    border-radius: 1rem;
  }
  .redeem .demo .demo_transfer,
  .redeem .demo .demo_redeem {
    position: relative;
    width: 43rem;
    height: 28rem;
    margin: 1.5rem 0 0 1.5rem;
    border: 0.1rem solid #666;
    box-shadow: 5px 5px 8px -5px #191919;
    border-radius: 0.5rem;
  }
  .redeem .demo .demo_transfer h5,
  .redeem .demo .demo_redeem h5 {
    margin: 1rem;
    font-size: 1.5rem;
    text-align: center;
  }
  .redeem .demo .demo_transfer video,
  .redeem .demo .demo_redeem video,
  .redeem .demo .demo_transfer img,
  .redeem .demo .demo_redeem img,
  .redeem .demo .demo_transfer iframe,
  .redeem .demo .demo_redeem iframe {
    width: 43rem;
    height: 24.2rem;
    border-radius: 0.5rem;
  }
  .redeem .demo .demo_transfer .yt_icon,
  .redeem .demo .demo_redeem .yt_icon {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 43rem;
    height: 24.2rem;
    border-radius: 0.5rem;
    z-index: 7;
  }
  .promotion {
    margin-top: 0;
  }
  .promotion h3 {
    margin: 4rem 0 0 0;
    font-size: 1.5rem;
    text-align: center;
  }
  .promotion .zero_act_box {
    margin: 1rem auto;
    width: 50rem;
    border-radius: 1rem;
    border: 1px solid #666666;
    box-shadow: 0.8rem 0.8rem 0.8rem -0.7rem rgba(0, 0, 0, 0.3);
    overflow: hidden;
  }
  .promotion .zero_act_box img {
    width: 100%;
    height: 100%;
  }
  .promotion .prom_ul {
    display: flex;
    flex-direction: column;
    width: 98%;
    margin: 1rem auto;
  }
  .promotion .prom_ul .prom_li {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 1rem 0;
  }
  .promotion .prom_ul .prom_li .prom_words {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 48rem;
    height: 27rem;
    margin-top: 1.5rem;
    background-color: #fff;
    border-radius: 1rem;
    border: 1px solid #666666;
    box-shadow: 0.8rem 0.8rem 0.8rem -0.7rem rgba(0, 0, 0, 0.3);
  }
  .promotion .prom_ul .prom_li .prom_words h2 {
    width: 44rem;
    height: 4rem;
    margin: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 2rem;
    line-height: 4rem;
    text-align: center;
    color: red;
  }
  .promotion .prom_ul .prom_li .prom_words .prom_p {
    padding: 0 1rem;
    font-size: 1.25rem;
    line-height: 2.5rem;
  }
  .promotion .prom_ul .prom_li .prom_words .period {
    font-size: 1.5rem;
  }
  .promotion .prom_ul .prom_li .prom_words a {
    display: block;
    width: 44rem;
    height: 3rem;
    text-align: center;
    font-size: 1.5rem;
    line-height: 3rem;
    border-radius: 1rem;
    border: 1px solid #666;
    box-shadow: 0.8rem 0.8rem 0.8rem -0.7rem rgba(0, 0, 0, 0.3);
  }
  .promotion .prom_ul .prom_li .pic {
    position: relative;
    margin-top: 1.5rem;
  }
  .promotion .prom_ul .prom_li .pic .pic_box {
    width: 48rem;
    height: 27rem;
    border-radius: 1rem;
    box-shadow: 0.8rem 0.8rem 0.8rem -0.7rem rgba(238, 183, 2, 0.3);
    overflow: hidden;
  }
  .promotion .prom_ul .prom_li .pic .pic_box img {
    width: 100%;
    height: 100%;
  }
  .promotion .prom_ul .prom_li .pic .name_words {
    position: absolute;
    top: 3rem;
    left: 0;
    width: 100%;
    height: 5rem;
    font-size: 2.5rem;
    line-height: 5rem;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    z-index: 9;
  }
  .promotion .prom_ul .prom_li .pic .act_try_img {
    position: absolute;
    top: 0;
    right: 0.5rem;
    width: 9.6rem;
    height: 3rem;
    border-radius: 0.5rem;
    overflow: hidden;
    z-index: 9;
  }
  .promotion .prom_ul .prom_li .pic .act_try_img img {
    width: 100%;
    height: 100%;
  }
  .promotion .prom_ul .prom_li .pic .host_link,
  .promotion .prom_ul .prom_li .pic .test_play_bingo {
    position: absolute;
    top: 24rem;
    left: 38.5rem;
    width: 9.6rem;
    height: 3rem;
    border-radius: 0.5rem;
    overflow: hidden;
    z-index: 9;
  }
  .promotion .prom_ul .prom_li .pic .host_link img,
  .promotion .prom_ul .prom_li .pic .test_play_bingo img {
    width: 100%;
    height: 100%;
  }
  .promotion .prom_ul .prom_li .pic .test_play_bingo {
    z-index: 8;
  }
  .promotion .prom_ul .prom_li .pic .video_container {
    position: relative;
    padding-bottom: 56.25%;
    width: 48rem;
    overflow: hidden;
  }
  .promotion .prom_ul .prom_li .pic .video_container iframe,
  .promotion .prom_ul .prom_li .pic .video_container object,
  .promotion .prom_ul .prom_li .pic .video_container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 48rem;
    height: 27rem;
    border-radius: 1rem;
    box-shadow: 0.8rem 0.8rem 0.8rem -0.7rem rgba(0, 0, 0, 0.3);
  }
  .promotion .prom_ul .prom_li .pic .join,
  .promotion .prom_ul .prom_li .pic .track {
    position: absolute;
    top: 1rem;
    left: 16rem;
    color: #fff;
    background-color: #191919;
    border-radius: 0.5rem;
    font-size: 1.25rem;
    line-height: 1.75rem;
    white-space: nowrap;
    z-index: 9;
  }
  .promotion .prom_ul .prom_li .pic .track {
    left: 5rem;
  }
  .promotion .prom_ul .prom_li .pic .track i {
    color: red;
    font-size: 1.5rem;
    line-height: 2rem;
    font-family: 'icomoon';
    cursor: pointer;
  }
  .promotion .prom_ul .prom_li:nth-child(even) {
    flex-direction: row-reverse;
  }
  .promotion .prom_ul .prom_li:nth-child(odd) {
    flex-direction: row;
  }
  .brand_ad {
    width: 99%;
    margin: 1.5rem 0 0 0.5rem;
    border: 0.1rem solid #666;
    box-shadow: 5px 5px 8px -5px #191919;
    border-radius: 1rem;
    background-color: #191919;
  }
  .brand_ad h2 {
    width: 100%;
    height: 5rem;
    font-size: 3rem;
    line-height: 5rem;
    text-align: center;
    color: #fff;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(32, 32, 31, 0.9)), to(rgba(71, 71, 69, 0.9)));
  }
  .brand_ad .about_ul {
    display: flex;
    flex-direction: column;
    width: 95%;
    margin: 1rem auto;
  }
  .brand_ad .about_ul .about_li {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
  }
  .brand_ad .about_ul .about_li .img {
    position: relative;
  }
  .brand_ad .about_ul .about_li .img img {
    width: 44rem;
    height: 24.75rem;
    border-radius: 1rem;
    box-shadow: 0.8rem 0.8rem 0.8rem -0.7rem rgba(0, 0, 0, 0.3);
  }
  .brand_ad .about_ul .about_li .img .yt_icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 44rem;
    height: 24.75rem;
    border-radius: 1rem;
    z-index: 7;
  }
  .brand_ad .about_ul .about_li .brand_content {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 42rem;
    height: 24.75rem;
    border-bottom: 1px solid #666;
    box-shadow: 5px 5px 8px -5px #191919;
    border-radius: 0.5rem;
    padding: 0 1rem;
    font-size: 1.5rem;
    line-height: 4.5rem;
    text-align: left;
    background-color: #fff;
    border-radius: 1rem;
    border: 1px solid #666;
    box-shadow: 0.8rem 0.8rem 0.8rem -0.7rem rgba(0, 0, 0, 0.3);
  }
  .brand_ad .about_ul .about_li:nth-child(even) {
    flex-direction: row-reverse;
  }
  .share_brief {
    width: 98.75%;
    margin: 1.5rem 0 0 0.5rem;
    border: 0.1rem solid #666;
    box-shadow: 5px 5px 8px -5px #191919;
    border-radius: 1rem;
    background: url('/img/act_share-css.webp') no-repeat;
    background-size: 98rem 89rem;
  }
  .share_brief .web_img_box {
    display: block;
    margin: 2rem auto;
    width: 65.3rem;
    height: 24rem;
    border-radius: 1rem;
    overflow: hidden;
  }
  .share_brief .web_img_box img {
    border-radius: 1rem;
    width: 100%;
    height: 100%;
  }
  .share_brief .mobile_img_box {
    display: none;
  }
  .share_brief .center_box {
    width: 65.5rem;
    margin: 0.5rem auto;
    border: 0.1rem solid #666;
    box-shadow: 5px 5px 8px -5px #191919;
    border-radius: 0.5rem;
    background-color: #fff;
    text-align: center;
  }
  .share_brief .center_box h3 {
    margin: 1rem;
    font-size: 2.5rem;
    color: #ff0055;
  }
  .share_brief .center_box .brief,
  .share_brief .center_box .share_link {
    width: 100%;
    font-size: 1.5rem;
    line-height: 3rem;
  }
  .share_brief .center_box .brief .brief_words,
  .share_brief .center_box .share_link .brief_words {
    text-align: left;
    padding: 1rem;
  }
  .share_brief .center_box .agree_btn,
  .share_brief .center_box .copy_btn {
    width: 100%;
    text-align: center;
    font-size: 2rem;
    line-height: 4rem;
    background-color: #ff0055;
    border-radius: 0.5rem;
    color: #fff;
    cursor: pointer;
  }
}
@media (min-width: 750.1px) and (min-width: 750.1px) {
  .header .banner_detail {
    position: relative;
    margin: 1rem;
    border-top: 1px solid #fff;
    width: 48rem;
    height: 27rem;
    border: 0.1rem solid #666;
    box-shadow: 5px 5px 8px -5px #191919;
    border-radius: 1rem;
  }
  .header .banner_detail .prev {
    position: absolute;
    /* 垂直置中修正：通常 48% 或 49% 適用於小字體 */
    top: 48%;
    left: 0;
    width: 10%;
    font-family: 'icomoon';
    font-size: 3rem;
    /* 響應式尺寸 */
    text-align: center;
    color: #fff;
    z-index: 9;
    cursor: pointer;
  }
  .header .banner_detail .prev::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: -1;
  }
  .header .banner_detail .banner_pics ul {
    width: 100%;
    height: 100%;
  }
  .header .banner_detail .banner_pics ul li {
    display: none;
  }
  .header .banner_detail .banner_pics ul li img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
  }
  .header .banner_detail .banner_pics ul iframe {
    width: 46.85rem;
    height: 27rem;
    border-radius: 1rem;
  }
  .header .banner_detail .main_words {
    position: absolute;
    padding: 1rem;
    top: 4rem;
    left: 0;
    width: 100%;
    height: 6rem;
    font-size: 2.5rem;
    line-height: 4rem;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    z-index: 9;
  }
  .header .banner_detail .next {
    position: absolute;
    /* 垂直置中修正 */
    top: 48%;
    right: 0;
    width: 10%;
    font-family: 'icomoon';
    font-size: 3rem;
    /* 響應式尺寸 */
    text-align: center;
    color: #fff;
    z-index: 9;
    cursor: pointer;
  }
  .header .banner_detail .next::before {
    content: '';
    position: absolute;
    top: 0;
    right: 10%;
    width: 80%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: -1;
  }
  .header .banner_detail .banner_mark ol {
    position: absolute;
    bottom: 1rem;
    left: 2rem;
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
  .header .banner_detail .banner_mark ol li {
    width: 4rem;
    height: 0.25rem;
    margin: 0 1rem;
    border-radius: 0.15rem;
    background-color: #c2bcbc;
    z-index: 9;
    transition: all 5s linear;
  }
  .header .banner_detail .banner_mark ol li .trans {
    background-color: red;
  }
  .header .banner_detail .act_try_img,
  .header .banner_detail .host_link,
  .header .banner_detail .surprise,
  .header .banner_detail .actShareIcon,
  .header .banner_detail .test_play_bingo {
    position: absolute;
    top: 24rem;
    left: 37.5rem;
    width: 9.6rem;
    height: 3rem;
    border-radius: 0.5rem;
    overflow: hidden;
    z-index: 9;
  }
  .header .banner_detail .act_try_img img,
  .header .banner_detail .host_link img,
  .header .banner_detail .surprise img,
  .header .banner_detail .actShareIcon img,
  .header .banner_detail .test_play_bingo img {
    width: 100%;
    height: 100%;
  }
  .header .banner_detail .act_try_img {
    top: 0;
  }
  .header .banner_detail .test_play_bingo {
    z-index: 8;
  }
  .header .banner_detail .surprise {
    top: 11rem;
    left: 44rem;
    width: 17rem;
    height: 17rem;
    z-index: 99;
  }
  .header .banner_detail .actShareIcon {
    top: 16rem;
    left: 47rem;
    width: 11rem;
    height: 11rem;
    z-index: 98;
    border-radius: 3rem;
  }
  .header .banner_detail #sharer_banner {
    width: 68rem;
    height: 38.25rem;
  }
  .header .banner_detail .ask_join_brief {
    display: none;
    position: absolute;
    padding: 2rem;
    top: 0;
    left: 0;
    width: 48rem;
    height: 27rem;
    background-color: #be25b9;
    border-radius: 0.5rem;
    font-size: 1.5rem;
    line-height: 4rem;
    color: #fff;
    overflow: hidden;
    z-index: 99;
  }
}
