﻿/**
布局样式
*/
.header {
    /* Stick to the top */
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 1000;
    width: 100%;
    display: flex;

}

html {
    overflow: hidden;
    overflow-y: hidden;
    overflow-x: hidden;
}

.header .header-logo {
    min-width: 200px;
    float: left;
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;


}

.header .header-logo img {
    height: 60%;
    max-height: 66px;
}

.header-menu {
    min-width: 800px;
    display: flex;
    flex: 8;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.main {
    height: calc(100vh - 110px);
    overflow: auto;
    margin-top: 110px;
}

.main-footer {
    display: flex;
    justify-content: center;
    border-top: 1px solid #dbeafe;

}

.main-footer .main-footer-scan {

    border-right: 1px solid #dbeafe;


}

.main-footer .main-footer-scan img {
    margin: 15px 25px;
}

.main-footer .main-footer-text {
    margin: 15px 25px;
    line-height: 20px;
    font-size: 12px
}

.main-footer .main-footer-right {
    display: flex;
    margin-left: 20%;
    justify-items: center;
    align-items: center;

}


.main-footer .main-footer-right img {
    max-width: 80px;
}




/**
内容卡片样式
*/