﻿* {
    margin: 0;
    padding: 0;
}

img {
    display: block;
}

body {
    font-family: "Microsoft YaHei";
}

input {
    background: none;
    outline: none;
}

a {
    text-decoration: none;
    color: black;
}

/*正常的未被访问过的链接*/
a:link {
    text-decoration: none;
}

/*已经访问过的链接*/
a:visited {
    text-decoration: none;
}

/*鼠标划过(停留)的链接*/
a:hover {
    text-decoration: none;
}

/* 正在点击的链接*/
a:active {
    text-decoration: none;
}

input,
button,
select,
textarea {
    outline: none;
}

li {
    list-style: none;
}

.minbox {
    max-width: 320px;
    max-width: 1200px;
    margin: 0 auto;
}

.clearfloat {
    overflow: hidden;
}

/* 顶部 */
.top {
    height: 60px;
    background-image: linear-gradient(0deg, #152c72 0%, #3359c0 100%);
    box-shadow: 0vw 0vw 1.538vw .256vw rgba(71, 71, 71, 0.3);
    line-height: 60px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

.top p {
    float: left;
    width: 70%;
    text-align: center;
    color: white;
    font-size: 22px;
}

.top span {
    font-size: 30px;
    float: left;
    width: 15%;
    text-align: center;
    color: #fff;
}

.menu {
    width: 55%;
    z-index: 200;
    background-color: #dadada;
    position: fixed;
    left: 0;
    top: 0;
    transition: all 0.5s;
}

.menu li {
    height: 50px;
    line-height: 50px;
    padding: 0 5%;
    box-sizing: border-box;
    border-bottom: 1px solid rgb(175, 175, 175);
    font-size: 20px;
}

.menu li span:nth-child(1) {
    font-size:18px;
}

.menu li:hover span {
    color: #01a9b4;

}

.cz {
    transform: translateX(-100%);
    transition: all 0.5s;
}

/* 顶部 */

/* 底部 */
.foot {
    padding: 0 5%;
    box-sizing: border-box;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #01a9b4;
}

.foot1 {
    width: 25%;
    float: left;
    padding: 5px 0;
    text-align: center;
}

.foot1 span {
    font-size: 30px;
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

.foot1 p {
    font-size: 16px;
    color: #fff;
}

/* 底部 */