body,html {
    font-family: Pretendard,Arial,sans-serif
}

body.hidden {
    overflow: hidden
}

#layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.6);
    z-index: 105
}

#layer.active {
    visibility: visible;
    z-index: 105
}

.layerPopup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    margin: -30px 0 0 -30px
}

.spinner {
    position: absolute;
    border: 8px solid #f3f3f3;
    border-top-color: #3498db;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spinner 2s linear infinite
}

.popup,.spinner {
    top: 50%;
    left: 50%
}

.popup {
    position: fixed;
    transform: translate(-50%,-50%);
    z-index: 110
}

.popup .popup-button {
    display: flex;
    height: 70px;
    margin-top: auto;
    flex-shrink: 0
}

.popup .popup_btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -.4px
}

.popup-confirm {
    width: 380px;
    max-width: 90%;
    background-color: #fff;
    box-shadow: 4px 4px 12px rgba(0,0,0,.16);
    border-radius: 12px
}

.popup-confirm .popup-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 50px 16px 40px
}

.popup-confirm .popup-main .popup-title {
    text-align: center
}

.popup-confirm .popup-main .popup-title>span {
    font-size: 20px;
    font-weight: 700;
    line-height: 130%;
    color: #222
}

.popup-confirm .popup-main .popup-desc {
    text-align: center
}

.popup-confirm .popup-main .popup-desc>p {
    font-size: 18px;
    font-weight: 400;
    line-height: 130%;
    color: #222;
    white-space: pre-line
}

.popup-confirm .popup-main .popup-desc>p>b {
    font-weight: 600
}

.popup-confirm .popup-button {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 0 16px 30px
}

.popup-confirm .popup-button .popup_btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    width: 100%;
    height: 45px;
    font-size: 16px;
    font-weight: 600
}

.popup-confirm .popup-button .btn-confirm_ok {
    background-color: var(--color-primary);
    border: 1px solid #dbdbdb;
    color: #fff
}

.popup-confirm .popup-button .btn-cancel {
    background-color: #fff;
    border: 1px solid var(--color-primary);
    color: var(--color-primary)
}

.popup-terms {
    width: 450px;
    max-width: 90%;
    background-color: #fff;
    box-shadow: 4px 4px 12px rgba(0,0,0,.16);
    border-radius: 12px
}

.popup-terms .popup-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    width: 100%;
    height: 100%;
    padding: 20px 16px 0
}

.popup-terms .popup-main .popup-title {
    position: relative;
    text-align: left
}

.popup-terms .popup-main .popup-title>span {
    font-size: 20px;
    font-weight: 700;
    line-height: 130%;
    color: #222
}

.popup-terms .popup-main .popup-title .btn-close {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url(/images/icons/close.svg) 50%/cover no-repeat
}

.popup-terms .popup-main .popup-content {
    text-align: left;
    height: calc(100% - 60px);
    max-height: calc(80vh + 20px);
    overflow: auto;
    padding-bottom: 20px
}

.popup-terms .popup-main .popup-content>p {
    font-size: 14px;
    font-weight: 400;
    line-height: 130%8;
    color: #222;
    white-space: pre-line
}

.popup-terms .popup-main .popup-content>p>b {
    font-weight: 600
}

#popup-main {
    display: flex;
    flex-direction: column;
    width: 500px;
    height: 590px;
    border-radius: 30px;
    contain: paint
}

#popup-main .popup-main {
    background-color: var(--color-primary);
    height: calc(100% - 70px)
}

#popup-main .popup-main .popup-slider,#popup-main .popup-main .popup-slider .popup-img-item {
    width: 100%;
    height: 100%
}

#popup-main .popup-main .popup-slider .popup-img-item>img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

#popup-main .popup-button .btn-cancel_day {
    background-color: #fff
}

#popup-main .popup-button .btn-cancel {
    background-color: #ebebeb
}

#popup-main .popup-main .popup-slider .swiper-pagination {
    bottom: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px
}

#popup-main .popup-main .popup-slider .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: #fff;
    opacity: 1;
    margin: 0;
    transition: width .15s,background .15s,border-radius .15s
}

#popup-main .popup-main .popup-slider .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 3px;
    background: #ebebeb
}

#popup-main .popup-main .popup-slider .swiper-button-prev {
    background: url(/images/icons/arrow-prev-white.svg) 50%/cover no-repeat;
    left: 80px
}

#popup-main .popup-main .popup-slider .swiper-button-next {
    background: url(/images/icons/arrow-next-white.svg) 50%/cover no-repeat;
    right: 80px
}

#popup-main .popup-main .popup-slider .swiper-button-next,#popup-main .popup-main .popup-slider .swiper-button-prev {
    width: 17px;
    height: 27px;
    top: unset;
    bottom: 66px;
    margin-top: unset
}

#popup-video {
    width: 100%;
    height: 100%;
    background-color: #f7f8fc;
    z-index: 9999;
    opacity: 0;
    transition: opacity .3s ease-in-out
}

#popup-video.show {
    opacity: 1
}

#popup-video .popup-header {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 80px;
    background-color: #fff
}

#popup-video .popup-header .btn-close {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url(/images/icons/close.svg) 50%/cover no-repeat
}

#popup-video .popup-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 100%;
    max-height: calc(100vh - 80px)
}

#popup-video .video-popup {
    width: 100%;
    max-width: 1200px;
    aspect-ratio: 16/9
}

#popup-video .video-popup iframe {
    width: 100%;
    height: 100%;
    object-fit: cover
}

#popup-image {
    width: 600px;
    height: 600px;
    z-index: 9999;
    opacity: 0;
    transition: opacity .3s ease-in-out
}

#popup-image.show {
    opacity: 1
}

#popup-image .popup-header {
    position: absolute;
    top: -40px;
    right: 0
}

#popup-image .popup-header .btn-close {
    width: 24px;
    height: 24px;
    background: url(/images/icons/close_white.svg) 50%/cover no-repeat
}

#popup-image .popup-main {
    width: 100%;
    height: 100%
}

#popup-image .image-popup {
    position: relative;
    width: 100%
}

#popup-image .image-popup .swiper,#popup-image .image-popup .swiper .swiper-wrapper,#popup-image .image-popup .swiper-slide {
    width: 100%
}

#popup-image .image-popup .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

#popup-image .swiper-button-prev,#popup-image .swiper-rtl .swiper-button-next {
    left: -50px!important;
    color: #fff
}

#popup-image .swiper-button-next,#popup-image .swiper-rtl .swiper-button-prev {
    right: -50px!important;
    color: #fff
}

@media (max-width: 1000px) {
    .popup {
        max-width:calc(100% - 40px)
    }

    .popup-confirm .popup-main {
        padding: 40px 16px
    }

    .popup-confirm .popup-main .popup-desc>p {
        font-size: 16px
    }

    .popup-confirm .popup-button .popup_btn {
        font-size: 14px
    }

    .popup .popup-button {
        height: 60px
    }

    .popup .popup_btn {
        font-size: 14px
    }

    #popup-main {
        height: unset;
        aspect-ratio: 320/390 auto;
        border-radius: 24px
    }

    #popup-main .popup-main {
        height: calc(100% - 60px)
    }

    #popup-main .popup-main .popup-slider .swiper-pagination {
        bottom: 30px
    }

    #popup-main .popup-main .popup-slider .swiper-button-next,#popup-main .popup-main .popup-slider .swiper-button-prev {
        bottom: 50px
    }

    #popup-calc {
        height: 596px;
        max-height: 95vh
    }

    #popup-calc .calculation .calculation-button-form .btn-calc {
        height: 60px
    }

    #popup-calc .calculation .calculation-button-form .btn-calc[data-calc=RESET] {
        font-size: 16px;
        line-height: 1.13;
        letter-spacing: -.4px
    }

    #popup-calc .calculation .calculation-button-form .btn-calc[data-calc=BACKSPACE]:after {
        width: 26px;
        height: 27px
    }

    #popup-calc .calculation .calculation-button-action {
        margin-top: 10px
    }

    .popup-terms .popup-main .popup-title>span {
        font-size: 18px
    }

    .popup-terms .popup-main .popup-content>p {
        font-size: 12px
    }

    #popup-video {
        background-color: #fff;
        max-width: 100%
    }

    #popup-video .container {
        padding: 0!important
    }

    #popup-video .popup-header {
        position: absolute;
        top: 0;
        right: 16px
    }

    #popup-video .popup-header .btn-close {
        right: 0
    }

    #popup-video .popup-main {
        max-height: calc(100vh - 40px)
    }

    #popup-image .swiper-button-prev,#popup-image .swiper-rtl .swiper-button-next {
        left: 10px!important;
        transform: translateY(-50%);
        margin-top: 0
    }

    #popup-image .swiper-button-next,#popup-image .swiper-rtl .swiper-button-prev {
        right: 10px!important;
        transform: translateY(-50%);
        margin-top: 0
    }

    #popup-image .swiper-button-next:after,#popup-image .swiper-button-prev:after {
        font-size: 28px!important
    }

    .partners-modal .partners-modal-list-img {
        width: 80px
    }

    .partners-modal .partners-modal-title {
        font-size: 18px;
        margin-bottom: 20px
    }
}

#main .section .section-head {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 100%
}

#main .section .section-head .head-txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px
}

#main .section .section-head .head-txt .head-tit {
    font-size: 34px;
    font-weight: 700;
    color: #222;
    line-height: 130%
}

#main .section .section-head .head-txt .head-sub {
    font-size: 26px;
    font-weight: 600;
    color: #888;
    line-height: 130%
}

#main .section .section-head .head-tab {
    display: none
}

#main .section .section-head .btn-link {
    display: inline-block;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #888;
    text-align: right;
    margin-left: auto
}

#main .section .section-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px
}

#main #section-head-news {
    display: none;
    padding: 20px 16px 30px
}

#main #section-banner {
    padding: 30px 0 0
}

#main #section-banner .banner-cont {
    display: flex;
    gap: 24px
}

#main #section-banner .banner-cont .login-cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 408px;
    flex-shrink: 0;
    padding: 60px 25px 25px;
    border: 2px solid #eee;
    border-radius: 5px
}

#main #section-banner .banner-cont .login-cont .login-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px
}

#main #section-banner .banner-cont .login-cont .login-info .info-txt {
    font-size: 20px;
    font-weight: 600;
    color: #222
}

#main #section-banner .banner-cont .login-cont .login-info .info-txt-sub {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center
}

#main #section-banner .banner-cont .login-cont .login-info .info-txt-sub p {
    font-size: 24px;
    font-weight: 600;
    color: #222;
    line-height: 130%
}

#main #section-banner .banner-cont .login-cont .login-info .info-txt-sub p em {
    color: #FF6A00
}

#main #section-banner .banner-cont .login-cont .login-btn-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-top: auto
}

#main #section-banner .banner-wrapper {
    position: relative;
    width: 100%
}

#main #section-banner .banner-wrapper .swiper {
    width: 100%;
    height: 454px
}

#main #section-banner .banner-wrapper .banner-video {
    position: relative;
    width: 100%;
    height: 600px
}

#main #section-banner .banner-wrapper .banner-video:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.3);
    z-index: 1
}

#main #section-banner .banner-wrapper .banner-video>video {
    width: 100%;
    height: 100%;
    object-fit: cover
}

#main #section-banner .banner-wrapper .banner-item {
    width: 100%;
    height: 100%
}

#main #section-banner .banner-wrapper .banner-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    overflow: hidden
}

#main #section-banner .banner-wrapper .banner-image>img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

#main #section-banner .banner-wrapper .banner-txt {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    z-index: 1;
    padding-top: 163px
}

#main #section-banner .banner-wrapper .banner-txt .txt-sub {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    line-height: 130%
}

#main #section-banner .banner-wrapper .banner-txt .txt-desc {
    margin-top: 15px;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    line-height: 130%
}

#main #section-banner .banner-wrapper .banner-txt .btn-banner {
    margin-top: 80px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    background-color: #FF6A00;
    border-radius: 100px;
    padding: 12px 62px;
    font-size: 20px;
    font-weight: 600;
    color: #fff
}

#main #section-banner .banner-wrapper .banner-paging {
    position: absolute;
    bottom: 16px;
    left: 32px;
    z-index: 10;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    padding: 4px 14px;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08)
}

#main #section-banner .banner-wrapper .banner-paging .banner-paging-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08)
}

#main #section-banner .banner-wrapper .banner-swiper-controls {
    position: absolute;
    bottom: 16px;
    left: 32px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 4px
}

#main #section-banner .banner-wrapper .banner-swiper-button-next,#main #section-banner .banner-wrapper .banner-swiper-button-prev {
    width: 24px;
    height: 24px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s ease
}

#main #section-banner .banner-wrapper .banner-swiper-button-next:hover,#main #section-banner .banner-wrapper .banner-swiper-button-prev:hover {
    background-color: transparent;
    transform: scale(1.1)
}

#main #section-banner .banner-wrapper .banner-swiper-button-prev:after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(-45deg);
    margin-left: 2px
}

#main #section-banner .banner-wrapper .banner-swiper-button-next:after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    margin-right: 2px
}

#main #section-banner .banner-wrapper .banner-swiper-pagination {
    display: flex;
    align-items: center;
    gap: 4px;
    width: auto
}

#main #section-banner .banner-wrapper .banner-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: hsla(0,0%,100%,.6);
    border-radius: 50%;
    cursor: pointer;
    transition: all .3s ease
}

#main #section-banner .banner-wrapper .banner-swiper-pagination .swiper-pagination-bullet-active {
    background-color: #fff;
    transform: scale(1.2)
}

#main #section-menu {
    display: none
}

#section-event {
    padding: 155px 0 100px
}

#section-event .event-list {
    display: flex;
    align-items: center;
    gap: 25px
}

#section-event .event-list .event-item {
    width: calc(100% / 3)
}

#section-event .event-list .event-item .event-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 410/280 auto;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer
}

#section-event .event-list .event-item .event-thumb>img {
    transform: scale(1);
    transition: transform .3s
}

#section-event .event-list .event-item .event-thumb:hover>img {
    transform: scale(1.05)
}

#section-event .event-list .event-item .event-info {
    padding: 8px 10px
}

#section-event .event-list .event-item .event-info .event-meta {
    display: flex;
    flex-direction: column
}

#section-event .event-list .event-item .event-info .event-meta .event-meta-title {
    font-size: 24px;
    font-weight: 600;
    color: #222;
    line-height: 130%
}

#section-event .event-list .event-item .event-info .event-meta .event-meta-date {
    font-size: 16px;
    font-weight: 500;
    color: #888;
    line-height: 130%
}

#section-event .event-more {
    margin-top: 20px
}

#section-event .event-more .btn-event-more {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 52px;
    background-color: #f9fafe;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 600;
    color: #222;
    line-height: 130%;
    text-align: center
}

#section-product {
    padding: 50px 0
}

#section-product .section-inner {
    display: flex;
    flex-direction: column;
    gap: 50px
}

#section-product .section-inner .section-content {
    width: 100%
}

#section-product .product-content .product-list {
    flex-direction: row;
    align-items: flex-end;
    gap: 35px 32px;
    flex-wrap: wrap;
    gap: 50px 12px;
    padding-bottom: 0
}

#section-intro {

    padding: 50px 0 120px
}

#section-intro .intro-category {
    display: flex;
    align-items: center;
    gap: 20px
}

#section-intro .intro-category .item {
    position: relative;
    width: calc(100% / 2);
    height: 234px;
    background: linear-gradient(90deg,#ff93451a),linear-gradient(90deg,#ff93451a,#d759004d);
    border-radius: 8px;
    padding: 50px 30px
}

#section-intro .intro-category .item .item-txt {
    display: flex;
    flex-direction: column;
    gap: 6px
}

#section-intro .intro-category .item .item-txt .item-tit {
    font-size: 26px;
    font-weight: 700;
    color: #222
}

#section-intro .intro-category .item .item-txt .item-desc {
    font-size: 16px;
    font-weight: 500;
    color: #222;
    line-height: 130%
}

#section-intro .intro-category .item .item-img {
    position: absolute;
    bottom: 0;
    right: 0
}

#section-intro .intro-list {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 78px
}

#section-intro .intro-list .item {
    width: calc(100% / 3);
    height: 180px;
    background-color: #fbfbfb;
    border-radius: 20px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px
}

#section-intro .intro-list .item .item-head {
    display: inline-flex;
    align-items: center;
    gap: 14px
}

#section-intro .intro-list .item .item-head .item-tit {
    font-size: 20px;
    font-weight: 700;
    color: #303030
}

#section-intro .intro-list .item .item-cnt>span {
    font-size: 40px;
    font-weight: 700;
    color: #303030
}

#section-intro .intro-list .item .item-cnt>span>i {
    font-size: 26px
}

#section-news {
    padding: 50px 0
}

#section-news .section-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px
}

#section-news .section-inner .section-content {
    width: 100%
}

#section-news .news-table {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px;
    width: 100%
}

#section-news .news-table .item {
    width: calc((100% / 3 - 8px));
    background-color: #fff;
    box-shadow: 0 4px 4px 0 hsla(0,0%,93%,.28),inset -1px -1px 3px 0 hsla(0,0%,93%,.2);
    border-radius: 20px;
    overflow: hidden
}

#section-news .news-table .item .item-img {
    width: 100%;
    aspect-ratio: 392/230 auto
}

#section-news .news-table .item .item-img>img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

#section-news .news-table .item .item-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px 30px 20px
}

#section-news .news-table .item .item-content .item-info {
    display: flex;
    align-items: center;
    gap: 20px
}

#section-news .news-table .item .item-content .item-info .info-source {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    color: rgba(0,0,0,.8);
    line-height: 130%
}

#section-news .news-table .item .item-content .item-info .info-source:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background-color: #eee
}

#section-news .news-table .item .item-content .item-info .info-date {
    font-size: 14px;
    font-weight: 500;
    color: #888;
    line-height: 130%
}

#section-news .news-table .item .item-content .item-txt {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    line-height: 1.3
}

#section-service .service-wrapper .service-table {
    display: flex;
    gap: 60px;
    width: 100%
}

#section-service .service-wrapper .service-table .table-item {
    width: calc((100% / 2) - 30px);
    flex-shrink: 0
}

#section-service .service-wrapper .service-table .table-item .table-head {
    display: flex;
    justify-content: space-between;
    align-items: center
}

#section-service .service-wrapper .service-table .table-item .table-head .head-txt {
    font-size: 34px;
    font-weight: 700;
    color: #222
}

#section-service .service-wrapper .service-table .table-item .table-head .head-more {
    font-size: 20px;
    font-weight: 600;
    color: #888;
    cursor: pointer
}

#section-service .service-wrapper .service-table .table-item .table-content {
    display: flex;
    flex-direction: column;
    margin-top: 50px
}

#section-service .service-wrapper .service-table .table-item .table-content .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #e8e8e8
}

#section-service .service-wrapper .service-table .table-item .table-content .item .item-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 90%
}

#section-service .service-wrapper .service-table .table-item .table-content .item .item-content .item-tit {
    display: inline-flex;
    align-items: center;
    gap: 18px
}

#section-service .service-wrapper .service-table .table-item .table-content .item .item-content .item-tit .tit-txt {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    line-height: 130%
}

#section-service .service-wrapper .service-table .table-item .table-content .item .item-content .item-tit .tit-badge {
    flex-shrink: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 25px;
    border-radius: 12px;
    background-color: #fff3f3;
    padding-inline:12px;font-size: 12px;
    font-weight: 600;
    color: #ff4f4f
}

#section-service .service-wrapper .service-table .table-item .table-content .item .item-content .item-date {
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 500;
    color: #888
}

#section-service .service-wrapper .service-table .table-item .table-content .item .item-link {
    flex-shrink: 0;
    padding: 0 8px
}

#section-service .service-wrapper .service-etc {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 360px;
    flex-shrink: 0
}

#section-service .service-wrapper .service-etc .etc-item {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 174px;
    background-color: #fff;
    border: 2px solid #efefef;
    border-radius: 20px;
    padding: 30px;
    overflow: hidden
}

#section-service .service-wrapper .service-etc .etc-item .item-head>span {
    font-size: 16px;
    font-weight: 400;
    color: #a7a7a7
}

#section-service .service-wrapper .service-etc .etc-item .item-content .etc-link {
    font-size: 28px;
    font-weight: 500;
    color: #4b4b4b;
    line-height: 1.05
}

#section-service .service-wrapper .service-etc .etc-item .item-icon {
    position: absolute;
    bottom: 20px;
    right: 36px
}

#section-service .service-wrapper .service-etc .etc-item:first-child {
    background: linear-gradient(140deg,#72ab2b,#00581f)
}

#section-service .service-wrapper .service-etc .etc-item:first-child .item-content .etc-link,#section-service .service-wrapper .service-etc .etc-item:first-child .item-head>span {
    color: #fff
}

#section-purchase {
    padding: 80px 0;
    background-color: #f9fafe
}

#main .section#section-purchase .section-head .head-txt {
    flex-direction: row;
    justify-content: space-between;
    align-items: center
}

#main .section#section-purchase .section-head .head-txt .head-sub {
    font-size: 16px
}

#section-purchase .purchase-content {
    width: 100%;
    padding: 0;
    margin-top: 30px
}

#section-purchase .purchase-content .purchase-list {
    display: flex;
    flex-direction: column;
    gap: 20px
}

#section-purchase .purchase-content .purchase-list .item {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid #eee
}

#section-purchase .purchase-content .purchase-list .item>div {
    flex: 1 1;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #888
}

#section-purchase .purchase-content .purchase-list .item .item-date {
    flex-shrink: 0;
    flex: 1.4 1;
    margin-right: 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #888;
    margin-left: auto;
    text-align: right
}

#section-purchase .purchase-content .purchase-list .item .item-name {
    font-size: 18px
}

#section-purchase .purchase-content .purchase-list .item .item-product {
    display: flex;
    align-items: center;
    gap: 2px
}

#section-purchase .purchase-content .purchase-list .item .item-product .item-img {
    position: relative;
    width: 32px;
    height: 30px
}

#section-purchase .purchase-content .purchase-list .item .item-product .item-img>img {
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 8px
}

#section-purchase .purchase-content .purchase-list .item .item-product .item-txt {
    font-size: 18px; /* 默认PC端 */
}

/* 手机端（屏幕宽度小于768px时） */
@media screen and (max-width: 768px) {
    #section-purchase .purchase-content .purchase-list .item .item-product .item-img {
    position: relative;
    width: 25.6px;
    height: 24px
}
    #section-purchase .purchase-content .purchase-list .item .item-product .item-txt {
        font-size: 12px;
    }
}

#section-purchase .purchase-content .purchase-list .item .item-product .item-price {
    margin-left: 4px
}

#section-purchase .purchase-content .purchase-list .item .item-status .btn-status {
    flex-shrink: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #FF6A00;
    border-radius: 100px;
    padding: 10px 22px;
    font-size: 16px;
    font-weight: 500;
    color: #eee
}

#section-info {
    padding: 150px 0 100px
}

#section-info .info-list {
    display: flex;
    align-items: center;
    gap: 22px
}

#section-info .info-list .item {
    position: relative;
    width: calc(100% / 3);
    min-height: 158px;
    background-color: var(--color-primary);
    padding: 22px 46px;
    border-radius: 15px
}

#section-info .info-list .item .item-img {
    position: absolute;
    top: 25px;
    right: 25px;
    display: inline-block;
    width: 60px;
    height: 60px
}

#section-info .info-list .item .item-txt {
    display: flex;
    flex-direction: column;
    gap: 5px
}

#section-info .info-list .item .item-txt .item-tit {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    line-height: 130%
}

#section-info .info-list .item .item-txt .item-desc {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    line-height: 130%
}

#section-info .info-list .item .item-txt .item-desc>span {
    font-size: 42px;
    font-weight: 800;
    line-height: 130%
}

#section-info .info-list .item .item-sub {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    line-height: 130%
}

#section-info .info-list .item .item-sub>img {
    margin-left: 2px
}

#section-youtube {
    padding: 50px 0 60px
}

#section-youtube .youtube-list {
    width: 100%
}

#section-youtube .youtube-list .youtube-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1281/717 auto
}

#section-youtube .youtube-list .youtube-item>iframe {
    width: 100%;
    height: 100%;
    object-fit: cover
}

#section-join_review {
    padding: 0 0 100px
}

#section-join_review .join-review-list {
    display: flex;
    align-items: flex-start;
    gap: 16px
}

#section-join_review .join-review-list .review-item {
    width: calc(100% / 3);
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px 18px 25px
}

#section-join_review .join-review-list .review-item .user-info {
    display: flex;
    align-items: center;
    gap: 12px
}

#section-join_review .join-review-list .review-item .user-info .user-date {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-primary);
    border-radius: 8px;
    padding: 4px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 130%
}

#section-join_review .join-review-list .review-item .user-info .user-name {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    line-height: 130%
}

#section-join_review .join-review-list .review-item .review-txt {
    margin-top: 22px
}

#section-join_review .join-review-list .review-item .review-txt>p {
    font-size: 14px;
    font-weight: 500;
    line-height: 130%;
    color: #222;
    white-space: pre-line
}

#section-join_review .join-review-list .review-item .review-info {
    background-color: #f9fafe;
    margin-top: 33px
}

#section-join_review .join-review-list .review-item .review-info .info-item {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px
}

#section-join_review .join-review-list .review-item .review-info .info-item:not(:last-child):after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    width: calc(100% - 36px);
    height: 1px;
    background-color: #eee
}

#section-join_review .join-review-list .review-item .review-info .info-item .info-tit {
    font-size: 16px;
    font-weight: 500;
    color: #222;
    line-height: 130%
}

#section-join_review .join-review-list .review-item .review-info .info-item .info-val {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-primary);
    line-height: 130%
}

#section-join_review .review-more {
    margin-top: 20px
}

#section-join_review .review-more .btn-review-more {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 52px;
    background-color: #f9fafe;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 600;
    color: #222;
    line-height: 130%;
    text-align: center
}

#section-review_video {
    padding: 50px 0
}

#section-review_video .section-inner {
    padding: 0
}

#section-review_video .swiper-buttons {
    position: absolute;
    top: 70px;
    left: 493px;
    margin-left: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 10
}

#section-review_video .swiper-buttons .btn-swiper {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background-color: #fff;
    box-shadow: 1px 1px 7px 0 #22222229;
    border-radius: 50%
}

#section-review_video .swiper-buttons .btn-swiper>img {
    object-fit: contain
}

#section-review_video .swiper {
    padding: 20px 900px 20px 0
}

#section-review_video .swiper-wrapper {
    display: flex;
    align-items: flex-end;
    padding-inline:0 16px}

#section-review_video .review-cont .cont-desc {
    margin-top: 50px
}

#section-review_video .review-cont .cont-desc .head-sub {
    font-size: 20px;
    font-weight: 600;
    color: #FF6A00
}

#section-review_video .review-cont .cont-desc .head-sub>em {
    position: relative
}

#section-review_video .review-cont .cont-desc .head-sub>em:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    background-color: #5db9ff63;
    z-index: -1
}

#section-review_video .review-list {
    position: relative;
    padding: 0
}

#section-review_video .review-list .swiper-slide {
    width: 294px
}

#section-review_video .review-list .swiper-slide-active {
    width: 493px
}

#section-review_video .review-list .item {
    width: 100%;
    box-shadow: 0 4px 4px 0 #eeeeee47;
    border-radius: 20px;
    overflow: hidden
}

#section-review_video .review-list .swiper-slide-active .item {
    box-shadow: 0 3px 15px 0 #00000014
}

#section-review_video .review-list .item .item-img {
    position: relative;
    width: 100%;
    aspect-ratio: 294/128 auto;
    overflow: hidden
}

#section-review_video .review-list .item .item-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 10px 20px 8px
}

#section-review_video .review-list .item .item-content .item-tit>span {
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    color: #FF6A00
}

#section-review_video .review-list .item .item-content .item-txt>p {
    font-size: 18px;
    font-weight: 600;
    line-height: 130%;
    color: #222;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical
}

#section-review_video .review-list .swiper-slide-active .item .item-content {
    padding: 20px 20px 24px
}

#section-review_video .review-list .swiper-slide-active .item .item-content .item-txt>p {
    font-size: 20px
}

@media (max-width: 480px) {
    #main #section-banner .banner-wrapper .banner-swiper-controls {
        bottom:12px;
        left: 16px;
        gap: 4px
    }

    #main #section-banner .banner-wrapper .banner-swiper-button-next,#main #section-banner .banner-wrapper .banner-swiper-button-prev {
        width: 24px;
        height: 24px
    }

    #main #section-banner .banner-wrapper .banner-swiper-button-next:after,#main #section-banner .banner-wrapper .banner-swiper-button-prev:after,#main #section-banner .banner-wrapper .banner-swiper-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px
    }

    #section-review_video .section-head {
        padding-inline:16px}

    #section-review_video .review-cont .cont-desc {
        padding-inline:16px;margin-top: 20px;
        line-height: 130%
    }

    #section-review_video .review-cont .cont-desc .head-sub {
        font-size: 14px
    }

    #section-review_video .swiper-buttons {
        position: static;
        margin-left: unset;
        justify-content: center;
        margin-top: 10px
    }

    #section-review_video .swiper-wrapper {
        padding-inline:16px}

    #section-review_video .review-list .swiper-slide {
        width: 135px
    }

    #section-review_video .review-list .swiper-slide-active {
        width: 216px
    }

    #section-review_video .review-list .swiper-slide-active .item {
        box-shadow: unset
    }

    #section-review_video .review-list .item {
        border-radius: 0
    }

    #section-review_video .review-list .item .item-img {
        border-radius: 5px;
        aspect-ratio: 216/121 auto
    }

    #section-review_video .review-list .item .item-content {
        padding: 6px 0 3px;
        gap: 0
    }

    #section-review_video .review-list .swiper-slide-active .item .item-content {
        padding: 6px 0 3px
    }

    #section-review_video .review-list .item .item-content .item-tit>span {
        font-size: 12px
    }

    #section-review_video .review-list .swiper-slide-active .item .item-content .item-txt>p {
        font-size: 16px
    }
    #main #section-banner .banner-wrapper .swiper {
    width: 100%;
    height: 100%
}
}

.item .item-img .play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.3);
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 2
}

.item:hover .play-overlay {
    opacity: 1
}

.item .item-img .play-button {
    transition: transform .2s ease
}

.item:hover .play-button {
    transform: scale(1.1)
}

.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px
}

.video-modal-content {
    background: #fff;
    border-radius: 12px;
    width: 1467px;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalFadeIn .3s ease;
    padding: 40px 60px
}

.video-modal-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px
}

.video-modal-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #FF6A00;
    margin: 0
}

.video-modal-header span {
    font-size: 16px;
    font-weight: 600;
    color: #222
}

.video-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color .2s ease
}

.video-modal-close:hover {
    background-color: #f5f5f5
}

.video-modal-body {
    margin: 30px 0 50px
}

.video-modal-footer {
    display: flex;
    justify-content: center
}

.video-modal-footer .btn-close {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 120px;
    height: 50px;
    padding-inline:32px;border: 1px solid #888;
    border-radius: 100px;
    font-size: 20px;
    font-weight: 600;
    color: #888
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    margin-bottom: 20px
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px
}

.video-error {
    text-align: center;
    padding: 60px 20px;
    color: #666
}

.video-description {
    margin-top: 16px;
    padding: 16px;
    background-color: #f8f9fa;
    border-radius: 8px
}

.video-description p {
    margin: 0;
    color: #333;
    line-height: 1.6
}

@keyframes modalFadeIn {
    0% {
        opacity: 0;
        transform: scale(.9)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@media (max-width: 768px) {
    .video-modal-content {
        max-height:calc(100vh - 40px);
        padding: 40px 12px
    }

    .video-modal-header h3 {
        font-size: 20px
    }

    .video-modal-header span {
        font-size: 24px;
        line-height: 130%
    }

    .video-modal-footer .btn-close {
        min-width: 110px;
        height: 37px;
        font-size: 16px
    }
}

#section-process .process-content .process-list {
    display: flex;
    align-items: flex-start;
    gap: 26px;
    margin-top: 50px
}

#section-process .process-content .process-list .item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: calc(100% / 3)
}

#section-process .process-content .process-list .item .item-img {
    position: relative;
    width: 100%;
    aspect-ratio: 410/280 auto;
    border-radius: 5px;
    overflow: hidden
}

#section-process .process-content .process-list .item .item-img>img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

#section-process .process-content .process-list .item .item-txt {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    padding-inline:10px}

#section-process .process-content .process-list .item .item-txt .item-tit {
    font-size: 24px;
    font-weight: 600;
    line-height: 130%;
    color: #222;
    text-align: left
}

#section-process .process-content .process-list .item .item-txt .item-desc {
    font-size: 16px;
    font-weight: 500;
    line-height: 130%;
    color: #222;
    text-align: left
}

#section-process .process-content .process-list .item .item-txt .item-desc>em {
    position: relative;
    color: #fff;
    font-weight: 500
}

#section-process .process-content .process-list .item .item-txt .item-desc>em:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    background-color: #FF6A00;
    z-index: -1
}

@media (max-width: 768px) {
    #section-process .process-content .process-list {
        flex-direction:column
    }

    #section-process .process-content .process-list .item {
        width: 100%
    }

    #section-process .process-content .process-list .item:nth-child(odd) {
        margin-top: 0
    }

    #section-purchase .purchase-content {
        padding: 50px 20px;
        box-shadow: 2px 1px 4px 0 #00000010
    }

    #section-purchase .purchase-content .purchase-list .item {
        padding: 0 10px 18px
    }

    #section-service .service-wrapper .service-table {
        flex-direction: column
    }

    #section-service .service-wrapper .service-table .table-item {
        width: 100%
    }

    #section-service .service-wrapper .service-table .table-item .table-content {
        margin-top: 32px
    }

    #section-intro .intro-category {
        flex-direction: column
    }

    #section-intro .intro-category .item {
        width: 100%
    }
    #main #section-banner .banner-wrapper .swiper {
    width: 100%;
    height: 100%
}
}

#about #section-banner .banner-slider {
    position: relative;
    width: 100%;
    height: 310px;
    background: url(/images/about/intro-banner.png) 50%/cover no-repeat
}

#about #section-banner .banner-slider .item {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 18px;
    width: 100%;
    height: 100%
}

#about #section-banner .banner-slider .item .item-txt {
    font-size: 34px;
    font-weight: 700;
    color: #222;
    line-height: 130%
}

#about #section-banner .banner-slider .item .item-sub {
    font-size: 24px;
    font-weight: 600;
    color: #222;
    line-height: 130%
}

#about #section-banner .banner-slider .item .item-sub>em {
    position: relative
}

#about #section-banner .banner-slider .item .item-sub>em:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-20%);
    width: 100%;
    height: 60%;
    background-color: #ffc093;
    z-index: -1
}

#about #section-banner .banner-slider .item>img {
    object-fit: cover;
    margin-inline:auto}

#about #section-begin {
    padding: 100px 0
}

#about #section-begin .begin-txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px
}

#about #section-begin .begin-txt .dash {
    display: inline-block;
    width: 30px;
    height: 3px;
    background-color: #222
}

#about #section-begin .begin-txt>p {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.33;
    color: #222;
    text-align: center
}

#about #section-begin .begin-desc {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1140px;
    height: 500px;
    margin-top: 100px;
    padding-inline:80px 0;background: url(/images/about/intro-banner2.png) 50%/cover no-repeat
}

#about #section-begin .begin-desc>p {
    font-size: 25px;
    font-weight: 400;
    line-height: 1.4;
    color: #fff
}

#section-description {
    padding: 66px 0 100px
}

#section-description .txt-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px
}

#section-description .txt-list .txt-item {
    position: relative;
    display: flex;
    flex-direction: column;
    width: calc(100% / 2 - 6px);
    background-color: #ff93451a;
    border-radius: 8px;
    padding: 50px 30px;
    cursor: pointer
}

#section-description .txt-list .txt-item .item-head {
    position: relative;
    display: inline-block;
    width: max-content
}

#section-description .txt-list .txt-item .item-head>span {
    font-size: 26px;
    font-weight: 600;
    line-height: 130%;
    color: #222
}

#section-description .txt-list .txt-item .item-desc {
    margin-top: 16px
}

#section-description .txt-list .txt-item .item-desc>p {
    font-size: 16px;
    font-weight: 500;
    line-height: 130%;
    color: #222
}

#section-description .txt-list .txt-item .item-desc>p.question {
    display: block
}

#section-description .txt-list .txt-item .item-desc>p.answer,#section-description .txt-list .txt-item.active .item-desc>p.question {
    display: none
}

#section-description .txt-list .txt-item.active .item-desc>p.answer {
    display: block
}

#section-description .txt-list .txt-item .item-desc>p em {
    color: #d75900
}

#section-description .txt-list .txt-item .item-desc>p>ul>li.disc {
    margin-left: 20px;
    list-style: disc;
    color: #d75900
}

#section-description .txt-list .txt-item .item-desc>p>ul>li.demical {
    margin-left: 20px;
    list-style: decimal
}

#section-description .txt-list .txt-item .item-img {
    position: absolute;
    top: 70%;
    right: 14px;
    transform: translateY(-50%)
}

#section-description .txt-list .txt-item .item-toggle {
    margin-top: auto;
    padding-top: 30px
}

#section-description .txt-list .txt-item .item-toggle .btn-toggle>img {
    width: 20px;
    height: 11px;
    transform: rotate(0deg)
}

#section-description .txt-list .txt-item.active .btn-toggle>img {
    transform: rotate(180deg)
}

#section-description .txt-list .txt-item.active .item-img {
    display: none
}

#about #section-process {
    padding: 50px 0
}

#about #section-process .process-head {
    display: flex;
    justify-content: center
}

#about #section-process .process-head .head-tit {
    font-size: 60px;
    font-weight: 500;
    color: #222;
    text-align: center;
    line-height: 130%
}

#about #section-process .process-head .head-tit em {
    font-size: 64px;
    font-weight: 700;
    color: #1d6f62;
    line-height: 1
}

#about #section-process .process-head .head-tit em b {
    font-size: 90px;
    line-height: 1
}

#about #section-process .process-cont {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 50px
}

#about #section-process .process-cont .process-img {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 300px;
    height: 761px;
    background: url(/images/about/process.png) 50%/cover no-repeat
}

#about #section-process .process-cont .process-img .img-item {
    width: 100%;
    height: calc((100% / 3) - 20px);
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px
}

#about #section-process .process-cont .process-img .img-item .item-num {
    font-size: 25px;
    font-weight: 300;
    color: #fff
}

#about #section-process .process-cont .process-img .img-item .item-txt {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    text-align: center
}

#about #section-process .process-cont .process-desc {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 761px
}

#about #section-process .process-cont .process-desc .desc-item {
    flex: 1 1;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px
}

#about #section-process .process-cont .process-desc .desc-item .item-link {
    display: inline-block;
    width: 21px;
    height: 25px;
    background: url(/images/about/triangle.png) 50%/cover no-repeat
}

#about #section-process .process-cont .process-desc .desc-item .item-content {
    width: max-content;
    font-size: 25px;
    font-weight: 400;
    color: #222;
    line-height: 1.4
}

#about #section-economy {
    padding: 100px 0 150px
}

#about #section-economy .economy-tit {
    text-align: center
}

#about #section-economy .economy-tit>span {
    font-size: 60px;
    font-weight: 500;
    color: #222
}

#about #section-economy .economy-img {
    margin: 40px 0 44px;
    text-align: center
}

#about #section-economy .economy-img>img {
    width: 593px;
    object-fit: cover
}

#about #section-economy .economy-desc>p {
    font-size: 26px;
    font-weight: 400;
    line-height: 130%4;
    color: #121212;
    text-align: center;
    word-break: keep-all
}

main .section .item-list:has(.error-message)+.pagination {
    display: none
}

main .section .item-list .error-message {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 360px
}

main .section .item-list .error-message p {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    color: var(--color-text)
}

main .section .item-list .no-data-message {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 360px
}

main .section .item-list .no-data-message p {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    color: var(--color-text)
}

.sub-page #section-banner .section-head {
    position: relative;
    z-index: -2
}

.sub-page #section-banner .section-head .head-container {
    height: 100%
}

.sub-page #section-banner .section-head .bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.4);
    z-index: -1
}

.sub-page #section-banner .section-head .head-sub,.sub-page #section-banner .section-head .head-tit {
    text-shadow: 1px 2px 9px rgba(0,0,0,.25)
}

.sub-page #section-video {
    padding: 100px 0 50px
}

.sub-page #section-video .video-container {
    width: 100%;
    aspect-ratio: 1200/675 auto
}

.sub-page #section-video .video-container>iframe,.sub-page #section-video .video-container>video {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.sub-page .section-head .head-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-top: 50px;
    padding-bottom: 50px
}

.sub-page .section-head .head-tit {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -1.1px;
    color: #222;
    text-align: center;
    line-height: 1.3
}

.sub-page .section-head .head-tit.color-bk {
    color: #222!important
}

.sub-page .section-head .head-sub {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -1.1px;
    color: #222
}

.sub-page .section-head .head-sub.color-bk {
    color: #222!important
}

.sub-page .section-head .head-sub>em {
    position: relative
}

.sub-page .section-head .head-sub>em:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-20%);
    width: 100%;
    height: 60%;
    background-color: #ffc093;
    z-index: -1
}

.sub-page .table-option {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0
}

.sub-page .table-option .tab-buttons {
    display: inline-flex;
    align-items: center;
    border-radius: 100px;
    overflow: hidden;
    background-color: #eee
}

.sub-page .table-option .tab-buttons .btn-tab {
    background-color: #eee;
    padding: 10px 30px;
    font-size: 20px;
    font-weight: 600;
    line-height: 130%;
    color: #888
}

.sub-page .table-option .tab-buttons .btn-tab.active {
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 100px
}

.sub-page .table-option .table-buttons {
    display: inline-flex;
    align-items: center;
    gap: 12px
}

.sub-page .table-option .table-buttons .btn-table {
    padding: 12px 18px;
    background-color: #fff;
    border: 1px solid var(--color-primary);
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary)
}

.sub-page#product_list .table-option .tab-buttons .btn-tab.active {
    background-color: #FF6A00;
    color: #fff
}

#form .item-head {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 50px 0
}

#form .item-head .head-txt {
    font-size: 34px;
    font-weight: 700;
    color: #222;
    margin-right: auto
}

#form .item-head .head-more {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 20px;
    font-weight: 600;
    color: #888
}

#form .item-head .head-more>em {
    color: #1d6f62
}

#form .inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 0;
    padding-bottom: 100px
}

#form .inquiry-form .form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%
}

#form .inquiry-form .form-wrapper .form-item {
    display: flex;
    align-items: flex-start
}

#form .inquiry-form .form-wrapper .form-item .item-tit {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    width: 140px;
    height: 45px
}

#form .inquiry-form .form-wrapper .form-item .item-tit>span {
    font-size: 24px;
    font-weight: 600;
    color: #222
}

#form .inquiry-form .form-wrapper .form-item .item-tit>span>em {
    color: red
}

#form .inquiry-form .form-wrapper .form-item .item-content {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 45px
}

#form .inquiry-form .form-wrapper .form-item .item-content>input[type=text],#form .inquiry-form .form-wrapper .form-item .item-content>input[type=time] {
    width: 100%;
    height: 45px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding-inline:10px;font-size: 18px;
    font-weight: 600;
    color: #222
}

#form .inquiry-form .form-wrapper .form-item .item-content>textarea {
    width: 100%;
    height: 357px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 12px 16px;
    resize: none;
    font-size: 18px;
    font-weight: 600;
    color: #222
}

#form .inquiry-form .form-wrapper .form-item .item-content>input[type=file] {
    display: none
}

#form .inquiry-form .form-wrapper .form-item .item-content>label {
    flex-shrink: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    padding-inline:26px;background-color: #fff;
    border: 1px solid #888;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    color: #888
}

#form .inquiry-form .form-wrapper .form-item .item-content .file-txt {
    margin-left: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #888
}

#form .inquiry-form .form-wrapper .form-item .item-content .preview-img {
    position: relative;
    width: 180px;
    height: 180px
}

#form .inquiry-form .form-wrapper .form-item .item-content .preview-img>img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

#form .inquiry-form .form-wrapper .form-item .item-content .preview-img .btn-remove_file {
    position: absolute;
    top: 8px;
    right: 8px;
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #ddd url(/images/icons/close.svg) 50%/12px no-repeat;
    border-radius: 50%;
    font-size: 0
}

#form .inquiry-form .form-buttons {
    display: flex;
    justify-content: center;
    margin: 50px 0;
    width: 100%
}

#form .inquiry-form .form-buttons .btn-form {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 188px;
    max-width: 100%;
    height: 66px;
    padding-inline:12px;border-radius: 10px;
    font-size: 20px;
    font-weight: 600
}

#form .table-option {
    display: none
}

#form .inquiry-form .form-content {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 50px 0
}

#form .inquiry-form .form-content .form-head {
    width: 374px;
    flex-shrink: 0
}

#form .inquiry-form .form-content .form-head .head-txt {
    font-size: 34px;
    font-weight: 700;
    line-height: 130%;
    color: #222
}

#form .inquiry-form .form-content .form-head .head-sub {
    font-size: 16px;
    font-weight: 500;
    line-height: 130%;
    color: #222;
    margin-top: 30px
}

#form .inquiry-form .form-content .form-item .item-tit>span {
    font-size: 20px
}

#form .inquiry-form .form-content .form-item .item-content .datepicker-input,#form .inquiry-form .form-content .form-item .item-content>input[type=text],#form .inquiry-form .form-content .form-item .item-content>input[type=time],#form .inquiry-form .form-content .form-item .item-content>textarea {
    height: 60px;
    border-radius: 5px;
    padding-inline:16px;font-size: 16px;
    font-weight: 500
}

#form .inquiry-form .form-content .form-item .item-content>input[type=text]::placeholder,#form .inquiry-form .form-content .form-item .item-content>input[type=time]::placeholder,#form .inquiry-form .form-content .form-item .item-content>textarea::placeholder {
    color: #888
}

#form .inquiry-form .form-content .form-item .item-content {
    gap: 6px
}

#form .inquiry-form .form-content .form-item .item-content .divider,#form .inquiry-form .form-content .form-item .item-content .select-icon {
    flex-shrink: 0
}

#form .inquiry-form .form-content .form-item .item-content .divider>img {
    object-fit: cover
}

#form-detail-section {
    padding: 0
}

#event #event-list {
    padding: 50px 0 100px;
    background-color: #fff
}

#event #event-list .item-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px;
    width: 100%
}

#event #event-list .item-list .item {
    width: calc((100% / 3 - 8px));
    background-color: #fff;
    box-shadow: 0 4px 4px 0 hsla(0,0%,93%,.28),inset -1px -1px 3px 0 hsla(0,0%,93%,.2);
    border-radius: 20px;
    overflow: hidden
}

#event #event-list .item-list .item .item-img {
    width: 100%;
    aspect-ratio: 392/230 auto;
    border-radius: 20px;
    contain: paint;
    background-color: #f2f2f2
}

#event #event-list .item-list .item .item-img.status-end {
    filter: brightness(.4)
}

#event #event-list .item-list .item .item-img>img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

#event #event-list .item-list .item .item-detail {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px 30px 20px
}

#event #event-list .item-list .item .item-detail .detail-tag {
    flex-shrink: 0;
    display: none
}

#event #event-list .item-list .item .item-detail .detail-tag .tag {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    padding-inline:6px;background: linear-gradient(140deg,#beec85,#beec85,#75d496);
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    color: #1d6f62
}

#event #event-list .item-list .item .item-detail .detail-tag .tag.status-end {
    background: #f8f8f8;
    color: #888
}

#event #event-list .item-list .item .item-detail .detail-txt {
    display: flex;
    flex-direction: column;
    gap: 6px
}

#event #event-list .item-list .item .item-detail .detail-txt .item-tit {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    line-height: 1.3
}

#event #event-list .item-list .item .item-detail .detail-txt .item-date {
    font-size: 14px;
    font-weight: 500;
    color: #888;
    line-height: 130%
}

#media .section-head {
    position: relative;
    background-color: #fff
}

#media .section-head .head-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 50px 0
}

#media .section-head .head-container .head-sub {
    font-size: 20px;
    font-weight: 700;
    color: #1d6f62
}

#media .section-head .head-container .head-tit {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -1.1px;
    color: #222;
    text-align: center
}

#media #media-list {
    padding: 50px 0 100px;
    background-color: #fff
}

#media #media-list .news-table {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px;
    width: 100%
}

#media #media-list .news-table .item {
    width: calc((100% / 3 - 8px));
    background-color: #fff;
    box-shadow: 0 3px 15px 0 #00000014;
    border-radius: 20px;
    overflow: hidden
}

#media #media-list .news-table .item .item-img {
    position: relative;
    width: 100%;
    aspect-ratio: 392/230 auto
}

#media #media-list .news-table .item .item-img>img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

#media #media-list .news-table .item .item-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px 30px 20px
}

#media #media-list .news-table .item .item-content .item-info {
    display: flex;
    align-items: center;
    gap: 20px
}

#media #media-list .news-table .item .item-content .item-info .info-source {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    color: rgba(0,0,0,.8);
    line-height: 130%
}

#media #media-list .news-table .item .item-content .item-info .info-source:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background-color: #eee
}

#media #media-list .news-table .item .item-content .item-info .info-date {
    font-size: 14px;
    font-weight: 500;
    color: #888;
    line-height: 130%
}

#media #media-list .news-table .item .item-content .item-txt {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    line-height: 1.3
}

#inquiry .item-head {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 50px 0
}

#inquiry .item-head .head-txt {
    font-size: 34px;
    font-weight: 700;
    color: #222;
    margin-right: auto
}

#inquiry .item-head .head-more {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 20px;
    font-weight: 600;
    color: #888
}

#inquiry .item-head .head-more>em {
    color: #1d6f62
}

#inquiry .item-list,#inquiry .item-list .accordian {
    margin-top: 0
}

#inquiry .item-list .accordian .details-head {
    display: flex;
    word-wrap: 100%;
    height: 60px;
    background-color: #f8f8f8
}

#inquiry .item-list .accordian .details-head .head-txt {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #222
}

#inquiry .item-list .accordian .details-head .head-txt:first-child {
    width: 10%
}

#inquiry .item-list .accordian .details-head .head-txt:nth-child(2) {
    width: 65%
}

#inquiry .item-list .accordian .details-head .head-txt:nth-child(3) {
    width: 10%
}

#inquiry .item-list .accordian .details-head .head-txt:nth-child(4) {
    width: 15%
}

#inquiry .item-list .accordian .details .summary {
    padding: 28px 0
}

#inquiry .item-list .accordian .details>.summary:before {
    display: none
}

#inquiry .item-list .accordian .details .summary .summary-num {
    width: 10%;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #888
}

#inquiry .item-list .accordian .details .summary .summary-tit {
    width: 65%;
    font-size: 20px;
    font-weight: 600;
    color: #222
}

#inquiry .item-list .accordian .details .summary .summary-status {
    width: 10%;
    text-align: center
}

#inquiry .item-list .accordian .details .summary .summary-date {
    width: 15%;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #888
}

#inquiry .item-list .accordian .details .summary .summary-status .btn-status {
    padding: 8px 20px;
    border-radius: 100px;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    background-color: transparent;
    color: #888;
    border: 1px solid #888
}

#inquiry .item-list .accordian .details .summary .summary-status .btn-status.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff
}

#inquiry .item-list .accordian .details .content-wrapper>p {
    font-size: 18px;
    font-weight: 600;
    line-height: 130%;
    color: #222
}

#faq #faq-list {
    padding: 0 0 100px;
    background-color: #fff
}

#faq #faq-list .item-list .accordian .details .content-wrapper {
    position: relative
}

#faq #faq-list .item-list .accordian .details .content-wrapper:before {
    content: "";
    position: absolute;
    top: 14px;
    left: 72px;
    font-size: 18px;
    font-weight: 500;
    color: #93dcab
}

#notice #notice-list {
    padding: 0 0 120px;
    background-color: #fff
}

#notice #notice-list .item-list {
    margin-top: 50px
}

#notice #notice-list .item-list .accordian {
    margin-top: 0
}

#notice #notice-list .item-list .accordian .details-head {
    display: flex;
    width: 100%;
    height: 60px;
    background-color: #eee
}

#notice #notice-list .item-list .accordian .details-head .head-txt {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #222
}

#notice #notice-list .item-list .accordian .details-head .head-txt:first-child {
    width: 5%
}

#notice #notice-list .item-list .accordian .details-head .head-txt:nth-child(2) {
    width: 10%
}

#notice #notice-list .item-list .accordian .details-head .head-txt:nth-child(3) {
    width: 60%
}

#notice #notice-list .item-list .accordian .details-head .head-txt:nth-child(4) {
    width: 10%
}

#notice #notice-list .item-list .accordian .details-head .head-txt:nth-child(5),#notice #notice-list .item-list.notice-table .accordian .details-head .head-txt:first-child {
    width: 15%
}

#notice #notice-list .item-list.notice-table .accordian .details-head .head-txt:nth-child(2) {
    width: 70%
}

#notice #notice-list .item-list.notice-table .accordian .details-head .head-txt:nth-child(3) {
    width: 15%
}

#notice #notice-list .item-list .accordian .details .summary {
    padding: 25px 0
}

#notice #notice-list .item-list .accordian .details>.summary:before {
    display: none
}

#notice #notice-list .item-list .accordian .details .summary .summary-checkbox {
    width: 5%;
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    color: #1d6f62
}

#notice #notice-list .item-list .accordian .details .summary .summary-num {
    width: 10%;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #888
}

#notice #notice-list .item-list .accordian .details .summary .summary-tit {
    width: 60%;
    display: inline-block;
    gap: 8px;
    font-size: 20px;
    font-weight: 600;
    color: #222
}

#notice #notice-list .item-list .accordian .details .summary .summary-tit .tag,#notice #notice-list .item-list .accordian .details .summary .summary-tit .tit-badge {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 25px;
    border-radius: 12px;
    background-color: #fff3f3;
    padding-inline:12px;font-size: 12px;
    font-weight: 600;
    color: #ff4f4f
}

#notice #notice-list .item-list .accordian .details .summary .summary-tit .tit-badge {
    flex-shrink: 0;
    margin-inline:4px}

#notice #notice-list .item-list .accordian .details .summary .summary-tag {
    width: 10%;
    display: flex;
    justify-content: center
}

#notice #notice-list .item-list .accordian .details .summary .summary-tag .btn-tag {
    padding: 8px 20px;
    border: 1px solid #888;
    border-radius: 100px;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    color: #888
}

#notice #notice-list .item-list .accordian .details .summary .summary-tag .btn-tag.read-y {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff
}

#notice #notice-list .item-list .accordian .details .summary .summary-tag .btn-tag.read-n {
    background-color: transparent;
    color: #888;
    border-color: #888
}

#notice #notice-list .item-list .accordian .details .summary .summary-date {
    width: 15%;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #888
}

#notice #notice-list .item-list .accordian .details .summary .summary-status .btn-status {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 40px;
    background-color: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 300;
    color: #888
}

#notice #notice-list .item-list .accordian .details .summary .summary-status .btn-status.active {
    background: linear-gradient(140deg,#beec85,#75d496)
}

#notice #notice-list .item-list.notice-table .accordian .details .summary .summary-num {
    width: 15%
}

#notice #notice-list .item-list.notice-table .accordian .details .summary .summary-tit {
    width: 70%
}

#notice #notice-list .item-list.notice-table .accordian .details .summary .summary-date {
    width: 15%
}

#notice #notice-list .item-list .accordian .details .content-wrapper .img-list {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    margin: 30px 0
}

#notice #notice-list .item-list .accordian .details .content-wrapper .img-list .img-item {
    cursor: pointer;
    width: calc((100% / 10) - 8px);
    aspect-ratio: 1/1 auto;
    overflow: hidden
}

#notice #notice-list .item-list .accordian .details .content-wrapper .img-list .img-item>img {
    transform: scale(1);
    transition: transform .3s ease-in-out
}

#notice #notice-list .item-list .accordian .details .content-wrapper .img-list .img-item:hover>img {
    transform: scale(1.05)
}

#notice #notification-list {
    padding: 0 0 120px;
    background-color: #fff
}

#notice #notification-list .item-list {
    margin-top: 50px
}

#notice #notification-list .item-list .accordian {
    margin-top: 0
}

#notice #notification-list .item-list .accordian .details-head {
    display: flex;
    width: 100%;
    height: 60px;
    background-color: #eee
}

#notice #notification-list .item-list .accordian .details-head .head-txt {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #222
}

#notice #notification-list .item-list .accordian .details-head .head-txt:first-child {
    width: 5%
}

#notice #notification-list .item-list .accordian .details-head .head-txt:nth-child(2) {
    width: 10%
}

#notice #notification-list .item-list .accordian .details-head .head-txt:nth-child(3) {
    width: 60%
}

#notice #notification-list .item-list .accordian .details-head .head-txt:nth-child(4) {
    width: 10%
}

#notice #notification-list .item-list .accordian .details-head .head-txt:nth-child(5),#notice #notification-list .item-list.notice-table .accordian .details-head .head-txt:first-child {
    width: 15%
}

#notice #notification-list .item-list.notice-table .accordian .details-head .head-txt:nth-child(2) {
    width: 70%
}

#notice #notification-list .item-list.notice-table .accordian .details-head .head-txt:nth-child(3) {
    width: 15%
}

#notice #notification-list .item-list .accordian .details .summary {
    padding: 25px 0
}

#notice #notification-list .item-list .accordian .details>.summary:before {
    display: none
}

#notice #notification-list .item-list .accordian .details .summary .summary-checkbox {
    width: 5%;
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    color: #1d6f62
}

#notice #notification-list .item-list .accordian .details .summary .summary-num {
    width: 10%;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #888
}

#notice #notification-list .item-list .accordian .details .summary .summary-tit {
    width: 60%;
    display: inline-block;
    gap: 8px;
    font-size: 20px;
    font-weight: 600;
    color: #222
}

#notice #notification-list .item-list .accordian .details .summary .summary-tit .tag,#notice #notification-list .item-list .accordian .details .summary .summary-tit .tit-badge {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 25px;
    border-radius: 12px;
    background-color: #fff3f3;
    padding-inline:12px;font-size: 12px;
    font-weight: 600;
    color: #ff4f4f
}

#notice #notification-list .item-list .accordian .details .summary .summary-tit .tit-badge {
    flex-shrink: 0;
    margin-inline:4px}

#notice #notification-list .item-list .accordian .details .summary .summary-tag {
    width: 10%;
    display: flex;
    justify-content: center
}

#notice #notification-list .item-list .accordian .details .summary .summary-tag .btn-tag {
    padding: 8px 20px;
    border: 1px solid #888;
    border-radius: 100px;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    color: #888
}

#notice #notification-list .item-list .accordian .details .summary .summary-tag .btn-tag.read-y {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff
}

#notice #notification-list .item-list .accordian .details .summary .summary-tag .btn-tag.read-n {
    background-color: transparent;
    color: #888;
    border-color: #888
}

#notice #notification-list .item-list .accordian .details .summary .summary-date {
    width: 15%;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #888
}

#notice #notification-list .item-list .accordian .details .summary .summary-status .btn-status {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 40px;
    background-color: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 300;
    color: #888
}

#notice #notification-list .item-list .accordian .details .summary .summary-status .btn-status.active {
    background: linear-gradient(140deg,#beec85,#75d496)
}

#notice #notification-list .item-list.notice-table .accordian .details .summary .summary-num {
    width: 15%
}

#notice #notification-list .item-list.notice-table .accordian .details .summary .summary-tit {
    width: 70%
}

#notice #notification-list .item-list.notice-table .accordian .details .summary .summary-date {
    width: 15%
}

#notice #notification-list .item-list .accordian .details .content-wrapper .img-list {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    margin: 30px 0
}

#notice #notification-list .item-list .accordian .details .content-wrapper .img-list .img-item {
    cursor: pointer;
    width: calc((100% / 10) - 8px);
    aspect-ratio: 1/1 auto;
    overflow: hidden
}

#notice #notification-list .item-list .accordian .details .content-wrapper .img-list .img-item>img {
    transform: scale(1);
    transition: transform .3s ease-in-out
}

#notice #notification-list .item-list .accordian .details .content-wrapper .img-list .img-item:hover>img {
    transform: scale(1.05)
}

#review .section .section-head {
    position: relative;
    margin-bottom: 40px;
    background-color: #fff
}

#review .section .section-head .head-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    height: 100%
}

#review .section#section-banner .section-head .head-tit {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -1.1px;
    color: #fff;
    line-height: 130%
}

#review .section .section-head .head-sub {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -1.1px;
    color: #fff
}

#review #review-list {
    padding: 0 0 100px;
    background-color: #fff
}

#review #review-list .submit-review {
    padding-top: 5px;
    display: none
}

#review #review-list .submit-review .my_review {
    display: flex;
    justify-content: flex-end;
    gap: 12px
}

#review #review-list .submit-review .my_review .btn-my_review {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 180px;
    height: 40px;
    background-color: var(--color-primary);
    border-radius: 20px;
    font-size: 19px;
    font-weight: 500;
    color: #fff
}

#review #review-list .submit-review .link-login {
    margin-top: 10px
}

#review #review-list .submit-review .link-login .btn-login {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    background-color: #f8f8f8;
    border: 1px solid #585858;
    border-radius: 10px;
    font-size: 19px;
    font-weight: 500;
    color: #888
}

#review #review-list .item-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    padding: 0 0 10px
}

#review #review-list .item-option .option-filter {
    display: flex;
    align-items: center;
    gap: 12px
}

#review #review-list .item-option .option-filter .btn-filter {
    display: flex;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 50px;
    padding-inline:32px;background-color: #fff;
    border: 1px solid var(--color-primary);
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary)
}

#review #review-list .item-option .option-filter .btn-filter:first-child {
    background-color: var(--color-primary);
    color: #fff
}

#review #review-list .item-option .option-filter .link-login .btn-login {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 42px;
    padding-inline:12px;background-color: #f8f8f8;
    border: 1px solid #888;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    color: #888
}

#review #review-list .item-option .sort-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 12px
}

#review #review-list .item-option .sort-wrapper .option-sort {
    display: inline-flex;
    align-items: center;
    gap: 30px
}

#review #review-list .item-option .sort-wrapper .option-sort .btn-sort {
    position: relative;
    font-size: 20px;
    font-weight: 600;
    color: #888
}

#review #review-list .item-option .sort-wrapper .option-sort .btn-sort .count {
    font-size: 16px;
    font-weight: 500;
    color: #888
}

#review #review-list .item-option .sort-wrapper .option-sort .btn-sort.active {
    font-weight: 700;
    color: #222
}

#review #review-list .item-option .sort-wrapper .option-sort .btn-sort:not(:last-child):after {
    content: "";
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background-color: #888
}

#review #review-list .item-list {
    display: flex;
    flex-direction: column
}

#review #review-list .item-list .item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 50px 0 60px;
    border-bottom: 1px solid #eee
}

#review #review-list .item-list .item .item-type>img {
    display: none
}

#review #review-list .item-list .item .item-type .type-grade {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary)
}

#review #review-list .item-list .item .item-user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px
}

#review #review-list .item-list .item .item-user .user-name {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    letter-spacing: -.4px
}

#review #review-list .item-list .item .item-user .user-id {
    font-size: 14px;
    font-weight: 500;
    color: #888;
    letter-spacing: -.28px
}

#review #review-list .item-list .item .item-user .tag {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 25px;
    border-radius: 12px;
    background-color: #fff3f3;
    padding-inline:12px;font-size: 12px;
    font-weight: 600;
    color: #ff4f4f
}

#review #review-list .item-list .item .item-img {
    display: none;
    position: relative;
    width: 392px;
    aspect-ratio: 392/269 auto;
    flex-shrink: 0
}

#review #review-list .item-list .item .item-content {
    width: 100%
}

#review #review-list .item-list .item .item-content .item-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px
}

#review #review-list .item-list .item .item-content .item-detail {
    position: relative;
    margin-top: 10px
}

#review #review-list .item-list .item .item-content .item-tit {
    font-size: 20px;
    font-weight: 700;
    color: #222
}

#review #review-list .item-list .item .item-content .item-desc {
    display: block;
    margin-top: 16px
}

#review #review-list .item-list .item .item-content .item-desc>p {
    font-size: 18px;
    font-weight: 600;
    line-height: 130%;
    color: #222;
    white-space: pre-line;
    letter-spacing: -.48px
}

#review #review-list .item-list .item .item-content .item-img_list {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 30px 0
}

#review #review-list .item-list .item .item-content .item-img_list .img-item {
    cursor: pointer;
    aspect-ratio: 1/1 auto
}

#review #review-list .item-list .item .item-content .item-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 0
}

#review #review-list .item-list .item .item-content .item-action .action-like {
    display: inline-flex;
    align-items: center;
    gap: 4px
}

#review #review-list .item-list .item .item-content .item-action .action-like .btn-like {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    min-width: 120px;
    height: 33px;
    padding-inline:26px;background-color: #eee;
    border: 1px solid #eee;
    border-radius: 18px
}

#review #review-list .item-list .item .item-content .item-action .action-like .btn-like .like-icon {
    display: inline-block;
    width: 18px;
    height: 18px
}

#review #review-list .item-list .item .item-content .item-action .action-like .btn-like.deactivate .like-icon {
    background: url(/images/icons/like.svg) 50%/cover no-repeat
}

#review #review-list .item-list .item .item-content .item-action .action-like .btn-like.activate .like-icon {
    background: url(/images/icons/like-active.svg) 50%/cover no-repeat
}

#review #review-list .item-list .item .item-content .item-action .action-like .btn-like>i {
    font-size: 14px;
    font-weight: 400;
    color: #6a727f;
    font-style: normal
}

#review #review-list .item-list .item .item-content .action-date {
    display: block;
    margin-top: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #888;
    letter-spacing: -.8px
}

#review #review-list .review-video {
    display: flex;
    gap: 20px
}

#review #review-list .review-video .video-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%
}

#review #review-list .review-video .video-item .item-img {
    position: relative;
    width: 100%;
    aspect-ratio: 400/240 auto;
    cursor: pointer;
    border-radius: 6px;
    overflow: hidden
}

#review #review-list .review-video .video-item .item-img>img {
    transform: scale(1);
    transition: transform .3s ease-in-out
}

#review #review-list .review-video .video-item:hover .item-img>img {
    transform: scale(1.05)
}

#review #review-list .review-video .video-item .item-content {
    width: calc(100% - 180px)
}

#review #review-list .review-video .video-item .item-content .item-txt {
    width: 100%
}

#review #review-list .review-video .video-item .item-content .item-txt .txt-desc {
    font-size: 18px;
    font-weight: 700;
    color: #222
}

#review #section-other-invest {
    padding: 40px 0 80px
}

#review #section-other-invest .section-inner .section-content {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

#review #section-other-invest .other-invest-item {
    width: calc((100% / 4) - 9px);
    box-shadow: 0 4px 30px rgba(0,0,0,.04);
    border-radius: 10px;
    padding: 30px 20px 35px
}

#review #section-other-invest .other-invest-item .item-head {
    margin-bottom: 30px;
    text-align: center
}

#review #section-other-invest .other-invest-item .item-head>span {
    font-size: 20px;
    font-weight: 700;
    color: #222
}

#review #section-other-invest .other-invest-item .item-content .invest-rate {
    display: flex;
    align-items: center;
    gap: 30px
}

#review #section-other-invest .other-invest-item .item-content .invest-rate .invest-rate-graph {
    width: 20px;
    height: 346px
}

#review #section-other-invest .other-invest-item .item-content .invest-rate .invest-rate-graph .graph-bar {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    overflow: hidden
}

#review #section-other-invest .other-invest-item .item-content .invest-rate .invest-rate-graph .graph-bar .bar-item {
    width: 100%;
    height: attr(data-percent)
}

#review #section-other-invest .other-invest-item .item-content .invest-rate .invest-rate-graph .graph-bar .bar-item:first-child {
    background-color: #FF6A00
}

#review #section-other-invest .other-invest-item .item-content .invest-rate .invest-rate-graph .graph-bar .bar-item:nth-child(2) {
    background-color: #f58442
}

#review #section-other-invest .other-invest-item .item-content .invest-rate .invest-rate-graph .graph-bar .bar-item:nth-child(3) {
    background-color: #fad062
}

#review #section-other-invest .other-invest-item .item-content .invest-rate .invest-rate-graph .graph-bar .bar-item:nth-child(4) {
    background-color: #a2bdf4
}

#review #section-other-invest .other-invest-item .item-content .invest-rate .invest-rate-graph .graph-bar .bar-item:nth-child(5) {
    background-color: #f5a1c3
}

#review #section-other-invest .other-invest-item .item-content .invest-rate .invest-rate-graph .graph-bar .bar-item:nth-child(6) {
    background-color: #d63d42
}

#review #section-other-invest .other-invest-item .item-content .invest-rate .invest-rate-guide {
    display: flex;
    flex-direction: column;
    gap: 26px
}

#review #section-other-invest .other-invest-item .item-content .invest-rate .invest-rate-guide .guide-item {
    display: flex;
    align-items: flex-start;
    gap: 6px
}

#review #section-other-invest .other-invest-item .item-content .invest-rate .invest-rate-guide .guide-item .guide-item-point {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%
}

#review #section-other-invest .other-invest-item .item-content .invest-rate .invest-rate-guide .guide-item:first-child .guide-item-point {
    background-color: #FF6A00
}

#review #section-other-invest .other-invest-item .item-content .invest-rate .invest-rate-guide .guide-item:nth-child(2) .guide-item-point {
    background-color: #f58442
}

#review #section-other-invest .other-invest-item .item-content .invest-rate .invest-rate-guide .guide-item:nth-child(3) .guide-item-point {
    background-color: #fad062
}

#review #section-other-invest .other-invest-item .item-content .invest-rate .invest-rate-guide .guide-item:nth-child(4) .guide-item-point {
    background-color: #a2bdf4
}

#review #section-other-invest .other-invest-item .item-content .invest-rate .invest-rate-guide .guide-item:nth-child(5) .guide-item-point {
    background-color: #f5a1c3
}

#review #section-other-invest .other-invest-item .item-content .invest-rate .invest-rate-guide .guide-item:nth-child(6) .guide-item-point {
    background-color: #d63d42
}

#review #section-other-invest .other-invest-item .item-content .invest-rate .invest-rate-guide .guide-item .guide-item-desc {
    display: flex;
    flex-direction: column
}

#review #section-other-invest .other-invest-item .item-content .invest-rate .invest-rate-guide .guide-item .guide-item-desc .guide-item-desc-tit {
    font-size: 12px;
    font-weight: 600;
    color: #888;
    line-height: 130%
}

#review #section-other-invest .other-invest-item .item-content .invest-rate .invest-rate-guide .guide-item .guide-item-desc .guide-item-desc-desc {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    line-height: 130%
}

#review #section-other-invest .other-invest-item .item-content .invest-rank {
    display: flex;
    flex-direction: column;
    gap: 8px
}

#review #section-other-invest .other-invest-item .item-content .invest-rank .rank-head {
    display: block;
    width: 100%;
    text-align: right
}

#review #section-other-invest .other-invest-item .item-content .invest-rank .rank-head>span {
    font-size: 14px;
    font-weight: 700;
    color: #FF6A00;
    line-height: 130%
}

#review #section-other-invest .other-invest-item .item-content .invest-rank .rank-list {
    display: flex;
    flex-direction: column;
    gap: 12px
}

#review #section-other-invest .other-invest-item .item-content .invest-rank .rank-list .rank-item {
    display: flex;
    justify-content: space-between;
    align-items: center
}

#review #section-other-invest .other-invest-item .item-content .invest-rank .rank-list .rank-item .rank-item-info {
    display: inline-flex;
    align-items: center;
    gap: 8px
}

#review #section-other-invest .other-invest-item .item-content .invest-rank .rank-list .rank-item .rank-item-info .rank-item-num {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    background-color: #ccc;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 500;
    color: #fff
}

#review #section-other-invest .other-invest-item .item-content .invest-rank .rank-list .rank-item:first-child .rank-item-info .rank-item-num {
    background-color: #f6bb1e
}

#review #section-other-invest .other-invest-item .item-content .invest-rank .rank-list .rank-item:nth-child(2) .rank-item-info .rank-item-num {
    background-color: #FF6A00
}

#review #section-other-invest .other-invest-item .item-content .invest-rank .rank-list .rank-item:nth-child(3) .rank-item-info .rank-item-num {
    background-color: #888
}

#review #section-other-invest .other-invest-item .item-content .invest-rank .rank-list .rank-item .rank-item-info .rank-item-name {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    line-height: 130%
}

#review #section-other-invest .other-invest-item .item-content .invest-rank .rank-list .rank-item .rank-item-amount {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    color: #222;
    line-height: 130%
}

#review #section-other-invest .other-invest-item .item-content .invest-rank .rank-list .rank-item .rank-item-amount>b {
    font-size: 14px
}

#review #section-other-invest .other-invest-item .item-content .invest-graph .invest-rate-guide {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 25px
}

#review #section-other-invest .other-invest-item .item-content .invest-graph .invest-rate-guide .guide-item {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    width: calc((100% / 2) - 6px)
}

#review #section-other-invest .other-invest-item .item-content .invest-graph .invest-rate-guide .guide-item .guide-item-point {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%
}

#review #section-other-invest .other-invest-item .item-content .invest-graph .invest-rate-guide .guide-item:first-child .guide-item-point {
    background-color: #FF6A00
}

#review #section-other-invest .other-invest-item .item-content .invest-graph .invest-rate-guide .guide-item:nth-child(2) .guide-item-point {
    background-color: #f58442
}

#review #section-other-invest .other-invest-item .item-content .invest-graph .invest-rate-guide .guide-item:nth-child(3) .guide-item-point {
    background-color: #fad062
}

#review #section-other-invest .other-invest-item .item-content .invest-graph .invest-rate-guide .guide-item:nth-child(4) .guide-item-point {
    background-color: #ff5050
}

#review #section-other-invest .other-invest-item .item-content .invest-graph .invest-rate-guide .guide-item .guide-item-desc {
    display: flex;
    flex-direction: column
}

#review #section-other-invest .other-invest-item .item-content .invest-graph .invest-rate-guide .guide-item .guide-item-desc .guide-item-desc-tit {
    font-size: 12px;
    font-weight: 600;
    color: #888;
    line-height: 130%
}

#review #section-other-invest .other-invest-item .item-content .invest-graph .invest-rate-guide .guide-item .guide-item-desc .guide-item-desc-desc {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    line-height: 130%
}

#review .swiper-wrapper {
    position: relative;
    display: flex;
    align-items: center
}

#review .swiper-button-next,#review .swiper-button-prev {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: rgba(0,0,0,.5);
    border-radius: 50%;
    color: #fff;
    margin: 0;
    flex-shrink: 0
}

#review .swiper-button-next:after,#review .swiper-button-prev:after {
    font-size: 20px
}

#review .swiper-button-next,#review .swiper-rtl .swiper-button-prev {
    top: 100px!important;
    right: -60px!important
}

#review .swiper-button-prev,#review .swiper-rtl .swiper-button-next {
    top: 100px!important;
    left: -60px!important
}

.swiper-button-next:after,.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after,.swiper-rtl .swiper-button-prev:after {
    font-size: 0!important
}

#incomes .my-grade {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%)
}

#incomes #incomes-summary {
    padding: 10px 0 120px
}

#incomes #incomes-summary .summary {
    display: flex;
    gap: 36px
}

#incomes #incomes-summary .summary .summary-content {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

#incomes #incomes-summary .summary .summary-content .summary-item {
    display: inline-flex;
    flex-direction: column;
    gap: 0;
    width: calc((100% / 2) - 6px);
    padding: 30px 25px;
    background-color: #fff;
    box-shadow: 2px 2px 1px 0 hsla(0,0%,93%,.4),inset 1px 1px 1px 0 hsla(0,0%,93%,.4);
    border-radius: 20px;
    overflow: hidden
}

#incomes #incomes-summary .summary .summary-content .summary-item:nth-child(n+3) {
    width: calc((100% / 3) - 8px);
}

#incomes #incomes-summary .summary .summary-content .summary-item .item-tit {
    margin-bottom: 12px
}

#incomes #incomes-summary .summary .summary-content .summary-item .item-tit>span {
    font-size: 24px;
    font-weight: 600;
    color: #888;
    line-height: 130%
}

#incomes #incomes-summary .summary .summary-content .summary-item .item-amount {
    margin-bottom: 8px
}

#incomes #incomes-summary .summary .summary-content .summary-item .item-amount>span {
    font-size: 26px;
    font-weight: 600;
    line-height: 130%
}

#incomes #incomes-summary .summary .summary-content .summary-item .item-amount>span>b {
    font-size: 38px;
    font-weight: 700
}

#incomes #incomes-summary .summary .summary-content .summary-item .item-amount>span.color-type-a {
    color: #ff4545
}

#incomes #incomes-summary .summary .summary-content .summary-item .item-amount>span.color-type-b {
    color: var(--color-primary)
}

#incomes #incomes-summary .summary .summary-content .summary-item .item-amount>span.color-type-c {
    color: #fd8028
}

#incomes #incomes-summary .summary .summary-content .summary-item .item-amount>span.color-type-d {
    color: #f92020
}

#incomes #incomes-summary .summary .summary-content .summary-item .item-desc>p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    color: #888
}

#incomes #invest-history {
    padding: 10px 0 120px
}

#incomes #invest-history .section-head .head-tit {
    font-size: 40px;
    font-weight: 600;
    color: #222
}

#join .section .section-head .head-tit {
    display: block;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.36;
    letter-spacing: -1.1px;
    text-align: center;
    color: #222
}

#join .section .section-head .head-tit em {
    color: var(--color-primary)
}

#join .section .section-head .head-sub {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 400;
    color: #222;
    text-align: center;
    line-height: 130%6
}

#join .section .section-head .head-sub a {
    display: inline-block;
    font-weight: 600;
    color: #0d02b8;
    border-bottom: 1px solid #0d02b8
}

#join #join-form {
    padding: 90px 0 160px;
    background-color: #fff
}

#join #join-form .form-agree-info {
    padding: 30px 0
}

#join #join-form .form-agree-info .agree-desc {
    margin-top: 3px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee
}

#join #join-form .form-agree-info .agree-desc>span {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: -.38px;
    color: #888
}

#join #join-form .form-agree-info .agree-others {
    display: flex;
    flex-direction: column;
    gap: 0
}

#join #join-form .form-agree-info .agree-others .agree-item {
    width: 100%;
    padding: 24px 0
}

#join #join-form .form-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 40px
}

#join #join-form .form-buttons .login-option-txt {
    position: relative;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -.45px;
    color: #888;
    text-align: center;
    margin-top: 30px
}

#join #join-form .form-buttons .login-option-txt>span {
    position: relative;
    z-index: 1;
    background-color: #fff;
    padding-inline:8px}

#join #join-form .form-buttons .login-option-txt:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background-color: #eee
}

#login .section .section-head .head-tit {
    display: block;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.36;
    letter-spacing: -1.1px;
    text-align: center;
    color: #222
}

#login .section .section-head .head-tit em {
    color: #0d02b8
}

#login #login-form {
    padding: 120px 0;
    background-color: #fff
}

#login #login-form .form-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px
}

#login #login-form .form-buttons .remember-account {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 42px
}

#login #login-form .form-buttons .remember-account .checkbox label span {
    font-size: 18px;
    font-weight: 600;
    color: #888
}

#login #login-form .form-buttons .remember-account .forgot-password-list {
    display: flex;
    align-items: center;
    gap: 16px
}

#login #login-form .form-buttons .remember-account .forgot-password-list .forgot-password {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -.45px;
    color: #888
}

#login #login-form .form-buttons .remember-account .forgot-password-list .forgot-password:not(:last-child):after {
    content: "";
    position: absolute;
    top: 50%;
    right: -8px;
    transform: translateY(-50%);
    width: 1px;
    height: 13px;
    background-color: #888
}

#login #login-form .form-buttons .login-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 18px
}

#login #login-form .form-buttons .login-option .login-option-txt {
    position: relative;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -.45px;
    color: #888;
    text-align: center
}

#login #login-form .form-buttons .login-option .login-option-txt>span {
    position: relative;
    z-index: 1;
    background-color: #fff;
    padding-inline:8px}

#login #login-form .form-buttons .login-option .login-option-txt:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background-color: #eee
}

#login #login-form .form-buttons .login-option a:not(:last-child):after {
    content: "";
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    width: 1px;
    height: 13px;
    background-color: #888
}

#login #login-form .form-buttons .login-option .link-join {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -.45px;
    color: var(--color-primary)
}

#login #login-form .login-option-etc {
    width: 740px;
    max-width: 100%;
    margin: 40px auto 0;
    padding-inline:50px}

#login #login-form .form-container {
    margin-top: 0;
    border-radius: 30px;
    background-color: #fff;
    padding: 100px 80px
}

#login #login-form .form-container .form-tab {
    display: flex;
    align-items: center;
    width: 100%
}

#login #login-form .form-container .form-tab .btn-form_tab {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    padding: 20px 0;
    border-radius: 0;
    border: solid #eee;
    border-width: 0 0 2px;
    font-size: 18px;
    font-weight: 500;
    color: #222
}

#login #login-form .form-container .form-tab .btn-form_tab.active {
    border-radius: 8px 8px 0 0;
    border: solid #eee;
    border-width: 2px 2px 0
}

#login #login-form .form-container form {
    padding: 100px 80px
}

#login #login-form .form-container .account-result .result-img {
    text-align: center
}

#login #login-form .form-container .account-result .result-text {
    text-align: center;
    margin-top: 12px
}

#login #login-form .form-container .account-result .result-text>span {
    font-size: 26px;
    font-weight: 600;
    color: #222;
    line-height: 130%
}

#login #login-form .form-container .account-result .result-text>span>strong {
    font-size: 34px;
    font-weight: 700;
    color: #FF6A00
}

#mypage #mypage-form {
    padding: 70px 0 120px;
    background-color: #fff
}

#mypage #mypage-form .mypage-summary {
    display: flex;
    flex-direction: column;
    align-items: center
}

#mypage #mypage-form .mypage-summary .profile-img {
    width: 82px;
    aspect-ratio: 1/1 auto;
    contain: paint
}

#mypage #mypage-form .mypage-summary .profile-img>img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

#mypage #mypage-form .mypage-summary .profile-username {
    margin-top: 24px
}

#mypage #mypage-form .mypage-summary .profile-username>span {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -.53px;
    color: #222
}

#mypage #mypage-form .member-exit {
    margin-top: 15px;
    text-align: right
}

#mypage #mypage-form .member-exit>span {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -.4px;
    color: #888
}

#mypage #mypage-form .member-exit>span>a {
    color: var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
    font-weight: 700
}

.voucher-list {
    display: flex;
    flex-wrap: wrap;
    gap: 50px 12px;
    margin-top: 10px
}

.voucher-list .voucher-item {
    width: calc((100% / 3) - 8px);
    border-radius: 30px;
    border: 1px solid #ccc;
    overflow: hidden
}

.voucher-list .voucher-item .item-head {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #eee;
    width: 100%;
    height: 47px
}

.voucher-list .voucher-item .item-head .head-icon {
    position: relative;
    width: 144px;
    height: 29px
}

.voucher-list .voucher-item .item-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 22px 40px 38px
}

.voucher-list .voucher-item .item-main .main-img {
    position: relative;
    width: 312px;
    max-width: 100%;
    aspect-ratio: 312/140 auto
}

.voucher-list .voucher-item .item-main .tags {
    display: flex;
    align-items: flex-start;
    gap: 6px
}

.voucher-list .voucher-item .item-main .tags .tag {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    padding: 6px 10px;
    font-size: 14px;
    font-weight: 400
}

.voucher-list .voucher-item .item-main .tags .tag.tag-normal {
    background: linear-gradient(120deg,#1e7665b1,#16832db1);
    color: #fff
}

.voucher-list .voucher-item .item-main .tags .tag.tag-vip {
    background-color: #1e7665;
    color: #ffc618;
    font-weight: 600
}

.voucher-list .voucher-item .item-main .main-desc {
    display: flex;
    flex-direction: column;
    gap: 0
}

.voucher-list .voucher-item .item-main .main-desc .desc-main_txt {
    font-size: 26px;
    font-weight: 700;
    color: #222
}

.voucher-list .voucher-item .item-main .main-desc .desc-sub_txt {
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin-bottom: 13px
}

.voucher-list .voucher-item .item-main .main-desc .desc-sub_txt .tag {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #eee;
    border-radius: 50px;
    padding: 4px 10px;
    font-size: 16px;
    font-weight: 500;
    color: #222
}

.voucher-list .voucher-item .item-main .main-desc .desc-sub_txt>em {
    font-weight: 600;
    color: var(--color-primary)
}

.voucher-list .voucher-item .item-main .main-desc .desc-additional_txt {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #ccc
}

.voucher-list .voucher-item .item-main .main-desc .desc-additional_txt .additional_txt-row {
    display: flex;
    align-items: center;
    gap: 12px
}

.voucher-list .voucher-item .item-main .main-desc .desc-additional_txt .additional_txt-row .row-tit {
    position: relative;
    width: 62px;
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 500;
    color: #888
}

.voucher-list .voucher-item .item-main .main-desc .desc-additional_txt .additional_txt-row .row-tit:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -12px;
    transform: translateY(-50%);
    width: 1px;
    height: 11px;
    background-color: #eee
}

.voucher-list .voucher-item .item-main .main-desc .desc-additional_txt .additional_txt-row .row-desc {
    font-size: 20px;
    font-weight: 600;
    color: #222
}

#product_list .product-list {
    flex-wrap: wrap;
    gap: 40px 20px;
    padding: 50px 0 120px;
    margin-top: 50px
}

#product_list .product-list .product-item {
    width: calc((100% / 3) - 14px)
}

#product_list #product-list .table-option {
    justify-content: center
}

#product-view {
    padding: 50px 0 120px
}

#product-view .product-detail-title {
    padding: 0 0 50px
}

#product-view .product-detail-title>h1 {
    font-size: 34px;
    font-weight: 700;
    line-height: 130%;
    color: #222;
    text-align: center
}

#product-view .product-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 28px;
    width: 100%;
    max-width: 1000px;
    border: 1px solid #ccc;
    border-radius: 30px;
    background-color: #fff;
    padding: 43px 115px 43px 45px;
    overflow: hidden;
    margin-inline:auto}

#product-view .product-item .item-head {
    display: none
}

#product-view .product-item .item-main {
    position: relative;
    width: 477px;
    max-width: 50%;
    aspect-ratio: 477/215 auto;
    flex-shrink: 0
}

#product-view .product-item .item-main .main-img {
    width: 100%;
    height: 100px
}

#product-view .product-item .item-main .main-img>img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

#product-view .product-item .item-content {
    width: 100%
}

#product-view .product-item .item-content .main-desc {
    padding-bottom: 40px
}

#product-view .product-item .item-content .main-desc .desc-main_txt {
    font-size: 26px;
    font-weight: 600;
    color: #222;
    line-height: 130%
}

#product-view .product-item .item-content .main-desc .desc-additional_info {
    display: flex;
    gap: 42px;
    margin-top: 10px
}

#product-view .product-item .item-content .main-desc .desc-additional_info .desc-additional_txt {
    position: relative;
    font-size: 24px;
    font-weight: 600;
    line-height: 130%;
    color: #888
}

#product-view .product-item .item-content .main-desc .desc-additional_info .desc-additional_txt:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 2px;
    height: 18px;
    background-color: #888
}

#product-view .product-item .item-content .main-desc .desc-additional_info .desc-sub_txt {
    font-size: 24px;
    font-weight: 600;
    line-height: 130%;
    color: #888
}

#product-view .product-item .item-content .item-percentage {
    width: 100%;
    padding: 10px 0 0;
    border-top: 1px solid #ccc
}

#product-view .product-item .item-content .item-percentage .percentage-txt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px
}

#product-view .product-item .item-content .item-percentage .percentage-txt .txt-left,#product-view .product-item .item-content .item-percentage .percentage-txt .txt-right {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary)
}

#product-view .product-item .item-content .item-percentage .percentage-bar {
    position: relative;
    width: 100%;
    height: 6px;
    background-color: #d7dee4;
    border-radius: 100px;
    contain: paint;
    margin-top: 12px
}

#product-view .product-item .item-content .item-percentage .percentage-bar .percentage-current {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: var(--color-primary);
    font-size: 0;
    width: 0;
    transition: width 1s ease-in-out
}

#product-view .product-item .item-content .item-percentage .percentage-bar .percentage-current.animate {
    width: var(--target-width)
}

#product-view .product-item:after {
    transform: translate(45%,74%) rotate(42deg);
    font-size: 24px
}

#product-view .product-purchase {
    width: 100%;
    max-width: 1000px;
    padding: 38px 42px;
    margin-top: 50px;
    border: 1px solid #ccc;
    border-radius: 30px;
    background-color: #fff;
    margin-inline:auto}

#product-view .product-purchase .purchase-header {
    display: flex;
    align-items: center;
    gap: 30px
}

#product-view .product-purchase .purchase-header .purchase-header-title {
    font-size: 26px;
    font-weight: 600;
    color: #222
}

#product-view .product-purchase .purchase-header .purchase-header-desc {
    font-size: 16px;
    font-weight: 500;
    color: #222;
    background-color: #eee;
    border-radius: 50px;
    padding: 4px 10px
}

#product-view .product-purchase .purchase-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 52px
}

#product-view .product-purchase .purchase-content .purchase-content-item {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 50%;
    max-width: 440px
}

#product-view .product-purchase .purchase-content .purchase-content-item:nth-child(2) {
    max-width: 330px
}

#product-view .product-purchase .purchase-content .purchase-content-item:nth-child(2) .purchase-content-item-row:first-child {
    margin-bottom: 20px
}

#product-view .product-purchase .purchase-content .purchase-content-item .purchase-content-item-row {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    min-height: 26px
}

#product-view .product-purchase .purchase-content .purchase-content-item .purchase-content-item-row .purchase-content-item-row-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    font-size: 20px;
    font-weight: 600;
    color: #222
}

#product-view .product-purchase .purchase-content .purchase-content-item .purchase-content-item-row .purchase-content-item-row-value {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    color: #222
}

#product-view .product-purchase .purchase-content .purchase-content-item .purchase-content-item-row .purchase-content-item-row-value-button {
    font-size: 20px;
    font-weight: 600;
    color: #222
}

#product-view .product-purchase .purchase-content .purchase-content-item .purchase-content-item-row input {
    max-width: 197px;
    height: 28px;
    border-radius: 5px;
    border: 1px solid #eee;
    background-color: #fff;
    padding-inline:12px;font-size: 20px;
    font-weight: 600;
    color: #222;
    text-align: right
}

#product-view .product-purchase .purchase-content .purchase-content-item .purchase-content-item-row .purchase-content-item-row-value-button-point {
    flex-shrink: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 5px;
    padding: 3px 16px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    transition: all .15s
}

#product-view .product-purchase .purchase-content .purchase-content-item .purchase-content-item-row .purchase-content-item-row-value-button-point:hover {
    background-color: #fff;
    color: var(--color-primary);
    border-color: var(--color-primary)
}

#product-view .product-purchase .purchase-content .purchase-content-item .purchase-content-item-row .purchase-content-item-row-value-input-point {
    max-width: 110px;
    border-radius: 0;
    border-width: 0 0 1px;
    padding: 5px 0;
    text-align: center;
    color: var(--color-primary)
}

#product-view .product-purchase .purchase-content .purchase-content-item .purchase-content-item-row .purchase-content-item-row-sub {
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    color: #888;
    text-align: right
}

#product-view .product-purchase .purchase-button {
    margin-top: 38px
}

#product-view .product-purchase .purchase-button .purchase-button-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 66px;
    background-color: #fff;
    border: 2px solid var(--color-primary);
    border-radius: 10px;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
    transition: all .15s
}

#product-view .product-purchase .purchase-button .purchase-button-button:hover {
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary)
}

#product-view .product-purchase .purchase-result {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 38px
}

#product-view .product-purchase .purchase-result .purchase-result-item {
    font-size: 24px;
    font-weight: 600;
    color: #222;
    line-height: 130%
}

#product-view .product-purchase .purchase-result .purchase-result-item .purchase-result-item-value {
    display: inline-block
}

#product-view .product-purchase .purchase-result .purchase-result-item .purchase-result-item-value>input {
    max-width: 220px;
    height: 37px;
    border: 1px solid #eee;
    border-radius: 5px;
    margin-inline:10px;padding-inline:12px;font-size: 24px;
    font-weight: 600;
    color: var(--color-primary);
    text-align: right
}

#product-view .deposit-request {
    padding: 0 20px;
    width: 100%
}

#product-view .deposit-request .deposit-request-step {
    display: flex;
    align-items: center;
    gap: 82px;
    width: 100%
}

#product-view .deposit-request .deposit-request-step .deposit-request-step-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc(100% / 3);
    padding: 20px 20px 30px;
    border: 1px solid var(--color-primary);
    border-radius: 20px
}

#product-view .deposit-request .deposit-request-step .deposit-request-step-item:not(:last-child):after {
    content: "";
    position: absolute;
    top: 50%;
    right: -54px;
    transform: translateY(-50%);
    width: 22px;
    height: 40px;
    background: url(/images/icons/angle-right.svg) 50%/cover no-repeat
}

#product-view .deposit-request .deposit-request-step .deposit-request-step-item .deposit-request-step-item-step {
    padding: 5px 30px;
    background-color: #fff;
    border: 1px solid var(--color-primary);
    border-radius: 500px;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary)
}

#product-view .deposit-request .deposit-request-step .deposit-request-step-item .deposit-request-step-item-title {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #222;
    line-height: 130%;
    text-align: center
}

#product-view .deposit-request .deposit-request-step .deposit-request-step-item .deposit-request-step-item-desc {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 500;
    line-height: 130%;
    color: #222;
    text-align: center
}

#product-view .deposit-request .deposit-request-desc {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
    background-color: #ff454533;
    border-radius: 20px;
    padding: 20px 30px
}

#product-view .deposit-request .deposit-request-desc .deposit-request-desc-txt {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    line-height: 130%;
    color: #222;
    padding-left: 12px
}

#product-view .deposit-request .deposit-request-desc .deposit-request-desc-txt:before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 4px;
    height: 4px;
    background-color: #222;
    border-radius: 50%
}

#product-view .deposit-request .deposit-request-account {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px
}

#product-view .deposit-request .deposit-request-account .deposit-request-account-txt {
    font-size: 24px;
    font-weight: 600;
    color: #222;
    line-height: 130%;
    margin-bottom: 30px
}

#product-view .deposit-request .deposit-request-account .deposit-request-account-txt>em {
    color: var(--color-primary)
}

#product-view .deposit-request .deposit-request-account .deposit-request-account-input {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px
}

#product-view .deposit-request .deposit-request-account .deposit-request-account-input .deposit-request-account-input-row {
    display: flex;
    align-items: center
}

#product-view .deposit-request .deposit-request-account .deposit-request-account-input .deposit-request-account-input-row .deposit-request-account-input-row-label {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    line-height: 130%
}

#product-view .deposit-request .deposit-request-account .deposit-request-account-input .deposit-request-account-input-row .deposit-request-account-input-row-value {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    color: #222;
    line-height: 130%
}

#product-view .deposit-request .deposit-request-account .deposit-request-account-input .deposit-request-account-input-row .deposit-request-account-input-row-value>input {
    max-width: 187px;
    height: 37px;
    border: 1px solid #eee;
    border-radius: 5px;
    margin-inline:10px 0;padding-inline:12px;font-size: 24px;
    font-weight: 600;
    color: #222;
    text-align: right
}

#product-view .deposit-request .deposit-request-button {
    margin-top: 50px;
    width: 100%
}

#product-view .deposit-request .deposit-request-button .deposit-request-button-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 66px;
    background-color: #fff;
    border: 2px solid var(--color-primary);
    border-radius: 10px;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary)
}

.product-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px 12px;
    margin-top: 40px;
    padding-bottom: 100px
}

.product-list .product-item {
    position: relative;
    width: calc((100% / 3) - 8px);
    border-radius: 30px;
    border: 1px solid #ccc;
    overflow: hidden
}

.product-list .product-item .item-head {
    display: none;
    justify-content: center;
    align-items: center;
    background-color: #eee;
    width: 100%;
    height: 47px
}

.product-list .product-item .item-head .head-icon {
    position: relative;
    width: 144px;
    height: 29px
}

.product-list .product-item .item-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px 20px 0
}

.product-list .product-item .item-main .main-img {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 351/158 auto
}

.product-list .product-item .item-main .tags {
    display: flex;
    align-items: flex-start;
    gap: 6px
}

.product-list .product-item .item-main .tags .tag {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    padding: 6px 10px;
    font-size: 14px;
    font-weight: 400
}

.product-list .product-item .item-main .tags .tag.tag-normal {
    background: linear-gradient(120deg,#1e7665b1,#16832db1);
    color: #fff
}

.product-list .product-item .item-main .tags .tag.tag-vip {
    background-color: #1e7665;
    color: #ffc618;
    font-weight: 600
}

.product-list .product-item .item-main .main-tag .tag {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    padding: 4px 10px;
    font-size: 16px;
    font-weight: 500
}

.product-list .product-item .item-main .main-desc {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd
}

.product-list .product-item .item-main .main-desc .desc-main_txt {
    display: inline-flex;
    align-items: center;
    gap: 4px
}

.product-list .product-item .item-main .main-desc .desc-main_txt .head-icon {
    position: relative;
    width: 38px;
    height: 38px
}

.product-list .product-item .item-main .main-desc .desc-main_txt .head-icon>img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.product-list .product-item .item-main .main-desc .desc-main_txt .product-name {
    font-size: 34px;
    font-weight: 700;
    color: #222;
    line-height: 130%
}

.product-list .product-item .item-main .main-desc .desc-main_txt .product-amount {
    display: inline-block;
    margin-left: 4px;
    font-size: 24px;
    font-weight: 600;
    color: #222;
    line-height: 130%
}

.product-list .product-item .item-main .main-desc .desc-sub_txt {
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin-bottom: 13px
}

.product-list .product-item .item-main .main-desc .desc-sub_txt>em {
    font-weight: 600;
    color: var(--color-primary)
}

.product-list .product-item .item-main .main-desc .desc-additional_txt {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-top: 20px
}

.product-list .product-item .item-main .main-desc .desc-additional_txt .additional_txt-row {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.product-list .product-item .item-main .main-desc .desc-additional_txt .additional_txt-row .row-desc,.product-list .product-item .item-main .main-desc .desc-additional_txt .additional_txt-row .row-tit {
    font-size: 18px;
    font-weight: 600;
    color: #222
}

.product-list .product-item .item-main .main-desc .desc-additional_txt .additional_txt-row .row-desc.item-hot,.product-list .product-item .item-main .main-desc .desc-additional_txt .additional_txt-row .row-tit.item-hot {
    font-size: 18px;
    font-weight: 600;
    color: #e7554e
}

.product-list .product-item .item-main .main-desc .desc-additional_txt .additional_txt-row .row-desc.item-vip,.product-list .product-item .item-main .main-desc .desc-additional_txt .additional_txt-row .row-tit.item-vip {
    font-size: 18px;
    font-weight: 600;
    color: #d4a338
}

.product-list .product-item .item-main .main-desc .desc-additional_txt>b {
    font-weight: 600;
    color: #222
}

.product-list .product-item .item-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background-color: #f7f7f7
}

.product-list .product-item .item-label .label-icon {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #fff
}

.product-list .product-item .item-label .label-txt>span {
    font-size: 16px;
    font-weight: 500;
    color: #222
}

.product-list .product-item .item-percentage {
    width: 100%;
    padding: 20px 20px 40px
}

.product-list .product-item .item-percentage .percentage-txt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px
}

.product-list .product-item .item-percentage .percentage-txt .txt-left,.product-list .product-item .item-percentage .percentage-txt .txt-right {
    font-size: 20px;
    font-weight: 600;
    color: #FF6A00
}

.product-list .product-item .item-percentage .percentage-txt .txt-limit {
    display: inline-flex;
    align-items: flex-end;
    font-size: 16px;
    font-weight: 600;
    color: #FF6A00
}

.product-list .product-item .item-percentage .percentage-txt .txt-limit img {
    margin-right: 2px;
    width: 27px;
    aspect-ratio: 27/19 auto
}

.product-list .product-item .item-percentage .percentage-txt .txt-limit b {
    font-size: 20px
}

.product-list .product-item .item-percentage .percentage-bar {
    position: relative;
    width: 100%;
    height: 6px;
    background-color: #d7dee4;
    border-radius: 100px;
    contain: paint;
    margin-top: 12px
}

.product-list .product-item .item-percentage .percentage-bar .percentage-current {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: #FF6A00;
    font-size: 0;
    width: 0;
    transition: width 1s ease-in-out
}

.product-list .product-item .item-percentage .percentage-bar .percentage-current.item-event {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: red;
    font-size: 0;
    width: 0;
    transition: width 1s ease-in-out
}

.product-list .product-item .item-percentage .percentage-bar .percentage-current.animate {
    width: var(--target-width)
}

.product-list .product-item.limited .item-percentage .percentage-txt .txt-left {
    color: #ff4545
}

.product-list .product-item.limited .item-percentage .percentage-bar .percentage-current {
    background-color: #ff4545
}

#incomes .own_product-list .item .item-content .item-button {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-left: auto
}

.product-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    display: none
}

.product-item:after {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(37%,74%) rotate(42deg);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 36px;
    font-size: 20px;
    font-weight: 700;
    color: #fff
}

.product-item.item-noraml:before {
    background-color: var(--color-primary)
}

.product-item.item-best:after {
    content: "BEST";
    background-color: #FF6A00
}

.product-item.item-hot:after {
    content: "HOT";
    background-color: #ff4545
}

.product-item.item-vip:after {
    content: "VIP";
    background: linear-gradient(90deg,#752903,#b2710d 28%,#f5e568 45%,#fefec9 50%,#f0cf5f 62%,#ae721a 72%,#6f1100);
    color: #222
}

.product-item.item-eco:after {
    content: "BASIC";
    background-color: #87ceeb
}

.product-item.item-new:after {
    content: "NEW";
    background-color: #c90
}

.product-item.item-event:after {
    content: "EVENT";
    background: linear-gradient(90deg,#fefec9,#a6987e,#403a30)
}

.product-item .item-main .main-tag .tag {
    background-color: #eee;
    color: #fff
}

.product-item.item-best .item-main .main-tag .tag {
    background-color: #FF6A00
}

.product-item.item-hot .item-main .main-tag .tag {
    background-color: #ff4545
}

.product-item.item-vip .item-main .main-tag .tag {
    background-color: #d3a640
}

.product-item.item-eco .item-main .main-tag .tag {
    background-color: #87ceeb
}

.product-item.item-new .item-main .main-tag .tag {
    background-color: #c90
}

.product-item.item-event .item-main .main-tag .tag {
    background-color: #a6987e
}

.review-item-type {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin: 0 0 20px
}

.review-item-type .item-list {
    position: relative;
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.review-item-type .item-list:nth-child(2):after {
    content: "";
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background-color: #eee
}

.review-item-type .item-list .item {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding-inline:30px;background-color: #fff;
    border: 1px solid #888;
    border-radius: 5px;
    cursor: pointer
}

.review-item-type .item-list .item .item-icon {
    opacity: .5
}

.review-item-type .item-list .item .item-icon>img {
    width: 28px;
    height: 22px;
    object-fit: contain
}

.review-item-type .item-list .item .item-name {
    font-size: 16px;
    font-weight: 500;
    color: #888
}

.review-item-type .item-list .item.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary)
}

.review-item-type .item-list .item.active .item-icon {
    opacity: 1
}

.review-item-type .item-list .item.active .item-name {
    color: #fff
}

.call-request #section-banner .section-head {
    height: 300px;
    background: url(/images/review/banner.png) 50%/cover no-repeat
}

#product_list #section-banner .section-head {
    height: 300px;
    background: url(/images/product/banner.png) 50%/cover no-repeat
}

#review #section-banner .section-head {
    height: 300px;
    background: url(/images/review/banner2.png) 50%/cover no-repeat
}

#incomes #section-banner .section-head {
    height: 255px;
    background: url(/images/incomes/banner.png) 50%/cover no-repeat
}

#event #section-banner .section-head {
    height: 255px;
    background: url(/images/event/banner.png) 50%/cover no-repeat
}

.my-grade {
    display: flex;
    align-items: center;
    gap: 12px
}

.my-grade .grade-img {
    position: relative;
    width: 74px;
    aspect-ratio: 60/72 auto
}

.my-grade .grade-img>img {
    object-fit: contain
}

.my-grade .grade-info .info-title {
    font-size: 16px;
    font-weight: 600
}

.my-grade .grade-info .info-desc {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 2px
}

.my-grade .grade-info .info-desc>span {
    font-size: 14px;
    font-weight: 500;
    color: #888;
    line-height: 130%
}

.my-grade .grade-info .info-btn {
    margin-top: 8px
}

.my-grade .grade-info .info-btn .btn-grade {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 12px;
    font-weight: 600;
    color: #888
}

.my-grade .grade-info .info-btn .btn-grade>img {
    display: inline-block;
    width: 12px;
    height: 12px
}

.view-pc {
    display: block!important
}

.view-mo {
    display: none!important
}

.react-datepicker-wrapper {
    width: 100%
}

.datepicker-input {
    width: 100%;
    height: 45px;
    padding: 0 10px;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    font-size: 14px
}

.react-datepicker {
    font-family: inherit;
    border: 1px solid #ddd;
    border-radius: 4px
}

.react-datepicker__header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd
}

.react-datepicker__time-container {
    border-left: 1px solid #ddd
}

.react-datepicker__time-box {
    width: 100px
}

.react-datepicker__time-list-item {
    padding: 8px 10px
}

.react-datepicker__day--keyboard-selected,.react-datepicker__day--selected,.react-datepicker__time-list-item--selected {
    background-color: #007bff!important
}

.custom-select {
    width: 100%;
    height: 60px
}

.custom-select__control {
    min-height: unset!important;
    height: 100%;
    background-color: #fff!important;
    border-color: #eee!important
}

.custom-select__indicator-separator {
    display: none
}

.custom-select__value-container {
    padding: 0 4px 0 16px!important
}

.custom-select__input-container {
    padding: 0!important;
    margin: 0!important
}

.custom-select__single-value {
    color: #222!important;
    font-weight: 500;
    font-size: 16px
}

.custom-select__placeholder {
    font-weight: 500;
    color: #888!important
}

.custom-select.ampm-select {
    width: 128px;
    flex-shrink: 0
}

@keyframes progressAnimation {
    0% {
        width: 0
    }

    to {
        width: var(--target-width)
    }
}

@keyframes spinner {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

div.no-data {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 140px;
    text-align: center
}

tr.no-data {
    width: 100%;
    height: 100%
}

tr.no-data td {
    width: 100%;
    height: 180px
}

tr.no-data td dd {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%
}

.no-data-message {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    color: #888
}

@media (max-width: 1000px) {
    #review #section-other-invest .other-invest-item {
        width:calc((100% / 2) - 6px)
    }

    #review #section-other-invest .other-invest-item:first-child {
        order: 1
    }

    #review #section-other-invest .other-invest-item:nth-child(2) {
        order: 3
    }

    #review #section-other-invest .other-invest-item:nth-child(3) {
        order: 4
    }

    #review #section-other-invest .other-invest-item:nth-child(4) {
        order: 2
    }

    tr.no-data td {
        display: inline-block!important
    }
}

@media (max-width: 768px) {
    #main #section-banner .banner-wrapper .banner-txt .txt-sub {
        font-size:42px
    }

    #main #section-banner .banner-wrapper .banner-txt .txt-desc {
        font-size: 24px
    }

    #main #section-banner .banner-wrapper .banner-txt .btn-banner {
        font-size: 26px;
        padding: 12px 42px
    }

    #main #section-banner .banner-wrapper .banner-txt .btn-banner>img {
        width: 12px;
        object-fit: contain
    }

    #section-description .txt-list .txt-item:nth-child(-n+2) {
        padding: 50px 30px 84px
    }

    #form .inquiry-form {
        padding-bottom: 60px
    }

    #form .inquiry-form .form-content {
        flex-direction: column
    }

    #form .inquiry-form .form-wrapper {
        gap: 12px
    }

    #incomes #incomes-summary .summary .summary-content {
        justify-content: center
    }

    #incomes #incomes-summary .summary .summary-content .summary-item:nth-child(n+3) {
        width: calc((100% / 2) - 6px)
    }

    #review #review-list .item-list .item {
        flex-direction: column
    }

    #inquiry .item-list .accordian .details-head .head-txt:first-child {
        width: 10%
    }

    #inquiry .item-list .accordian .details-head .head-txt:nth-child(2) {
        width: 40%
    }

    #inquiry .item-list .accordian .details-head .head-txt:nth-child(3),#inquiry .item-list .accordian .details-head .head-txt:nth-child(4) {
        width: 25%
    }

    #inquiry .item-list .accordian .details .summary .summary-num {
        width: 10%
    }

    #inquiry .item-list .accordian .details .summary .summary-tit {
        width: 40%
    }

    #inquiry .item-list .accordian .details .summary .summary-date,#inquiry .item-list .accordian .details .summary .summary-status {
        width: 25%
    }

    #event #event-list .item-list {
        gap: 0 12px
    }

    #event #event-list .item-list .item {
        width: calc((100% / 2 - 6px))
    }

    #media #media-list .news-table {
        gap: 0 12px
    }

    #media #media-list .news-table .item {
        width: calc((100% / 2 - 6px))
    }

    .voucher-list .voucher-item {
        width: calc((100% / 2) - 6px)
    }

    .voucher-list .voucher-item .item-main {
        padding: 20px 20px 38px
    }

    #product_list .product-list {
        gap: 50px 18px
    }

    #product_list .product-list .product-item {
        width: calc((100% / 2) - 9px)
    }

    #product-view .product-item {
        flex-direction: column;
        padding: 40px 60px
    }

    #product-view .product-item .item-main {
        width: 100%;
        max-width: unset
    }

    #product-view .product-item .item-main .main-img {
        height: unset
    }

    #product-view .product-purchase {
        padding: 50px 28px
    }

    #product-view .product-purchase .purchase-result {
        text-align: center
    }

    #product-view .product-purchase .purchase-content {
        gap: 30px
    }

    #product-view .product-purchase .purchase-content .purchase-content-item .purchase-content-item-row .purchase-content-item-row-label,#product-view .product-purchase .purchase-content .purchase-content-item .purchase-content-item-row .purchase-content-item-row-value {
        font-size: 18px
    }

    #product-view .product-purchase .purchase-content .purchase-content-item .purchase-content-item-row .purchase-content-item-row-value-button-point {
        padding: 3px 10px
    }

    #product-view .product-purchase .purchase-content .purchase-content-item .purchase-content-item-row .purchase-content-item-row-value-input-point {
        width: 100px
    }

    #product-view .deposit-request .deposit-request-step {
        flex-direction: column;
        gap: 62px
    }

    #product-view .deposit-request .deposit-request-step .deposit-request-step-item {
        width: 320px
    }

    #product-view .deposit-request .deposit-request-step .deposit-request-step-item:not(:last-child):after {
        top: 95%;
        right: 50%;
        transform: translate(50%,50%) rotate(90deg)
    }

    #product-view .deposit-request .deposit-request-account .deposit-request-account-txt {
        font-size: 20px
    }

    #product-view .deposit-request .deposit-request-account .deposit-request-account-input {
        gap: unset;
        width: 100%
    }

    #product-view .deposit-request .deposit-request-account .deposit-request-account-input .deposit-request-account-input-row {
        width: 50%
    }

    #product-view .deposit-request .deposit-request-account .deposit-request-account-input .deposit-request-account-input-row:last-child {
        justify-content: flex-end
    }

    #incomes #section-banner .section-head {
        background: url(/images/incomes/banner-tb.png) 50%/cover no-repeat
    }
}

@media (max-width: 480px) {
    #main #section-head-news {
        display:block;
        padding: 20px 16px 30px
    }

    #main #section-head-news .head-news {
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        height: 32px;
        background-color: #5db9ff33;
        border-radius: 8px;
        padding: 0;
        overflow: hidden;
        position: relative
    }

    #main #section-head-news .head-news .news-item {
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        height: 100%;
        transition: transform .5s ease-in-out,opacity .5s ease-in-out;
        transform: translateY(100%);
        padding-inline:16px;opacity: 0
    }

    #main #section-head-news .head-news .news-item.visible {
        transform: translateY(0);
        opacity: 1
    }

    #main #section-head-news .head-news .news-item.exit {
        transform: translateY(-100%);
        opacity: 0
    }

    #main #section-head-news .head-news .news-item .head-news-tag {
        font-size: 12px;
        font-weight: 500;
        color: #FF6A00
    }

    #main #section-head-news .head-news .news-item .head-news-title {
        font-size: 14px;
        font-weight: 500
    }

    #main #section-head-news .head-news .news-item .head-news-more {
        flex-shrink: 0;
        margin-left: auto
    }

    #main #section-head-news .head-news .news-item .head-news-more>img {
        object-fit: contain
    }

    #main #section-menu {
        display: block;
        padding: 20px 0 30px
    }

    #main #section-menu .menu-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 0;
        padding-inline:16px}

    #main #section-menu .menu-list .menu-item {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: calc((100% / 4))
    }

    #main #section-menu .menu-list .menu-item .item-txt {
        margin-top: 2px
    }

    #main #section-menu .menu-list .menu-item .item-txt .item-tit {
        position: relative;
        font-size: 14px;
        font-weight: 500;
        text-align: center
    }

    #main #section-menu .menu-list .menu-item.active .item-txt .item-tit:after {
        content: "";
        position: absolute;
        top: -4px;
        right: -4px;
        display: inline-block;
        width: 4px;
        height: 4px;
        background-color: var(--color-alert);
        border-radius: 50%
    }

    #main .section .section-head .head-txt {
        align-items: flex-start
    }

    #main .section .section-head .head-txt .head-tit {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 20px;
        font-weight: 600;
        text-align: left
    }

    #main .section .section-head .head-txt .head-sub {
        display: none;
        font-size: 18px
    }

    #main .section .section-head .head-tab {
        display: flex;
        align-items: center;
        gap: 5px;
        margin-top: 20px
    }

    #main .section .section-head .head-tab .btn-tab {
        padding: 5px 10px;
        font-size: 14px;
        font-weight: 500;
        background-color: transparent;
        color: #ccc;
        border-bottom: 2px solid transparent
    }

    #main .section .section-head .head-tab .btn-tab.active {
        color: var(--color-primary);
        border-bottom: 2px solid var(--color-primary)
    }

    #main .section .section-head .btn-link {
        display: none;
        margin-top: 10px;
        font-size: 18px
    }

    #main #section-banner .swiper-wrapper {
        padding-inline:0}

    #main #section-banner .banner-cont {
        flex-direction: column
    }

    #main #section-banner .banner-cont .login-cont {
        width: 100%;
        padding: 24px
    }

    #main #section-banner .banner-cont .login-cont .login-info {
        gap: 20px
    }

    #main #section-banner .banner-cont .login-cont .login-btn-group {
        margin-top: 10px
    }

    #main #section-banner .banner-wrapper .banner-video {
        height: 588px
    }

    #main #section-banner .banner-wrapper .banner-item {
        position: relative;
        aspect-ratio: 1828/1028 auto;
        border-radius: 5px
    }

    #main #section-banner .banner-wrapper .banner-item:has(.banner-txt) {
        aspect-ratio: 1828/1028 auto
    }

    #main #section-banner .banner-wrapper .banner-image {
        border-radius: 0
    }

    #main #section-banner .banner-wrapper .banner-txt {
        padding-top: 40px
    }

    #main #section-banner .banner-wrapper .banner-txt .txt-sub {
        font-size: 18px
    }

    #main #section-banner .banner-wrapper .banner-txt .txt-desc {
        font-size: 14px
    }

    #main #section-banner .banner-wrapper .banner-txt .btn-banner {
        font-size: 14px;
        padding: 10px 18px;
        margin-top: 20px
    }

    #main #section-banner .banner-wrapper .banner-txt .btn-banner>img {
        width: 6px;
        height: unset
    }

    #section-event {
        padding: 70px 0
    }

    #section-event .event-list .event-item {
        width: 100%
    }

    #section-event .event-list .event-item:nth-child(n+2) {
        display: none
    }

    #section-event .event-list .event-item .event-thumb {
        aspect-ratio: 343/182 auto
    }

    #section-event .event-list .event-item .event-thumb>img {
        object-fit: cover
    }

    #section-process .process-content .process-list .item .item-img {
        aspect-ratio: 343/195 auto
    }

    #section-process .process-content .process-list .item .item-txt {
        padding-inline:0}

    #section-process .process-content .process-list .item .item-txt .item-tit {
        font-size: 20px
    }

    #section-process .process-content .process-list .item .item-txt .item-desc {
        font-size: 14px
    }

    #main .section#section-purchase .section-head .head-txt {
        flex-direction: column-reverse;
        gap: 12px
    }

    #main .section#section-purchase .section-head .head-txt .head-tit {
        font-size: 34px
    }

    #main .section#section-purchase .section-head .head-txt .head-sub {
        display: block
    }

    #section-purchase .purchase-content {
        box-shadow: unset;
        border: unset;
        margin-top: 20px;
        padding: 10px 0
    }

    #section-purchase .purchase-content .purchase-list .item {
        position: relative;
        display: grid;
        grid-template-columns: 78px 60px auto 36px auto;
        grid-template-areas: "status name name name date" "product product group amount price";
        grid-gap: 8px 2px;
        gap: 8px 2px;
        padding: 6px 12px
    }

    #section-purchase .purchase-content .purchase-list .item .item-status {
        grid-area: status;
        text-align: left
    }

    #section-purchase .purchase-content .purchase-list .item .item-name {
        grid-area: name;
        text-align: left
    }

    #section-purchase .purchase-content .purchase-list .item .item-date {
        grid-area: date;
        margin-left: unset;
        margin-right: unset;
        text-align: right;
        font-size: 14px
    }

    #section-purchase .purchase-content .purchase-list .item .item-product {
        grid-area: product
    }

    #section-purchase .purchase-content .purchase-list .item .item-group {
        grid-area: group
    }

    #section-purchase .purchase-content .purchase-list .item .item-amount {
        grid-area: amount
    }

    #section-purchase .purchase-content .purchase-list .item .item-price {
        grid-area: price;
        text-align: right
    }

    #section-purchase .purchase-content .purchase-list .item>div {
        flex: unset;
        font-size: 12px
    }

    #section-purchase .purchase-content .purchase-list .item:not(:last-child) {
        border-bottom: 2px solid #eee
    }

    #section-purchase .purchase-content .purchase-list .item .item-product .item-img>img {
        width: 100%;
        height: 100%;
        object-fit: contain
    }

    #section-purchase .purchase-content .purchase-list .item .item-product {
        gap: 10px
    }

    #section-purchase .purchase-content .purchase-list .item .item-product .item-price {
        margin-left: auto;
        font-size: 16px
    }

    #section-purchase .purchase-content .purchase-list .item .item-status {
        flex-shrink: 0
    }

    #section-purchase .purchase-content .purchase-list .item .item-status .btn-status {
        flex-shrink: 0;
        padding: 4px 14px;
        font-size: 14px
    }

    #section-info {
        padding: 70px 0
    }

    #section-info .info-list {
        flex-direction: column
    }

    #section-info .info-list .item {
        width: 100%;
        padding: 20px;
        min-height: unset
    }

    #section-info .info-list .item .item-img {
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px
    }

    #section-info .info-list .item .item-txt .item-desc {
        font-size: 18px
    }

    #section-info .info-list .item .item-txt .item-desc>span {
        font-size: 34px
    }

    #section-info .info-list .item .item-sub {
        font-size: 18px
    }

    #section-review {
        background-color: #d7590080;
        padding: 20px 0
    }

    #section-review .section-inner {
        padding: 0
    }

    #section-review .swiper-wrapper {
        display: flex;
        align-items: center;
        padding-inline:16px}

    #section-review .review-cont .cont-head {
        text-align: center
    }

    #section-review .review-cont .cont-head .review-txt {
        font-size: 20px;
        font-weight: 600;
        color: #fff
    }

    #section-review .review-cont .cont-content {
        margin-top: 0
    }

    #section-review .review-list .swiper-slide {
        width: 257px
    }

    #section-review .review-list .item {
        width: 257px;
        background-color: rgba(0,0,0,.5);
        border-radius: 10px;
        padding: 20px;
        opacity: 1
    }

    #section-review .review-list .swiper-slide-active .item {
        opacity: 1;
        background-color: #fff
    }

    #section-review .review-list .item .item-head {
        display: none
    }

    #section-review .review-list .swiper-slide-active .item .item-head {
        display: block
    }

    #section-review .review-list .item .item-head .head-img {
        position: relative;
        width: 137px;
        height: 31px
    }

    #section-review .review-list .item .item-head .head-img>img {
        object-fit: contain
    }

    #section-review .review-list .item .item-tag {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
        margin-top: 12px
    }

    #section-review .review-list .item .item-tag .tag {
        padding: 4px 10px;
        border: 1px solid var(--color-primary);
        color: var(--color-primary);
        border-radius: 5px;
        font-size: 14px;
        font-weight: 500
    }

    #section-review .review-list .item .item-user {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: 10px
    }

    #section-review .review-list .item .item-user .user-name {
        position: relative;
        font-size: 16px;
        font-weight: 500;
        color: #222
    }

    #section-review .review-list .item .item-user .user-name:after {
        content: "";
        position: absolute;
        top: 50%;
        right: -6px;
        transform: translateY(-50%);
        width: 1px;
        height: 10px;
        background-color: #ccc
    }

    #section-review .review-list .item .item-user .user-date {
        font-size: 14px;
        font-weight: 500;
        color: #ccc
    }

    #section-review .review-list .item .item-content {
        margin-top: 10px
    }

    #section-review .review-list .item .item-content .item-tit>span {
        font-size: 16px;
        font-weight: 500;
        line-height: 100%;
        color: #222
    }

    #section-review .review-list .item .item-content .item-txt {
        margin-top: 6px
    }

    #section-review .review-list .item .item-content .item-txt>p {
        font-size: 14px;
        font-weight: 500;
        line-height: 100%;
        color: #888;
        text-overflow: ellipsis;
        overflow: hidden;
        word-break: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical
    }

    #section-product .section-inner {
        gap: 20px
    }

    #section-product .product-content .product-list {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: flex-start;
        margin-top: 0;
        max-height: unset;
        overflow: auto;
        margin-inline:-16px;width: calc(100% + 32px);
        padding-inline:16px}

    #section-product .product-content .product-list::-webkit-scrollbar {
        display: none
    }

    #section-product .product-content .product-list .product-item {
        width: 292px;
        flex-shrink: 0;
        border-radius: 30px
    }

    #section-join_review .join-review-list {
        flex-direction: column
    }

    #section-join_review .join-review-list .review-item {
        width: 100%;
        padding: 25px 8px
    }

    #section-service .service-wrapper .service-table .table-item .table-head .head-txt {
        font-size: 26px
    }

    #section-service .service-wrapper .service-table .table-item .table-head .head-more {
        font-size: 18px;
        margin-left: auto
    }

    #section-intro {
        padding: 40px 0 90px
    }

    #section-intro .intro-category {
        gap: 12px
    }

    #section-intro .intro-category .item {
        height: 149px;
        padding: 26px 30px;
        border-radius: 20px;
        background: linear-gradient(90deg,#ff93451a,#d759004d)
    }

    #section-intro .intro-category .item .item-img>img {
        width: 180px;
        height: 140px;
        object-fit: cover
    }

    #section-intro .intro-category .item .item-txt .item-tit {
        font-size: 20px
    }

    #section-news {
        padding: 0 0 30px
    }

    #section-news .section-inner {
        gap: 20px;
        padding-inline:32px}

    #section-news .news-table {
        flex-direction: column;
        gap: 20px
    }

    #section-news .news-table .item {
        display: flex;
        width: 100%;
        box-shadow: unset;
        border-radius: 0;
        padding: 12px 0
    }

    #section-news .news-table .item .item-img {
        width: 100px;
        flex-shrink: 0;
        aspect-ratio: 1/1 auto;
        border-radius: 4px;
        overflow: hidden
    }

    #section-news .news-table .item .item-content {
        justify-content: center;
        padding: 5px 12px;
        width: 100%;
        gap: 8px
    }

    #section-news .news-table .item .item-content .item-info .info-source {
        font-size: 12px;
        color: #222
    }

    #section-news .news-table .item .item-content .item-info .info-source:after {
        display: none
    }

    #section-news .news-table .item .item-content .item-txt {
        font-size: 16px;
        text-overflow: ellipsis;
        overflow: hidden;
        word-break: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical
    }

    #section-news .news-table .item .item-content .item-info .info-date {
        display: none;
        font-size: 12px
    }

    #section-news .news-table .item .item-content>.info-date {
        font-size: 12px;
        font-weight: 500;
        color: #888
    }

    #media #media-list .news-table {
        flex-direction: column;
        gap: 20px
    }

    #media #media-list .news-table .item {
        width: 100%
    }

    .product-list .product-item {
        width: 100%;
        border-radius: 10px
    }

    .product-list .product-item .item-main {
        padding: 30px 20px 0;
        gap: 10px
    }

    .product-list .product-item .item-head {
        height: 31px
    }

    .product-list .product-item .item-head .head-icon {
        position: relative;
        display: inline-flex;
        align-items: center;
        height: 100%
    }

    .product-list .product-item .item-head .head-icon>img {
        position: absolute;
        top: 50%!important;
        left: 50%!important;
        transform: translate(-50%,-50%);
        max-height: 16px
    }

    .product-list .product-item .item-main .main-desc {
        padding-bottom: 12px;
        margin-bottom: 20px
    }

    .product-list .product-item .item-main .main-desc .desc-main_txt {
        font-size: 15px
    }

    .product-list .product-item .item-main .main-desc .desc-main_txt .head-icon {
        width: 30px;
        height: 30px
    }

    .product-list .product-item .item-main .main-desc .desc-additional_txt {
        margin-top: 10px;
        font-size: 18px
    }

    .product-list .product-item .item-main .main-desc .desc-additional_txt .additional_txt-row .row-desc,.product-list .product-item .item-main .main-desc .desc-additional_txt .additional_txt-row .row-tit {
        font-size: 18px
    }

    .product-list .product-item .item-main .main-desc .desc-main_txt .product-name {
        font-size: 22px
    }

    .product-list .product-item .item-main .main-desc .desc-main_txt .product-amount {
        font-size: 18px
    }

    .product-list .product-item .item-percentage {
        padding: 0 20px 30px;
        margin-top: auto
    }

    .product-list .product-item .item-percentage .percentage-txt .txt-left,.product-list .product-item .item-percentage .percentage-txt .txt-limit,.product-list .product-item .item-percentage .percentage-txt .txt-limit b,.product-list .product-item .item-percentage .percentage-txt .txt-right {
        font-size: 20px
    }

    .product-list .product-item .item-percentage .percentage-txt .txt-limit img {
        width: 18px
    }

    .product-list .product-item .item-percentage .percentage-bar .percentage-current {
        background-color: #d75900
    }

    .product-list .product-item .item-main .main-desc .desc-sub_txt {
        display: flex;
        flex-wrap: wrap;
        gap: 4px
    }

    .product-list .product-item .item-main .main-desc .desc-sub_txt .tag {
        background-color: #fff;
        border: 1px solid var(--color-primary);
        color: var(--color-primary);
        border-radius: 5px;
        font-size: 14px;
        padding: 2px 4px
    }

    .product-list .product-item .item-main .main-desc .desc-sub_txt .tag.best {
        background-color: var(--color-primary);
        border: 1px solid var(--color-primary);
        color: #fff
    }

    .product-item:after {
        transform: translate(37%,55%) rotate(42deg);
        height: 40px;
        font-size: 24px!important
    }

    #product-view .product-item:after {
        transform: translate(37%,74%) rotate(42deg);
        font-size: 16px
    }

    #product-view .product-purchase {
        padding: 55px 24px;
        margin-top: 20px
    }

    #product-view .product-purchase .purchase-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start
    }

    #product-view .product-purchase .purchase-header .purchase-header-title {
        font-size: 20px
    }

    #product-view .product-purchase .purchase-header .purchase-header-desc {
        color: #222
    }

    #product-view .product-purchase .purchase-content {
        margin-top: 16px;
        flex-direction: column;
        gap: 60px
    }

    #product-view .product-purchase .purchase-content .purchase-content-item {
        width: 100%;
        max-width: unset;
        gap: 12px
    }

    #product-view .product-purchase .purchase-content .purchase-content-item:nth-child(2) {
        flex-direction: row
    }

    #product-view .product-purchase .purchase-content .purchase-content-item:nth-child(2) .purchase-content-item-row {
        width: 50%
    }

    #product-view .product-purchase .purchase-content .purchase-content-item:nth-child(2) {
        flex-direction: column
    }

    #product-view .product-purchase .purchase-content .purchase-content-item:nth-child(2) .purchase-content-item-row {
        width: 100%
    }

    #product-view .product-purchase .purchase-content .purchase-content-item .purchase-content-item-row .purchase-content-item-row-label,#product-view .product-purchase .purchase-content .purchase-content-item .purchase-content-item-row .purchase-content-item-row-value {
        font-size: 18px
    }

    #product-view .product-purchase .purchase-content .purchase-content-item .purchase-content-item-row .purchase-content-item-row-value-button-point {
        padding: 3px 10px
    }

    #product-view .product-purchase .purchase-content .purchase-content-item .purchase-content-item-row .purchase-content-item-row-sub {
        bottom: -20px;
        font-size: 12px
    }

    #product-view .product-purchase .purchase-content .purchase-content-item .purchase-content-item-row input {
        font-size: 18px
    }

    #product-view .product-purchase .purchase-button {
        margin-top: 68px
    }

    #product-view .product-purchase .purchase-button .purchase-button-button {
        height: 46px
    }

    #product-view .product-purchase .purchase-result {
        gap: 10px;
        margin-top: 30px
    }

    #product-view .product-purchase .purchase-result .purchase-result-item {
        font-size: 20px;
        line-height: 200%
    }

    #product-view .product-purchase .purchase-result .purchase-result-item .purchase-result-item-value>input {
        width: 142px;
        margin-left: 0;
        font-size: 20px
    }

    #product-view .product-purchase .purchase-result {
        text-align: left
    }

    #product-view .deposit-request {
        padding: 0
    }

    #product-view .deposit-request .deposit-request-account .deposit-request-account-txt {
        font-size: 18px;
        text-align: center
    }

    #product-view .deposit-request .deposit-request-account .deposit-request-account-input {
        gap: 20px
    }

    #product-view .deposit-request .deposit-request-account .deposit-request-account-input .deposit-request-account-input-row {
        justify-content: flex-end;
        width: unset
    }

    #product-view .deposit-request .deposit-request-account .deposit-request-account-input .deposit-request-account-input-row .deposit-request-account-input-row-label {
        flex-shrink: 0
    }

    #product-view .deposit-request .deposit-request-account .deposit-request-account-input .deposit-request-account-input-row .deposit-request-account-input-row-value>input {
        max-width: 120px;
        padding-inline:10px;font-size: 20px
    }

    #product-view .deposit-request .deposit-request-account .deposit-request-account-input:nth-child(3) {
        flex-direction: column;
        margin-top: 30px
    }

    #product-view .deposit-request .deposit-request-account .deposit-request-account-input:nth-child(3) .deposit-request-account-input-row-label {
        width: 90px;
        text-align: right
    }

    #product-view .deposit-request .deposit-request-account .deposit-request-account-input:nth-child(3) .deposit-request-account-input-row .deposit-request-account-input-row-value>input {
        max-width: 150px
    }

    #incomes .my-grade {
        position: static;
        transform: unset;
        margin-top: 10px
    }

    .my-grade .grade-img {
        width: 100px
    }

    .my-grade .grade-info .info-desc>span:nth-child(2) {
        font-size: 12px
    }

    #incomes #incomes-summary .summary {
        justify-content: center
    }

    #incomes #incomes-summary .summary .summary-content {
        width: 100%;
        gap: 8px
    }

    #incomes #incomes-summary .summary .summary-content .summary-item {
        width: calc((100% / 2) - 4px);
        padding: 20px
    }

    #incomes #incomes-summary .summary .summary-content .summary-item:nth-child(5) {
        width: 100%
    }

    #incomes #incomes-summary .summary .summary-content .summary-item .item-amount>span,#incomes #incomes-summary .summary .summary-content .summary-item .item-amount>span>b,#incomes #incomes-summary .summary .summary-content .summary-item .item-tit>span {
        font-size: 18px
    }

    #incomes #incomes-summary .summary .summary-content .summary-item .item-desc>p {
        font-size: 14px
    }

    #section-description {
        padding: 50px 0
    }

    #section-description .section-inner {
        padding-inline:8px}

    #section-description .txt-list .txt-item {
        width: 100%
    }

    #section-description .txt-list .txt-item .item-head {
        width: 100%;
        word-break: keep-all
    }

    #section-description .txt-list .txt-item .item-img {
        top: unset;
        bottom: 0;
        transform: unset;
        max-width: 80px;
        right: 10px
    }

    #section-description .txt-list .txt-item:nth-child(-n+2) {
        padding: 30px
    }

    #section-description .txt-list .txt-item.active .item-img {
        display: none
    }

    #section-description .txt-list .txt-item .item-head>span {
        font-size: 22px
    }

    #section-description .txt-list .txt-item .item-desc>p {
        font-size: 14px
    }

    #section-description .txt-list .txt-item .item-toggle {
        padding-top: 60px
    }

    #section-description .txt-list .txt-item.active .item-toggle {
        padding-top: 30px
    }

    .sub-page #section-video {
        padding: 50px 0 0
    }

    .sub-page #section-banner .section-head .head-tit {
        font-size: 20px;
        font-weight: 600;
        color: #fff
    }

    .sub-page #section-banner .section-head .head-sub {
        font-size: 16px;
        font-weight: 500;
        word-break: keep-all;
        color: #fff
    }

    .sub-page #section-banner .section-head .head-container {
        padding-inline:16px}

    .sub-page .section-head .head-container {
        padding: 30px 16px
    }

    .sub-page .section-head .head-tit {
        font-size: 20px;
        font-weight: 600;
        color: #222
    }

    .sub-page .section-head .head-sub {
        font-size: 16px;
        font-weight: 500;
        word-break: keep-all;
        color: #222
    }

    .sub-page .section-head .head-sub>em:before {
        background-color: #d75900b3
    }

    .sub-page .table-option,.sub-page .table-option .tab-buttons {
        width: 100%
    }

    .sub-page .table-option .tab-buttons .btn-tab {
        padding: 10px 18px;
        font-size: 18px;
        flex: 1 1;
        white-space: nowrap
    }

    .sub-page #section-banner .section-head {
        height: 235px!important
    }

    .sub-page #section-banner .section-head .head-container {
        height: 100%!important
    }

    .sub-page .product-detail-back {
        display: inline-flex;
        justify-content: flex-start;
        align-items: center;
        height: 36px
    }

    .sub-page .product-detail-back-button {
        position: relative;
        width: 24px;
        height: 16px
    }

    .sub-page .product-detail-back-button>img {
        object-fit: contain
    }

    .sub-page .table-option .table-buttons .btn-table {
        flex-shrink: 0;
        margin-left: 10px;
        margin-right: 16px;
        padding: 10px 18px
    }

    #about #section-banner .banner-slider {
        background: url(/images/about/intro-banner-mo.png) 50%/cover no-repeat;
        height: unset;
        aspect-ratio: 360/276 auto
    }

    #about #section-banner .banner-slider .item .item-txt {
        font-size: 24px;
        font-weight: 600;
        color: #fff
    }

    #about #section-banner .banner-slider .item .item-sub {
        font-size: 16px;
        font-weight: 500;
        color: #fff
    }

    .voucher-list .voucher-item {
        width: 100%
    }

    .voucher-list .voucher-item .item-main {
        padding: 20px 15px 38px
    }

    #product_list .product-list {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 10px 4px;
        padding: 30px 0 100px;
        margin-top: 0
    }

    #product_list .product-list .product-item {
        display: flex;
        flex-direction: column;
        width: 100%;
        border-radius: 30px
    }

    #product-view .product-detail-title {
        padding-bottom: 30px
    }

    #product-view {
        padding: 0 0 100px
    }

    #product-view .product-detail-title>h1 {
        font-size: 20px;
        font-weight: 600
    }

    #product-view .product-item {
        padding: 0;
        gap: 0;
        border-radius: 20px
    }

    #product-view .product-item .item-head {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #eee;
        width: 100%;
        height: 40px
    }

    #product-view .product-item .item-head .head-icon {
        position: relative;
        width: 115px;
        height: 20px
    }

    #product-view .product-item .item-main {
        width: calc(100% - 32px);
        margin: 20px 0
    }

    #product-view .product-item .item-main .main-img {
        width: 100%
    }

    #product-view .product-item .item-main .main-img>img {
        object-fit: contain
    }

    #product-view .product-item .item-content {
        padding: 0 16px 30px
    }

    #product-view .product-item .item-content .main-desc {
        padding-bottom: 30px
    }

    #product-view .product-item .item-content .main-desc .desc-main_txt {
        font-size: 18px;
        font-weight: 600
    }

    #product-view .product-item .item-content .main-desc .desc-additional_info {
        margin-top: 8px
    }

    #product-view .product-item .item-content .main-desc .desc-additional_info .desc-additional_txt {
        font-size: 16px;
        color: #222;
        font-weight: 500
    }

    #product-view .product-item .item-content .main-desc .desc-additional_info .desc-additional_txt:after,#product-view .product-item .item-content .main-desc .desc-additional_info .desc-sub_txt {
        display: none
    }

    #product-view .product-item .item-content .item-percentage {
        padding: 0;
        border-top: unset
    }

    #product-view .product-item .item-content .item-percentage .percentage-txt .txt-left,#product-view .product-item .item-content .item-percentage .percentage-txt .txt-right {
        font-size: 16px
    }

    #product-view .product-item .item-content .desc-tag {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 12px
    }

    #product-view .product-item .item-content .desc-tag .tag {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #fff;
        font-size: 14px;
        font-weight: 500;
        color: var(--color-primary);
        border: 1px solid var(--color-primary);
        border-radius: 5px;
        padding: 4px 10px
    }

    #product-view .deposit-request .deposit-request-step .deposit-request-step-item .deposit-request-step-item-title {
        font-size: 18px
    }

    #form.call-request .table-option {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 50px
    }

    #form .inquiry-form {
        padding-bottom: 40px
    }

    #form .inquiry-form .form-content {
        display: none;
        padding: 30px 0 0
    }

    #form .inquiry-form .form-content.active {
        display: block
    }

    #form .inquiry-form .form-content .form-head .head-txt {
        font-size: 24px;
        font-weight: 600
    }

    #form .inquiry-form .form-content .form-head .head-sub {
        margin-top: 12px
    }

    #form .inquiry-form .form-wrapper .form-item,#form .item-head {
        flex-direction: column
    }

    #form .item-head {
        align-items: flex-start;
        gap: 12px
    }

    #form .item-head .head-txt {
        font-size: 26px
    }

    #form .item-head .head-more {
        font-size: 18px;
        gap: 0
    }

    #form .inquiry-form .form-wrapper .form-item .item-tit>span {
        font-size: 20px
    }

    #form .inquiry-form .form-wrapper .form-item .item-content>input[type=text] {
        font-size: 18px;
        padding-inline:16px}

    #form .inquiry-form .form-wrapper .form-item .item-content>textarea {
        font-size: 18px
    }

    #form .inquiry-form .form-wrapper .form-item .item-content .file-txt {
        font-size: 14px
    }

    #form .inquiry-form .form-buttons .btn-form {
        height: 50px
    }

    #review .section .section-head .head-tit {
        font-size: 26px
    }

    #review .section .section-head .head-sub {
        font-size: 18px
    }

    #review #review-list .item-option {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px
    }

    #review #review-list .item-option .sort-wrapper .option-sort {
        gap: 20px
    }

    #review #review-list .item-option .sort-wrapper .option-sort .btn-sort:not(:last-child):after {
        right: -10px
    }

    #review #review-list .item-option .option-filter {
        width: 100%
    }

    #review #review-list .item-option .option-filter .btn-filter {
        flex: 1 1;
        word-break: keep-all;
        padding-inline:0}

    #review #section-other-invest {
        padding: 20px 0 64px
    }

    #review #section-other-invest .section-head {
        padding-inline:16px}

    #review #section-other-invest .section-inner {
        width: calc(100% + 32px);
        margin-inline:-16px}

    #review #section-other-invest .section-inner .section-content {
        flex-wrap: nowrap;
        overflow: auto;
        padding: 0 16px 16px
    }

    #review #section-other-invest .section-inner .section-content::-webkit-scrollbar {
        display: none
    }

    #review #section-other-invest .other-invest-item {
        width: 290px;
        flex-shrink: 0
    }

    #review #section-other-invest .other-invest-item:first-child {
        order: 1
    }

    #review #section-other-invest .other-invest-item:nth-child(2) {
        order: 2
    }

    #review #section-other-invest .other-invest-item:nth-child(3) {
        order: 3
    }

    #review #section-other-invest .other-invest-item:nth-child(4) {
        order: 4
    }

    #event #event-list .item-list .item {
        width: 100%
    }

    #media .section-head .head-container {
        padding: 30px 0
    }

    #media .section-head .head-container .head-tit {
        font-size: 20px
    }

    #notice #notification-list .item-list {
        margin-top: 30px
    }

    #notice .table-option .tab-buttons {
        width: unset
    }

    #notice .table-option .tab-buttons .btn-tab {
        width: unset;
        flex: unset;
        padding: 10px 18px
    }

    #notice #notice-list .item-list.notice-table .accordian .details-head .head-txt:first-child {
        width: 15%
    }

    #notice #notice-list .item-list.notice-table .accordian .details-head .head-txt:nth-child(2) {
        width: 63%
    }

    #notice #notice-list .item-list.notice-table .accordian .details-head .head-txt:nth-child(3) {
        width: 22%
    }

    #notice #notice-list .item-list.notice-table .accordian .details .summary .summary-num {
        width: 15%
    }

    #notice #notice-list .item-list.notice-table .accordian .details .summary .summary-tit {
        width: 63%
    }

    #notice #notice-list .item-list.notice-table .accordian .details .summary .summary-date {
        width: 22%
    }

    #notice #notice-list .item-list .accordian .details .summary .summary-tag .btn-tag {
        font-size: 14px
    }

    #notice #notification-list .item-list .accordian .details-head .head-txt:first-child {
        width: 11%
    }

    #notice #notification-list .item-list .accordian .details-head .head-txt:nth-child(2) {
        display: none
    }

    #notice #notification-list .item-list .accordian .details-head .head-txt:nth-child(3) {
        width: 65%
    }

    #notice #notification-list .item-list .accordian .details-head .head-txt:nth-child(4) {
        width: 20%
    }

    #notice #notification-list .item-list .accordian .details-head .head-txt:nth-child(5) {
        display: none
    }

    #notice #notification-list .item-list .accordian .details .summary .summary-checkbox {
        width: 11%;
        align-items: flex-start
    }

    #notice #notification-list .item-list .accordian .details .summary .summary-num {
        display: none
    }

    #notice #notification-list .item-list .accordian .details .summary .summary-tit {
        width: 65%;
        word-break: break-word
    }

    #notice #notification-list .item-list .accordian .details .summary .summary-tag {
        width: 20%
    }

    #notice #notification-list .item-list .accordian .details .summary .summary-date {
        display: none
    }

    #notice #notification-list .item-list .accordian .details .summary .summary-tag .btn-tag {
        font-size: 14px;
        padding: 4px 12px
    }

    #inquiry .item-head {
        padding: 50px 0 30px
    }

    #inquiry .item-head .head-txt {
        font-size: 20px
    }

    #inquiry .item-head .head-more {
        font-size: 16px;
        gap: 0
    }

    #inquiry .item-list .accordian .details-head .head-txt:first-child {
        width: 15%
    }

    #inquiry .item-list .accordian .details-head .head-txt:nth-child(2) {
        width: 60%
    }

    #inquiry .item-list .accordian .details-head .head-txt:nth-child(3) {
        width: 25%
    }

    #inquiry .item-list .accordian .details-head .head-txt:nth-child(4) {
        display: none
    }

    #inquiry .item-list .accordian .details .summary .summary-num {
        width: 15%
    }

    #inquiry .item-list .accordian .details .summary .summary-tit {
        width: 60%;
        font-size: 16px;
        word-break: break-word
    }

    #inquiry .item-list .accordian .details .summary .summary-status {
        width: 25%
    }

    #inquiry .item-list .accordian .details .summary .summary-status .btn-status {
        padding: 4px 12px;
        font-size: 14px
    }

    #inquiry .item-list .accordian .details .summary .summary-date {
        display: none
    }

    #event #event-list .item-list .item .item-detail .detail-txt .item-tit {
        order: 2
    }

    #event #event-list .item-list .item .item-detail .detail-txt .item-date {
        order: 1
    }

    .inquire-container .inquire-detail .inquire-detail-head {
        padding: 0;
        gap: 8px;
        flex-direction: column
    }

    .inquire-container .inquire-detail .inquire-detail-content {
        margin-top: 50px;
        padding: 0
    }

    #login #login-form {
        padding: 30px 16px
    }

    #login #login-form .form-container form {
        padding: 45px 12px
    }

    #login #login-form .form-buttons .remember-account .checkbox label span {
        font-size: 16px;
        font-weight: 500
    }

    #login #login-form .form-buttons .remember-account .forgot-password-list .forgot-password {
        font-size: 16px
    }

    #login #login-form .form-container {
        padding: 40px 30px
    }

    #login #login-form .form-container .account-result .result-text {
        margin-top: 30px
    }

    #login #login-form .form-container {
        padding: 45px 12px
    }

    #login #login-form .form-container .account-result .result-text>span,#login #login-form .form-container .account-result .result-text>span>strong {
        font-size: 24px
    }

    #join #join-form {
        padding: 30px 16px
    }

    .form-container {
        margin-top: 0;
        gap: 0
    }

    .form-container .item-wrapper {
        padding: 25px 0
    }

    .form-container .form-head .head-tit {
        font-size: 26px
    }

    .form-container .form-item {
        flex-direction: column;
        gap: 6px
    }

    .form-container .form-item .form-label {
        width: 100%;
        height: unset
    }

    .form-container .form-item:not(:last-child) {
        margin-bottom: 12px
    }

    .form-container .form-item .form-content .form-content-row .form-element,.form-container .form-item .form-content .form-content-row .form-element>input {
        min-height: 50px
    }

    .form-container .form-item .form-content .form-content-row .form-content-button {
        height: 50px
    }

    .form-select__control {
        min-height: 50px!important
    }

    #mypage #mypage-form {
        padding: 50px 16px
    }

    main .section .item-list .no-data-message>p {
        font-size: 20px;
        font-weight: 600;
        color: #888
    }

    .call-request #section-banner .section-head {
        height: 317px;
        background: url(/images/review/banner-mo.png) 50%/cover no-repeat
    }

    #product_list #section-banner .section-head {
        height: 317px;
        background: url(/images/product/banner-mo.png) 50%/cover no-repeat
    }

    #review #section-banner .section-head {
        height: 317px;
        background: url(/images/review/banner2-mo.png) 50%/cover no-repeat
    }

    #incomes #section-banner .section-head {
        height: 255px;
        background: url(/images/incomes/banner-mo.png) 50%/cover no-repeat
    }

    #event #section-banner .section-head {
        height: 255px;
        background: url(/images/event/banner-mo.png) 50%/cover no-repeat
    }

    .view-pc {
        display: none!important
    }

    .view-mo {
        display: block!important
    }

    .custom-select__menu-list {
        max-height: 180px!important
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000
}

.grade-modal {
    position: relative;
    max-width: 90vw;
    max-height: 80vh;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
    animation: modalFadeIn .3s ease;
    padding: 60px 120px
}

.grade-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.grade-modal .modal-title {
    font-size: 26px;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0
}

.grade-modal .modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color .2s ease;
    position: absolute;
    top: 8px;
    right: 8px
}

.grade-modal .modal-close:hover {
    background-color: #f5f5f5
}

.grade-modal .modal-content {
    overflow-y: auto;
    max-height: calc(80vh - 120px)
}

.grade-modal .grade-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 45px
}

.grade-modal .grade-item {
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all .2s ease
}

.grade-modal .grade-icon {
    position: relative;
    width: 90px;
    aspect-ratio: 90/70 auto
}

.grade-modal .grade-icon>img {
    object-fit: contain
}

.grade-modal .grade-details {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.grade-modal .grade-name {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 8px
}

.grade-modal .grade-benefit,.grade-modal .grade-condition {
    font-size: 12px;
    font-weight: 500;
    color: #888;
    line-height: 1.3
}

.grade-section {
    position: relative;
    background-color: #f8f8f8;
    padding: 20px 30px 85px;
    border-radius: 10px
}

.grade-section .grade-display {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px
}

.grade-section .grade-icon-container {
    position: relative;
    width: 90px;
    aspect-ratio: 81/70 auto;
    flex-shrink: 0
}

.grade-section .grade-icon-container img {
    object-fit: contain
}

.grade-section .grade-info {
    flex: 1 1
}

.grade-section .grade-name {
    font-size: 20px;
    font-weight: 600
}

.grade-section .grade-description {
    font-size: 18px;
    color: #888;
    font-weight: 500;
    line-height: 130%
}

.grade-section .grade-benefit {
    font-size: 16px;
    color: #888;
    font-weight: 500;
    line-height: 130%
}

.grade-section .btn-grade-all {
    position: absolute;
    top: 48px;
    right: 30px;
    background: none;
    border: 1px solid #888;
    border-radius: 6px;
    padding: 10px 38px;
    font-size: 20px;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    white-space: nowrap;
    margin-top: auto;
    transition: all .3s ease
}

.grade-section .btn-grade-all:hover {
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary)
}

.grade-section .next-grade-info {
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    line-height: 130%;
    color: #666;
    margin-bottom: 50px
}

.grade-section .grade-lines {
    position: relative;
    padding-inline:20px}

.grade-section .grade-progress-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.grade-section .progress-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    height: 8px;
    background-color: #d9d9d9;
    border-radius: 100px;
    transform: translateY(-50%);
    z-index: 1
}

.grade-section .progress-line-active {
    position: absolute;
    top: 50%;
    left: 20px;
    height: 2px;
    background-color: transparent;
    transform: translateY(-50%);
    z-index: 2;
    transition: width .3s ease
}

.grade-section .grade-progress-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
    position: relative
}

.grade-section .progress-point {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #d9d9d9;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease
}

.grade-section .grade-progress-item.active .progress-point {
    width: 20px;
    height: 20px
}

.grade-section .grade-progress-item.empty {
    visibility: hidden
}

.grade-section .grade-progress-item.empty .progress-point {
    background-color: transparent;
    border: 2px dashed #d9d9d9
}

.grade-section .grade-name-small {
    font-size: 0;
    color: #fff;
    font-weight: 500;
    display: none
}

.grade-section .grade-progress-item.active .grade-name-small {
    display: block
}

.grade-section .grade-labels {
    position: absolute;
    top: 50%;
    left: -10px;
    right: -10px;
    width: calc(100% + 20px);
    display: flex;
    justify-content: space-between;
    padding: 0
}

.grade-section .grade-label {
    position: relative;
    top: -55px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    font-size: 12px;
    font-weight: 500;
    color: #888;
    line-height: 130%;
    text-align: center;
    padding-inline:10px}

.grade-section .grade-label.current {
    top: 20px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    padding-inline:0}

@media (max-width: 768px) {
    .grade-modal {
        width:90vw;
        max-height: 85vh;
        padding: 45px 20px 0;
        border-radius: 5px;
        overflow-y: auto
    }

    .grade-modal .modal-header {
        justify-content: center;
        text-align: center
    }

    .grade-modal .modal-title {
        font-size: 12px;
        font-weight: 500;
        color: #888
    }

    .grade-modal .grade-list {
        flex-direction: row;
        padding-bottom: 30px;
        margin-top: 30px;
        gap: 20px 0;
        flex-wrap: wrap
    }

    .grade-modal .modal-content {
        overflow-y: unset;
        max-height: unset
    }

    .grade-modal .grade-item {
        width: calc(100% / 2);
        flex-direction: column;
        gap: 0
    }

    .grade-modal .grade-details {
        align-items: center;
        text-align: center
    }

    .grade-modal .grade-name {
        font-size: 16px
    }

    .grade-modal .grade-benefit,.grade-modal .grade-condition {
        font-size: 13px
    }

    .grade-section {
        padding: 20px 12px 50px
    }

    .grade-section .grade-labels {
        left: -20px;
        right: -20px;
        width: calc(100% + 40px)
    }

    .grade-section .grade-label.current {
        width: auto;
        white-space: nowrap
    }

    .grade-section .grade-label:first-child.current {
        left: 20px;
        text-align: left;
        justify-content: flex-start
    }

    .grade-section .grade-label:last-child.current {
        right: 20px;
        text-align: right;
        justify-content: flex-end
    }

    .grade-section .next-grade-info {
        margin-bottom: 20px
    }

    .grade-section .grade-info {
        text-align: left
    }

    .grade-section .grade-display {
        flex-wrap: wrap;
        text-align: center;
        gap: 12px
    }

    .grade-section .btn-grade-all {
        position: static;
        width: 100%;
        padding: 6px 0;
        font-size: 16px;
        margin-bottom: 30px
    }

    .grade-section .grade-icon-container {
        width: 83px
    }

    .grade-section .grade-name {
        font-size: 20px
    }

    .grade-section .grade-lines {
        padding-inline:0}

    .grade-section .grade-progress-container {
        margin: 0
    }

    .grade-section .progress-point {
        width: 12px;
        height: 12px
    }

    .grade-section .grade-progress-item.active .progress-point {
        width: 15px;
        height: 15px
    }

    .grade-section .grade-label {
        width: calc(100% / 6);
        font-size: 0
    }

    .grade-section .grade-label.current {
        top: 16px;
        font-size: 14px
    }

    .grade-section .progress-line {
        height: 6px
    }
}
* {
    margin: 0;
    padding: 0
}

a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
    display: block
}

body {
    line-height: 1;
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif
}

ol,ul {
    list-style: none
}

blockquote,q {
    quotes: none
}

blockquote:after,blockquote:before,q:after,q:before {
    content: "";
    content: none
}

table {
    border-spacing: 0
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer
}

button,input,select,textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none
}

*,:after,:before {
    box-sizing: border-box
}

:focus-visible {
    outline: 2px solid #007bff;
    outline-offset: .2rem
}

:focus:not(:focus-visible) {
    outline: none
}

:focus {
    outline: none
}

img,video {
    max-width: 100%;
    vertical-align: bottom
}

button {
    cursor: pointer;
    background-color: transparent
}

input:-webkit-autofill {
    box-shadow: inset 0 0 0 1000px #fff
}

:root {
    --font-pretendard: var(--font-pretendard),sans-serif;
    --font-gmarket-sans: var(--font-gmarket-sans),sans-serif;
    --color-primary: #FF6A00;
    --color-secondary: #9c63f5;
    --color-third: #7eaffa;
    --color-accent: #f59c42;
    --color-alert: #fa2d2d;
    --color-background: #f5f5f5;
    --color-text: #222;
    --color-text-light: #666;
    --color-border: #e6e6e6;
    --text-gradient: linear-gradient(120deg,#72ab2b,#00581f);
    --button-gradient: linear-gradient(180deg,#234fe3,#0d02b8);
    --text_bg-gradient: linear-gradient(180deg,#0b0b0b,#0f08bb);
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --transition-fast: 0.2s;
    --transition-medium: 0.5s;
    --transition-slow: 1s
}

.gradient-text {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.gradient-button {
    background: var(--button-gradient);
    color: #fff;
    border: none;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: background var(--transition-fast) ease-in-out
}

.gradient-button:hover {
    background: linear-gradient(180deg,#2a5cf0,#0e03c6)
}

.gradient-button:disabled {
    background: var(--color-border);
    color: var(--color-text-light);
    cursor: not-allowed;
    opacity: .6
}

.scroll-lock {
    overflow: hidden
}

.container {
    width: 100%;
    max-width: 1240px;
    padding-inline:20px;margin-inline:auto}

#main .container {
    max-width: 1320px
}

@media (max-width: 1000px) {
    .container {
        padding-inline:24px
    }
}

@media (max-width: 480px) {
    .container {
        padding-inline:16px
    }
}

html {
    color: var(--color-text)
}

body,html {
    min-height: 100vh
}

body {
    display: flex;
    flex-direction: column
}

body,html {
    font-family: var(--font-pretendard),sans-serif
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #fff;
    border-bottom: 1px solid #e6e6e6;
    z-index: 100
}

header .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%
}

header .header .logo>a {
    display: inline-block;
    width: 140px
}

header .header .logo>a>img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

header .header .gnb {
    height: 100%
}

header .header .gnb>ul {
    display: flex;
    align-items: center;
    gap: 0;
    height: 100%
}

header .header .gnb>ul>li {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding-inline:20px}

header .header .gnb>ul>li>a {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -.45px
}

header .header .gnb>ul>li.active>a {
    color: var(--color-primary)
}

header .header .gnb>ul>li.event-special>a:after {
    content: "";
    position: absolute;
    top: 0;
    right: -6px;
    width: 4px;
    height: 4px;
    background-color: red;
    border-radius: 50%
}

header .header .gnb>ul>li .btn-depth {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -.45px;
    cursor: pointer
}

header .header .gnb>ul>li .sub_menu-box {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%,-10px);
    width: 150px;
    background-color: #fff;
    box-shadow: 4px 4px 12px rgba(0,0,0,.16);
    border-radius: 12px;
    padding: 12px 0;
    display: none
}

header .header .gnb>ul>li .sub_menu-box.active {
    display: block
}

header .header .gnb>ul>li .sub_menu-box>ul {
    display: flex;
    flex-direction: column;
    gap: 8px
}

header .header .gnb>ul>li .sub_menu-box>ul>li {
    text-align: center;
    padding: 8px 0
}

header .header .gnb>ul>li .sub_menu-box>ul>li>a {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -.45px
}

header .header .log-info {
    display: flex;
    align-items: center;
    margin-left: 20px
}

header .header .log-info .bell {
    margin-right: 10px
}

header .header .log-info .bell .alert {
    position: relative;
    display: inline-block;
    padding-inline:20px;font-size: 16px;
    font-weight: 500
}

header .header .log-info .bell .alert.active:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    width: 7px;
    height: 7px;
    background-color: #ff6c06;
    border-radius: 50%
}

header .header .log-info .logged-out {
    display: flex;
    align-items: center
}

header .header .log-info .logged-out>a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -.4px;
    height: 33px;
    padding-inline:20px;border-radius: 18px;
    background: #fff
}

header .header .log-info .logged-out>a:last-child {
    padding-inline:32px;border-radius: 18px;
    background: var(--color-primary);
    color: #fff
}

header .header .log-info .logged-in {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0
}

header .header .log-info .logged-in .logged-in-txt {
    justify-content: center;
    height: 36px;
    padding-inline:20px;border-radius: 18px;
    background: var(--color-primary);
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -.4px
}

header .header .log-info .logged-in .logged-in-icon,header .header .log-info .logged-in .logged-in-txt {
    display: inline-flex;
    align-items: center;
    cursor: pointer
}

header .header .log-info .logged-in .logged-box {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%,10px);
    width: 150px;
    background-color: #fff;
    box-shadow: 4px 4px 12px rgba(0,0,0,.16);
    border-radius: 12px;
    padding: 12px 0;
    display: none
}

header .header .log-info .logged-in .logged-box.active {
    display: block
}

header .header .log-info .logged-in .logged-box>ul {
    display: flex;
    flex-direction: column;
    gap: 8px
}

header .header .log-info .logged-in .logged-box>ul>li {
    text-align: center;
    padding: 8px 0
}

header .header .log-info .logged-in .logged-box>ul>li>a {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -.45px
}

#sidebar,header .header #btn-hamburger,header .header .mobile-only {
    display: none
}

main {
    margin-top: 70px;
    contain: paint
}

footer {
    margin-top: auto;
    background-color: var(--color-primary);
    padding: 84px 0
}

footer .footer .footer-top {
    display: flex
}

footer .footer .footer-top .corp-details {
    display: flex;
    gap: 55px
}

footer .footer .footer-top .corp-details .corp-info {
    display: flex;
    align-items: center;
    gap: 20px
}

footer .footer .footer-top .corp-details .corp-info .corp-logo {
    margin-right: 20px
}

footer .footer .footer-top .corp-details .corp-info .corp-logo .logo-img>img.img-pc {
    display: block
}

footer .footer .footer-top .corp-details .corp-info .corp-logo .logo-img>img.img-mo {
    display: none
}

footer .footer .footer-top .corp-details .corp-info .info-name>span {
    font-size: 30px;
    font-weight: 900;
    color: #fff;
    line-height: 100%
}

footer .footer .footer-top .corp-details .corp-info .info-detail {
    display: flex;
    flex-direction: column;
    gap: 5px;
    max-width: 370px
}

footer .footer .footer-top .corp-details .corp-info .info-detail .item {
    display: inline-flex;
    align-items: flex-start;
    gap: 2px
}

footer .footer .footer-top .corp-details .corp-info .info-detail .item.contact-info {
    flex-direction: column;
    margin-bottom: 10px
}

footer .footer .footer-top .corp-details .corp-info .info-detail .item .item-tit {
    flex-shrink: 0;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 130%;
    opacity: .85
}

footer .footer .footer-top .corp-details .corp-info .info-detail .item .item-desc {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 130%
}

footer .footer .footer-top .corp-details .corp-info .info-detail .item .item-desc em {
    display: block;
    font-size: 34px;
    font-weight: 600;
    line-height: 130%
}

footer .footer .footer-top .corp-details .corp-info .info-detail .item .item-desc:nth-child(2) {
    margin-right: 8px
}

footer .footer .footer-top .corp-details .corp-info .info-detail .item .item-desc .btn-biz_info {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 18px;
    border: 1px solid hsla(0,0%,100%,.6);
    border-radius: 3px;
    padding: 2px 10px;
    font-size: 12px;
    font-weight: 400;
    color: #eee;
    transition: all .15s
}

footer .footer .footer-top .corp-details .corp-info .info-detail .item .item-desc .btn-biz_info:hover {
    background-color: #fff;
    color: #222;
    border-color: #fff
}

footer .footer .footer-top .corp-details .corp-sns {
    display: flex;
    flex-direction: column;
    gap: 36px
}

footer .footer .footer-top .corp-details .corp-sns .sns-list {
    display: flex;
    align-items: center;
    gap: 8px
}

footer .footer .footer-top .corp-details .corp-sns .sns-list .item {
    display: inline-flex;
    justify-content: center;
    align-items: center
}

footer .footer .footer-top .corp-details .corp-sns .sns-list .item>img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

footer .footer .footer-top .corp-details .corp-sns .sns-list .item>img.img-default {
    display: block
}

footer .footer .footer-top .corp-details .corp-sns .sns-list .item:hover>img.img-default,footer .footer .footer-top .corp-details .corp-sns .sns-list .item>img.img-active {
    display: none
}

footer .footer .footer-top .corp-details .corp-sns .sns-list .item:hover>img.img-active {
    display: block
}

@media (max-width: 1024px) {
    header {
        height:62px;
        border-bottom: 1px solid transparent
    }

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

    header .header .logo {
        margin-right: 0;
        display: none
    }

    header .header .logo>a {
        width: 140px
    }

    header .header .gnb {
        display: none
    }

    header .header .log-info {
        margin-left: auto;
        display: none
    }

    header .header .log-info .logged-out {
        display: none
    }

    header .header .log-info .bell {
        margin-right: 8px
    }

    header .header .log-info .bell .alert {
        width: 16px;
        height: 16px
    }

    header .header .log-info .logged-in {
        gap: 0
    }

    header .header .log-info .logged-in .logged-in-txt {
        padding-inline:12px;font-size: 14px
    }

    header .header .mobile-only {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 100%
    }

    header .header .mobile-only .mobile-mypage {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
        gap: 0;
        margin-right: 0
    }

    header .header .mobile-only .logo {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        display: block;
        width: 135px;
        height: 27px
    }

    header .header .mobile-only .logo img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

    header .header .mobile-only .mobile-mypage button a {
        font-size: 14px;
        font-weight: 600
    }

    header .header .mobile-only .mobile-mypage a {
        position: relative;
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        font-size: 12px;
        font-weight: 500
    }

    header .header .mobile-only .mobile-mypage a:not(:last-child):after {
        content: "";
        position: absolute;
        top: 50%;
        right: -8px;
        transform: translateY(-50%);
        width: 1px;
        height: 12px;
        background-color: #333
    }

    header .header #btn-hamburger,header .header #btn-hamburger-close {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        width: 32px;
        cursor: pointer;
        font-size: 12px;
        font-weight: 500
    }

    #sidebar {
        position: fixed;
        top: 62px;
        right: 0;
        transform: translateX(100%);
        display: block;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        transition: transform .15s,opacity .15s;
        z-index: 110;
        opacity: 0
    }

    #sidebar.active {
        transform: translateX(0);
        opacity: 1
    }

    #sidebar .sidebar-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
        width: 100%;
        padding: 50px 24px
    }

    #sidebar .sidebar-head>span {
        font-size: 18px;
        font-weight: 400;
        letter-spacing: -.45px;
        color: #fff
    }

    #sidebar .sidebar-head>a {
        position: relative;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        border: 2px solid var(--color-primary);
        width: 100%;
        font-size: 18px;
        font-weight: 600;
        letter-spacing: -.45px;
        height: 53px;
        border-radius: 100px
    }

    #sidebar .sidebar-head>a.btn-login {
        background-color: var(--color-primary);
        border-color: var(--color-primary);
        color: #fff
    }

    #sidebar .sidebar-head>a.btn-signup {
        background-color: #fff;
        border-color: var(--color-primary);
        color: var(--color-primary)
    }

    #sidebar .sidebar-head>a .logged-in-txt {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        padding-inline:20px;border-radius: 18px;
        font-size: 18px;
        font-weight: 600;
        cursor: pointer
    }

    #sidebar .sidebar-head>a .logged-box {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translate(-50%,10px);
        width: 150px;
        background-color: #fff;
        box-shadow: 4px 4px 12px rgba(0,0,0,.16);
        border-radius: 12px;
        padding: 12px 0;
        display: none
    }

    #sidebar .sidebar-head>a .logged-box.active {
        display: block;
        z-index: 1
    }

    #sidebar .sidebar-head>a .logged-box>ul {
        display: flex;
        flex-direction: column;
        gap: 8px
    }

    #sidebar .sidebar-head>a .logged-box>ul>li {
        text-align: center;
        padding: 8px 0
    }

    #sidebar .sidebar-head>a .logged-box>ul>li>a {
        font-size: 16px;
        font-weight: 700;
        letter-spacing: -.45px;
        color: #222
    }

    #sidebar .sidebar-head #btn-close_sidebar {
        width: 25px;
        height: 24px;
        background: url(/images/icons/close_white.svg) 50%/contain no-repeat
    }

    #sidebar .sidebar-content .gsb>ul {
        display: flex;
        flex-wrap: wrap
    }

    #sidebar .sidebar-content .gsb>ul>li {
        position: relative;
        display: inline-flex;
        justify-content: flex-start;
        align-items: center;
        width: calc(100% / 2);
        height: 60px;
        padding: 15px 30px
    }

    #sidebar .sidebar-content .gsb>ul>li>.btn-depth,#sidebar .sidebar-content .gsb>ul>li>a {
        position: relative;
        font-size: 18px;
        font-weight: 700;
        letter-spacing: -.53px
    }

    #sidebar .sidebar-content .gsb>ul>li>.btn-depth {
        cursor: pointer
    }

    #sidebar .sidebar-content .gsb>ul>li>.sub_menu-box {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translate(-100%);
        width: 150px;
        background-color: #fff;
        box-shadow: 4px 4px 12px rgba(0,0,0,.16);
        border-radius: 12px;
        padding: 12px 0;
        display: none
    }

    #sidebar .sidebar-content .gsb>ul>li>.sub_menu-box.active {
        display: block
    }

    #sidebar .sidebar-content .gsb>ul>li>.sub_menu-box>ul {
        display: flex;
        flex-direction: column;
        gap: 8px
    }

    #sidebar .sidebar-content .gsb>ul>li>.sub_menu-box>ul>li {
        text-align: center;
        padding: 8px 0
    }

    #sidebar .sidebar-content .gsb>ul>li>.sub_menu-box>ul>li>a {
        font-size: 16px;
        font-weight: 600;
        letter-spacing: -.45px
    }

    #sidebar .sidebar-content .gsb>ul>li.event-special>a:after {
        content: "";
        position: absolute;
        top: 0;
        right: -6px;
        width: 4px;
        height: 4px;
        background-color: red;
        border-radius: 50%
    }

    main {
        margin-top: 62px
    }

    footer {
        padding: 60px 0 50px
    }

    footer .footer .footer-top {
        justify-content: center
    }

    footer .footer .footer-top .corp-details {
        flex-direction: column;
        gap: 30px
    }

    footer .footer .footer-top .corp-details .corp-info {
        flex-direction: column
    }

    footer .footer .footer-top .corp-details .corp-info .info-detail {
        align-items: center
    }

    footer .footer .footer-top .corp-details .corp-sns {
        align-items: center;
        gap: 30px
    }
}

@media (max-width: 480px) {
    header .header .logo>a {
        width:120px
    }

    #sidebar .sidebar-content .gsb>ul>li>.sub_menu-box {
        transform: translate(-50%)
    }

    footer {
        padding: 70px 0 80px;
        background-color: #ddd
    }

    footer .container {
        padding-inline:10px}

    footer .footer .footer-top .corp-logo .logo-img>img {
        max-width: 180px;
        object-fit: contain
    }

    footer .footer .footer-top .corp-details .corp-info .corp-logo .logo-img>img.img-pc {
        display: none
    }

    footer .footer .footer-top .corp-details .corp-info .corp-logo .logo-img>img.img-mo {
        display: block
    }

    footer .footer .footer-top .corp-details {
        flex-direction: column;
        width: 100%;
        gap: 0
    }

    footer .footer .footer-top .corp-details .corp-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px
    }

    footer .footer .footer-top .corp-details .corp-info:first-child {
        margin-bottom: 40px
    }

    footer .footer .footer-top .corp-details .corp-info .info-detail {
        align-items: flex-start;
        gap: 2px
    }

    footer .footer .footer-top .corp-details .corp-info .info-detail .item {
        text-align: left;
        line-height: 130%
    }

    footer .footer .footer-top .corp-details .corp-info .info-detail .item.contact-info {
        flex-direction: row;
        margin-bottom: 0
    }

    footer .footer .footer-top .corp-details .corp-info .info-detail .item .item-desc,footer .footer .footer-top .corp-details .corp-info .info-detail .item .item-tit {
        font-size: 14px;
        color: #888;
        font-weight: 400
    }

    footer .footer .footer-top .corp-details .corp-info .info-name>span {
        font-size: 26px;
        font-weight: 700;
        color: #888
    }

    footer .footer .footer-top .corp-details .corp-info .info-detail .item .item-desc em {
        display: inline-block;
        font-size: 14px;
        font-weight: 400;
        color: #888
    }

    footer .footer .footer-top .corp-details .corp-info .info-detail .item .item-desc .btn-biz_info {
        color: #888;
        border: 1px solid hsla(0,0%,53%,.6)
    }

    footer .footer .footer-top .corp-details .corp-sns {
        justify-content: center;
        margin-top: 32px;
        gap: 20px
    }

    footer .copyright {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 22px;
        text-align: center
    }

    footer .copyright>span {
        font-size: 14px;
        font-weight: 400;
        color: #888;
        text-align: center
    }
}

.view_pc {
    display: block
}

.hide,.view_mo {
    display: none
}

::-webkit-scrollbar {
    width: 8px;
    height: 4px;
    background: none
}

::-webkit-scrollbar-thumb {
    border: 1px solid transparent;
    background: rgba(217,222,231,.5);
    border-radius: 100px
}

::-webkit-scrollbar-track {
    background: none
}

.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 250;
    background: rgba(0,0,0,.42);
    opacity: 1;
    transition: .5s
}

.loading.no-layer {
    background: transparent
}

.loading.none-fixed {
    position: relative;
    top: unset;
    right: unset;
    bottom: unset;
    left: unset;
    z-index: unset;
    background: unset;
    margin: 80px auto 40px
}

.loading-circle {
    width: 54px;
    height: 54px;
    animation: loading-spin 3s infinite
}

.loading-circle circle {
    stroke: #fff;
    stroke-width: 4;
    stroke-dasharray: 157,157;
    stroke-dashoffset: 0;
    fill: transparent;
    animation: loading-circle-ani 1s infinite
}

@keyframes loading-spin {
    to {
        transform: rotate(1turn)
    }
}

@keyframes loading-circle-ani {
    0% {
        stroke-dashoffset: 157
    }

    75% {
        stroke-dashoffset: -147
    }

    to {
        stroke-dashoffset: -157
    }
}

.toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: rgba(61,61,61,.9);
    box-shadow: 0 3px 6px 0 rgba(0,0,0,.16);
    border-radius: 5px;
    min-width: 360px;
    padding: 36px 24px;
    opacity: 0;
    z-index: -1;
    transition: opacity .35s,z-index .35s;
    animation: fadeOpacityOut .2s ease-out forwards
}

.toast.active {
    opacity: 1;
    z-index: 300;
    animation-name: fadeOpacityIn
}

.toast span {
    display: inline-block;
    width: 100%;
    font-family: var(--font-sc-dream);
    font-size: 16px;
    font-weight: 400;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: normal;
    text-align: center;
    color: #fff
}

@keyframes fadeOpacityIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeOpacityOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.ellipsis {
    display: inline-block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    transition: background-color .15s,border-color .15s,color .15s
}

.btn-round {
    border-radius: 36px
}

.btn-primary {
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #fff
}

.btn-primary:hover {
    background-color: #fff;
    border-color: var(--color-primary);
    color: var(--color-primary)
}

.btn-gradient {
    background: linear-gradient(140deg,#57cc83,#20876e);
    color: #fff
}

.btn-secondary {
    border: 1px solid var(--color-primary)
}

.btn-outline,.btn-secondary {
    background-color: #fff;
    color: var(--color-primary)
}

.btn-outline {
    border: 2px solid var(--color-primary)
}

.btn-outline:hover {
    border: 1px solid #fff;
    background-color: #FF6A00;
    color: #fff
}

.btn-outline_gray {
    border: 1px solid #eee;
    background-color: #fff;
    color: #222
}

.btn-cancel {
    border: 1px solid #b9b9b9;
    background-color: #f8f8f8;
    color: #222
}

.btn-kakao {
    background-color: #fae100;
    color: #341e1e
}

.btn-kakao:hover {
    background-color: #fae100;
    color: #222
}

.btn-kakao:before {
    content: "";
    margin-right: 6px;
    width: 20px;
    height: 18px;
    background: url(/images/onboarding/kakao.png) 50%/cover no-repeat
}

.btn-disabled {
    background-color: #eee;
    color: #666;
    pointer-events: none
}

.btn-exit {
    width: 100%;
    height: 61px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -.53px;
    color: #a4a4a4
}

.btn-shadow {
    box-shadow: 0 3px 10px 0 rgba(0,0,0,.1)
}

.btn-xs {
    width: 100px;
    height: 61px;
    font-weight: 600
}

.btn-sm,.btn-xs {
    font-size: 16px;
    letter-spacing: -.45px
}

.btn-sm {
    width: 150px;
    height: 50px;
    font-weight: 700
}

.btn-md {
    width: 200px
}

.btn-lg,.btn-md {
    height: 61px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -.53px
}

.btn-lg {
    width: 370px
}

.btn-full {
    width: 100%;
    height: 58px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -.53px
}

@media (max-width: 480px) {
    .btn-full {
        height:48px;
        border-radius: 6px;
        font-size: 18px
    }
}

.accordian {
    margin-top: 60px
}

.accordian .details {
    list-style-type: none
}

.accordian .details>.summary {
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: 27px 20px;
    border-bottom: 1px solid #eee;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.44;
    letter-spacing: -.45px;
    color: #222;
    cursor: pointer
}

.accordian .details>.summary::marker {
    content: "";
    display: none
}

.accordian .details>.summary::-webkit-details-marker {
    content: "";
    display: none
}

.accordian .details>.summary:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%) rotate(0);
    width: 20px;
    height: 12px;
    background: url(/images/icons/angle-down.svg) 50%/20px no-repeat;
    font-size: 40px;
    font-weight: 300;
    color: #222
}

.accordian .details[open]>summary:before {
    content: "";
    right: 30px;
    transform: translateY(-50%) rotate(180deg)
}

.accordian .details>.summary .summary-num {
    flex-shrink: 0;
    display: inline-flex;
    justify-content: center;
    width: 120px;
    font-size: 18px;
    font-weight: 800;
    color: var(--color-primary)
}

.accordian .details>.summary .summary-tit {
    font-size: 20px;
    font-weight: 400;
    color: #222
}

.accordian .details .content-wrapper {
    display: none;
    background-color: #f9f9f9;
    padding: 30px 100px
}

.accordian .details .content-wrapper>p {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.67;
    letter-spacing: -.45px;
    color: #222;
    white-space: pre-line
}

.accordian .details[open] .content-wrapper {
    display: block
}

@media (max-width: 768px) {
    .accordian {
        margin-top:30px
    }

    .accordian .details>.summary {
        padding: 20px 16px
    }

    .accordian .details>.summary .summary-num {
        width: 40px;
        font-size: 20px;
        font-weight: 500
    }

    .accordian .details>.summary .summary-tit {
        font-size: 18px
    }

    .accordian .details>.summary:before {
        font-size: 32px;
        top: 22px;
        transform: unset
    }

    .accordian .details[open]>summary:before {
        top: 26px
    }

    .accordian .details .content-wrapper {
        padding: 20px 20px 20px 40px
    }

    .accordian .details .content-wrapper>p {
        font-size: 18px;
        line-height: 1.4;
        letter-spacing: -.4px
    }

    .accordian .details[open] {
        border-bottom: 1px solid #e8e8e8
    }

    .accordian .details[open]>.summary {
        border-bottom: unset;
        background-color: #f8f8f8
    }

    .accordian .details[open]>.summary .summary-tit {
        color: #222;
        font-weight: 500
    }
}

.checkbox {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.checkbox input[type=checkbox] {
    display: none
}

.checkbox input[type=checkbox]+label {
    cursor: pointer
}

.checkbox input[type=checkbox]+label>span {
    vertical-align: middle;
    padding-left: 8px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -.45px;
    color: #888
}

.checkbox input[type=checkbox]+label:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1px solid #888;
    border-radius: 3px;
    vertical-align: middle;
    background: transparent url(/images/icons/check-default.svg) 50%/12px no-repeat;
    transition: background .15s,border-color .15s
}

.checkbox input[type=checkbox]:checked+label:before {
    content: "";
    border-color: var(--color-primary);
    background: var(--color-primary) url(/images/icons/check-white.svg) center center /12px no-repeat
}

.checkbox a {
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -.45px;
    color: var(--color-primary);
    border-bottom: 1px solid var(--color-primary)
}

@media (max-width: 768px) {
    .checkbox a {
        flex-shrink:0;
        font-size: 14px;
        letter-spacing: -.4px
    }

    .checkbox input[type=checkbox]+label {
        width: 100%
    }

    .checkbox input[type=checkbox]+label>span {
        font-size: 16px
    }
}

.select2-container {
    width: 130px!important
}

.select2-container .select2-selection--single {
    height: 50px
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0 20px
}

.select2-container--default .select2-selection--single {
    border: 1px solid var(--color-primary)
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 50px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -.45px;
    color: var(--color-primary)
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 0;
    right: 20px;
    height: 50px;
    max-height: 100%
}

.select2-results__option {
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -.45px
}

@media (max-width: 768px) {
    .select2-container .select2-selection--single {
        height:40px
    }

    .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 40px
    }
}

.form-select {
    position: relative;
    width: 100%;
    z-index: 10
}

.form-select * {
    font-family: var(--font-sc-dream)!important
}

.form-select__control {
    width: 100%;
    min-height: 61px!important;
    border: none!important;
    border-radius: 0!important;
    padding: 0;
    box-shadow: unset!important
}

.form-select__control:hover {
    border-color: unset
}

.form-select__value-container {
    padding: 0!important;
    border: none
}

.form-select--is-disabled,.form-select__placeholder {
    margin: 0!important;
    font-size: 16px;
    font-weight: 400;
    color: #888!important
}

.form-select__indicator-separator {
    display: none
}

.form-select__menu {
    min-width: calc(100% + 34px)!important;
    width: 100%!important;
    left: -17px;
    top: calc(100%)!important;
    margin: 0!important;
    border: solid var(--color-primary)!important;
    border-width: 0 1px 1px!important;
    border-radius: 0 0 8px 8px!important;
    padding: 0!important;
    box-shadow: none!important
}

.form-select__option {
    display: inline-flex!important;
    align-items: center;
    gap: 4px;
    font-size: 16px!important;
    font-weight: 500!important;
    color: var(--gray_600-color)!important;
    background-color: #fff!important;
    padding: 10px 12px!important
}

.form-select__option:not(:last-child) {
    border-bottom: 1px solid #efefef
}

.form-select__option--is-focused {
    color: var(--color-primary);
    border: none;
    outline: none
}

.form-select__option--is-selected {
    color: var(--color-primary)!important
}

.form-select__option--is-selected,.form-select__option--is-selected:hover {
    background-color: var(--main-color)!important
}

.form-select__option:hover {
    background-color: #0d02b82b!important;
    color: var(--color-primary)!important
}

.form-select__single-value {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin: 0!important;
    font-size: 16px;
    font-weight: 400;
    color: var(--main-color)
}

.form-select__input-container {
    padding: 0!important;
    margin: 0!important
}

.form-select__control--is-disabled {
    background-color: #f5f6f8!important
}

.form-select__indicator {
    padding-right: 0!important
}

.form-select__indicator svg {
    fill: #222
}

.form-select:has(.form-select__control--menu-is-open) {
    z-index: 11
}

.mypage-main .form-container .form-wrapper .form-item .form-content .form-select {
    width: 100%;
    height: 100%
}

.mypage-main .form-container .form-wrapper .form-item .form-content .form-select__indicator {
    padding: 0!important
}

.mypage-main .form-container .form-wrapper .form-item .form-content .form-select__control {
    border: none!important;
    min-height: 60px!important;
    background-color: transparent
}

.mypage-main .form-container .form-wrapper .form-item .form-content .form-select__value-container {
    padding: 0!important
}

.mypage-main .form-container .form-wrapper .form-item .form-content .form-select__placeholder {
    color: #888!important
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 694px;
    max-width: 100%;
    margin-inline:auto;margin-top: 60px;
    padding: 80px 30px;
    border-radius: 30px;
    background-color: #fff;
    box-shadow: inset -1px -1px 1px 0 hsla(0,0%,80%,.5),inset 1px 1px 1px 0 hsla(0,0%,80%,.2)
}

.form-container .form-head {
    margin-bottom: 20px
}

.form-container .form-head .head-tit {
    font-size: 34px;
    font-weight: 700;
    color: #222
}

.form-container .form-logo {
    text-align: center;
    margin-bottom: 20px
}

.form-container .form-logo img {
    width: 100%;
    object-fit: contain
}

.form-container .item-wrapper {
    padding: 30px 0
}

.form-container .form-item {
    display: flex;
    align-items: flex-start
}

.form-container .form-item:not(:last-child) {
    margin-bottom: 12px
}

.form-container .form-item .form-label {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    width: 130px;
    height: 61px;
    margin-bottom: 0
}

.form-container .form-item .form-label>span {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -.45px;
    color: #222
}

.form-container .form-item .form-label>span>em {
    color: #ff4545
}

.form-container .form-item .form-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%
}

.form-container .form-item .form-content .form-content-row {
    display: flex;
    align-items: center;
    gap: 10px
}

.form-container .form-item .form-content .form-content-row .form-element {
    width: 100%;
    min-height: 61px;
    padding-inline:16px;border-radius: 5px;
    border: 1px solid #eee;
    background-color: #fff;
    transition: border-color .15s
}

.form-container .form-item .form-content .form-content-row .form-element:focus-within {
    border-color: var(--color-primary)
}

.form-container .form-item .form-content .form-content-row .form-element:has(.form-select__control--menu-is-open) {
    border-width: 1px;
    border-bottom: 1px solid transparent;
    border-radius: 8px 8px 0 0
}

.form-container .form-item .form-content .form-content-row .form-element>input {
    width: 100%;
    height: 100%;
    min-height: 61px;
    border: none;
    background-color: transparent;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -.45px
}

.form-container .form-item .form-content .form-content-row .form-element>input::placeholder {
    color: #888
}

.form-container .form-item .form-content .form-content-row .form-element.disabled {
    background-color: #f5f5f5;
    pointer-events: none
}

.form-container .form-item .form-content .form-content-row .form-element.disabled>input {
    color: #666
}

.form-container .form-item .form-content .form-content-row .form-content-button {
    flex-shrink: 0;
    width: 130px;
    height: 61px
}

.form-container .form-item .form-content .form-content-row .form-content-button .btn-form {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    border: 1px solid #9a9a9a;
    background-color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -.45px;
    color: #888
}

.form-container .form-item .form-content .form-content-row .timer {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    font-size: 14px;
    color: red
}

.form-container .form-item .form-content .form-content-row+.error-message {
    font-size: 12px;
    color: var(--color-alert)
}

.form-container .form-item .form-content .form-content-row .form-element .select2-container {
    width: 100%!important;
    height: 100%
}

.form-container .form-item .form-content .form-content-row .form-element .select2-container--default .select2-selection--single {
    border: none
}

.form-container .form-item .form-content .form-content-row .form-element .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 0;
    color: #01091e
}

.form-container .form-item .form-content .form-content-row .form-element .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 0
}

.form-container hr {
    border-color: #eee;
    margin: 28px 0 40px
}

@media (max-width: 768px) {
    .form-container {
        margin-top:50px;
        padding: 30px 20px
    }

    .form-container .form-item:not(:last-child) {
        margin-bottom: 8px
    }

    .form-container .form-item .form-content .form-content-row .form-content-button {
        width: 80px
    }

    .form-container .form-item .form-content .form-content-row .form-content-button .btn-form {
        border-radius: 6px;
        white-space: pre-line;
        padding: 0
    }

    .form-container hr {
        margin: 18px 0 30px
    }
}

.swiper-pagination-bullet-active {
    background-color: #fff!important
}

.view-container {
    display: flex;
    flex-direction: column;
    width: 654px;
    max-width: 100%;
    margin-inline:auto;margin-top: 0;
    padding: 80px 30px;
    border-radius: 30px;
    background-color: #fff;
    box-shadow: inset -1px -1px 1px 0 hsla(0,0%,80%,.5),inset 1px 1px 1px 0 hsla(0,0%,80%,.2);
    gap: 0
}

.view-container .view-item {
    padding: 50px 0
}

.view-container .view-item .view-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px
}

.view-container .view-item .view-label>span {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -.45px;
    color: #222
}

.view-container .view-item .view-label .btn-update,.view-container .view-item .view-label .btn-verify {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 120px;
    height: 61px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -.45px
}

.view-container .view-item .view-label .btn-verify {
    border: 1px solid #eee;
    background: linear-gradient(140deg,#57cc83,#20876e);
    color: #fff
}

.view-container .view-item .view-content {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.view-container .view-item .view-content .view-content-row {
    display: inline-flex;
    align-items: center;
    padding: 16px 0
}

.view-container .view-item .view-content .view-content-row .view-tit {
    flex-shrink: 0;
    width: 230px
}

.view-container .view-item .view-content .view-content-row .view-tit>span {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -.4px;
    color: #222
}

.view-container .view-item .view-content .view-content-row .view-desc {
    width: 100%
}

.view-container .view-item .view-content .view-content-row .view-desc>span {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -.45px;
    color: #222
}

.view-container .view-item .view-content .view-content-row .view-desc .btn-copy {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 12px;
    padding: 4px 12px;
    background-color: #fff;
    border: 1px solid #888;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 600;
    color: #888
}

.view-container .view-item .view-content .view-content-row .form-element,.view-container .view-item .view-content .view-content-row .form-element>input {
    min-height: 49px
}

.view-container .view-item .view-desc .btn-update {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #FF6A00;
    border: 1px solid #FF6A00;
    border-radius: 5px;
    padding: 10px 33px;
    font-size: 20px;
    font-weight: 600;
    color: #fff
}

@media (max-width: 768px) {
    .view-container {
        margin-top:0
    }

    .view-container .view-item {
        margin-bottom: 30px;
        padding-bottom: 30px
    }

    .view-container .view-item .view-label>span {
        font-size: 18px;
        font-weight: 600
    }

    .view-container .view-item .view-content .view-content-row {
        gap: 100px
    }

    .view-container .view-item .view-content .view-content-row .view-tit {
        width: 130px
    }
}

.inquire-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 100%;
    margin-inline:auto}

.inquire-container .form-item {
    display: flex;
    align-items: flex-start
}

.inquire-container .form-item .form-label {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    width: 120px;
    min-height: 61px
}

.inquire-container .form-item .form-label>span {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -.45px;
    color: #222
}

.inquire-container .form-item .form-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%
}

.inquire-container .form-item .form-content .form-content-row {
    display: flex;
    align-items: center;
    gap: 10px
}

.inquire-container .form-item .form-content .form-content-row .form-element {
    width: 100%;
    min-height: 61px;
    padding-inline:10px;border-radius: 5px;
    border: 1px solid #eee;
    background-color: #fff;
    transition: border-color .15s
}

.inquire-container .form-item .form-content .form-content-row .form-element:focus-within {
    border-color: #0c76de
}

.inquire-container .form-item .form-content .form-content-row .form-element>input {
    width: 100%;
    height: 100%;
    min-height: 61px;
    border: none;
    background-color: transparent;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -.45px
}

.inquire-container .form-item .form-content .form-content-row .form-element>input::placeholder {
    color: #888
}

.inquire-container .form-item .form-content .form-content-row .form-element>textarea {
    width: 100%;
    height: 100%;
    min-height: 200px;
    padding: 16px 0;
    border: none;
    background-color: transparent;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -.45px;
    resize: none
}

.inquire-container .form-item .form-content .form-content-row .form-element>textarea::placeholder {
    color: #888
}

.inquire-container .form-item .form-content .form-content-row .form-element .image-container .image-list {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px
}

.inquire-container .form-item .form-content .form-content-row .form-element .image-container .image-list .image-item {
    position: relative;
    max-width: 180px
}

.inquire-container .form-item .form-content .form-content-row .form-element .image-container .image-list .image-item>img {
    border-radius: 5px;
    max-height: 120px;
    object-fit: cover
}

.inquire-container .form-item .form-content .form-content-row .form-element .image-container .image-list .image-item .btn-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 18px;
    height: 18px;
    border: 1px solid #ebebeb;
    background: #ebebeb url(/images/icons/close.svg) 50%/14px no-repeat;
    border-radius: 50%
}

.inquire-container .form-item .form-content .form-content-row .form-element .image-container .image-add {
    margin: 8px 0
}

.inquire-container .form-item .form-content .form-content-row .form-element .image-container .image-add .btn-image {
    cursor: pointer
}

.inquire-container .inquire-detail {
    margin-top: 0
}

.inquire-container .inquire-detail .inquire-detail-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 0;
    border: 0 solid #eee
}

.inquire-container .inquire-detail .inquire-detail-head .inquire-detail-tit {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -.45px
}

.inquire-container .inquire-detail .inquire-detail-head .inquire-detail-date {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -.4px;
    color: #888
}

.inquire-container .inquire-detail .inquire-detail-content {
    padding: 50px 0
}

.inquire-container .inquire-detail .inquire-detail-content>p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.44;
    letter-spacing: -.4px;
    white-space: pre-line
}

.inquire-container .form-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px
}

.inquire-container .form-buttons .btn {
    max-width: 100%;
    width: 188px;
    font-size: 16px;
    border-radius: 10px;
    font-size: 20px
}

@media (max-width: 768px) {
    .inquire-container .form-item {
        flex-direction:column;
        gap: 12px
    }

    .inquire-container .form-item .form-label {
        width: 100%;
        min-height: unset;
        padding: 0
    }

    .inquire-container .form-item .form-content .form-content-row .form-element {
        border-radius: 6px
    }

    .inquire-container .inquire-detail .inquire-detail-head {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 12px;
        padding: 20px 12px
    }

    .inquire-container .inquire-detail .inquire-detail-head .inquire-detail-date {
        font-size: 14px;
        color: #666
    }

    .inquire-container .inquire-detail .inquire-detail-content {
        padding: 20px 12px
    }

    .inquire-container .form-item .form-content .form-content-row .form-element .image-container .image-list .image-item {
        max-width: calc((100% / 3) - 6px)
    }

    .inquire-container .form-item .form-content .form-content-row .form-element .image-container .image-list .image-item>img {
        max-height: 100px
    }

    .inquire-container .form-buttons {
        margin-top: 30px
    }
}

table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse
}

table thead {
    background-color: #f9f9f9;
    border-bottom: 1px solid #ddd
}

table thead tr th dt {
    padding: 30px 0;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: -.45px;
    color: #373737
}

table tbody tr {
    border-bottom: 1px solid #eee
}

table tbody tr td {
    height: 80px;
    vertical-align: middle
}

table tbody tr td dd a,table tbody tr td dd span {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -.45px;
    color: #373737
}

table tbody tr td dd i {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #373737
}

table tbody tr td[align=left] dd {
    padding-left: 20px
}

table tbody tr td dd .tag {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 100px;
    height: 40px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -.33px;
    color: #fff
}

table tbody tr td dd .tag.tag-color-01 {
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #fff
}

table tbody tr td dd .tag.tag-color-02 {
    background-color: #7eaffa;
    border: 1px solid #7eaffa;
    color: #fff
}

@media (max-width: 768px) {
    table tbody tr td[align=left] dd {
        padding-left:0
    }

    table thead {
        border-bottom: unset
    }

    table thead tr th dt {
        padding: 20px 0;
        font-size: 16px;
        font-weight: 500
    }

    table tbody tr td {
        height: unset;
        padding: 20px 0
    }

    table tbody tr td dd a,table tbody tr td dd span {
        font-size: 14px
    }

    table tbody tr td dd .tag {
        min-width: 60px;
        height: 28px;
        font-size: 12px
    }
}

.pagination {
    display: flex;
    gap: 40px;
    margin: 60px 0
}

.pagination,.pagination button {
    justify-content: center;
    align-items: center
}

.pagination button {
    position: relative;
    display: inline-flex;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 5px
}

.pagination .pagination-num {
    display: flex;
    align-items: center;
    gap: 6px
}

.pagination .pagination-num .btn_pagination-num {
    background-color: #fff;
    border: 1px solid var(--color-primary);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -.45px;
    color: var(--color-primary)
}

.pagination .pagination-num .btn_pagination-num[aria-current=page] {
    background-color: var(--color-primary);
    color: #fff;
    font-weight: 600
}

.pagination .pagination-left .btn_pagination-first,.pagination .pagination-left .btn_pagination-prev,.pagination .pagination-right .btn_pagination-last,.pagination .pagination-right .btn_pagination-next {
    font-size: 0
}

.pagination .pagination-left .btn_pagination-prev:after,.pagination .pagination-right .btn_pagination-next:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 6px;
    height: 12px
}

.pagination .pagination-left .btn_pagination-first:after,.pagination .pagination-right .btn_pagination-last:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 12px;
    height: 12px
}

.pagination .pagination-left .btn_pagination-first:after {
    background: url(/images/icons/page-first.png) 50%/cover no-repeat
}

.pagination .pagination-left .btn_pagination-prev:after {
    background: url(/images/icons/page-prev.png) 50%/cover no-repeat
}

.pagination .pagination-right .btn_pagination-next:after {
    background: url(/images/icons/page-next.png) 50%/cover no-repeat
}

.pagination .pagination-right .btn_pagination-last:after {
    background: url(/images/icons/page-last.png) 50%/cover no-repeat
}

@media (max-width: 768px) {
    .view_pc {
        display:none
    }

    .view_mo {
        display: block
    }

    .pagination {
        gap: 30px;
        margin-top: 30px
    }

    .pagination button {
        width: 24px;
        height: 24px;
        border-radius: 4px
    }

    .pagination .pagination-num {
        gap: 4px
    }

    .pagination .pagination-num .btn_pagination-num {
        font-size: 14px
    }
}

.line-1 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.line-2 {
    -webkit-line-clamp: 2
}

.line-2,.line-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}

.line-3 {
    -webkit-line-clamp: 3
}

@media (max-width: 480px) {
    .accordian .details-head .head-txt {
        font-size:14px!important
    }

    .accordian .details>.summary {
        padding: 16px 0!important
    }

    .accordian .details>.summary .summary-num {
        font-size: 20px
    }

    .accordian .details>.summary .summary-tit {
        font-size: 16px
    }

    .accordian .details>.summary>span {
        font-size: 16px!important
    }

    .accordian .details>.summary .summary-date {
        font-size: 14px!important
    }

    .accordian .details .content-wrapper>p {
        font-size: 16px
    }

    .view-container {
        padding: 45px 12px
    }

    .view-container .view-item {
        padding: 0;
        margin: 0
    }

    .view-container .view-item:not(:last-child) {
        margin-bottom: 50px
    }

    .view-container .view-item .view-label {
        margin-bottom: 42px
    }

    .view-container .view-item .view-label>span {
        font-size: 26px
    }

    .view-container .view-item .view-content .view-content-row {
        align-items: flex-start;
        justify-content: space-between;
        padding: 12px 0;
        gap: 0
    }

    .view-container .view-item .view-content .view-content-row .view-tit>span {
        font-size: 18px
    }

    .view-container .view-item .view-content .view-content-row .view-desc {
        text-align: right;
        display: inline-flex;
        align-items: flex-end;
        flex-direction: column;
        width: unset;
        gap: 8px
    }

    .view-container .view-item .view-content .view-content-row .view-desc>span {
        font-size: 18px
    }

    .view-container .view-item .view-content .view-content-row .view-desc .btn-copy {
        width: 58px;
        font-size: 16px;
        padding: 4px 12px;
        margin-left: 0
    }

    .view-container .view-item .view-desc .btn-update {
        max-width: unset;
        padding: 6px 20px;
        font-size: 16px
    }

    .pagination {
        gap: 10px
    }

    .pagination-left,.pagination-right {
        display: flex;
        align-items: center
    }
}
