

        body{
            /* 插入背景图片 */
            background-image:url(./imgaes/bg.png);
            /* 将背景固定让其不随界面滚动缩放 */
            background-attachment: fixed;
            /* 将图片保存原比例的同时占满整个元素空间 */
            background-size: cover;
        }




@media screen and (max-width:450px) {
    body {
        max-width: 450px;
    }
    nav {
        background-size: 20%;
    }
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul {
    list-style: none;
}



nav {
    width: 100%;
    margin-bottom: 10px;
    background: url(http://xb.xiaoqiu168.com/imgaes/1.png) no-repeat;
    background-size: 10%;
    background-position: top right;
    background-color: #fff;
    box-shadow: 0 3px 4px rgb(26 26 26 / 10%);
}

nav .container {}

.logo img {
    max-width: 100%;
}

.logo span {
    display: block;
    text-align: center;
    font-size: 32px;
}

.nav-center {
    /* position: relative; */
    width: 100%;
    height: 50px;
    border-top: 1px solid #f1f1f1;
}

nav ul {
    /* position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%); */
    padding-left: 0;
}

nav li {
    float: left;
    height: 50px;
    padding: 2px 10px;
    margin: 0 5px;
    text-align: center;
    line-height: 50px;
}

nav li a {
    color: #000;
}

nav li a:hover {}

article {
    width: 100%;
    /* height: 400px; */
    /* background-color: #f5f5f5; */
}

article .container {
    padding: 10px 10px;
    background-color: #fff;
}


/* .publisH {
    margin: 10px auto 10px;
} */

.publisH .row {
    margin-top: 10px;
    padding: 10px 15px 15px 15px;
    background-color: #fff;
}

.publisH .pic img {
    width: 100%;
    height: 300px;
}

.function {
    text-align: center;
    background: url(http://xb.xiaoqiu168.com/imgaes/xn.png) no-repeat;
    background-size: 25%;
    background-position: bottom right;
}

.function h3 {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #f2f2f2;
}

.function p {
    font-size: 17px;
}

.function p span {
    /* font-size: 18px; */
    font-weight: 600;
}

.function a {
    margin: 10px 10px 0;
}

.footer {
    width: 100%;
    margin-top: 15px;
    padding: 10px 0 10px;
    text-align: center;
    background-color: #313131;
}

.footer .footer-c {
    width: 100%;
    margin: 0 auto;
}

.footer ul {
    padding-left: 0;
    margin-bottom: 0;
}

.footer li {
    float: left;
    height: 30px;
    margin: 10px 0;
    padding: 0 20px;
    border-right: 1px solid rgb(72 70 70);
    text-align: center;
    line-height: 30px;
}

.footer li a:hover {
    color: cornflowerblue;
}

.footer li:last-child {
    border-right: 0;
}

.footer p {
    color: #6f6f6f;
}

.footer a {
    display: block;
    margin-bottom: 5px;
    color: #6f6f6f;
}

.footer a:hover {
    color: cornflowerblue;
}

@media screen and (max-width:991px) {
    .logo img {
        display: block;
        max-width: 100%;
        margin: 0 auto;
    }
    nav ul li {
        padding: 2px 5px;
        margin: 0 5px;
        text-align: center;
        line-height: 50px;
    }
    nav {
        background-size: 15%;
    }
}

@media screen and (max-width:767px) {
    .function h3 {
        margin-top: 10px;
    }
    .footer li {
        width: 100%;
        border-right: 0;
    }
    nav {
        background-size: 20%;
    }
}


