* {
    /*left: 0;*/
    /*top: 0;*/
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}

body {
    color: #555555;
}

a {
    color: #1D5494;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/*清除浮动*/
.clear::after {
    content: "";
    display: block;
    clear: both;
}

/*#logo {*/
/*width: 200px;*/
/*position: absolute;*/
/*left: 10px;*/
/*top: 5px;*/
/*z-index: 1;*/
/*}*/

#logo img, #logo > a {
    display: block;
    width: 100%;
}

html, body {
    min-width: 370px;
    height: 100%;
}

/*页面主体*/
#main {
    width: 100%;
    height: 100%;
    min-width: 370px;
}

/*右侧登录栏*/
#main > #login_box {
    position: absolute;
    right: 0;
    top: 0;
    min-width: 370px;
    width: 30%;
    height: 100%;
    border-radius: 5px;
    background-color: #ffffff;
    transition: all 1s;
    z-index: 2;
}

#main > #bg_img {
    height: 100%;
    left: 0;
    top: 0;
    width: 70%;
    position: absolute;
    background: #DAF0FE url("../img/login_1.jpg") 0 no-repeat no-repeat;
    background-size: cover;
    z-index: -1;
}

#ckkName {
    text-align: center;
    color: #555555;
    font-weight: inherit;
    background-color: #F7F7F7;
    line-height: 80px;
    margin-bottom: 50px;
}

/*table切换栏*/
#main > #login_box ul {
    background-color: #ffffff;
    padding: 0 70px;
}

/*table切换按钮*/
#main > #login_box ul > li {
    cursor: pointer;
    color: #8a8a8a;
    float: left;
    width: 50%;
    line-height: 50px;
    text-align: center;
    box-sizing: border-box;
    border-bottom: 2px solid #EEEEEE;
}

/*tab样式配合js达到切换效果*/
#main > #login_box ul > li:hover {
    color: #2F4050;
}

#main > #login_box ul > li.active {
    border-bottom: 3px solid #2F4050;
    color: #2F4050;
    font-weight: bold;
}

#main > #login_box > div {
    padding-top: 50px;
    text-align: center;
    display: none;
}

#login_container iframe {
    /*border: solid 1px #EEEEEE;*/
    /*padding-top: 10px;*/
}

#main > #login_box > div.active {
    display: block;
    overflow: hidden;
}

#main > #login_box > div > div a:not(:last-child) {
    margin-right: 5px;
    padding-right: 7px;
    border-right: solid 1px #CDBFBF;
}

/*账户登录tab页*/
#main > #login_box > div:last-child {
    padding: 50px 70px 0 70px;
}

#main > #login_box > div:last-child input {
    width: 100%;
    height: 50px;
    line-height: 50px;
    margin-bottom: 20px;
    border: solid 1px #DDDDDD;
    border-radius: 2px;
    padding: 0 10px;
}

#main > #login_box > div:last-child p {
    position: relative;
}

/*输入框提示消息*/
#main > #login_box > div:last-child label.error {
    position: absolute;
    color: red;
    font-size: 14px;
}

#name label.error {
    top: -20px;
    left: 0;
}

#pwd label.error {
    bottom: -6px;
    left: 0;
}

/*登录按钮*/
#main > #login_box > div:last-child button {
    cursor: pointer;
    margin-top: 40px;
    width: 100%;
    line-height: 50px;
    border: none;
    outline: none;
    background-color: #5A98DE;
    color: #ffffff;
    border-radius: 3px;
    font-size: 18px;
}

#main > #login_box > div:last-child button:hover {
    background-color: #6AA2E0;
}

#main > #login_box > div:last-child button:active {
    background-color: #5A98DE;
}

#news_box {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 30%;
    min-width: 370px;
    height: 218px;
    z-index: 5;
    padding: 10px 30px 30px 30px;
    line-height: 30px;
}

#news_box li {
    padding-left: 30px;
    background: url("../img/news.png") 0 5px no-repeat;
    background-size: 20px;
    color: #197DBF;
}

#news_box li span {
    text-align: justify;
}