/* 样式重置 */
* {
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box; 
    -webkit-box-sizing: border-box; 
            box-sizing: border-box;
    -webkit-tap-highlight-color:transparent;
}
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, figure, nav, footer, header,
dl, dt, dd, ul, ol, li,
fieldset, lengend, button, input, textarea,
th, td, tr,
pre {
    margin: 0;
}
ul, ol, menu, td {
    padding: 0;
}
ul, ol {
    list-style: none;
}
address, cite, dfn, em, var {
    font-style: normal;
}
a {
    text-decoration: none;
    color: black;
}
.clearFloat {
	zoom: 1;
}
.clearFloat:after {
    content: '';
    display: block;
    clear: both;
}
img {
	border: none;
}

/* PC 端样式 */
html,body{
    width: 100%;
    height: 100%;
}
body{
    font-family: Arial, Microsoft YaHei, SimSun, PingFangSC;
    color: #333;
    background-color: #FFF;
}
.main{
    width: 100%;
    height: 99%;
}
.main_pack{
    width: 100%;
    height: 100%;
    min-height: 500px;
    position: relative;
}
.holdbar{
    height: 18%;
}
.logo_pack{
    text-align: center;
}
.logo_pack a{
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
}
.logo_pack img{
    display: inline-block;
    vertical-align: middle;
    width: 120px;
    height: 120px;
}
.title_pack{
    margin-top: 4px;
}
.title_pack p{
    font-size: 15px;
    color: #919191;
    text-align: center;
}
.text_pack{
    margin-top: 20px;
}
.text_pack p{
    line-height: 1.7;
    font-size: 14px;
    color: #B5B5B5;
    text-align: center;
}
.button_pack{
    margin-top: 40px;
}
.button_pack .btn_go_on{
    display: block;
    width: 150px;
    height: 35px;
    line-height: 35px;
    font-size: 15px;
    color: #277CF2;
    text-align: center;
    letter-spacing: 2px;
    border: 1px solid #277CF2 !important;
    border-radius: 2px;
    cursor: pointer;
    margin: 0 auto;
}

.bottom-pack{
    width: 100%;
    position: absolute;
    bottom: 10px;
}
.support_info{
    font-size: 0;
    text-align: center;
}
.support_info a{
    cursor: pointer;
}
.support_info img{
    display: inline-block;
    vertical-align: middle;
    width: 25px;
    height: 25px;
    margin-right: 8px;
}
.support_info span{
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    color: #919191;
}

/* 移动端适配 */
@media (max-width: 750px){
    .main_pack{
        min-height: 9.6rem;
    }
    .holdbar{
        height: 2rem;
    }
    .logo_pack img{
        width: 2.4rem;
        height: 2.4rem;
    }
    .title_pack{
        margin-top: 0.1rem;
    }
    .title_pack p{
        font-size: 0.28rem;
    }
    .text_pack{
        margin-top: 0.4rem;
    }
    .text_pack p{
        font-size: 0.26rem;
    }
    .button_pack{
        margin-top: 0.8rem;
    }
    .button_pack .btn_go_on{
        width: 3rem;
        height: 0.88rem;
        line-height: 0.88rem;
        font-size: 0.3rem;
        border-radius: 0.04rem;
    }

    .bottom-pack{
        bottom: 0.1rem;
    }
    .support_info img{
        display: inline-block;
        vertical-align: middle;
        width: 0.4rem;
        height: 0.4rem;
        margin-right: 0.14rem;
    }
    .support_info span{
        font-size: 0.24rem;
    }
}