﻿@charset "utf-8";
/* CSS Document */
* {
    margin: 0;
    padding: 0;
    /*	width: 1000px;*/
}

ul, ol, li {
    list-style: none;
    list-style-type: none;
    font-family: "微软雅黑"
}

.top {
    height: 80px;
    width: 100%;
    display: block;
    /*float:bottom;*/
    background: rgba(73, 117, 176, 0.34);
}

.logo {
    float: left;
    margin-left: 0px;
    margin-top: 15px
}

    .logo a {
        font-family: "Times New Roman", Times, serif;
        font-size: 25px;
        font-weight: bold;
        text-decoration: none;
        color: black;
        position: absolute;
        top: 15px;
        left: 10px;
    }

.detail {
    display: inline-block; /*top右边信息栏为行内块,不影响下边内容显示*/
    float: right;
}

    .detail a {
        text-decoration: none;
        color: rgba(58, 135, 209, 0.76);
    }

    .detail ul li {
        float: left;
        width: 180px;
        position: relative; /*设置信息栏在top相对位置*/
        top: 20px;
        margin-left: 5px;
        margin-top: 0px;
        text-align: center;
        font-family: "微软雅黑";
        font-size: 20px
    }

        .detail ul li a:hover {
            color: #f15e5e;
            font-weight: 400;
            font-size: 22px;
        }
.content{
    text-align:center;
    height:1500px;
}
    .content p {
 
        font-family: "微软雅黑";
        font-size: 16px;
        line-height: 25px;
        margin-top: 20px;
        margin-left: 20px;
    }