:root {
    --primary-color: #409EFF;
    --bg-color: #F4F4F5;
    --border-color: #DCDFE6;
    --font-size: 14px;
    --hover-primary-color: #66B1FF;
    --del-color: #F56C6C;
    --hover-del-color: #F78989;
    --border-color2:#E4E7ED;
    --border-color3:#EBEEF5;
    --border-color4:#F2F6FC;
    --text-color: #303133;
    --text-color2: #606266;
    --text-color3: #909399;
    --text-color4: #C0C4CC;
    --success-color: #67C23A;
    --warning-color: #E6A23C;
    --danger-color: #F56C6C;
    --info-color: #909399;
    --success-color2: #E1F3D8;
    --warning-color2: #FAF7DE;
    --danger-color2: #FEF0F0;
    --info-color2: #F4F4F5;
    --main-color:#409EFF;
    --main-color1:#53A8FF;
    --main-color2:#66B1FF;
    --main-color3:#79BBFF;
    --main-color4:#8CC5FF;
    --main-color5:#A0CFFF;
    --main-color6:#B3D8FF;
    --main-color7:#C6E2FF;
    --main-color8:#D9ECFF;
    --main-color9:#ECF5FF;
}

html {
    margin: 0;
    padding: 0;
    font-size: calc(100vw / 375);
    width: 100%;
    margin: 0 auto;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

ul,
li {
    list-style: none;
}

.header {
    width: 100%;
    height: 40rem;
    display: flex;
    justify-content: space-between;
    background-color: #fff;
}

.header-back {
    width: 12%;
    flex-shrink: 0;
}

.header-back i {
    display: block;
    height: 18rem;
    width: 10rem;
    background-size: 10rem 18rem;
    background-image: url(//h5.chinaxinge.com/images/backbg.png);
    margin-top: 11rem;
    margin-left: 15rem;
}

.header-title {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    z-index: 1;
    position: relative;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
    font-size: 17rem;
}

.header-btn {
    width: 12%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header-btn-home {
    background-image: url(//h5.chinaxinge.com/images/home-detail.png);
    background-size: 19rem 19rem;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
}

#headerMy {
    background-image: url(https://h5.chinaxinge.com/images/my.png);
    background-size: 16rem 17rem;
    background-position: center center;
    background-repeat: no-repeat;
    width: 40rem;
    height: 40rem;
    display: inline-block;
}

.header_mine{
    background-image: url(https://h5.chinaxinge.com/images/my.png);
    background-size: 16rem 17rem;
    background-position: center center;
    background-repeat: no-repeat;
    width: 20rem;
    height: 20rem;
    display: block;
}

.header_home{
    display: block;
    width: 20rem;
    height: 20rem;
    background-size: 19rem 19rem;
    background-image: url(/images/home-detail.png);
}

i {
    display: block;
    margin: 0;
    padding: 0;
    font-style: normal;
}

.flex {
    display: flex;
    justify-content: start;
    align-items: center;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-end {
    justify-content: end;
    align-items: center;
    display: flex;
}

.flex-between {
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.flex-1 {
    flex: 1;
}

.flex-col {
    flex-direction: column;
    display: flex;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: none;
}

.modal .mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal .box {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: fixed;
    z-index: 999;
    background-color: #fff;
    border-radius: 10rem;
}

.modal .box-nav {
    width: 100%;
    height: 40rem;
    display: flex;
    justify-content: space-between;
}

.modal .box-title {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: start;
    padding-left: 7.5rem;
    font-size: 16rem;
}

.modal .box-close {
    width: 20rem;
    height: 20rem;
    flex-shrink: 0;
    font-size: 20em;
}

.btn{
    border: solid 0.5px var(--border-color);
    color: var(--text-color);
    border-radius: 40rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn.confirm{
    color: #fff;
    background-color: var(--main-color);
    border: solid 0.5px var(--main-color);
    font-size: 14rem;
}

.btn.cancel{
    color: var(--text-color2);
    background-color: #fff;
    border: solid 0.5px var(--border-color);
    font-size: 14rem;
}

.btn.confirm:active{
    background-color: var(--main-color2);
    border: solid 0.5px var(--main-color2);
    transition: all 0.3s;
}

.btn.cancel:active{
    background-color: #fff;
    color: var(--text-color1);
    transition: all 0.3s;
}

.red{
    color: #f00!important;
}

.blue{
    color: #409EFF!important;
}

.grey{
    color: #909399!important;
}

@media screen and (min-width: 750px) {
    html {
        font-size: 2px !important;
        max-width: 375rem;
    }

    body,.header {
        max-width: 375rem;
    }
}