:root {
    /*宽度*/
    --container-xs:600px;
    --container-sm:1000px;
    --container-md:1380px;
    --w-min:80px;
    --w-xs:120px;
    --w-sm:150px;
    --w-md:220px;
    --w-lg:400px;
    /*高度*/
    --h-nav: 60px;
    --h-header: 44px;
    --h-xs:20px;
    --h-sm:25px;
    --h-md:30px;
    --h-lg:38px;
    --h-bg:50px;
    /*文字大小*/
    --t-xs: 12px;
    --t-sm: 14px;
    --t-md: 18px;
    --t-lg: 25px;
    --t-bg: 38px;
    /*文字颜色*/
    --c-main: #409eff;
    --c-second: #409eff;
    --c-assist: #999;
    --c-success:#17D56B;
    --c-warning:#FEAE1B;
    --c-danger:#fd5c5f;
    /*按钮颜色*/
    --btn-main: linear-gradient(0deg, #409eff, #409eff);
    --btn-main-text: #fff;
    --btn-second: linear-gradient(0deg, #00EAFF, #00EAFF);
    --btn-second-text: #fff;
    --btn-assist: linear-gradient(0deg, #F4F4F5, #F4F4F5);
    --btn-assist-text: #C9CACD;
    /*背景颜色*/
    --bg-main: linear-gradient(0deg, #409eff, #409eff);
    --bg-main-text: #fff;
    --bg-second: linear-gradient(0deg, #F9FAFB, #F9FAFB);
    --bg-second-text: #333333;
    --bg-assist: linear-gradient(0deg, #F8F8F8, #F8F8F8);
    --bg-assist-text: #fff;
    --bg-success:linear-gradient(0deg, #17D56B, #17D56B);
    --bg-success-text: #fff;
    --bg-warning:linear-gradient(0deg, #FEAE1B, #FEAE1B);
    --bg-warning-text: #fff;
    --bg-danger:linear-gradient(0deg, #fd5c5f, #fd5c5f);
    --bg-danger-text: #fff;
    --bg-grey:linear-gradient(0deg, #fafafa, #fafafa);
    --bg-grey-text:#666;
    /*线颜色*/
    --line-default: #eee;
    --line-main: #3EAFFF;
    --line-second: #fc438c;
    --line-assist: #ccc;
}

@font-face {
    /* font-family: "roboto";
    src: url("./font/Roboto/Roboto-Regular-14.ttf"); */
    /* font-family: "crimson";
    src: url("./font/CrimsonText/CrimsonText-Bold-2.ttf"); */
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: 0;
}

body {
    overflow-x: hidden !important;
}

body,
html {
    font-family: "montserrat", "roboto", "pht";
    color: #111111;
    background-color: #fff;
    font-size: 14px;
    line-height: 1.4286;
    box-sizing: border-box;
}
li{
    list-style: none;
}
a {
    text-decoration: none;
    color: #0f0f0f;
}
:focus-visible {
    outline: none !important;
}

.overflow-hidden{
    overflow-x: hidden !important;
}
.overflow-y{
    overflow-y: auto !important;
}
.screen-full {
    width: 100vw;
    min-height: 100vh;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
}
.screen-xs {
    width: 100vw;
    min-height: 100vh;
    max-width: var(--container-xs);
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
}
.screen-sm {
    width: 100vw;
    min-height: 100vh;
    max-width: var(--container-sm);
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
}
.screen-md {
    width: 100vw;
    min-height: 100vh;
    max-width: var(--container-md);
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
}

.screen-full-header {
    width: 100vw;
    min-height: calc(100vh - var(--h-header));
    max-width: 100%;
    box-sizing: border-box;
}

.screen-full-nav {
    width: 100vw;
    min-height: calc(100vh - var(--h-nav));
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
}

.container-xs {
    width: 100%;
    max-width: var(--container-xs);
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
}
.container-sm {
    width: 100%;
    max-width: var(--container-sm);
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
}
.container-md,.container {
    width: 100%;
    max-width: var(--container-md);
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
}

/*辅助*/
.pointer {
    cursor: pointer;
}
.box-shadow {
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, .1);
}

.opacity-7 {
    opacity: 0.7;
}

.fl {
    float: left;
}

.fr {
    float: right;
}


/*定位*/
.relative{
    position: relative;
}

.absolute, .absolute-tl {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 999;
}

.absolute-bl {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 999;
}

.absolute-tr {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 999;
}

.absolute-br {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 999;
}

.fixed,fixed-tl {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.fixed-tr {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
}
.fixed-bl {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
}
.fixed-br {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 999;
}

.pd-5 {
    padding: 5px;
}

.pd-7_5 {
    padding: 7.5px;
}

.pd-10 {
    padding: 10px;
}

.pd-15 {
    padding: 15px;
}

.pd-20 {
    padding: 20px;
}

.pd-25 {
    padding: 25px;
}

.pd-30 {
    padding: 30px;
}

.pd-50 {
    padding: 50px;
}

.pl-5 {
    padding-left: 5px;
}

.pl-10 {
    padding-left: 10px;
}

.pl-15 {
    padding-left: 15px;
}

.pl-20 {
    padding-left: 20px;
}

.pl-25 {
    padding-left: 25px;
}

.pl-30 {
    padding-left: 50px;
}
.pl-50 {
    padding-left: 30px;
}

.pt-5 {
    padding-top: 5px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-15 {
    padding-top: 15px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-25 {
    padding-top: 25px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-50 {
    padding-top: 50px;
}

.pr-5 {
    padding-right: 5px;
}

.pr-10 {
    padding-right: 10px;
}

.pr-15 {
    padding-right: 15px;
}

.pr-20 {
    padding-right: 20px;
}

.pr-25 {
    padding-right: 25px;
}

.pr-30 {
    padding-right: 30px;
}
.pr-50 {
    padding-right: 50px;
}

.pb-5 {
    padding-bottom: 5px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-50 {
    padding-bottom: 50px;
}
.mg-auto {
    margin: auto;
}

.mg-5 {
    margin: 5px;
}

.mg-10 {
    margin: 10px;
}

.mg-15 {
    margin: 15px;
}
.mg-20 {
    margin: 20px;
}
.mg-25 {
    margin: 25px;
}

.mg-30 {
    margin: 30px;
}

.mg-50 {
    margin: 50px;
}

.mg-80 {
    margin: 80px;
}

.mg-100 {
    margin: 100px;
}

.ml-5 {
    margin-left: 5px;
}

.ml-10 {
    margin-left: 10px;
}

.ml-15 {
    margin-left: 15px;
}

.ml-30 {
    margin-left: 30px;
}

.mr-5 {
    margin-right: 5px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-15 {
    margin-right: 15px;
}

.mr-30 {
    margin-right: 30px;
}

.mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}
.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-100 {
    margin-top: 100px;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-100 {
    margin-bottom: 100px;
}


.circle {
    border-radius: 1000vw !important;
}
.b-r,.b-r-3  {
    border-radius: 3px;
    overflow: hidden;
}
.b-r-5 {
    border-radius: 5px;
    overflow: hidden;
}

.b-r-10 {
    border-radius: 10px;
    overflow: hidden;
}

.b-r-15 {
    border-radius: 15px;
    overflow: hidden;
}

.b-r-20 {
    border-radius: 20px;
    overflow: hidden;
}

.b-r-25 {
    border-radius: 25px;
    overflow: hidden;
}

.b-r-30 {
    border-radius: 30px;
    overflow: hidden;
}

.b-r-50 {
    border-radius: 50px;
    overflow: hidden;
}


.xs-1-24 {
    width: 4.1667%;
}

.xs-1-12 {
    width: 8.3333%;
}

.xs-1-8, .xs-3-24 {
    width: 12.5000%;
}
.xs-1-7{
    width: 14.2857%;
}

.xs-1-6 {
    width: 16.6667%;
}

.xs-1-5 {
    width: 20%;
}

.xs-5-24 {
    width: 20.8333%;
}

.xs-1-4 {
    width: 25%;
}

.xs-7-24 {
    width: 29.1667%;
}

.xs-1-3 {
    width: 33.3333%;
}

.xs-3-8 {
    width: 37.5000%;
}

.xs-2-5 {
    width: 40%;
}

.xs-5-12 {
    width: 41.6667%;
}

.xs-11-24 {
    width: 45.8333%;
}

.xs-1-2 {
    width: 50%;
}

.xs-13-24 {
    width: 54.1667%;
}

.xs-7-12 {
    width: 58.3333%;
}

.xs-3-5 {
    width: 60%;
}

.xs-5-8 {
    width: 62.5000%;
}

.xs-2-3 {
    width: 66.6667%;
}

.xs-17-24 {
    width: 70.8333%;
}

.xs-3-4 {
    width: 75%;
}

.xs-19-24 {
    width: 79.1667%;
}

.xs-4-5 {
    width: 80%;
}

.xs-5-6 {
    width: 83.3333%;
}

.xs-7-8 {
    width: 87.5000%;
}

.xs-11-12 {
    width: 91.6667%;
}

.xs-23-24 {
    width: 95.8333%;
}

.xs-1-1 {
    width: 100%;
}
@media (max-width: 768px) {

    .xs-hidden {
        display: none;
    }
}

@media (min-width: 768px) {
    .sm-auto {
        flex-grow: 1;
        width: 0;
    }

    .sm-1-24 {
        width: 4.1667% !important;
    }

    .sm-1-12 {
        width: 8.3333% !important;
    }

    .sm-1-8, .sm-3-24 {
        width: 12.5000% !important;
    }

    .sm-1-6 {
        width: 16.6667% !important;
    }

    .sm-1-5 {
        width: 20% !important;
    }

    .sm-5-24 {
        width: 20.8333% !important;
    }

    .sm-1-4 {
        width: 25% !important;
    }

    .sm-7-24 {
        width: 29.1667% !important;
    }

    .sm-1-3 {
        width: 33.3333% !important;
    }

    .sm-3-8 {
        width: 37.5000% !important;
    }

    .sm-2-5 {
        width: 40% !important;
    }

    .sm-5-12 {
        width: 41.6667% !important;
    }

    .sm-11-24 {
        width: 45.8333% !important;
    }

    .sm-1-2 {
        width: 50% !important;
    }

    .sm-13-24 {
        width: 54.1667% !important;
    }

    .sm-7-12 {
        width: 58.3333% !important;
    }

    .sm-3-5 {
        width: 60% !important;
    }

    .sm-5-8 {
        width: 62.5000% !important;
    }

    .sm-2-3 {
        width: 66.6667% !important;
    }

    .sm-17-24 {
        width: 70.8333% !important;
    }

    .sm-3-4 {
        width: 75% !important;
    }

    .sm-19-24 {
        width: 79.1667% !important;
    }

    .sm-4-5 {
        width: 80% !important;
    }

    .sm-5-6 {
        width: 83.3333% !important;
    }

    .sm-7-8 {
        width: 87.5000% !important;
    }

    .sm-11-12 {
        width: 91.6667% !important;
    }

    .sm-23-24 {
        width: 95.8333% !important;
    }

    .sm-1-1 {
        width: 100% !important;
    }

    .sm-hidden {
        display: none;
    }
}

@media (min-width: 992px) {
    .md-1-24 {
        width: 4.1667%;
    }

    .md-1-12 {
        width: 8.3333%;
    }

    .md-1-8, .md-3-24 {
        width: 12.5000%;
    }

    .md-1-6 {
        width: 16.6667%;
    }

    .md-1-5 {
        width: 20%;
    }

    .md-5-24 {
        width: 20.8333%;
    }

    .md-1-4 {
        width: 25%;
    }

    .md-7-24 {
        width: 29.1667%;
    }

    .md-1-3 {
        width: 33.3333%;
    }

    .md-3-8 {
        width: 37.5000%;
    }

    .md-2-5 {
        width: 40%;
    }

    .md-5-12 {
        width: 41.6667%;
    }

    .md-11-24 {
        width: 45.8333%;
    }

    .md-1-2 {
        width: 50%;
    }

    .md-13-24 {
        width: 54.1667%;
    }

    .md-7-12 {
        width: 58.3333%;
    }

    .md-3-5 {
        width: 60%;
    }

    .md-5-8 {
        width: 62.5000%;
    }

    .md-2-3 {
        width: 66.6667%;
    }

    .md-17-24 {
        width: 70.8333%;
    }

    .md-3-4 {
        width: 75%;
    }

    .md-19-24 {
        width: 79.1667%;
    }

    .md-4-5 {
        width: 80%;
    }

    .md-5-6 {
        width: 83.3333%;
    }

    .md-7-8 {
        width: 87.5000%;
    }

    .md-11-12 {
        width: 91.6667%;
    }

    .md-23-24 {
        width: 95.8333%;
    }

    .md-1-1 {
        width: 100%;
    }

    .md-hidden {
        display: none;
    }
}


.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.row-nowrap {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.row-auto {
    flex-grow: 1;
    width: 0;
}

.row-reverse {
    flex-direction: row-reverse;
}

.row-center {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.row-end {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.row-around {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.row-between {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.col {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.col-auto {
    flex-grow: 1;
}

.col-center {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
}
.col-end {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-end;
}

.col-around {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-around;
}

.col-between {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.flex-center {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.align-center {
    align-items: center;
}

.align-end {
    align-items: flex-end;
}


.space-10,
.space-10 > * {
    padding: 5px;
}

.space-15,
.space-15 > * {
    padding: 7.5px;
}

.space-20,
.space-20 > * {
    padding: 10px;
}

.space-30,
.space-30 > * {
    padding: 15px;
}

.container-table {
    display: table;
}

.table-row {
    display: table-row;
}

.table-row > *,
.table-cell {
    display: table-cell !important;
}


.bg-img {
    background-repeat: no-repeat !important;
    background-size: contain !important;
    background-position: 50% !important;
}

.bg-img-cover {
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: 50% !important;
}

.bg-img-left {
    background-repeat: no-repeat !important;
    background-size: contain !important;
    background-position: left !important /* 图片定位在左上角 */
}
.bg-img-top {
    background-repeat: no-repeat !important;
    background-size: contain !important;
    background-position: top !important /* 图片定位在左上角 */
}
.bg-img-right {
    background-repeat: no-repeat !important;
    background-size: contain !important;
    background-position: 100% !important; /* 图片定位在右侧顶端 */
}
.bg-img-bottom {
    background-repeat: no-repeat !important;
    background-size: contain !important;
    background-position: bottom !important /* 图片定位在左上角 */
}
.bg-img-xs {
    background-repeat: repeat !important;
    background-size: 20px 20px !important;
}

/* 文字大小 */

.t-xs {
    font-size: var(--t-xs);
    line-height: var(--h-xs);
}

.t-sm {
    font-size: var(--t-sm);
    line-height: var(--h-sm);
}

.t-md {
    font-size: var(--t-md);
    line-height: var(--h-md);
}

.t-lg {
    font-size: var(--t-lg);
    line-height: var(--h-lg);
}

.t-bg {
    font-size: var(--t-bg);
    line-height: var(--h-bg);
}

.l-h-xs {
    line-height: var(--h-xs);
}

.l-h-sm {
    line-height: var(--h-sm) !important;
}

.l-h-md {
    line-height: var(--h-md) !important;
}

.l-h-lg {
    line-height: var(--h-lg) !important;
}

.l-h-bg {
    line-height: var(--h-bg) !important;
}

/* 文字通用样式 */
.t-nowrap {
    white-space: nowrap;
}

.t-break {
    word-break: break-all
}

.t-left {
    text-align: left;
}

.t-right {
    text-align: right;
}

.t-center {
    text-align: center;
}

.t-w {
    font-weight: bolder;
}

.t-italic {
    font-style: italic;
}

.t-void {
    text-decoration: line-through;
}


.t-underline {
    text-decoration: underline;
}

.t-row-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
}

.t-row-2 {
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all;
}

.t-select-none {
    user-select: none;
}

/* 文字颜色 */

.c-fff {
    color: #fff;
}

.c-default {
    color: #000000;
}

.c-main {
    color: var(--c-main);
}

.c-second {
    color:var(--c-second);
}

.c-assist {
    color:var(--c-assist);
}

.c-success {
    color: var(--c-success);
}

.c-warning {
    color: var(--c-warning);
}

.c-danger {
    color: var(--c-danger);
}


.w-min {
    width: var(--w-min) !important;
}
.w-xs {
    width: var(--w-xs) !important;
}
.w-sm {
    width: var(--w-sm) !important;
}

.w-md {
    width: var(--w-md) !important;
}
.w-lg {
    width: var(--w-lg) !important;
}
.wh-full {
    width: 100%;
    height: 100%;
}
.h-full{
    min-height: 100%;
}
.h-nav{
    height: var(--h-nav) !important;
}
.h-header{
    height: var(--h-header) !important;
}

.h-xs {
    height: var(--h-xs) !important;
}
.h-sm {
    height: var(--h-sm) !important;
}

.h-md {
    height: var(--h-md) !important;
}
.h-lg {
    height: var(--h-lg) !important;
}
.wh-xs {
    width: var(--h-xs) !important;
    height: var(--h-xs) !important;
}

.wh-sm {
    width: var(--h-sm) !important;
    height: var(--h-sm) !important;
}

.wh-md {
    width: var(--h-md) !important;
    height: var(--h-md) !important;
}

.wh-lg {
    width: var(--h-lg) !important;
    height: var(--h-lg) !important;
}

.wh-bg {
    width: var(--h-bg) !important;
    height: var(--h-bg) !important;
}


.wh-rate-1-1 {
    width: 100%;
    aspect-ratio: 1/1;
}

.wh-rate-2-1 {
    width: 100%;
    aspect-ratio: 2/1;
}

.wh-rate-3-1 {
    width: 100%;
    aspect-ratio: 3/1;
}

.wh-rate-4-1 {
    width: 100%;
    aspect-ratio: 4/1;
}

.wh-rate-5-1 {
    width: 100%;
    aspect-ratio: 5/1;
}
.wh-rate-1-2 {
    width: 100%;
    aspect-ratio: 1/2;
}

.wh-rate-1-3 {
    width: 100%;
    aspect-ratio: 1/3;
}

.wh-rate-1-4 {
    width: 100%;
    aspect-ratio: 1/4;
}

.wh-rate-1-5 {
    width: 100%;
    aspect-ratio: 1/5;
}

.wh-5 {
    width: 5px;
    height: 5px;
}

.wh-10 {
    width: 10px;
    height: 10px;
}

.wh-15 {
    width: 15px;
    height: 15px;
}

.wh-20 {
    width: 20px;
    height: 20px;
}

.wh-25 {
    width: 25px;
    height: 25px;
}

.wh-30 {
    width: 30px;
    height: 30px;
}
.wh-38 {
    width: 38px;
    height: 38px;
}

.wh-50 {
    width: 50px;
    height: 50px;
}

.wh-80 {
    width: 80px;
    height: 80px;
}

.wh-100 {
    width: 100px;
    height: 100px;
}

.wh-150 {
    width: 150px;
    height: 150px;
}

.wh-200 {
    width: 200px;
    height: 200px;
}

.z-index{z-index: 999}
/* 按钮 */
.btn,
.btn-main {
    background: var(--btn-main);
    color: var(--btn-main-text);
    border: none;
    padding: 0 12px;
    font-size: 14px;
    height: 44px;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
    box-sizing: border-box;
    user-select: none;
}
.btn-fff {
    background-image: linear-gradient(0deg, #fff, #fff);
    border: 1px solid #fff;
    color: #333;
}
.btn-light {
    background-image: linear-gradient(0deg, #ECF5FF, #ECF5FF);
    border: 1px solid #A0CFFF;
    color: #409eff;
}
.btn-line {
    background-image: none;
    border: 1px solid #A0CFFF;
    color: #3EAFFF;
}

.btn-second {
    background-image: var(--btn-second);
    color: var(--btn-second-text);
}

.btn-second-line {
    background-color: transparent;
    background-image: none;
    border: 1px solid var(--btn-second-text);
    color: var(--btn-second-text);
}

.btn-assist {
    background-image: var(--btn-assist);
    color: var(--btn-assist-text);
}

.btn-assist-line {
    background-color: transparent;
    background-image: none;
    border: 1px solid var(--btn-assist-text);
    color: var(--btn-assist-text);
}

.btn-link {
    background-color: transparent;
    background-image: none;
    border: none;
    color: #3EAFFF;
}



.btn-success {
    background-image: linear-gradient(0deg, #52C41A, #52C41A);
    border: 1px solid #52C41A;
    color: #fff;
}

.btn-success-light {
    background-image: linear-gradient(0deg, #F0F9EB, #F0F9EB);
    border: 1px solid #B3E19D;
    color: #67C23A;
}
.btn-success-line {
    background-color: transparent;
    background-image: none;
    border: 1px solid #52C41A;
    color: #52C41A;
}


.btn-warning {
    background-image: linear-gradient(0deg, #ffa400, #ffbc3b);
    border: 1px solid #FEAE1B;
    color: #fff;
}

.btn-warning-light {
    background-image: linear-gradient(0deg, #fdf6ec, #fdf6ec);
    border: 1px solid #fdf6ec;
    color: #e6a23c;
}
.btn-warning-line {
    background-color: transparent;
    background-image: none;
    border: 1px solid #FEAE1B;
    color: #FEAE1B;
}


.btn-danger {
    background-image: linear-gradient(0deg, #fd5c5f, #fd5c5f);
    border: 1px solid #fd5c5f;
    color: #fff;
}

.btn-danger-light {
    background-image: linear-gradient(0deg, #FEF0F0, #FEF0F0);
    border: 1px solid #FAB6B6;
    color: #F56C6C;
}

.btn-danger-line {
    background-color: transparent;
    background-image: none;
    border: 1px solid #fd5c5f;
    color: #fd5c5f;
}

.btn-default {
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
    border: 1px solid #dcdfe6;
    color: #606266;
}

.btn-default-line {
    background: transparent;
    border: 1px solid #ddd;
    color: #666;
}

.btn-default-light {
    background-image: linear-gradient(0deg, #EFEFEFFF, #EFEFEFFF);
    border: 1px solid #fafafa;
    color: #666;
}

.btn-invalid {
    background-image: linear-gradient(0deg, #eee, #eee);
    border: 1px solid #eee;
    color: #606266;
}

.btn-invalid-line {
    background: transparent;
    border: 1px solid #ddd;
    color: #666;
}

.btn-invalid-light {
    background-image: linear-gradient(0deg, #fafafa, #fafafa);
    border: 1px solid #fafafa;
    color: #666;
}


.btn:active {
    opacity: .7;
    filter: alpha(opacity=80);
}

.btn-full {
    width: 100%;
}

.btn-lg {
    font-size: 18px;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
}

.btn-sm {
    font-size: 13px;
    height: 38px;
    line-height: 38px;
    padding: 0 15px;
    border-radius: 3px;
}

.btn-xs {
    font-size: 12px;
    height: 30px;
    line-height: 30px;
    padding: 0 12px;
    border-radius: 3px;
}
.btn-min {
    font-size: 11px;
    height: 20px;
    line-height: 20px;
    padding: 0 10px;
    border-radius: 3px;
}


.bg-main {
    background-image: var(--bg-main);
    color: var(--bg-main-text);
}

.bg-second {
    background-image: var(--bg-second);
    color: var(--bg-second-text);
}

.bg-assist {
    background-image: var(--bg-assist);
    color: var(--bg-assist-text);
}

.bg-success {
    background-image: var(--bg-success);
    color: var(--bg-success-text);
}

.bg-warning {
    background-image: var(--bg-warning);
    color: var(--bg-warning-text);
}

.bg-danger {
    background-image: var(--bg-danger);
    color: var(--bg-danger-text);
}
.bg-grey {
    background-image: var(--bg-grey);
    color: var(--bg-grey-text);
}


.bg-fff {
    background-color: #fff;
}

.bg-f5f5f5 {
    background-color: #F1F5F9;
}

.border-bottom {
    border-bottom: 1px var(--line-default) solid;
}

/*边框*/
.border-left {
    border-left: 1px var(--line-default) solid;
}

.border-right {
    border-right: 1px var(--line-default) solid;
}

.border-top {
    border-top: 1px var(--line-default) solid;
}

.border-line {
    border: 1px var(--line-default) solid;
}

.border-lr > * {
    border-right: 1px solid var(--line-default);
}

.border-lr > *:last-child {
    border: none;
}

.border-tb > * {
    border-bottom: 1px solid var(--line-default);
}

.border-tb > *:last-child {
    border: none;
}


/* 输入框 */
.input {
    background: none;
    border-radius: 4px;
    border: none;
    box-sizing: border-box;
    /*color: #606266;*/
    font-size: inherit;
    height: 44px;
    line-height: 44px;
    outline: none;
    padding: 0 12px;
    width: 100%;
}

.input-solid {
    background-color: #f5f5f5;
    border-radius: 4px;
    border: 1px solid #f5f5f5;
    box-sizing: border-box;
    /*color: #606266;*/
    font-size: inherit;
    height: 44px;
    line-height: 44px;
    outline: none;
    padding: 0 12px;
    width: 100%;
}

.input-solid:hover {
    background-color: #f9f9f9;
}

.input-border {
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #dcdfe6;
    box-sizing: border-box;
    color: #606266;
    font-size: inherit;
    height: 38px;
    line-height: 38px;
    outline: none;
    padding: 0 12px;
    width: 100%;
}

.input-line {
    background-color: #fff;
    border-radius: 4px;
    border-bottom: 1px solid #dcdfe6;
    box-sizing: border-box;
    color: #606266;
    font-size: inherit;
    height: 38px;
    line-height: 38px;
    outline: none;
    padding: 0 12px;
    width: 100%;
}

.input-block {
    width: 280px;
}

.input-block-sm {
    width: 180px;
}

.input-block-xs {
    width: 80px;
}

.input-lg {
    height: 50px;
    line-height: 50px;
    padding: 0 18px;
}

.input-sm {
    height: 30px;
    line-height: 30px;
    padding: 0 10px
}


.input-line:hover {
    outline: none;
    border-color: #409eff;
}

.input-line-bottom {
    border-bottom: 1px solid #eee;
    height: 38px;
    line-height: 38px;
    font-size: 14px;
}

.input-line-bottom:hover {
    outline: none;
    border-color: #409eff;
}

.input-disable {
    cursor: not-allowed;
}

input::-webkit-input-placeholder {
    color: #C0C4CC;
}

.animation-duration-1{
    animation-duration:1s !important;
}
.animation-duration-2{
    animation-duration:2s !important;
}
.animation-duration-3{
    animation-duration:3s !important;
}
.animation-duration-5{
    animation-duration:5s !important;
}
.animation-duration-7{
    animation-duration:7s !important;
}
/*旋转*/
.animation-rotate {
    animation: animation-rotate 5s linear infinite;
}
@keyframes animation-rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/*抖动*/
.animation-swing {
    animation: animation-swing 5s linear infinite;
}

@keyframes animation-swing {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(-30deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(30deg); }
    100% { transform: rotate(0deg); }
}
/*抖动*/
.animation-shake {
    animation: animation-shake 5s linear infinite;
}

@keyframes animation-shake {
    0% { transform: rotate(0deg); }
    20% { transform: rotate(-30deg); }
    25% { transform: rotate(-25deg); }
    30% { transform: rotate(-35deg); }
    35% { transform: rotate(-30deg); }
    50% { transform: rotate(0deg); }
    70% { transform: rotate(30deg); }
    75% { transform: rotate(25deg); }
    80% { transform: rotate(35deg); }
    85% { transform: rotate(30deg); }
    100% { transform: rotate(0deg); }
}
/*缩放*/
.animation-zoom {
    animation: animation-zoom 2s ease-in-out infinite;
}
@keyframes animation-zoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
/*闪耀*/
.animation-shine {
    animation: animation-shine 2s ease-in-out infinite;
}
@keyframes animation-shine {
    0% {opacity: 1}
    30% {opacity: 0.7}
    40% {opacity: 1}
    50% {opacity: 0.7}
    100% {opacity: 1}
}
/*缩放闪耀*/
.animation-zoom-shine {
    animation: animation-zoom-shine 2s ease-in-out infinite;
}
@keyframes animation-zoom-shine {
    0% {opacity: 1;transform: scale(1);}
    30% {opacity: 0.7;transform: scale(1.1);}
    40% {opacity: 1;transform: scale(1);}
    50% {opacity: 0.7;transform: scale(1.1);}
    100% {opacity: 1;transform: scale(1);}
}


/* 光线 */
.animation-light{
    overflow: hidden;
    position: relative;
}
.animation-light::before {

    overflow: hidden;
    content: '';
    position: absolute;
    top: 0;
    left: -100%; /* 初始状态：光线位于按钮外 */
    width: 50%;
    height: 100%;
    background: linear-gradient(
            to right,
            rgba(255, 255, 255, .2) 0%,   /* 左侧完全透明 */
            rgba(255, 255, 255, .3) 50%, /* 中间接近不透明 */
            rgba(255, 255, 255, .2) 100%  /* 右侧完全透明 */
    );
    transform: skewX(-30deg); /* 倾斜效果 */
    transition: 0.5s;
    opacity: 0.5;
    animation: animation-light 2s linear infinite; /* 无限循环播放动画 */
}
/* 定义光线动画 */
@keyframes animation-light {
    0% {
        left: -100%; /* 从左侧外部开始 */
    }
    50% {
        left: 100%; /* 光线移动到按钮的右侧外部 */
    }
    100% {
        left: 200%; /* 循环，返回到左侧 */
    }
}
.animation-heart {
    position: absolute;
    width: 30px;
    height: 30px;
    background: url('/file/icon/red/heart.svg') no-repeat center center;
    background-size: contain;
    animation: animation-heart 1s ease-out forwards;
}
@keyframes animation-heart {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-200px) scale(1.5);
        opacity: 0;
    }
}
.notranslate {
    translate: no;
}