*{
    margin: 0px;
    padding: 0px;
    outline: none;
    border: 0px;
    -webkit-text-size-adjust: none;
    --primary-color: #003C8D;
    --theme-color: #FFED00;
    --button-primary-color: #3363A3;
    --tips-success-color: #02B52A;
    --tips-warn-color: #FF7E00;
    --tips-danger-color: #F53F3F;
    --title-primary-color: #000000;
    --text-primary-color: #666666;
    --text-theme-color: #ADADAD;
    --page-background-color: #EDEDED;
    --input-border-color: #D9D9D9;
    --line-color: #E6E6E6;
    --nva-title-fontSize: 36px;
    --title-fontSize: 24px;
    --text-fontSize: 16px;
    --primary-padding: 40px;
}

body {
    font-family: PingFangSC-Regular, Roboto, Helvetica Neue, Helvetica, Tahoma,
    Arial, PingFang SC-Light, Microsoft YaHei;
}
input {
    background-color: transparent;
    border: 0;
}
button {
    margin: 0;
    padding: 0;
    border: 1px solid transparent;
    outline: none;
    background-color: transparent;
}

button:active {
    opacity: 0.6;
}
.border-box{
    box-sizing: border-box;
}
.content-box{
    box-sizing: content-box;
}
.hidden{
    display: none;
}
.pointer{
    cursor: pointer;
}

.inline-block{
    display: inline-block;
}

.margin-center{
    margin: 0 auto;
}

.page{
    padding-top: 78px;
}

.page-main{
    max-width: 1200px;
    margin: 0 auto;
}

.bg-white{
    background: white;
}

.bg-blue{
    background: var(--primary-color);
}

.flex-col {
    display: flex;
    flex-direction: column;
}
.flex-row {
    display: flex;
    flex-direction: row;
}
.flex-row-wrap{
    flex-wrap: wrap;
    align-content: flex-start;
}
.flex1 {
    flex: 1;
}
.justify-start {
    display: flex;
    justify-content: flex-start;
}
.justify-center {
    display: flex;
    justify-content: center;
}

.justify-end {
    display: flex;
    justify-content: flex-end;
}
.justify-evenly {
    display: flex;
    justify-content: space-evenly;
}
.justify-around {
    display: flex;
    justify-content: space-around;
}
.justify-between {
    display: flex;
    justify-content: space-between;
}
.align-start {
    display: flex;
    align-items: flex-start;
}
.align-center {
    display: flex;
    align-items: center;
}
.align-end {
    display: flex;
    align-items: flex-end;
}
.font-bold{
    font-weight: bold;
}

.font-weight-500{
    font-weight: 500;
}

.text-center{
    text-align: center;
}

.text-left{
    text-align: left;
}

.text-ellipsis{
    white-space: nowrap;
    overflow-x: hidden;
    text-overflow: ellipsis;
}

.text-white{
    color: #ffffff;
}

.text-black{
    color: rgba(0, 0, 0, 1);
}

.text-main{
    color: rgba(47, 47, 47, 1);
}

.text-secondary {
    color: #666666;
}

.text-gray {
    color: #999999;
}

.text-blue{
    color: rgba(0, 60, 141, 1);
}

.text-yellow{
    color: rgba(254, 238, 1, 1);
}

.text-red{
    color: red;
}

.text-placeholder {
    color: #bfbfbf;
}

.text-link {
    color: #1764FF;
}
.font-size-12 {
    font-size: 12px;
}
.font-size-14{
    font-size: 14px;
}
.font-size-16 {
    font-size: 16px;
    line-height: 21px;
}
.font-size-20{
    font-size: 20px;
    line-height: 28px;
}
.font-size-24 {
    font-size: 24px;
    line-height: 30px;
}
.font-size-28 {
    font-size: 28px;
    line-height: 42px;
}
.font-size-36{
    font-size: 36px;
    line-height: 48px;
}

@media (max-width: 768px) {
    .font-size-12 {
        font-size: 0.75rem;
    }
    .font-size-14{
        font-size: 0.875rem;
    }
    .font-size-16 {
        font-size: 1rem;
        line-height: 1.3125rem;
    }
    .font-size-20{
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    .font-size-24 {
        font-size: 1.5rem;
        line-height: 1.875rem;
    }
    .font-size-28 {
        font-size: 1.75rem;
        line-height: 2.625rem;
    }
    .font-size-36{
        font-size: 2.25rem;
        line-height: 3rem;
    }
}

.margin-top-100{
    margin-top: 6.25rem;
}

.margin-top-60{
    margin-top: 3.75rem;
}

.margin-top-48{
    margin-top: 3rem;
}

.margin-top-40{
    margin-top: 2.5rem;
}

.margin-top-36{
    margin-top: 36px;
}

.margin-top-23{
    margin-top: 23px;
}

.margin-top-12{
    margin-top: 12px;
}

.margin-right-72{
    margin-right: 72px;
}

.margin-right-36{
    margin-right: 36px;
}

.margin-x-10{
    margin: 0 10px;
}

.margin-y-20{
    margin: 20px 0;
}

.margin-y-10{
    margin: 10px 0;
}
