* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,body {
    /*处理footer居于底部导致图片放大出现水平滚动条的问题*/
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
@font-face {
    font-family: mincho;
    /*src: url('GenShinGothic-Normal-2.ttf');*/
}

.warm_mandarin{
    color: #FF9A4A;
}
.mini_green{
    color: #20B041;
}

.warm_orange{
    color: #FD790C;
}



.bold{
    font-weight: bold;
}
/*LAYOUTS*/
/*.header {*/
/*    */
/*}*/
.content-container {
    position: relative;
    display: flex;
    height: calc(100vh - 80px);
    padding-bottom: 80px;
}
.content {
    position: relative;
    flex-grow: 1;
    display: flex;
    align-items: center;
}
/*SLOGAN*/
.icon-slogan-container {
    align-self: center;
    width: 30%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.icon-slogan-container-item {
    width: 40px;
    height: 40px;
    margin: 20px;
}

.main{
    display: flex;
    flex-flow: column;
    min-height:calc(100vh - 80px);
}
.main .blank-holder{
    flex: 1;
}
/*QR*/
.qr-container{
    width: 70%;
    margin: 50px auto 0;
    display: flex;
}
.qr-container .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 22px;
}
.qr-container .item img{
    width: 122px;
    height: 122px;
}
.qr-container .item .titlebox {
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.qr-container .item .titlebox img{
    width: 22px;
    height: 22px;
    margin-right: 6px;
}
.qr-container .item .titlebox .title{
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
}
.main-blue{
    color: #24aafe
}
.bg-main-blue{
    background-color: #24aafe
}

.hide-scbar{
    scrollbar-width: none; /* firefox */
    -ms-overflow-style: none; /* IE 10+ */
    overflow-x: hidden;
    overflow-y: auto;

}

.hide-scbar::-webkit-scrollbar {
    display: none; /* Chrome Safari */
}