.position-fixed {
    position: fixed;
}
.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}
.z-index-1 {
    z-index: 10;
}
.z-index-2 {
    z-index: 20;
}
/* 璁剧疆涓€涓厓绱犱负 flex 瀹瑰櫒 */
.flex-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.inline-block {
    display: inline-block;
}

.display-block {
    display: block;
}

.box {
    box-sizing: border-box;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.flex-column {
    flex-direction: column;
}

/* 鎺у埗 flex 椤圭洰鍦ㄤ富杞存柟鍚戜笂鐨勬帓鍒楁柟寮� */
.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

/* 鎺у埗 flex 椤圭洰鍦ㄤ氦鍙夎酱鏂瑰悜涓婄殑瀵归綈鏂瑰紡 */
.align-start {
    align-items: flex-start;
}

.align-end {
    align-items: flex-end;
}

.align-center {
    align-items: center;
}

.align-baseline {
    align-items: baseline;
}

.align-stretch {
    align-items: stretch;
}

/* 鎺у埗 flex 椤圭洰鐨勫脊鎬у闀垮拰鏀剁缉 */
.flex-1 {
    flex: 1;
}

.flex-grow {
    flex-grow: 1;
}

.flex-none {
    flex-grow: 0;
    flex-shrink: 0;
}

.grad-container {
    display: grid;

}

.place-items-center {
    place-items: center; /* 涓婁笅宸﹀彸灞呬腑 */
}

.h-100 {
    height: 100%;
}

.h-80 {
    height: 80%;
}

.h-50 {
    height: 50%;
}

.h-30 {
    height: 30%;
}

.w-5 {
    width: 5%;
}
.w-10 {
    width: 10%;
}

.w-20 {
    width: 20%;
}

.w-30 {
    width: 30%;
}

.w-40 {
    width: 40%;
}

.w-50 {
    width: 50%;
}

.w-60 {
    width: 60%;
}

.w-70 {
    width: 70%;
}

.w-80 {
    width: 80%;
}

.w-90 {
    width: 90%;
}

.w-100 {
    width: 100%;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}

.fs-1 {
    font-size: 10px;
}

.fs-2 {
    font-size: 20px;
}

.fs-3 {
    font-size: 30px;
}

.fs-4 {
    font-size: 40px;
}

.font-bold {
    font-weight: bold;
}

.line-through {
    text-decoration: line-through;
}

.m-0 {
    margin: 0;
}

.m-1 {
    margin: 10px;
}

.m-2 {
    margin: 20px;
}

.mt-1 {
    margin-top: 10px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-5 {
    margin-top: 50px;
}

.mt-6 {
    margin-top: 60px;
}

.mt-7 {
    margin-top: 70px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-9 {
    margin-top: 90px;
}

.mb-1 {
    margin-bottom: 10px;
}

.mb-2 {
    margin-bottom: 20px;
}

.mb-3 {
    margin-bottom: 30px;
}

.mb-4 {
    margin-bottom: 40px;
}

.ml-1 {
    margin-left: 10px;
}

.ml-2 {
    margin-left: 20px;
}

.ml-3 {
    margin-left: 30px;
}

.ml-4 {
    margin-left: 40px;
}
.mr-0 {
    margin-right: 0!important;
}
.mr-1 {
    margin-right: 10px;
}

.mr-2 {
    margin-right: 20px;
}


.p-0 {
    padding: 0!important;
}

.p-1 {
    padding: 10px;
}

.p-2 {
    padding: 20px;
}
.p-3 {
    padding: 30px;
}
.p-4 {
    padding: 40px;
}
.pt-0 {
    padding-top: 0;
}

.pt-1 {
    padding-top: 10px;
}

.pt-2 {
    padding-top: 20px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-4 {
    padding-top: 40px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pl-1 {
    padding-left: 10px;
}

.pl-2 {
    padding-left: 20px;
}

.pl-3 {
    padding-left: 30px;
}

.pl-4 {
    padding-left: 40px;
}
.pl-5 {
    padding-left: 50px;
}
.pr-1 {
    padding-right: 10px;
}

.pr-2 {
    padding-right: 20px;
}

.pr-3 {
    padding-right: 30px;
}

.pr-4 {
    padding-right: 40px;
}

.round-0 {
    border-radius: 0;
}

.round-1 {
    border-radius: 10px;
}

.round-2 {
    border-radius: 20px;
}

.round-3 {
    border-radius: 30px;
}

.round-4 {
    border-radius: 40px;
}

.card-top-round-2 {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.overflow-hidden {
    overflow: hidden;
}

.table-container {
    border-collapse: collapse;
}

.text-black {
    color: black;
}

.text-white {
    color: white;
}

.text-yellow {
    color: #ffe70a;
}

.text-orange {
    color: #ff4923;
}

.bg-white {
    background-color: white;
}

.bg-black {
    background-color: black;
}
.bg-gray{
    background-color: #f2f2f2;
}
.line-height-1{
    line-height: 1 !important;
}

.line-height-1-4{
    line-height: 1.4 !important;
}
.line-height-2{
    line-height: 2 !important;
}
.line-height-1-2{line-height: 1.2 !important;}

.pc-show {
    display: block;
}
.mobile-show {
    display: none;
}
@media (max-width: 767px) {
    .mt-xs-2 {
        margin-top: 20px;
    }

    .mobile-show {
        display: block;
    }

    .pc-show {
        display: none;
    }
}

/***************************************************************************/
.roanyer-table-row td {
    text-align: center;
    /*width: 50px;*/
    font-size: 20px;
}

.roanyer-border td {
    border: 1px solid black;
    font-size: 14px;
    padding: 1%;
}

/* 宸︿笂瑙� */
.roanyer-table-row:first-child td:first-child {
    border-top-left-radius: 10px;
}

/* 鍙充笂瑙� */
.roanyer-table-row:first-child td:last-child {
    border-top-right-radius: 10px;
}

.roanyer-solider {
    padding: 0 40px;
    box-sizing: border-box;
}

.roanyer-product-title {
    font-size: 58px;
    line-height: 1.1;
}

.roanyer-product-title-1 {
    font-size: 42px;
    line-height: 1;
}

.roanyer-product-title-2 {
    font-size: 38px;
    line-height: 1.1;
}
.roanyer-product-sub-title {
    font-size: 30px;
    line-height: 1;
}

.roanyer-product-table-sub-title {
    font-size: 20px;
    line-height: 1;
}

.roanyer-product-table-bottom-tip {
    font-size: 16px;
}

.roanyer-custom-bullet {
    font-size: 40px; /* 璁剧疆鍦嗙偣鐨勫ぇ灏� */
    padding-right: 6px; /* 鍦ㄥ渾鐐瑰拰鏂囨湰涔嬮棿娣诲姞绌烘牸 */
}

.roanyer-shadow {
    box-shadow: 3px 3px 4px 0 gray;
}
.no-underline{
    text-decoration: none;
}
.rp-1-margin-left {
    margin-left: -6%;
}

.rp-2-margin-left {
    margin-left: -12%;
}


@media (max-width: 1200px) {
    .roanyer-product-title {
        font-size: 38px;
    }

    .roanyer-product-title-1 {
        font-size: 28px;
        line-height: 1;
    }
    .roanyer-product-title-2 {
        font-size: 25px;
    }
    .roanyer-product-sub-title {
        font-size: 24px;
    }

    .roanyer-product-table-sub-title {
        font-size: 16px;
    }

    .roanyer-product-table-bottom-tip {
        font-size: 14px;
    }

    .roanyer-custom-bullet {
        font-size: 18px; /* 璁剧疆鍦嗙偣鐨勫ぇ灏� */
    }

    .roanyer-table-row td {
        font-size: 14px;
    }

    .roanyer-border td {
        font-size: 10px;
    }
}

@media (max-width: 900px) {
    .roanyer-product-title {
        font-size: 30px;
    }

    .roanyer-product-title-1 {
        font-size: 23px;
        line-height: 1;
    }
    .roanyer-product-title-2 {
        font-size: 18px;
    }
    .roanyer-product-sub-title {
        font-size: 18px;
    }
}


@media (max-width: 767px) {
    .w-xs-100 {
        width: 100% !important;
    }

    .w-xs-50-px {
        width: 50px !important;
    }

    .roanyer-product-title {
        font-size: 28px;
    }

    .roanyer-product-sub-title {
        font-size: 16px;
    }

    .roanyer-product-table-sub-title {
        font-size: 16px;
    }

    .roanyer-product-table-bottom-tip {
        font-size: 10px;
    }

    .roanyer-custom-bullet {
        font-size: 18px; /* 璁剧疆鍦嗙偣鐨勫ぇ灏� */
    }

    .roanyer-table-row td {
        font-size: 12px;
    }

    .roanyer-border td {
        font-size: 9px;
    }

    .roanyer-column-reverse {
        flex-direction: column-reverse;
    }

    .rp-1-margin-left {
        margin-left: 0;
    }

    .rp-2-margin-left {
        margin-left: 0;
    }
}

@media (max-width: 301px) {
    .roanyer-product-title {
        font-size: 14px;
    }

    .roanyer-product-sub-title {
        font-size: 10px;
    }

    .roanyer-product-table-sub-title {
        font-size: 14px;
    }

    .roanyer-product-table-bottom-tip {
        font-size: 8px;
    }

    .roanyer-custom-bullet {
        font-size: 18px; /* 璁剧疆鍦嗙偣鐨勫ぇ灏� */
    }

    .roanyer-table-row td {
        font-size: 10px;
    }

    .roanyer-border td {
        font-size: 6px;
    }
}

.rp-background {
    background-image: url('https://smitizen.com/wp-content/uploads/2023/07/rp-background-1.png');
    background-size: 24px 24px;
}
.pc-background-yellow {
    background-image: url('https://smitizen.com/wp-content/uploads/2023/08/background-yellow-pc.jpg');
    background-size: 50px 50px;
}
.pc-background-black {
    background-image: url('https://smitizen.com/wp-content/uploads/2023/08/background-black-pc.jpg');
    background-size: 50px 50px;
}
.mobile-background-yellow {
    background-image: url('https://smitizen.com/wp-content/uploads/2023/08/background-yellow-mobile.jpg');
    background-size: 25px 25px;
}
.mobile-background-black {
    background-image: url('https://smitizen.com/wp-content/uploads/2023/08/background-black-mobile.jpg');
    background-size: 25px 25px;
}
/*鏂囩珷娈佃惤璋冩暣*/
.article_container article h1{
    padding-top: 20px;
    padding-bottom: 28px;
    margin: 0;
    color: #000;
}
.article_container article h2{
    padding-top: 36px;
    padding-bottom: 28px;
    margin: 0;
    color: #000;
}
.article_container article h3{
    padding: 16px 0;
    margin: 0;
    color: #000;
}
.article_container article p{
    padding: 13px 0;
    line-height: 1.8;
    margin: 0;
    color: #000;
}
.article_container article p:not(.c4wp-display-captcha-form) img {
    background: #000;
    padding: 6px;
}
.article_container article p:has(img) {
    padding: 0!important;
}
.article_container article div .lwptoc{
    margin: 0!important;
}
.article-w-left{
    width: 73%!important;
}
.article-w-left + #sidebar {
    width: 27%!important;
}
/*# sourceMappingURL=index.css.map */
.top-50 {
  top: 50% !important;
}

.left-2 {
  left: 2%;
}

.top-2 {
  top: 2%;
}

.left-4 {
  left: 4%;
}

.top-4 {
  top: 4%;
}

.left-6 {
  left: 6%;
}

.top-6 {
  top: 6%;
}

.left-8 {
  left: 8%;
}

.top-8 {
  top: 8%;
}

.left-10 {
  left: 10%;
}

.top-10 {
  top: 10%;
}

.left-12 {
  left: 12%;
}

.top-12 {
  top: 12%;
}

.left-14 {
  left: 14%;
}

.top-14 {
  top: 14%;
}

.left-16 {
  left: 16%;
}

.top-16 {
  top: 16%;
}

.left-18 {
  left: 18%;
}

.top-18 {
  top: 18%;
}

.left-20 {
  left: 20%;
}

.top-20 {
  top: 20%;
}

.left-22 {
  left: 22%;
}

.top-22 {
  top: 22%;
}

.left-24 {
  left: 24%;
}

.top-24 {
  top: 24%;
}

.left-26 {
  left: 26%;
}

.top-26 {
  top: 26%;
}

.left-28 {
  left: 28%;
}

.top-28 {
  top: 28%;
}

.left-30 {
  left: 30%;
}

.top-30 {
  top: 30%;
}

.left-32 {
  left: 32%;
}

.top-32 {
  top: 32%;
}

.left-34 {
  left: 34%;
}

.top-34 {
  top: 34%;
}

.left-36 {
  left: 36%;
}

.top-36 {
  top: 36%;
}

.left-38 {
  left: 38%;
}

.top-38 {
  top: 38%;
}

.left-40 {
  left: 40%;
}

.top-40 {
  top: 40%;
}
.top-46{
    top:46%;
}
.bottom-2 {
  bottom: 2%;
}

.right-2 {
  right: 2%;
}

.bottom-4 {
  bottom: 4%;
}

.right-4 {
  right: 4%;
}

.bottom-6 {
  bottom: 6%;
}

.right-6 {
  right: 6%;
}

.bottom-8 {
  bottom: 8%;
}

.right-8 {
  right: 8%;
}

.bottom-10 {
  bottom: 10%;
}

.right-10 {
  right: 10%;
}

.bottom-12 {
  bottom: 12%;
}

.right-12 {
  right: 12%;
}

.bottom-14 {
  bottom: 14%;
}

.right-14 {
  right: 14%;
}

.bottom-16 {
  bottom: 16%;
}

.right-16 {
  right: 16%;
}

.bottom-18 {
  bottom: 18%;
}

.right-18 {
  right: 18%;
}

.bottom-20 {
  bottom: 20%;
}

.right-20 {
  right: 20%;
}

.bottom-22 {
  bottom: 22%;
}

.right-22 {
  right: 22%;
}

.bottom-24 {
  bottom: 24%;
}

.right-24 {
  right: 24%;
}

.bottom-26 {
  bottom: 26%;
}

.right-26 {
  right: 26%;
}

.bottom-28 {
  bottom: 28%;
}

.right-28 {
  right: 28%;
}

.bottom-30 {
  bottom: 30%;
}

.right-30 {
  right: 30%;
}

.bottom-32 {
  bottom: 32%;
}

.right-32 {
  right: 32%;
}

.bottom-34 {
  bottom: 34%;
}

.right-34 {
  right: 34%;
}

.bottom-36 {
  bottom: 36%;
}

.right-36 {
  right: 36%;
}

.bottom-38 {
  bottom: 38%;
}

.right-38 {
  right: 38%;
}

.bottom-40 {
  bottom: 40%;
}

.right-40 {
  right: 40%;
}

.w-65 {
  width: 66% !important;
}

.fierce-tiger .left {
  position: absolute;
  z-index: 20;
  top: 20%;
  left: 6%;
}
.fierce-tiger .left-2 {
  position: absolute;
  z-index: 20;
  top: 20%;
  left: 10%;
}
.fierce-tiger .left-3 {
  position: absolute;
  z-index: 10;
  top: 34%;
  left: 6%;
}
.fierce-tiger .left-3-upper {
  position: relative;
  z-index: 20;
}
.fierce-tiger .detail-left {
  position: absolute;
  left: 2%;
  top: 10%;
}
.fierce-tiger .detail-right {
  position: absolute;
  right: 2%;
  top: 10%;
}
.fierce-tiger .detail-title {
  font-size: 18px;
  line-height: 1;
}
.fierce-tiger .detail-sub-title {
  font-size: 14px;
  line-height: 1;
  margin-top: 8px;
}

.muscle-suit .model-text-1 {
  top: 20%;
  left: 6%;
  width: 55% !important;
}
.muscle-suit .model-img-1 {
  margin-right: 6%;
  margin-top: -6%;
}
.muscle-suit .model-text-2 {
  top: 40%;
  left: 10%;
}
.muscle-suit .model-img-2 {
  margin-right: 8%;
}
.muscle-suit .model-text-3 {
  top: 20%;
  left: 8%;
  width: 58% !important;
}
.muscle-suit .model-img-3 {
  margin-right: 8%;
}
.muscle-suit .rp-background {
  background-image: url("https://smitizen.com/wp-content/uploads/2023/07/rp-background-1.png");
  background-size: 24px 24px;
}

.bene .model-text-1 {
  top: 20%;
  left: 6%;
  width: 55% !important;
}
.bene .model-img-1 {
  margin-right: 6%;
  margin-top: -6%;
}
.bene .model-text-2 {
  top: 40%;
  left: 10%;
}
.bene .model-img-2 {
  margin-right: 8%;
}
.bene .model-text-3 {
  top: 20%;
  left: 7%;
  width: 58% !important;
}
.bene .model-img-3 {
  margin-right: 7%;
}

.bear-mask .model-text-1 {
  top: 20%;
  left: 6%;
  width: 55% !important;
}
.bear-mask .model-img-1 {
  margin-top: -6%;
}
.bear-mask .model-2 {
  top: 20%;
  right: 1%;
}
.bear-mask .model-3 {
  top: 20%;
  right: 1%;
}
.bear-mask .model-4 {
  top: 8%;
  left: 5%;
}
.bear-mask .model-5 {
  top: 34%;
  left: 4%;
  width: 55% !important;
}
.bear-mask .model-5-1 {
  top: 20%;
  left: 6%;
  width: 55% !important;
}
.bear-mask .model-6 {
  top: 35%;
  right: 1%;
  width: 52% !important;
}
.bear-mask .mobile-model-1 {
  top: 62%;
}
.bear-mask .mobile-model-2 {
  top: 48%;
}
.bear-mask .mobile-model-3 {
  top: 4%;
  left: 4%;
}

.black-tiger .model-text-1 {
  top: 20%;
  left: 9%;
  width: 60% !important;
}
.black-tiger .model-img-1 {
  margin-right: 9%;
  margin-top: -6%;
}
.black-tiger .model-img-2 {
  margin-left: 7%;
  margin-bottom: -3.1%;
}
.black-tiger .model-text-2 {
  top: 23%;
  right: 7%;
}
.black-tiger .mobile-model-1 {
  margin-bottom: -2%;
  margin-top: -10%;
}
.black-tiger .adjust-fs {
  font-size: 13px;
}
.black-tiger .model-5 {
  top: 34%;
  left: 40%;
}

.red-dog .model-text-1 {
  top: 32%;
  left: 8%;
}
.red-dog .model-text-2 {
  top: 32%;
  left: 28%;
}
.red-dog .model-text-3 {
  top: 32%;
  right: 4%;
}

.black-fierce-tiger .model-text-1 {
  top: 32%;
  left: 8%;
}
.black-fierce-tiger .model-text-2 {
  top: 26%;
  right: 10%;
}
.black-fierce-tiger .model-text-3 {
  top: 18%;
  right: 6%;
}
.black-fierce-tiger .model-text-4 {
  top: 10%;
  left: 6%;
}
.black-fierce-tiger .model-text-5 {
  top: 20%;
  left: 6%;
}
.black-fierce-tiger .model-text-6 {
  top: 32%;
  right: 1%;
}

.cow-pants .w-32 {
  width: 32% !important;
}
.cow-pants .model-1 {
  top: 34%;
  left: 3%;
}

.bull .model-1, .cow-mask .model-1 {
  top: 40%;
  left: 7%;
  width: 60% !important;
}
.bull .model-text-1, .cow-mask .model-text-1 {
  top: 20%;
  left: 7%;
  width: 60% !important;
}
.bull .model-img-1, .cow-mask .model-img-1 {
  margin-right: 7%;
  margin-top: -6%;
}
.bull .model-2, .cow-mask .model-2 {
  top: 20%;
  left: 50%;
}
.bull .model-3, .cow-mask .model-3 {
  top: 10%;
  left: 49%;
}
.bull .model-text-4, .cow-mask .model-text-4 {
  top: 20%;
  left: 7%;
  width: 58% !important;
}
.bull .model-5, .cow-mask .model-5 {
  top: 34%;
  left: 49%;
}
.bull .mobile-model-1, .cow-mask .mobile-model-1 {
  top: 65%;
}
.bull .mobile-model-2, .cow-mask .mobile-model-2 {
  top: 42%;
}
.bull .mobile-model-3, .cow-mask .mobile-model-3 {
  top: 61%;
}
.bull .mobile-model-4, .cow-mask .mobile-model-4 {
  top: 9%;
}

.cow-mask-dot .model-1 {
  top: 40%;
  left: 8%;
}
.cow-mask-dot .model-1-1 {
  top: 30%;
  left: 8%;
}
.cow-mask-dot .model-2 {
  top: 20%;
  left: 44%;
}
.cow-mask-dot .model-3 {
  top: 32%;
  right: 8%;
}
.cow-mask-dot .model-4 {
  top: 46%;
}
.cow-mask-dot .model-5 {
  top: 30%;
  right: 4%;
}
.cow-mask-dot .model-5-1 {
  top: 12%;
  right: 4%;
}
.cow-mask-dot .model-6 {
  top: 26%;
  left: 6%;
}
.cow-mask-dot .model-6-1 {
  top: 20%;
  left: 6%;
}
.cow-mask-dot .model-mobile-1 {
  bottom: 9%;
}
.cow-mask-dot .model-mobile-1-1 {
  bottom: 9%;
}
.cow-mask-dot .model-mobile-2 {
  top: 2%;
}
.cow-mask-dot .model-mobile-3 {
  bottom: 11%;
}
.cow-mask-dot .model-mobile-3-1 {
  bottom: 14%;
}
.cow-mask-dot .model-mobile-4 {
  top: 40%;
  left: 7%;
}
.cow-mask-dot .model-mobile-5 {
  bottom: 4%;
}
.cow-mask-dot .model-mobile-6 {
  bottom: 2%;
}

.cyborg-furry-mask .model-1 {
  top: 40%;
  left: 12%;
}

.fz-10vw {
  font-size: 10vw;
}

@media (max-width: 767px) {
  .fz-6x {
    font-size: 12px !important;
  }
  .fz-7x {
    font-size: 14px !important;
  }
  .fz-3-7x {
    font-size: 21px !important;
  }
  .fz-5-5x {
    font-size: 25px !important;
  }
  .fz-40x {
    font-size: 16px !important;
  }
  .fierce-tiger .title-1, .black-tiger .title-1 {
    font-size: 28px;
    line-height: 1;
  }
  .fierce-tiger .sub-title-1, .black-tiger .sub-title-1 {
    font-size: 19px;
    line-height: 1;
  }
  .fierce-tiger .detail-title, .black-tiger .detail-title {
    font-size: 15px;
    line-height: 1;
  }
  .fierce-tiger .detail-sub-title, .black-tiger .detail-sub-title {
    font-size: 12px;
    line-height: 1;
  }
  .fierce-tiger .w-free-1, .black-tiger .w-free-1 {
    width: 220px;
  }
  .fierce-tiger .top, .black-tiger .top {
    z-index: 20;
    margin-bottom: -20%;
  }
  .fierce-tiger .bottom, .black-tiger .bottom {
    z-index: 10;
  }
  .muscle-suit .rp-background, .bene .rp-background, .bull .rp-background, .cow-mask .rp-background, .bear-mask .rp-background {
    background-image: url("https://smitizen.com/wp-content/uploads/2023/07/rp-background-1.png");
    background-size: 6px 6px;
  }
  .muscle-suit .roanyer-border td, .bene .roanyer-border td, .bull .roanyer-border td, .cow-mask .roanyer-border td, .bear-mask .roanyer-border td {
    font-size: 12px;
  }
  .muscle-suit .roanyer-product-table-bottom-tip, .bene .roanyer-product-table-bottom-tip, .bull .roanyer-product-table-bottom-tip, .cow-mask .roanyer-product-table-bottom-tip, .bear-mask .roanyer-product-table-bottom-tip {
    font-size: 12px;
  }
  .muscle-suit .adjust-title-1, .bene .adjust-title-1, .bull .adjust-title-1, .cow-mask .adjust-title-1, .bear-mask .adjust-title-1 {
    font-size: 26px;
  }
  .muscle-suit .model-mobile-1, .bene .model-mobile-1, .bull .model-mobile-1, .cow-mask .model-mobile-1, .bear-mask .model-mobile-1 {
    bottom: 4%;
  }
  .muscle-suit .model-mobile-3, .bene .model-mobile-3, .bull .model-mobile-3, .cow-mask .model-mobile-3, .bear-mask .model-mobile-3 {
    top: 34%;
    left: 5%;
  }
  .cow-pants .roanyer-product-content {
    font-size: 12px;
    line-height: 1;
  }
  .cow-pants .top-move-20 {
    margin-top: -20px;
  }
  .red-dog .model-mobile-1 {
    bottom: 6%;
  }
  .red-dog .model-mobile-2 {
    bottom: 6%;
  }
  .red-dog .adjust-title-1 {
    font-size: 24px;
  }
  .red-dog .roanyer-product-sub-title {
    font-size: 12px;
  }
  .black-fierce-tiger .adjust-title-1 {
    font-size: 26px;
  }
  .black-fierce-tiger .adjust-sub-title {
    font-size: 12px;
  }
  .black-fierce-tiger .roanyer-product-table-bottom-tip {
    font-size: 12px;
  }
  .black-fierce-tiger .model-mobile-1 {
    bottom: 10%;
    left: 8%;
    width: 92% !important;
  }
  .black-fierce-tiger .model-mobile-1-2 {
    bottom: 8%;
    left: 8%;
    width: 92% !important;
  }
  .black-fierce-tiger .model-mobile-2 {
    top: 4%;
    left: 6%;
    width: 94% !important;
  }
  .black-fierce-tiger .mobile-model-3 {
    bottom: 5%;
  }
  .black-fierce-tiger .model-mobile-4 {
    bottom: 5%;
    left: 4%;
    width: 96% !important;
  }
}
@media (max-width: 301px) {
  .fz-6x {
    font-size: 6px !important;
  }
  .fz-7x {
    font-size: 7px !important;
  }
  .fz-3-7x {
    font-size: 10px !important;
  }
  .fz-2-5x {
    font-size: 10px !important;
  }
  .muscle-suit .adjust-title-1, .bene .adjust-title-1, .bull .adjust-title-1, .cow-mask .adjust-title-1, .bear-mask .adjust-title-1, .red-dog .adjust-title-1, .black-fierce-tiger .adjust-title-1 {
    font-size: 13px;
  }
  .muscle-suit .roanyer-border td, .bene .roanyer-border td, .bull .roanyer-border td, .cow-mask .roanyer-border td, .bear-mask .roanyer-border td, .red-dog .roanyer-border td, .black-fierce-tiger .roanyer-border td {
    font-size: 7px;
  }
  .muscle-suit .adjust-sub-title, .bene .adjust-sub-title, .bull .adjust-sub-title, .cow-mask .adjust-sub-title, .bear-mask .adjust-sub-title, .red-dog .adjust-sub-title, .black-fierce-tiger .adjust-sub-title {
    font-size: 6px;
  }
  .muscle-suit .roanyer-custom-bullet, .bene .roanyer-custom-bullet, .bull .roanyer-custom-bullet, .cow-mask .roanyer-custom-bullet, .bear-mask .roanyer-custom-bullet, .red-dog .roanyer-custom-bullet, .black-fierce-tiger .roanyer-custom-bullet {
    font-size: 8px;
  }
  .fierce-tiger .detail-title {
    font-size: 12px;
    line-height: 1;
  }
  .fierce-tiger .detail-sub-title {
    font-size: 8px;
    line-height: 1;
  }
  .fierce-tiger .w-free-1 {
    width: 140px;
  }
  .black-tiger .adjust-fs {
    font-size: 8px;
  }
  .black-tiger .detail-title {
    font-size: 12px;
    line-height: 1;
  }
  .black-tiger .detail-sub-title {
    font-size: 8px;
    line-height: 1;
  }
  .cow-pants .roanyer-product-content {
    font-size: 7px;
    line-height: 1;
  }
  .red-dog .adjust-title-1 {
    font-size: 12px;
  }
  .red-dog .roanyer-product-sub-title {
    font-size: 7px;
  }
  .red-dog .roanyer-custom-bullet {
    font-size: 10px;
  }
  .red-dog .roanyer-product-title {
    font-size: 16px;
  }
}

/*# sourceMappingURL=index.css.map */
.hidden {
    display: none !important;
}
.yellow-short-line{
  width: 60px;height: 10px;background-color: #ffe100;
}
/*font*/
.fz-container {
  font-size: 20px;
}
.fz-container .fz-9 {
  font-size: 0.9em;
}
.fz-container .fz-8 {
  font-size: 0.8em;
}
.fz-container .fz-7 {
  font-size: 0.7em;
}
.fz-container .fz-6 {
  font-size: 0.6em;
}
.fz-container .fz-10 {
  font-size: 1em;
}
.fz-container .fz-12 {
  font-size: 1.2em;
}
.fz-container .fz-14 {
  font-size: 1.4em;
}
.fz-container .fz-16 {
  font-size: 1.6em;
}
.fz-container .fz-20 {
  font-size: 2em;
}
.fz-container .fz-30 {
  font-size: 3em;
}

/* mobile */
@media (max-width: 768px) {
  .fz-container {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .fz-container {
    font-size: 16px;
  }
}
@media (max-width: 384px) {
  .fz-container {
    font-size: 14px;
  }
}