/* CSS Document */

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/*取消超链接下划线*/
a {
    text-decoration: none
}

/*整体居中对齐*/
body {
    font-family: "Microsoft YaHei", "Segoe UI", "Lucida Grande", Helvetica, Arial, sans-serif;
    font-family: 微软雅黑 !important;
    font-size: 100%;
}


/*顶部样式*/
#header {
    width: 100%;
    height: 30px;
    background: #dddddd;
    position: fixed;
    z-index: 50;
    top: 0;
    bottom: 0;
}

.logo {
    width: 1000px;
    height: 30px;
    background-image: url(../img/logo1000-30.png);
}

#daohang {
    width: 100%;
    height: 50px;
    background: #ffffff;
    position: fixed;
    z-index: 49;
    top: 30px;
    opacity: 0.8;
}

#daohang a {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    outline: none;
    text-decoration: none;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

#daohang a:hover, a:focus {
    color: #FF3300;
    text-decoration: none;
}

#daohang ul li ul a {
    font-size: 16px;
    font-weight: bold;
}

@media only screen and (max-width: 990px) {
    #header {
        width: 100%;
        height: 90px;
        background: #F5F5F5;
        position: fixed;
        z-index: 50;
        top: 0;
        bottom: 0;
    }

    .logo {
        width: 700px;
        height: 90px;
        background-image: url(../img/logo700-90.png);
    }

    #daohang {
        width: 100%;
        height: 100px;
        background: #ffffff;
        position: fixed;
        z-index: 49;
        top: 90px;
        opacity: 0.8;
    }
}

/*右侧功能栏*/
.side-bar a, .chat-tips i {
    background: url(../img/ico/rightbg.png) no-repeat;
}

.side-bar {
    width: 66px;
    position: fixed;
    bottom: 20px;
    right: 15px;
    font-size: 0;
    line-height: 0;
    z-index: 47;
}

.side-bar a {
    width: 66px;
    height: 66px;
    display: inline-block;
    margin-bottom: 2px;
}

.side-bar a:hover {
    background-color: #669fdd;
}

.side-bar .icon-ali {
    background-position: 0 -62px;
}

.side-bar .icon-chat {
    background-position: 0 -130px;
    position: relative;
}

.side-bar .icon-qq {
    background-position: 0 -198px;
    position: relative;
}

.side-bar .icon-shop {
    background-position: 0 -266px;
}

.side-bar .icon-top {
    background-position: 0 10px;
}

.side-bar .icon-map {
    background-position: 0 -334px;
}

/*鼠标经过显示二维码*/
.side-bar .icon-chat:hover .chat-tips {
    display: block;
}

.chat-tips {
    padding: 20px;
    border: 1px solid #d1d2d6;
    position: absolute;
    right: 78px;
    top: -55px;
    background-color: #fff;
    display: none;
}

.chat-tips i {
    width: 9px;
    height: 16px;
    display: inline-block;
    position: absolute;
    right: -9px;
    top: 80px;
    background-position: -88px -350px;
}

.chat-tips img {
    width: 138px;
    height: 138px;
}

/*底部样式表*/
