@charset "UTF-8";

html,body{
    height: 100%;
}

.fd-index-main {
    /*保证footer是相对于container位置绝对定位*/
    position: relative;
    width: 100%;
    /* min-height: 100%; */
    /*设置padding-bottom值大于等于footer的height值，以保证main的内容能够全部显示出来而不被footer遮盖；*/
    /* padding-bottom: 100px; */
    box-sizing: border-box;
}

.fd-text-content {
    background: #fff;
    border-radius: 8px;
    text-align: center;
    /* position: absolute; */
    top: 60%;
    width: 100%;
}

.fd-text-content h2{
    font:700 28px/28px "microsoft yahei";
    color: #27a4e7;
    text-align: center;
    margin-top: 40px;
}

footer{
    width: 100%;
    /* footer的高度一定要是固定值*/ 
    position:absolute;
    bottom:0px;
    left:0px;
}