@font-face {
    font-family: 'OpenSans';
    src: url('../../../static/font/OpenSans/OpenSans-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'OpenSans';
    src: url('../../../static/font/OpenSans/OpenSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
}
@font-face {
    font-family: 'OpenSans';
    src: url('../../../static/font/OpenSans/OpenSans-Bold.ttf') format('truetype');
    font-weight: 700;
}
@font-face {
    font-family: 'OpenSans';
    src: url('../../../static/font/OpenSans/OpenSans-Light.ttf') format('truetype');
    font-weight: 300;
}

:root{
    --bs-primary-rgb: #013E3F;
    --color-primary: #013E3F;
    --color-secondary: #00A47C;
}
html{
    font-size: 14px;
    line-height: 18px;
    color: #000;
    background: #F4F4F8;
}
body{
    margin: 0;
    padding: 0;
}
*{
    box-sizing: border-box;
    font-family: OpenSans;
}
input,
textarea{
    outline: none;
    border: none;
    background: none;
}
a{
    text-decoration: none;
}
input::placeholder{
    color: #C7C7CC;
}
.disabled{
    pointer-events: none;
    opacity: .2;
}
.bg-g{
    background: #F4F4F8;
}
.mt-20{margin-top: 20px;}
.mt-10{margin-top: 10px;}
.mt-40{margin-top: 40px;}
.mb-10{
    margin-bottom: 10px;
}
.mb-20{
    margin-bottom: 20px;
}
.mb-28{
    margin-bottom: 28px;
}
.mb-40{
    margin-bottom: 40px;
}
.pt-40{padding-top: 40px}
.pt-20{padding-top: 20px}
.py-40{padding: 40px 0}
.g-12{
    gap: 12px;
}
.g-20{
    gap: 20px !important;
}
.g-24{
    gap: 24px !important;
}
.limit{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.limit1{--limit-line:1}
.limit2{--limit-line:2}
.limit3{--limit-line:3}
.limit4{--limit-line:4}
.limit1,
.limit2,
.limit3,
.limit4{
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: var(--limit-line);
}
.f-size-12{font-size: 12px;!important;}
.f-size-14{font-size: 14px;!important;}
.f-size-16{font-size: 16px;}
.f-size-18{font-size: 18px;}
.f-size-20{font-size: 20px;}
.f-size-15{font-size: 15px;line-height: 20px}
.flex-1{
    flex: 1;
}
._btn{
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    cursor: pointer;
    height: 48px;
    border-radius: 50px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}
._btn.outline{
    background: transparent;
    color: var(--color-primary);
}
._btn.outline2{
    color: #FFF;
    background-color: #013E3F;
}
.color-primary{
    color: var(--color-primary);
}
.resendCode{
    cursor: pointer;
}
.color-secondary{
    color: var(--color-secondary);
}
.sign-btn{
    color: var(--color-secondary);
    font-weight: bold;
}
._btn.org{
    background: #FF9500 !important;
    border-color: #FF9500;
}
._btn.black{
    background: #000 !important;
    border-color: #000;
}
._btn.grey{
    background: #F1F1F2 !important;
    border-color: #F1F1F2;
}
._btn.size-m{
    height: 40px;
    padding: 0 24px;
}
.bg-grey{
    background: #F1F1F2;
}
.color-placeholder{
    color: #C7C7CC;
}
.color-grey{
    color: #6D6C71;
}
.color-red{
    color: #FF2D55 !important;
}
.cursor-pointer{
    cursor: pointer;
}
.font-w-600{font-weight: 600;}
.font-w-700{font-weight: 700;}
.radio{
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #AEAEB2;
    flex-shrink: 0;
}
.radio:checked {
    border-color: var(--color-primary);
    background: var(--color-primary);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.radio.red:checked{
    border-color: #EC1F28;
    background: #EC1F28;
}
.radio:checked::after {
    content: "";
    display: block;
    width: 9px;
    height: 6px;
    margin-top: -2px;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(-45deg);
}
.min-h-content{
    min-height: calc(100vh - 136px);
}
.check-dot{
    width: 16px;
    height: 16px;
    margin-right: 8px;
    cursor: pointer;
    border: 1px solid #AEAEB2;
    border-radius: 4px;
    flex-shrink: 0;
}
.check-dot._f,
.check-dot._m{
    border-color: var(--color-primary);
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.check-dot._f:after{
    content: '';
    display: block;
    width: 8px;
    height: 5px;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(-45deg);
    margin-top: -3px;
}
.check-dot._m:after{
    content: '';
    display: block;
    width: 9px;
    height: 2px;
    background: #fff;
}

.border-secondary{
    border: 1px solid var(--color-secondary);
    border-color: var(--color-secondary) !important;
}
.code-line input:focus {
    border: 1px solid var(--color-secondary);
    border-color: var(--color-secondary) !important;
}
.mask{
    position: fixed;
    z-index: 3;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    background: rgba(0,0,0,.5);
}
.dialog-box{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
    max-width: calc(100% - 20px);
    border-radius: 12px;
    ._close{
        position: absolute;
        color: #000;
        font-size: 18px;
        cursor: pointer;
        right: 13px;
        top: 10px;
        font-weight: bold;
    }
}
.ipic-co{
    position: absolute;
    width: 90%;
    top: 33%;
    font-weight: bold;
}
.ipic-ad{
    position: absolute;
    width: 90%;
    top: 39%;
    color: #15b892;
}
.ipic-qr{
    width: 18%;
    position: absolute;
    bottom: 17%;
    left: 10%;
}
.info-dialog{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
    width: 400px;
    padding: 32px 24px;
    border-radius: 12px;
    ._close{
        position: absolute;
        color: #C7C7CC;
        font-size: 15px;
        cursor: pointer;
        right: 13px;
        top: 10px;
        font-weight: bold;
    }
    ._t1{
        color: #000000;
    }
    ._t2{
        color: #000000;
        font-weight: 600;
        line-height: 22px;
        font-size: 17px;
        display: block;
    }
    ._t3{
        color: #000000;
        font-weight: 600;
        line-height: 22px;
        font-size: 22px;
        display: block;
    }
    ._btn{
        flex: 1;
    }
}
.load-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 200px 0;
    .iconfont{
        font-size: 40px;
        margin-bottom: 8px;
    }
}
.loading{
    pointer-events: none;
    animation: load-rotate 1s infinite;
    display: block;
    font-size: 22px;
}
.w-1200{
    width: 1200px;
    max-width: calc(100% - 40px);
}
.w-960{
    width: 960px;
    max-width: calc(100% - 40px);
}
@keyframes load-rotate {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}


._select-box{
    width: 100%;
    height: 48px;
    border-radius: 48px;
    position: relative;
    ._select-val{
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 16px;
        font-size: 16px;
        width: 100%;
        cursor: pointer;
        i{
            color: #6D6C71;
            font-size: 14px;
            transition: all .3s;
            margin-left: 6px;
        }
    }
    ._select-list{
        display: none;
        position: absolute;
        width: 100%;
        left: 0;
        max-height: 280px;
        overflow-y: auto;
        border: 1px solid #EEEEEF;
        padding: 8px;
        box-shadow: 0px 8px 25px 0px #00000012;
        z-index: 2;
        background: #fff;
        border-radius: 12px;
        bottom: 0;
        transform: translateY(100%);
        ._item{
            padding: 15px 16px;
            font-size: 14px;
            line-height: 14px;
            transition: all .3s;
            cursor: pointer;
            border-radius: 8px;
        }
        ._item.on,
        ._item:hover{
            background: #F4F4F8;
            font-weight: 600;
        }
    }
    ._select-list::-webkit-scrollbar{
        border-radius: 20px;
        width: 20px;
    }
    ._select-list::-webkit-scrollbar-thumb{
        width: 20px;
        background: #EEEEEF;
        border-radius: 20px;
        border-top: 6px solid #fff;
        border-right: 4px solid #fff;
        border-left: 4px solid #fff;
        border-bottom: 6px solid #fff;
    }
}
._select-box.on{
    ._select-val i{
        transform: rotate(180deg);
    }
    ._select-list{
        display: block;
    }
}
.sort-tags{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 28px;
    gap: 12px;
    max-height: 85px;
    overflow: hidden;
    >*{
        padding: 8px 16px;
        background: #fff;
        border-radius: 30px;
        color: #6D6C71;
        font-size: 16px;
        line-height: 16px;
        cursor: pointer;
    }
    .on{
        background: #98AFB25C;
        color: var(--color-primary);
    }
}
.border-primary{
    border-color: var(--color-primary);
}

.paging-box{
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    a{
        width: 28px;
        height: 28px;
        border-radius: 4px;
        background: #E5E5EA;
        display: flex;
        text-decoration: none;
        cursor: pointer;
        color: #6D6C71;
        font-size: 14px;
        align-items: center;
        justify-content: center;
    }
    a:hover,
    .on{
        background: var(--color-primary);
        color: #fff;
        font-weight: 600;
    }
}
.flex-warp{
    flex-wrap: wrap;
}
.text-no-warp{
    white-space: nowrap;
}
