#header{
    position: relative;
}
#header a{
    text-decoration: none;
}
#header .space{
    height: 92px;
}
#header .fixed{
    width: 100%;
    height: 92px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 98;
    background-color: white;
    border-bottom: 1px solid #E8E8E8;
}
#header .fixed .container{
    height: 100%;
    display: flex;
    align-items: center;
}
#header .log{
    flex-shrink: 1;
}
#header .log img{
    height: 43px;
}
#header .items{
    flex-shrink: 0;
    flex-grow: 1;
    height: 43px;
    line-height: 43px;
    display: flex;
    justify-content: space-between;
    margin: 0 60px;
}
#header .items .item{
    padding: 0 6px;
    cursor: pointer;
    font-size: 17px;
    color: #919191;
    text-decoration: none;
}
#header .items .item.home{
    color: #323232;
    font-weight: bold;
}
#header .phone{
    flex-shrink: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
#header .phone img{
    color: #000000;
    font-size: 24px;
    font-weight: bold;
}
#header .phone span{
    color: #000000;
    font-size: 24px;
    font-weight: bold;
    margin-left: 6px;
}

#footer{
    background-color: #292929;
    position: relative;
    z-index: 99;
}
#footer .data{
    height: 300px;
    display: flex;
    align-items: center;
}
#footer .data .qrcode{
    display: flex;
    flex-direction: column;
    text-align: center;
}
#footer .data .qrcode img{
    width: 178px;
    height: 178px;
}
#footer .data .qrcode span{
    color: #999999;
    font-size: 14px;
    margin-top: 10px;
}
#footer .data .msg{
    margin-left: 54px;
}
#footer .data .msg .title{
    color: white;
    font-size:36px;
    font-weight: bold;
    margin-bottom: 18px;
}
#footer .data .msg table{
    color: #999999;
    font-size:20px;
    line-height: 33px;
}
#footer .icp{
    width: 1200px;
    height: 48px;
    color:  #5F5F5F;
    margin: auto;
    font-size:16px;
    font-weight:bold;
    border-top: 1px solid #3c3c3c;
    display: flex;
    justify-content: center;
    align-items: center;
}
#footer .icp a{
    color:  #5F5F5F;
}
#footer-actions{
}
#footer-actions a{
    text-decoration: none;
}
#footer-actions .normal{
    width: 100%;
    height: 120px;
    background-color: #E8E8E8;
    flex-direction: row;
    position: relative;
    z-index: 80;
}
#footer-actions .fixed{
    width: 100%;
    height: 120px;
    background-color: #E8E8E8;
    position: fixed;
    bottom:0;
    z-index: 81;
}
#footer-actions .container{
    display: flex;
    height: 100%;
    align-items: center;
}
#footer-actions .text{
    margin-left: 61px;
    margin-right: 172px;
    font-size: 20px;
    color: #323232;
}
#footer-actions .text .phone{
    margin-top: 6px;
    font-weight: bold;
    display: flex;
    align-items: center;
}#footer-actions .text .phone div{
     margin-left: 6px;
 }
#footer-actions .btn{
    color: white;
    font-size: 24px;
    padding: 16px 60px;
    border-radius: 36px;
}
#footer-actions .btn1{
    background-color:  #4C88E9;
}
#footer-actions .btn2{
    margin-left: 25px;
    background-color:  #FF9639;
}

#consult{
    top: 0;
    right: 0;
    height: 100%;
    position: fixed;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 99;
}
#consult .items{
    display: flex;
    flex-direction: column;
}
#consult .items .item{
    width: 60px;
    height: 60px;
    margin: 5px 12px;
    border-radius: 6px;
    background-color: #5C9AFF;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
}
#consult .items .item .msg{
    flex-shrink: 0;
    position: absolute;
    top: 0;
    right: 60px;
    margin-right: 12px;
    padding: 12px;
    -moz-box-shadow:2px 2px 5px #333333;
    -webkit-box-shadow:2px 2px 5px #333333;
    box-shadow:2px 2px 5px #333333;
    min-height: 100%;
    display: none;
    border-radius: 6px;
    background-color: white;
}
#consult .items .item:hover .msg{
    display: flex;
}
#consult .items .item .msg .phone{
    display: flex;
    align-items: center;
}
#consult .items .item .msg .phone img{
    width: 22px;
    height: 22px;
}
#consult .items .item .msg .phone span{
    color: black;
    font-size: 24px;
    font-weight:400;
    margin-left: 12px;
}