
html, body {
    -webkit-text-size-adjust:none
}
.min-height-full {
    height: 100vh;
    min-height: 100vh;
}
#app {
    /* height: 100vh; */
    min-height: 100vh;
}

.color-theme {
    color: #FF6158;
}
.color-1 {
    color: #333333
}

.color-2 {
    color: #D2D2D2;
}

.color-white {
    color: rgba(255, 255, 255, 0.8);
}

.bg {
    background-color: #F0F2F5;
}

.bg-theme {
    background-color: #FF6158 ;
}

.flex1 {
    flex: 1
}
.nav-item {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 12px;
    font-family: PingFang-SC-Bold, PingFang-SC;
}
.nav-item .line {
    margin-top: 6px;
    width: 30px;
    height: 2px;
}
.bold {
    font-weight: bold;
}
/* .navbar-collapse.show .navbar-nav {
    background: #fff
} */
.navbar-collapse.show .nav-item {
    margin: 10px 0;
 
}
/* .navbar-collapse.show .nav-item-margin {
    margin-left: 0 !important;
} */

.flex-column-between {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.flex-column-align {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flex-column-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flex-column-align-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flex-align {
    display: flex;
    align-items: center;
}

.flex-align-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-align-end {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.width100 {
    width: 100%;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.translateX {
    left: 50%;
    transform: translateX(-50%);
}

.translateY {
    top: 50%;
    transform: translateY(-50%);
}

.translateXY {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.pointer {
    cursor: pointer;
}

@media (min-width: 500px) { 
    .nav-item {
        margin-left: 42px;
        margin-right: 42px;
    }
    .bottom-left {
        text-align: right;
    }
    .bottom-right {
        /* margin-left: 30px; */
        text-align: left;
    }
    .agree-width {
        width: 600px
    }
}
@media (max-width: 500px) { 
    .bottom-left {
        text-align: center;
    }
    .bottom-right {
        text-align: center;
    }
}

.ellipsis {
    white-space: nowrap;  

    text-overflow:ellipsis; 
   
    overflow:hidden;
 }
