﻿
.header {
    width: 100%;
    height: 100px;
    background-color: #6695c3;
    position: fixed;
    z-index: 99999;
}

    .header .headerWrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }


    .header .header_left {
        height: 64px;
    }

    .header .header_right {
        height: 100%;
        display: flex;
        align-items: center;
    }

        .header .header_right ul {
            height: 34%;
            margin: 8px 0px 0px;
            display: flex;
        }

        .header .header_right a {
            font-weight: 600;
            list-style: none;
            padding: 0 10px;
            color: #fff;
            text-decoration: none;
        }

            .header .header_right a:hover {
                border-bottom: 3px solid #fff;
            }

        .header .header_right ul li img {
            width: 24px;
            height: 24px;
            vertical-align: -7px;
        }

.pub-content {
    padding: 150px 10px 10px 10px;
    /*padding-bottom:160px;*/
    min-height: 502px;
    width: 1024px;
    margin: auto;
    /*border: 1px solid #ccc;*/
    border: 0px;
    background-color: white;
}

/*详情页面返回至列表按钮样式*/
.back {
    text-align: right;
    padding-top: 30px;
}

    .back a {
        margin-top: 40px;
        margin-left: 10px;
        padding: 20px 10px;
        width: 20px;
        border-radius: 0 10px 10px 0;
        display: inline-block;
        background-color: #006bb3;
        color: #fff;
        position: fixed;
        line-height: 24px;
    }
