*{
    margin: 0;
    padding: 0;
    border: 0;
}
img{
    display: block;
}
html{
    min-height: 100%;
}
html, body{
    width: 100%;
    height: 100%;
    font-size: 14px;
    color: #fff;
}
#root{
    width: 100%;
}
.img_container{
    position: relative;
    display: block;
    width: 100%;
}
.text_container{
    width: 100%;
    height: 100%;
    display: flex;

    position: absolute;
    left: 0;
    top: 0;
}

.text_container .text_content{
    width: 50%;
    height: 100%;
    padding-top: 9%;

    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: center;
}
.text_content .aritists{
    font-size: 55px;
    width: 100%;
    text-align: center;
}
.text_content .aritists .aritists_top{
    padding-top: .2em;
}
.text_content .aritists .aritists_top span{
    font-weight: bold;
    display: block;
    text-align: right;
}
.text_content .aritists .aritists_top span:first-child{
    padding-right: 2em;
}
.text_content .aritists .aritists_top span:last-child{
    padding-right: 1em;
}
.text_content .aritists .aritists_bottom{
    text-align: right;
}
.text_content .btn_container{
    display: inline-block;
    text-align: left;
    width: 22.6em;
    font-size: 22px;
    padding-top: 1em;
}   
.text_content .btn_container .btn{
    display: inline-block;
    background-color: #FFBB31;
    padding: .5em 1.5em;
    border-radius: 5px;
    cursor: pointer;
}
.text_container .qrcode{
    background-color: #fff;
    width: 26%;
    margin-left: -20%;
    border-radius: 5px;
    overflow: hidden;
}
.qrcode .qr_img{
    width: calc(100% - 10px);
    margin: 5px;
}
.qrcode #qrcode{
    width: calc(100% - 10px);
    margin: 5px;
    display: flex;
    justify-content: center;
}
.qrcode #qrcode canvas{
    width: 100%;
}
.qrcode .qr_desc{
    background-color: #FFBB31;
    padding: .7em;
}
.img_container .imgs{
    display: block;
    width: 100%;
}
.img_container p{
    width: 76%;
    padding: 0 12%;
    padding-top: 4em;
    padding-bottom: 4em;
    color: #1F1F1F;
}
.img_container p a{
    position: initial;
    display: inline;
    color: #1677FF;
}

.footer{
    width: 100%;
    font-size: 1.2rem;
    background-color: #1D0000;
    text-align: center;
    padding: 3em 0;
}
.footer a{
    text-decoration: none;
    color: #fff;
}

/** 屏幕兼容 */
@media screen and (max-width: 1520px) {
    .text_content .aritists .aritists_top{
        font-size: 40px;
    }
    .text_content .btn_container{
        text-align: center;
    }
}

@media screen and (max-width: 1100px) {
    .text_content .aritists .aritists_top{
        font-size: 32px;
    }
    .text_content .btn_container{
        text-align: center;
    }
}

/** 自定义 下拉框 */
.mx_selector{
    font-size: 22px;
    color: #fff;
    display: inline-block;
    height: 2em;
    line-height: 2em;

    -webkit-user-select: none;  /* Chrome all / Safari all */
    -moz-user-select: none;     /* Firefox all */
    -ms-user-select: none;      /* IE 10+ */
    -o-user-select: none;
    user-select: none;

    position: fixed;
    left: 80%;
    top: 1em;
    z-index: 999999;
}
.mx_selector .mx_default{
    position: relative;

    width: 100%;
    height: 100%;
    padding: 0 1.5em 0 0;
    box-sizing: border-box;
}
.mx_icon{
    display: inline-block;
    position: relative;
}
.mx_icon::after{
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url("/icons/arrow-down.png") no-repeat;
    background-size: 100% auto;
    background-position: center;

    position: absolute;
    left: calc(100% - 24px);
    top: calc(50% - 6px);
}
.active .mx_icon::after{
    transform: rotate(180deg);
}
.mx_options{
    display: none;
    position: absolute;
    left: 0;
    top: 100%;

    width: 100%;
}
.active .mx_options{
    display: block;
}
.mx_options .mx_option{
    font-size: .8em;
    height: 1.5em;
    line-height: 1.5em;
}
.mx_option.hide{
    display: none;
}
