/******** body ********/
body {
    background-color: #eeeeee;
}

* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
body {
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
}

/******** header ********/
header {
    background-color: #0099ff;
    color: #ffffff;
}
header h1 a{
    color: #ffffff;
}
header>div input[type="text"] {
    background-color: #ffffff;
    color: #666666;
}
header>div input[type="button"] {
    background-color: #33ccff;
    color: #666666;
}
header>div .img {
    background-color: #ccffff;
    color: #666666;
}
header>nav>ul>li {
    background-color: #0099ff;
}
header>nav>ul>li:hover {
    background-color: #33ccff;
}
header>nav>ul>li>ul{
    background-color: #33ccff;
}
header>nav>ul>li>ul a>li {
    color: #ffffff;
}
header>nav>ul>li>ul a>li:hover {
    color: #3366ff;
}
header>span {
    background-color: #99ccff;
}

header>svg {
    float:left;
    padding-left:20px;
}
header>h1 {
    float:left;
    width:200px;
    margin:0;
    padding:0;
    height: 60px;
    line-height: 60px;
    font-size: 36px;
}
header>nav {
    float: left;
}
header>nav>span {
    display: none;
}
header>nav>ul {
    margin: 24px 0 0 0;
    height: 36px;
    padding: 0;
    float:left;
    list-style-type:none;
}
header>nav>ul>li {
    height: 36px;
    width: 120px;
    line-height: 36px;
    font-size: 16px;
    text-align: center;
    float: left;
}
header>nav>ul>li>ul {
    opacity: 0.8;
    display: none;
    padding: 0;
    width: 100%;
}
header>nav>ul>li:hover>ul {
    display: block;
}
header>nav>ul>li>ul li {
    height: 24px;
    line-height: 24px;
    font-size: 14px;
    display: block;
    padding: 0 6px;
}
header>nav>div {
    height: 0;
    clear: both;
}
header>div {
    padding: 0 30px;
    height: 60px;
    float:right;
    width:300px;
}
header>div input {
    margin: 16px 0;
    border: 0;
    padding: 0;
    height: 28px;
    vertical-align:middle;
    outline:none;
}
header>div input[type="text"] {
    width:150px;
    border-radius: 14px 0 0 14px;
}
header>div input[type="button"] {
    width:50px;
    border-radius: 0 14px 14px 0;
}
header>div .img {
    float:right;
    margin:12px;
    height:36px;
    width:36px;
    line-height:36px;
    text-align:center;
    font-size: 12px;
    border-radius:50%;
}
header>div .img>img {
    height:100%;
    width:100%;
    border-radius:50%;
}
header>span {
    display: block;
    width:100%;
    clear: both;
    line-height: 18px;
    text-align:center;
    font-size: 12px;
}
@media only screen and (max-width: 768px) {
    header>nav {
        float:right;
    }
    header>nav>span {
        margin: 24px 0 0 0;
        height: 36px;
        display: block;
        text-align: center;
        width:120px;
    }
    header>nav>ul {
        margin: 0;
        height: 0;
    }
    header>nav>ul>li {
        display: none;
    }
    header>nav:hover>ul>li {
        display: block;
    }
    header>nav>ul>li {
        opacity: 0.8;
        clear: both;
        float:right;
        position:relative;
    }
    header>nav>ul>li>ul {
        opacity: 1.0;
        position:absolute;
        top:0;
        right:120px;
    }
    header>div {
        float:left;
    }
}

/******** footer ********/
footer {
    color:#cccccc;
    background-color: #999999;
}
footer a {
    color:#cccccc;
}

footer {
    clear:both;
    white-space:nowrap;
    padding: 36px 0;
}
footer a {
    text-decoration:none;
    cursor:pointer;
}