body, html, p {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

body, html {
    background-color: #f0f0f0;
}

.nav {
    background-color: #64B5F6;
}

.nav>div {
    width: 70%;
    margin: 0 auto;
}

.nav .name-zh {
    color: #000;
    font-family: '华文行楷';
    font-size: 50px;
    font-weight: bold;
    padding-top: 30px;
    display: block;
    text-decoration: none;
    padding-left: 5%;
}

.nav .name-en {
    color: #000;
    font-size: 20px;
    padding-bottom: 40px;
    padding-left: 7%;
    display: block;
    text-decoration: none;
}

.nav .menu {
    list-style: none;
    display: block;
    height: 40px;
    margin: 0;
    padding: 0;
}

.nav .menu>li {
    float: left;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    line-height: 40px;
    cursor: pointer;
}

.nav li a {
    padding-left: 40px;
    padding-right: 40px;
    text-decoration: none;
    color: #fff;
    display: block;
    width: 100%;
}

.nav .menu>li:hover {
    background-color: #0000002d;
}

.search{
    float: right;
    width: 250px;
    height: 40px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
.search input{
    width:200px;
    height: 25px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    outline: none;
    font-size: 12px;
    padding-left: 10px;
}
.search input:focus{
    border: none;
}
.search img{
    width:20px;
    height: 20px;
    margin-top: 10px;
    margin-left: 5px;
    cursor: pointer;
}