/*
绿色：#285947
金色：#e0c976
*/

* {
    margin: 0;
    padding: 0;
}

*::-moz-selection {
    background: none repeat scroll 0 0 #f14e42;
    color: #fff;
    text-shadow: none;
}

ul, ol, li {
    list-style: none outside none;
}

img {
    vertical-align: middle;
}

.clear {
    clear: both;
}

body {
    color: #333;
    font-family: "Lantinghei SC", "helvetica neue", arial, sans-serif;
    background: #eff0ea none repeat scroll 0 0;
    -moz-osx-font-smoothing: grayscale;
}

/*左侧的菜单部分*/

.menu-panel {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 200px;
    background-color: #285947;
    color: white;
    overflow: hidden;
}

.menu-content {
    width: 200px;
    overflow-x: hidden;
    overflow-y: auto;
}

.user-info {
    position: relative;
    text-align: center;
}

.user-info img.header {
    cursor: pointer;
    width: 48px;
    height: 48px;
    margin-top: 16px;
    border-radius: 24px;
}

.user-info .user-name {
    font-size: 24px;
    line-height: 50px;
    position: relative;
}

.user-info .img-button{
    position: absolute;
    right: 16px;
    bottom: 16px;
}

ul.menu-list {
    width: 100%;
    list-style: none;
}

ul.menu-list li {
    height: 35px;
    width: 175px;
    text-indent: 44px;
    line-height: 35px;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    border-left: solid 5px transparent;
}

ul.menu-list .separator {
    margin-left: 8px;
    margin-top: 4px;
    margin-bottom: 4px;
    width: 160px;
    height: 3px;
    background-color: transparent;
    border-top: solid 1px rgba(255, 255, 255, 0.76);
    border-bottom: solid 2px white;
}

ul.menu-list li > img.icon {
    position: absolute;
    left: 8px;
    top: 8px;
    width: 24px;
    height: 24px;
}


ul.menu-list li > .msg {
    position: absolute;
    right: -8px;
    top: 8px;
    height: 24px;
    line-height: 24px;
    padding-left: 8px;
    padding-right: 8px;
    background-color: #f14e42;
    color: white;
    display: inline-block;
    font-weight: bold;
    text-indent: 0;
    border-radius: 12px;
    box-shadow: 0 0 10px #000000;
}

ul.menu-list li > img.indicator {
    position: absolute;
    top: 14px;
    right: 8px;
    width: 12px;
    height: 12px;
    opacity: 0;
}

ul.menu-list li:hover > img.indicator {
    position: absolute;
    top: 10px;
    right: 8px;
    width: 18px;
    height: 18px;
    opacity: 1;
}

ul.menu-list li:hover {
    background-color: #3d8366;
    color: white;
    border-left: solid 5px #404040;
}

ul.menu-list li.active {
    background-color: #162d23;
    color: white;
    border-left: solid 5px white;
}

.content-view {
    margin-left: 200px;
    margin-right: 0;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/*用户登录部分*/
#userLogin {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: fixed;
    background-color: rgba(229, 229, 229, 0.95);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 100000000;
}

#userLogin .loginBox {
    text-align: center;
    background-color: white;
    border-radius: 8px;
    width: 400px;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
    padding: 30px;
    position: relative;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);

}

#userLogin .loginBox .logo {
    background-image: url("../apple-touch-icon.png");
    background-size: 120px 120px;
    width: 120px;
    height: 120px;
    margin-left: auto;
    margin-right: auto;
}

#login_error a.button {
    background-color: #285947;
    color: white;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    padding-left: 16px;
    padding-right: 16px;
    box-shadow: 0 0 3px #555;
    cursor: pointer;
}

#userLogin .loginBox .loginInput {
    height: 36px;
    width: 68%;
    border: solid 1px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding-left: 6px;
    background: #F0F0F0 none;
}

#userLogin .loginBox .loginInput:hover {
    border: solid 1px #fcd74b;
    background: #F8F8F8 none;
}

#userLogin .loginBox .loginLine {
    padding: 10px;
}

#login_error {
    text-align: left;
    color: red;
    font-size: 12px;
    padding-left: 70px;
}

#login_error span {
    display: inline-block;
    width: 210px;
    text-align: center;
}
