/* CSS Document */
* {
	margin: 0;
	padding: 0;
	font-size: 100%;
}

html {
	background: url() top center no-repeat #c4d5ff;
	background-size: 100%;
	background-attachment: fixed;
}
*{
    margin: 0;
    padding: 0;
}
li{
    list-style-type: none;
}
a{
    text-decoration: none;
}

table{
    border-collapse: collapse;
    border-spacing: 0
}
th{
   
    height: 40px;
    background-color: #0000FF;
    color: white;

}
tr{
    border: 1px solid #C0C0C0;
}
td{
    text-align: center;
    border: 1px solid #C0C0C0;
}
body{
    /*width: 100%;*/
    max-width: 800px;
    min-height: 100vh;
    margin: 0 auto;
    padding: 0 1px;
    border-right: solid 2px #252D78;
    border-left: solid 2px #252D78;
    background: #252D78;
}
.logo>img{
    width: 100%;
}



.dao1 {
    width: 100%;
    max-width: 800px;
    padding: 4px;
    box-sizing: border-box;
    text-align: center;
    background: #fff;
}

.dao1 ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.dao1 ul li {
    width: 25%;
    padding: 4px;
    box-sizing: border-box;
}

.dao1 ul li a {
    display: block;
    height: 32px;
    line-height: 32px;
    color: #fff;
    border-radius: 32px;
    background: #252D78;
}

#nav2[data-fixed="fixed"] {
    box-shadow: 0 5px 10px rgba(0, 0, 0, .05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    margin: auto;
}

.zli{
    border: 1px solid #C0C0C0;
}
.zl-6>li{
    line-height: 40px;
    font-size: 14px;
    border-bottom: 1px #eaeaea solid;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: left
}

@media screen and (max-width:750px){
    html{
        font-size: 14px;
    }
    
    .dao1 ul li a {
        height: 26px;
        line-height: 26px;
        font-size: 13px;
    }
}