﻿:root {
    --red-1: #b11;
    --red-2: #c22;
    --red-3: #d33;
    /*  --green-1: #60B243;
    --green-2: #60B24399;
    --green-3: #60B24366;*/
    --green-1: #272;
    --green-2: #383;
    --green-3: #494;
    --green-4: #5a5;
    --green-5: #6b6;
    --green-6: #7c7;
    --green-7: #8d8;
    --green-8: #9e9;
    --green-9: #afa;
    --blue-1: #06b;
    --blue-2: #17c;
    --blue-3: #28d;
    --orange-1: #c50;
    --orange-2: #d60;
    --orange-3: #e71;
    --default: #666;
    --primary: #2185d0;
    --success: #4cae4c;
    --danger: #d9534f;
    --warning: #e92;
    --info: #8a8;
}

html {
    font-size: 10px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    -webkit-text-size-adjust: 100% !important;
    text-size-adjust: 100% !important;
}

input,
textarea,
button,
select,
a {
    -webkit-tap-highlight-color: transparent;
}

input,
select,
textarea,
button {
    font-family: inherit;
    font-size: inherit;
    /*form controls do not inherit font by default*/
    -webkit-appearance: none;
}

/*google fonts*/
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 48
}

.fill.material-symbols-outlined {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48
}

a.material-symbols-outlined,
a.material-symbols-outlined:hover {
    color: inherit;
}

html,
body {
    overscroll-behavior: none; /*prevent ios pull refresh*/
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1.5rem;
    color: #555;
    background-color: #fff;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}



/*文字相关*/
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-overflow {
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.text-overflow-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

/*字体大小*/
.fs-10 {
    font-size: 1.0rem !important;
}

.fs-11 {
    font-size: 1.1rem !important;
}

.fs-12 {
    font-size: 1.2rem !important;
}

.fs-13 {
    font-size: 1.3rem !important;
}

.fs-14 {
    font-size: 1.4rem !important;
}

.fs-15 {
    font-size: 1.5rem !important;
}

.fs-16 {
    font-size: 1.6rem !important;
}

.fs-17 {
    font-size: 1.7rem !important;
}

.fs-18 {
    font-size: 1.8rem !important;
}

.fs-19 {
    font-size: 1.9rem !important;
}

.fs-20 {
    font-size: 2.0rem !important;
}

.fs-22 {
    font-size: 2.2rem !important;
}

.fs-24 {
    font-size: 2.4rem !important;
}

.fs-26 {
    font-size: 2.6rem !important;
}

.fs-28 {
    font-size: 2.8rem !important;
}

.fs-30 {
    font-size: 3.0rem !important;
}

.fs-32 {
    font-size: 3.2rem !important;
}

.fw-bold {
    font-weight: bold;
}

.fw-normal {
    font-weight: normal;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

/*a标签*/
a {
    color: #37c;
    cursor: pointer;
}

    a,
    a:hover {
        text-decoration: none;
    }

        a:hover {
            color: #05a;
        }

        a.underline {
            position: relative;
        }

            a.underline::before {
                position: absolute;
                bottom: -0.3rem;
                left: 0;
                width: 100%;
                height: 1px;
                background-color: #4183C4;
                content: '';
                transition: all 0.2s;
                transform: scaleX(0);
            }

            a.underline:hover::before {
                transform: scaleX(1);
            }

        a.disabled {
            color: #aaa;
            cursor: not-allowed;
        }


/*标题*/
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    color: #333;
}

h1 {
    font-size: 2.2rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.6rem;
}

h5 {
    font-size: 1.5rem;
    color: #000;
    font-weight: bold;
}

h6 {
    font-size: 1.4rem;
    color: #111;
    font-weight: bold;
}

/*段落*/
p {
    line-height: 1.6em;
    color: #555;
}

    p.txt-indent {
        text-indent: 2em;
    }

        p.txt-indent * {
            text-indent: 0;
        }

    p.normal {
        margin: 0;
        line-height: 1;
        color: inherit;
    }

strong {
    font-weight: bold;
}

/*引用*/
.blockquote,
blockquote,
.blockquote.blockquote-default,
blockquote.blockquote-default {
    margin: 1em 0;
    border-left: 0.3rem solid #bbb;
    background-color: #f8f8f8;
    padding: 0 0.6em;
    position: relative;
}

    .blockquote.blockquote-primary,
    blockquote.blockquote-primary {
        border-left-color: #28d;
    }

    .blockquote.blockquote-success,
    blockquote.blockquote-success {
        border-left-color: #5a5;
    }

    .blockquote.blockquote-danger,
    blockquote.blockquote-danger {
        border-left-color: #e44;
    }

    .blockquote.blockquote-warning,
    blockquote.blockquote-warning {
        border-left-color: #f82;
    }

    .blockquote.blockquote-info,
    blockquote.blockquote-info {
        border-left-color: #29c;
    }

    .blockquote p,
    blockquote p {
        margin: 0;
    }

    blockquote.quote,
    .blockquote.quote {
        padding-left: 1.7em;
        padding-right: 1.7em;
    }

        .blockquote.quote:before,
        blockquote.quote:before,
        .blockquote.quote:after,
        blockquote.quote:after {
            font-family: Georgia, serif;
            font-size: 3.6rem;
            color: #bbb;
            display: inline-block;
            position: absolute;
        }

        blockquote.quote:before,
        .blockquote.quote:before {
            content: "\201C";
            top: 0;
            left: 0.3rem;
        }

        blockquote.quote:after,
        .blockquote.quote:after {
            content: "\201D";
            right: 0.3rem;
            bottom: -2rem;
        }

/*代码*/
kbd,
code {
    display: inline-block;
    line-height: 1.5em;
    vertical-align: middle;
    background-color: #f6f6f6;
    border: solid 1px #ddd;
    vertical-align: baseline;
    margin: 0 0.2rem;
    font-family: Consolas, 'Droid Sans Mono', 'Source Code Pro', Monaco, 'Courier New', 'LXGW WenKai GB', LXGW;
}

kbd {
    padding: 0.25rem 0.6rem;
    line-height: 1em;
    border-radius: 0.3rem;
}

code {
    line-height: 1.5em;
    padding: 0.1rem 0.6rem;
    border-radius: 0.2rem;
    word-break: break-all;
    word-wrap: break-word;
}

    code.code-block {
        background-color: #f6f6f6;
        display: block;
        border: 0;
        padding: 1em 1.2em;
    }

/*列表*/
ul,
ol {
    padding-left: 1.2em;
}

    ul li,
    ol li {
        line-height: 1.8em;
        position: relative;
    }


    ul.list-inline {
        list-style: none;
        padding: 0;
        display: inline-flex;
    }

        ul.list-inline li {
            line-height: 1;
        }

    ul.list-unstyled {
        list-style: none;
        padding: 0;
    }

        ul.list-unstyled li {
            line-height: 1;
        }

    ul.list-dot li {
        list-style: none;
    }

        ul.list-dot li::before {
            content: '';
            background-color: #aaa;
            position: absolute;
            left: -1.6rem;
            top: 50%;
            margin-top: -0.3rem;
            display: inline-block;
            width: 0.8rem;
            height: 0.8rem;
            border-radius: 50%;
        }

        ul.list-dot li:nth-child(5n+1)::before {
            background-color: #2185d0;
        }

        ul.list-dot li:nth-child(5n+2)::before {
            background-color: #4cae4c;
        }

        ul.list-dot li:nth-child(5n+3)::before {
            background-color: #d9534f;
        }

        ul.list-dot li:nth-child(5n+4)::before {
            background-color: #d92;
        }

        ul.list-dot li:nth-child(5n+5)::before {
            background-color: #289fc3;
        }

hr {
    height: 1px;
    border-top: 1px solid #ccc;
    background-color: transparent;
    margin: 1.2rem 0;
}

/*user select*/
.no-select {
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

/*图片*/
img {
    max-width: 100%;
}

.img-bordered {
    border: 1px solid #ddd;
    padding: 0.5rem;
    background-color: #fff;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

/*size*/
.wd-20 {
    width: 2rem;
}

.wd-25 {
    width: 2.5rem;
}

.wd-30 {
    width: 3rem;
}

.wd-35 {
    width: 3.5rem;
}

.wd-40 {
    width: 4rem;
}

.wd-45 {
    width: 4.5rem;
}

.wd-50 {
    width: 5rem;
}

.wd-55 {
    width: 5.5rem;
}

.wd-60 {
    width: 6rem;
}

.wd-65 {
    width: 6.5rem;
}

.wd-70 {
    width: 7rem;
}

.wd-75 {
    width: 7.5rem;
}

.wd-80 {
    width: 8rem;
}

.wd-85 {
    width: 8.5rem;
}

.wd-90 {
    width: 9rem;
}

.wd-95 {
    width: 9.5rem;
}

.wd-100 {
    width: 10rem;
}

.wd-110 {
    width: 11rem;
}

.wd-120 {
    width: 12rem;
}

.wd-130 {
    width: 13rem;
}

.wd-140 {
    width: 14rem;
}

.wd-150 {
    width: 15rem;
}

.wd-160 {
    width: 16rem;
}

.wd-180 {
    width: 18rem;
}

.wd-200 {
    width: 20rem;
}

.wd-250 {
    width: 25rem;
}

.wd-300 {
    width: 30rem;
}

/*margin*/
.m-auto {
    margin: auto;
}

.m-0 {
    margin: 0 !important;
}

.mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.ml-0 {
    margin-left: 0 !important;
}

.mr-0 {
    margin-right: 0 !important;
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.ml-auto {
    margin-left: auto;
}

.mr-auto {
    margin-right: auto;
}

.mt-auto {
    margin-top: auto;
}

.mb-auto {
    margin-bottom: auto;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.my-auto {
    margin-top: auto;
    margin-bottom: auto;
}

.m-3 {
    margin: 0.3rem;
}

.my-3 {
    margin-top: 0.3rem;
    margin-bottom: 0.3rem;
}

.mx-3 {
    margin-left: 0.3rem;
    margin-right: 0.3rem;
}

.ml-3 {
    margin-left: 0.3rem;
}

.mr-3 {
    margin-right: 0.3rem;
}

.mt-3 {
    margin-top: 0.3rem;
}

.mb-3 {
    margin-bottom: 0.3rem;
}

.m-6 {
    margin: 0.6rem;
}

.my-6 {
    margin-top: 0.6rem;
    margin-bottom: 0.6rem;
}

.mx-6 {
    margin-left: 0.6rem;
    margin-right: 0.6rem;
}

.ml-6 {
    margin-left: 0.6rem;
}

.mr-6 {
    margin-right: 0.6rem;
}

.mt-6 {
    margin-top: 0.6rem;
}

.mb-6 {
    margin-bottom: 0.6rem;
}

.m-9 {
    margin: 0.9rem;
}

.my-9 {
    margin-top: 0.9rem;
    margin-bottom: 0.9rem;
}

.mx-9 {
    margin-left: 0.9rem;
    margin-right: 0.9rem;
}

.ml-9 {
    margin-left: 0.9rem;
}

.mr-9 {
    margin-right: 0.9rem;
}

.mt-9 {
    margin-top: 0.9rem;
}

.mb-9 {
    margin-bottom: 0.9rem;
}

.m-12 {
    margin: 1.2rem;
}

.my-12 {
    margin-top: 1.2rem;
    margin-bottom: 1.2rem;
}

.mx-12 {
    margin-left: 1.2rem;
    margin-right: 1.2rem;
}

.ml-12 {
    margin-left: 1.2rem;
}

.mr-12 {
    margin-right: 1.2rem;
}

.mt-12 {
    margin-top: 1.2rem;
}

.mb-12 {
    margin-bottom: 1.2rem;
}

.m-15 {
    margin: 1.5rem;
}

.my-15 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.mx-15 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

.ml-15 {
    margin-left: 1.5rem;
}

.mr-15 {
    margin-right: 1.5rem;
}

.mt-15 {
    margin-top: 1.5rem;
}

.mb-15 {
    margin-bottom: 1.5rem;
}

.m-18 {
    margin: 1.8rem;
}

.my-18 {
    margin-top: 1.8rem;
    margin-bottom: 1.8rem;
}

.mx-18 {
    margin-left: 1.8rem;
    margin-right: 1.8rem;
}

.ml-18 {
    margin-left: 1.8rem;
}

.mr-18 {
    margin-right: 1.8rem;
}

.mt-18 {
    margin-top: 1.8rem;
}

.mb-18 {
    margin-bottom: 1.8rem;
}

.mx-18 {
    margin-left: 1.8rem;
    margin-right: 1.8rem;
}

.my-18 {
    margin-top: 1.8rem;
    margin-bottom: 1.8rem;
}

.m-21 {
    margin: 2.1rem;
}

.mx-21 {
    margin-left: 2.1rem;
    margin-right: 2.1rem;
}

.my-21 {
    margin-top: 2.1rem;
    margin-bottom: 2.1rem;
}

.mt-21 {
    margin-top: 2.1rem;
}

.mb-21 {
    margin-bottom: 2.1rem;
}

.ml-21 {
    margin-left: 2.1rem;
}

.mr-21 {
    margin-right: 2.1rem;
}

.m-24 {
    margin: 2.4rem;
}

.my-24 {
    margin-top: 2.4rem;
    margin-bottom: 2.4rem;
}

.mx-24 {
    margin-left: 2.4rem;
    margin-right: 2.4rem;
}

.mt-24 {
    margin-top: 2.4rem;
}

.mb-24 {
    margin-bottom: 2.4rem;
}

.ml-24 {
    margin-left: 2.4rem;
}

.mr-24 {
    margin-right: 2.4rem;
}

.m-27 {
    margin: 2.7rem;
}

.my-27 {
    margin-top: 2.7rem;
    margin-bottom: 2.7rem;
}

.mx-27 {
    margin-left: 2.7rem;
    margin-right: 2.7rem;
}

.mt-27 {
    margin-top: 2.7rem;
}

.mb-27 {
    margin-bottom: 2.7rem;
}

.ml-27 {
    margin-left: 2.7rem;
}

.mr-27 {
    margin-right: 2.7rem;
}

/*******padding*******/
.p-0 {
    padding: 0 !important;
}

.px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.pl-0 {
    padding-left: 0 !important;
}

.pr-0 {
    padding-right: 0 !important;
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.p-3 {
    padding: 0.3rem;
}

.py-3 {
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
}

.px-3 {
    padding-left: 0.3rem;
    padding-right: 0.3rem;
}

.pl-3 {
    padding-left: 0.3rem;
}

.pr-3 {
    padding-right: 0.3rem;
}

.pt-3 {
    padding-top: 0.3rem;
}

.pb-3 {
    padding-bottom: 0.3rem;
}


.p-6 {
    padding: 0.6rem;
}

.py-6 {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
}

.px-6 {
    padding-left: 0.6rem;
    padding-right: 0.6rem;
}

.pl-6 {
    padding-left: 0.6rem;
}

.pr-6 {
    padding-right: 0.6rem;
}

.pt-6 {
    padding-top: 0.6rem;
}

.pb-6 {
    padding-bottom: 0.6rem;
}

.p-9 {
    padding: 0.9rem;
}

.py-9 {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
}

.px-9 {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
}

.pl-9 {
    padding-left: 0.9rem;
}

.pr-9 {
    padding-right: 0.9rem;
}

.pt-9 {
    padding-top: 0.9rem;
}

.pb-9 {
    padding-bottom: 0.9rem;
}

.p-12 {
    padding: 1.2rem;
}

.py-12 {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
}

.px-12 {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
}

.pl-12 {
    padding-left: 1.2rem;
}

.pr-12 {
    padding-right: 1.2rem;
}

.pt-12 {
    padding-top: 1.2rem;
}

.pb-12 {
    padding-bottom: 1.2rem;
}


.p-15 {
    padding: 1.5rem;
}

.py-15 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.px-15 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.pl-15 {
    padding-left: 1.5rem;
}

.pr-15 {
    padding-right: 1.5rem;
}

.pt-15 {
    padding-top: 1.5rem;
}

.pb-15 {
    padding-bottom: 1.5rem;
}

.p-18 {
    padding: 1.8rem;
}

.py-18 {
    padding-top: 1.8rem;
    padding-bottom: 1.8rem;
}

.px-18 {
    padding-left: 1.8rem;
    padding-right: 1.8rem;
}

.pl-18 {
    padding-left: 1.8rem;
}

.pr-18 {
    padding-right: 1.8rem;
}

.pt-18 {
    padding-top: 1.8rem;
}

.pb-18 {
    padding-bottom: 1.8rem;
}

.p-21 {
    padding: 2.1rem;
}

.py-21 {
    padding-top: 2.1rem;
    padding-bottom: 2.1rem;
}

.px-21 {
    padding-left: 2.1rem;
    padding-right: 2.1rem;
}

.pl-21 {
    padding-left: 2.1rem;
}

.pr-21 {
    padding-right: 2.1rem;
}

.pt-21 {
    padding-top: 2.1rem;
}

.pb-21 {
    padding-bottom: 2.1rem;
}

.p-24 {
    padding: 2.4rem;
}

.py-24 {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
}

.px-24 {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
}

.pl-24 {
    padding-left: 2.4rem;
}

.pr-24 {
    padding-right: 2.4rem;
}

.pt-24 {
    padding-top: 2.4rem;
}

.pb-24 {
    padding-bottom: 2.4rem;
}

.p-27 {
    padding: 2.7rem;
}

.py-27 {
    padding-top: 2.7rem;
    padding-bottom: 2.7rem;
}

.px-27 {
    padding-left: 2.7rem;
    padding-right: 2.7rem;
}

.pl-27 {
    padding-left: 2.7rem;
}

.pr-27 {
    padding-right: 2.7rem;
}

.pt-27 {
    padding-top: 2.7rem;
}

.pb-27 {
    padding-bottom: 2.7rem;
}


.dis-inbk {
    display: inline-block;
}

.dis-block {
    display: block;
}

/*center*/
.center {
    margin-left: auto;
    margin-right: auto;
}

.center-x {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.center-y {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.center-xy {
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.show {
    display: block !important;
}

.hide {
    display: none !important;
}

.visible {
    visibility: visible !important;
}

.hidden {
    visibility: hidden !important;
}

/**颜色*/
.red-1 {
    color: var(--red-1);
}

.red-2 {
    color: var(--red-2);
}

.red-3 {
    color: var(--red-3);
}

.green-1 {
    color: var(--green-1);
}

.green-2 {
    color: var(--green-2);
}

.green-3 {
    color: var(--green-3);
}

.blue-1 {
    color: var(--blue-1);
}

.blue-2 {
    color: var(--blue-2);
}

.blue-3 {
    color: var(--blue-3);
}

.orange-1 {
    color: var(--orange-1);
}

.orange-2 {
    color: var(--orange-2);
}

.orange-3 {
    color: var(--orange-3);
}

.primary {
    color: var(--primary);
}

.info {
    color: var(--info);
}

.warning {
    color: var(--warning);
}

.danger {
    color: var(--danger);
}

.gray-0 {
    color: #000;
}

.gray-1 {
    color: #111;
}

.gray-2 {
    color: #222;
}

.gray-3 {
    color: #333;
}

.gray-4 {
    color: #444;
}

.gray-5 {
    color: #555;
}

.gray-6 {
    color: #666;
}

.gray-7 {
    color: #777;
}

.gray-8 {
    color: #888;
}

.gray-9 {
    color: #999;
}

.gray-a {
    color: #aaa;
}

.gray-b {
    color: #bbb;
}

.gray-c {
    color: #ccc;
}

.gray-d {
    color: #ddd;
}

.gray-e {
    color: #eee;
}

.gray-f {
    color: #fff;
}


/***********************
    table(表格)
    ***********************/
table {
    text-align: left;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

    .table thead tr th,
    .table tbody tr td {
        position: relative;
        padding: 0.6rem;
        word-break: break-all;
        font-size: 1.4rem;
    }

    .table.table-sm thead tr th,
    .table.table-sm tbody tr td {
        height: 3.4rem;
        font-size: 1.4rem;
    }

    .table.table-lg thead tr th,
    .table.table-lg tbody tr td {
        height: 3.8rem;
    }

    .table.table-basic tr {
        border-bottom: 1px solid #ddd;
    }

table.table.table-hover tbody tr:hover {
    background-color: rgba(33, 133, 208, .1)
}

.table.table-bordered {
    border-radius: 2px;
    border-collapse: separate;
    border-spacing: 0;
    border-bottom: 1px solid #e2e2e2;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

    .table.table-bordered th,
    .table.table-bordered td {
        border-top: 1px solid #e2e2e2;
        vertical-align: middle;
    }

    .table.table-bordered thead tr,
    .table.table-bordered tbody tr {
        border-top: 1px solid #e2e2e2;
    }

        .table.table-bordered thead tr th,
        .table.table-bordered tbody tr td {
            border-left: 1px solid #e2e2e2;
        }

            .table.table-bordered thead tr th:last-child,
            .table.table-bordered tbody tr td:last-child {
                border-right: 1px solid #e2e2e2;
            }

    .table.table-bordered thead + tbody tr:first-child td {
        border-top-color: #ddd;
    }

.table.table-striped tbody tr:nth-child(2n+1) {
    background-color: #fafafa;
}

.table.table-bordered.table-bortop {
    border-top: .15rem solid #f2711c;
    color: #666;
}

table.table.table-bortop thead tr,
table.table.table-bortop thead tr th {
    border-top: none;
}

.table tr.active,
.table tr td.active {
    background-color: #f6f6f6 !important;
    color: inherit !important;
}

.table tr.success,
.table tr td.success {
    background-color: #ebfbee !important;
    color: inherit !important;
}

.table tr.danger,
.table tr td.danger {
    background-color: #ffe3e3 !important;
    color: inherit !important;
}

.table tr.warning,
.table tr td.warning {
    background-color: #fff9db !important;
    color: inherit !important;
}

.table tr.info,
.table tr td.info {
    background-color: #e3fafc !important;
    color: inherit !important;
}

/*data-grid*/

.data-grid thead tr th {
    font-weight: normal;
}

    .data-grid thead tr th.sortable {
        cursor: pointer;
        padding-right: 1.3rem;
    }

        .data-grid thead tr th.sortable::before,
        .data-grid thead tr th.sortable::after {
            content: '';
            display: inline-block;
            border-left: 0.4rem solid transparent;
            border-right: 0.4rem solid transparent;
            position: absolute;
            right: 0.4rem;
        }

        .data-grid thead tr th.sortable::before {
            border-bottom: 0.6rem solid #e2e2e2;
            top: 1rem;
        }

        .data-grid thead tr th.sortable::after {
            border-top: 0.6rem solid #e2e2e2;
            top: 1.8rem;
        }

    .data-grid thead tr th.sortable-asc::after {
        display: none;
    }

    .data-grid thead tr th.sortable-desc::before {
        display: none;
    }

    .data-grid thead tr th.sortable-asc::before {
        border-bottom-color: #999;
    }

    .data-grid thead tr th.sortable-desc::after {
        border-top-color: #999;
    }

/***********************
    Buttons(按钮)
    ***********************/
.btn {
    display: inline-flex;
    align-items: center;
    align-content: center;
    padding: 0 1.2rem;
    cursor: pointer;
    border-radius: 2px;
    border: 0;
    outline: 0;
    text-align: center;
    font-size: 1.4rem;
    color: #fff;
    box-shadow: none;
    transition: all linear 0.1s;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

    /*    .btn:not([disabled]):active,
    .btn:not([disabled]).active {
        box-shadow: 0 0 26px 6px rgba(0, 0, 0, .1) inset;
    }*/

    .btn.btn-default:not([disabled]):active,
    .btn.btn-default:not([disabled]).active {
        box-shadow: 0 0 8px 6px rgba(0, 0, 0, .06) inset;
    }

a.btn:hover {
    color: #fff;
}

a.btn.btn-default:hover {
    color: #666;
}

.btn.btn-sm {
    min-width: 7rem;
    line-height: 3.2rem;
}

.btn {
    min-width: 8rem;
    line-height: 3.4rem;
}

    .btn.btn-lg {
        min-width: 9rem;
        line-height: 3.6rem;
        font-size: 1.5rem;
    }

    .btn.btn-xl {
        min-width: 10rem;
        line-height: 3.8rem;
        font-size: 1.6rem;
    }

.btn-block {
    display: block;
    width: 100%;
}

.btn[disabled] {
    cursor: default;
    opacity: 0.6;
}

.btn-default {
    background-color: #eee;
    color: #444;
}

/*    .btn-default.active,
    .btn-default:not([disabled]):hover {
        background-color: #d6d6d6;
    }*/

.btn-primary {
    background-color: #2185d0;
}

/*    .btn-primary.active,
    .btn-primary:not([disabled]):hover {
        background-color: #1d76b9;
    }*/

.btn-success {
    background-color: #4cae4c;
}
/*
    .btn-success.active,
    .btn-success:not([disabled]):hover {
        background-color: #449c44;
    }*/

.btn-danger {
    background-color: #d9534f;
}

/*    .btn-danger.active,
    .btn-danger:not([disabled]):hover {
        background-color: #d4403a;
    }*/

.btn-warning {
    background-color: #d92;
}

/*    .btn-warning.active,
    .btn-warning:not([disabled]):hover {
        background-color: #c81;
    }*/

.btn-info {
    background-color: #289fc3;
}

/*    .btn-info.active,
    .btn-info:not([disabled]):hover {
        background-color: #248dae;
    }*/

.btn.btn-link {
    border-color: transparent;
    color: #1b6ec2;
    min-width: initial;
}

    .btn.btn-link:hover {
        text-decoration: underline;
        color: #1862ab;
    }

    .btn.btn-link:active {
        box-shadow: none;
    }

/*outline btn*/
.btn.btn-outline {
    background-color: #fff;
}

/*    .btn.btn-outline:not([disabled]):hover,
    .btn.btn-outline:not([disabled]).active {
        color: #fff;
    }*/

    .btn.btn-outline.btn-default {
        border: 1px solid #bbb;
        color: #555;
    }

/*.btn-outline.btn-default:not([disabled]):hover,
.btn-outline.btn-default:not([disabled]).active {
    background-color: #eee;
    color: #444;
}*/

.btn-outline.btn-primary {
    color: #1d76b9;
    border: 1px solid #1d76b9;
}

/*    .btn-outline.btn-primary:not([disabled]):hover,
    .btn-outline.btn-primary:not([disabled]).active {
        background-color: #419ce1;
    }*/

.btn-outline.btn-success {
    color: #3d8a3d;
    border: 1px solid #3d8a3d;
}

/*    .btn-outline.btn-success:not([disabled]):hover,
    .btn-outline.btn-success:not([disabled]).active {
        background-color: #5cb75c;
    }*/

.btn-outline.btn-danger {
    color: #d4403a;
    border: 1px solid #d4403a;
}

/*    .btn-outline.btn-danger:not([disabled]):hover,
    .btn-outline.btn-danger:not([disabled]).active {
        background-color: #ff8787;
    }*/

.btn-outline.btn-warning {
    color: #c81;
    border: 1px solid #c81;
}

/*    .btn-outline.btn-warning:not([disabled]):hover,
    .btn-outline.btn-warning:not([disabled]).active {
        background-color: #eda135;
    }*/

.btn-outline.btn-info {
    color: #248dae;
    border: 1px solid #248dae;
}

/*    .btn-outline.btn-info:not([disabled]):hover,
    .btn-outline.btn-info:not([disabled]).active {
        background-color: #45b6d9;
    }*/


.btn.btn-outline.btn-sm {
    line-height: 2.8rem;
}

.btn.btn-outline {
    line-height: 3rem;
}

    .btn.btn-outline.btn-lg {
        line-height: 3.2rem;
    }

    .btn.btn-outline.btn-xl {
        line-height: 3.4rem;
    }

.btn .iconfont {
    line-height: 1;
    vertical-align: middle;
}

/*解决Firefox虚边框问题 outline*/
/*input::-moz-focus-inner,*/
button::-moz-focus-inner {
    border: 0;
}

.btn-no-style {
    all: unset;
    display: block;
    width: 100%;
    text-align: left;
    cursor: pointer;
    outline: none;
    box-sizing: border-box;
}

    .btn-no-style:focus {
        outline: none;
    }

/***********************
    form(表单)
 ***********************/
.form-control {
    display: inline-block;
    outline: 0;
    border: 1px solid #ccc;
    height: 3.2rem;
    padding: 0 0.7rem;
    border-radius: .3rem;
    width: 100%;
    color: #333;
    font-size: 1.4rem;
}

.form-control-sm {
    height: 3rem;
    /*   font-size: 1.3rem;*/
}

.form-control-lg {
    height: 3.4rem;
    font-size: 1.5rem;
    padding: 0 1rem;
}

.form-control-xl {
    height: 3.6rem;
    font-size: 1.5rem;
    padding: 0 1.2rem;
}

.form-control:focus:not([readonly]),
.form-control.focus:not([readonly]) {
    border-color: #60B243;
}

textarea.form-control {
    height: auto;
    padding: 0.7rem;
}

input[disabled],
textarea[disabled],
select[disabled] {
    background-color: #eee;
}

input[readonly],
textarea[readonly] {
    background-color: #f8f8f8;
    cursor: default;
}

.form-control.has-error {
    border-color: #d33;
}

.form-control.has-warning {
    border-color: #d92;
}

.form-control.has-success {
    border-color: #383;
}


/*form-validation*/
:valid,
:invalid {
    outline: none;
    box-shadow: none;
}

.validation:invalid {
    border-color: #d33;
}

.validation:valid {
    border-color: #383;
}

/*
   Dropdown&Select
*/
.dropdown,
.select {
    position: relative;
    display: inline-block;
}

    .select::before {
        position: absolute;
        right: 0.3rem;
        top: calc(50% - 0.3em);
        content: '';
        background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat;
        width: 1.1rem;
        height: 1.1rem;
        opacity: 0.36;
        z-index: 1;
    }

    .select > input {
        padding-left: 0.5rem;
    }

    .select.readonly,
    .select.readonly > input {
        background-color: #f8f8f8 !important;
    }

    .select.disabled,
    .select.disabled > input {
        background-color: #eee !important;
    }

    .select > input {
        cursor: default;
        caret-color: transparent;
        padding-right: 1.4rem;
    }

    .select .dropdown-menu {
        margin-top: 0;
        border-top: 0;
        overflow-x: hidden;
        overflow-y: auto;
        max-height: 36rem;
    }

    .select.editable > input {
        cursor: text;
    }

    .select > input[readonly] {
        background-color: #fff;
        cursor: default;
    }

    .select.focus > input {
        border-color: #129fea;
    }

    .select > input:first-child {
        display: none;
    }

    .select > input:last-of-type {
        display: block;
    }

    .select .dropdown-menu li.selected a {
        background-color: #28d;
        color: #fff;
        display: block;
    }

    .select .dropdown-menu li.selected:hover a {
        background-color: #17c;
    }

    .dropdown .btn:not([class*="btn-"]) {
        background-color: transparent;
        font-size: inherit;
        line-height: inherit;
    }

    .dropdown .dropdown-menu {
        font-size: inherit;
    }

    .dropdown .btn:not([class*="btn-"]) {
        background-color: transparent;
        font-size: inherit;
        color: inherit;
    }

        .dropdown .btn:not([class*="btn-"]):active {
            box-shadow: none;
        }

    .dropdown .dropdown-menu {
        color: inherit;
    }

.dropdown-menu {
    position: absolute;
    top: 100%;
    margin-top: 0.9rem;
    left: 0;
    min-width: 100%;
    font-size: 1.3rem;
    z-index: 900;
    display: none;
    list-style: none;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 0.3rem;
    box-shadow: 0.1rem 0.1rem 1.8rem rgba(0, 0, 0, 0.1);
    padding-left: 0;
    padding-right: 0;
}

    .dropdown-menu::before {
        content: '';
        position: absolute;
        display: inline-block;
        background-color: #fff;
        top: -0.65rem;
        transform: rotate(45deg);
        left: calc(50% - 0.65rem);
    }

    .dropdown-menu li {
        display: block;
        position: relative;
        line-height: 2.6rem;
        z-index: 1;
    }

        .dropdown-menu li:first-child {
            padding-top: 0.3rem;
        }

        .dropdown-menu li:last-child {
            padding-bottom: 0.3rem;
        }

        .dropdown-menu li + li {
            margin-top: 1px;
        }

        .dropdown-menu li.divider {
            height: 1px;
            overflow: hidden;
            background-color: #e5e5e5;
        }

        .dropdown-menu li:hover,
        .dropdown-menu li.hover {
            background-color: #eee;
        }

        .dropdown-menu li a {
            white-space: nowrap;
            display: block;
            padding: 0.2rem .9rem;
            font-size: 1.3rem;
            color: #777;
            display: block;
        }

.dropdown > .btn,
.dropdown > button,
.dropdown.selectable .dropdown-menu > li,
.dropdown.selectable .dropdown-menu > li > *,
.select .dropdown-menu > li,
.select .dropdown-menu > li > * {
    cursor: default;
}

.select.focus .dropdown-menu {
    display: block;
}

/*number input*/
.number-input {
    display: inline-flex;
    width: 11rem;
}

    .number-input .minus,
    .number-input .add {
        cursor: pointer;
        border: 1px solid #ccc;
        flex: none;
        font-family: Consolas, 'Droid Sans Mono', 'Source Code Pro', Monaco, 'Courier New';
        text-align: center;
        color: #ccc;
        -moz-user-select: none;
        -ms-user-select: none;
        -webkit-user-select: none;
        user-select: none;
        width: 3.2rem;
        line-height: 2.6rem;
        height: 3.2rem;
        font-size: 2.3rem;
    }

    .number-input input {
        border-radius: 0;
        width: calc(100% - 6.4rem);
        text-align: center;
        font-size: 1.4rem;
    }

    .number-input .minus:hover,
    .number-input .add:hover {
        color: #aaa
    }

    .number-input .minus {
        border-right: 0;
        border-top-left-radius: 2px;
        border-bottom-left-radius: 2px;
    }

    .number-input .add {
        border-top-right-radius: 2px;
        border-bottom-right-radius: 2px;
        border-left: 0;
    }


    .number-input.number-input-sm {
        width: 10rem;
    }

        .number-input.number-input-sm input {
            border-radius: 0;
            width: calc(100% - 6rem);
        }

        .number-input.number-input-sm .minus,
        .number-input.number-input-sm .add {
            height: 3rem;
            width: 3rem;
            font-size: 2.1rem;
            line-height: 2.7rem;
        }

    .number-input.number-input-lg {
        width: 12rem;
    }

        .number-input.number-input-lg input {
            border-radius: 0;
            width: calc(100% - 6.8rem);
        }

        .number-input.number-input-lg .minus,
        .number-input.number-input-lg .add {
            height: 3.4rem;
            width: 3.4rem;
            font-size: 2.7rem;
            line-height: 2.9rem;
        }

    .number-input.readonly {
        background-color: #f8f8f8;
    }

        .number-input.readonly .minus,
        .number-input.readonly .add,
        .number-input.disabled .minus,
        .number-input.disabled .add {
            cursor: default;
        }

            .number-input.readonly .minus:hover,
            .number-input.readonly .add:hover,
            .number-input.disabled .minus:hover,
            .number-input.disabled .add:hover {
                color: #ccc;
            }

    .number-input.disabled {
        background-color: #eee;
    }

/*checkbox*/
.checkbox {
    display: inline-block;
    cursor: pointer;
    border: 1px solid #aaa;
    border-radius: 3px;
    display: inline-block;
    width: 1.8rem;
    height: 1.8rem;
    position: relative;
    vertical-align: bottom;
    transition: all ease-in 0.12s;
}

    .checkbox:not(.disabled):not(.readonly) .check:hover {
        border-color: #28d;
    }

    .checkbox.checked {
        box-shadow: #f8f8f8 1px 1px inset;
    }

        .checkbox.checked:before {
            content: '';
            position: absolute;
            top: 0.3rem;
            bottom: 0.6rem;
            left: 0.2rem;
            right: 0.2rem;
            border-left: 2px solid #17c;
            border-bottom: 2px solid #17c;
            transform: rotate(-45deg);
        }


    .checkbox input[type=checkbox] {
        position: relative;
        z-index: 1;
        opacity: 0;
        cursor: pointer;
        width: 18px;
        height: 18px;
    }

    .checkbox.disabled {
        opacity: 0.65;
    }

    .checkbox.readonly {
        opacity: 0.8;
    }

    .checkbox.readonly,
    .checkbox.disabled {
        cursor: default;
    }

/*switch*/
.switch {
    position: relative;
    width: 3.8rem;
    height: 1.8rem;
    display: inline-block;
    vertical-align: middle;
    border-radius: 1rem;
    cursor: pointer;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 0 0 0 #ddd inset;
    transition: border 0.36s ease, box-shadow 0.36s ease;
}

    .switch::before {
        width: 1.6rem;
        height: 1.6rem;
        content: '';
        position: absolute;
        top: 0;
        left: .1rem;
        background-color: #fff;
        border-radius: 100%;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
        transition: all 0.2s ease;
    }

    .switch.checked {
        box-shadow: 0 0 0 1.4rem #39e inset;
        border-color: #39e;
    }

        .switch.checked::before {
            left: 2rem;
        }

    .switch input {
        display: none;
    }

    .switch.disabled {
        opacity: 0.6;
        cursor: default;
    }

    .switch.readonly {
        opacity: 0.75;
        cursor: default;
    }

/**Toast*/
.ui-toast {
    position: fixed;
    background-color: rgba(50, 50, 50, .65);
    box-shadow: rgba(0, 0, 0, .1) 1rem 1rem 1rem;
    z-index: 1100;
    padding: .5rem 1rem;
    border-radius: .3rem;
    color: #fff;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: opacity ease .5s;
    opacity: 0;
    pointer-events: none;
}

    .ui-toast.top {
        top: 5%;
    }

    .ui-toast.show-toast {
        opacity: 1;
        pointer-events: all;
    }


/*
    dialogue
*/
.dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    background-color: #fff;
    border-radius: 0.3rem;
    min-width: 36rem;
    max-width: 90%;
    padding: 1.8rem 1.2rem 1.2rem 1.2rem;
    text-align: center;
    transition: all ease-out 0.08s;
    opacity: 0;
    transform: translate(-50%, 0) scale(0.7);
}

    .dialog.show {
        z-index: 1099;
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    .dialog .dialog-icon::before,
    .dialog .dialog-icon::after {
        content: '';
        display: inline-block;
        font-family: Consolas, 'Droid Sans Mono', 'Source Code Pro', Monaco, 'Courier New', 'Microsoft YaHei';
    }

    .dialog .dialog-icon::before {
        width: 6rem;
        height: 6rem;
        margin-left: -1.8rem;
        border: 2px solid;
        opacity: 0.65;
        border-radius: 50%;
    }

    .dialog .dialog-icon::after {
        font-size: 5rem;
        margin-left: -4.3rem;
        margin-top: 0.2rem;
        vertical-align: top;
    }


    .dialog.dialog-info .dialog-icon::before {
        border-color: #44A5DA;
    }


    .dialog.dialog-info .dialog-icon::after {
        content: 'i';
        color: #44A5DA;
    }


    .dialog.dialog-warning .dialog-icon::before {
        border-color: #d92;
    }


    .dialog.dialog-warning .dialog-icon::after {
        content: '!';
        color: #d92;
    }


    .dialog.dialog-danger .dialog-icon::before {
        border-color: #d9534f;
        margin-left: -0.4rem;
    }


    .dialog.dialog-danger .dialog-icon::after {
        content: '×';
        font-size: 7.5rem;
        color: #d9534f;
        margin-top: -2.8rem;
        margin-left: -5.6rem;
        height: 9rem;
        font-family: 'Segoe UI', "Helvetica Neue", HelveticaArial, 'Microsoft YaHei', NSimSun;
    }


    .dialog.dialog-success .dialog-icon::before {
        border-color: #449c44;
        margin-left: -2rem;
    }

    .dialog.dialog-success .dialog-icon::after {
        width: 2rem;
        height: 3.8rem;
        border-bottom: 3px solid #449c44;
        border-right: 3px solid #449c44;
        transform: rotate(45deg);
        margin-top: 0.7rem;
        margin-left: -4rem;
    }

    .dialog.dialog-question .dialog-icon::before {
        border-color: #ccc;
    }


    .dialog.dialog-question .dialog-icon::after {
        content: '?';
        color: #aaa;
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    }

    .dialog .dialog-content .dialog-title {
        font-size: 1.6rem;
        color: #333;
        padding-top: 1.2rem;
    }

    .dialog .dialog-content .dialog-text {
        font-size: 1.5rem;
        padding: 1.2rem;
        padding-top: 0.5rem;
        color: #666;
    }

.dialog-btn {
    display: flex;
    margin-top: 0.3rem;
    justify-content: center;
}

.dialog .dialog-btn .btn {
    flex: auto;
    height: 3.4rem;
    border-radius: 3px;
}

    .dialog .dialog-btn .btn + .btn {
        margin-left: 1.2rem;
    }

.of-hidden {
    overflow: hidden !important;
}

/*radio*/
.radiobox .radio {
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    border: 1px solid #aaa;
    display: inline-block;
    position: relative;
    transition: all ease-in 0.12s;
    vertical-align: bottom;
}

.radiobox > label + label {
    margin-left: 1rem;
}

.radiobox .radio.checked {
    box-shadow: #f8f8f8 1px 1px inset;
}

.radiobox:not(.disabled):not(.readonly) .radio:hover {
    border-color: #39e;
}

.radiobox .radio.checked::before {
    content: '';
    position: absolute;
    background-color: #39e;
    border-radius: 50%;
    top: 0.4rem;
    bottom: 0.4rem;
    left: 0.4rem;
    right: 0.4rem;
}

.radiobox .radio input {
    position: relative;
    z-index: 1;
    opacity: 0;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.radiobox.disabled {
    opacity: 0.65;
}

.radiobox.readonly {
    opacity: 0.8;
}

.radiobox > * {
    cursor: pointer;
}

.radiobox.readonly > *,
.radiobox.disabled > * {
    cursor: default;
}

.flex {
    display: flex;
}

.flex-inline {
    display: inline-flex;
}

.flex-column {
    flex-direction: column;
}

.x-center {
    justify-content: center;
    justify-items: center;
}

.x-start {
    justify-content: flex-start;
    justify-items: flex-start;
}

.x-end {
    justify-content: flex-end;
    justify-items: flex-end;
}

.y-center {
    align-items: center;
    align-content: center;
}

.y-start {
    align-items: flex-start;
    align-content: flex-start;
}

.y-end {
    align-items: flex-end;
    align-content: flex-end;
}

.flex-item {
    flex: 1;
}

.flex-none {
    flex: none;
}

.flex-wrap {
    flex-wrap: wrap;
}

/*position*/
.pos-rel {
    position: relative;
}

.pos-abs {
    position: absolute;
}

.pos-fix {
    position: fixed;
}

.pos-sticky {
    position: sticky;
}

.pos-static {
    position: static;
}

.bottom {
    bottom: 0;
}

.top {
    top: 0;
}

.left {
    left: 0;
}

.right {
    right: 0;
}

.fix-full,
.abs-full {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}


.z-ng1 {
    z-index: -1;
}

.z-0 {
    z-index: 0;
}

.z-1 {
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

.z-3 {
    z-index: 3;
}

.z-4 {
    z-index: 4;
}

.z-5 {
    z-index: 5;
}

.z-10 {
    z-index: 10;
}

.z-11 {
    z-index: 11;
}

.z-12 {
    z-index: 12;
}

.z-13 {
    z-index: 13;
}

.z-14 {
    z-index: 14;
}

.z-15 {
    z-index: 15;
}

.rad-1 {
    border-radius: 0.1rem;
}

.rad-2 {
    border-radius: 0.2rem;
}

.rad-3 {
    border-radius: 0.3rem;
}

.rad-4 {
    border-radius: 0.4rem;
}

.rad-5 {
    border-radius: 0.5rem;
}

.rad-6 {
    border-radius: 0.6rem;
}

.rad-7 {
    border-radius: 0.7rem;
}

.rad-8 {
    border-radius: 0.8rem;
}

.rad-9 {
    border-radius: 0.9rem;
}

.rad-10 {
    border-radius: 1rem;
}

.lh-1 {
    line-height: 1;
}

.lh-1d2 {
    line-height: 1.2;
}

.lh-1d4 {
    line-height: 1.4;
}

.lh-1d6 {
    line-height: 1.6;
}

.lh-1d8 {
    line-height: 1.8;
}

.lh-2 {
    line-height: 2;
}

.alert {
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1100;
    background: rgba(0,0,0,0.5);
    border-radius: 10px;
    padding: 12px 16px;
    font-weight: 500;
    color: #fff;
    line-height: 21px;
    transition: opacity ease .3s;
    opacity: 0;
    pointer-events: none;
    text-align: center;
    font-size: 13px;
}

    .alert.show {
        opacity: 1;
        pointer-events: all;
    }

@keyframes itemsFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.items-fade-in {
    opacity: 0;
    animation: itemsFadeIn 0.5s ease forwards;
    animation-delay: calc(0.1s * var(--animation-order));
}

.ht-full {
    height: 100%;
}

.wd-full {
    width: 100%;
}

.op-0 {
    opacity: 0;
}

.op-1 {
    opacity: 1;
}
