@charset "utf-8";

img {
    border: 0;
}

body {
    margin: 0;
}

a {
    text-decoration: none;
}

.cantact a {
    color: White;
}

#ab div {
    display: none;
}

#ab:hover div {
    display: block;
}

.icon-chat {
    background-position: 0 130px;
    position: relative;
}

.icon-chat:hover .chat-tips {
    display: block;
}

.chat-tips {
    padding: 4px;
    border: 1px solid #d1d2d6;
    position: absolute;
    right: -150px;
    top: -55px;
    background-color: #ffffff;
    display: none;
}

*:focus {
    outline: none;
}

.coverClient {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    left: 0;
    background: silver;
    opacity: 0.5;
    filter: alpha(opacity=50);
    display: none;
}


.login_box {
    width: 400px;
    text-align: center;
    margin: 20px auto;
    /*border: 1px solid #cccccc;*/
    box-shadow: 0 1px 5px 0 rgba(45,62,80,.12);
    border-radius: 10px;
    padding: 40px;
    background-color: #FFFFFF;
}

.login_input {
    width: 100%;
    padding: 7px 0 7px 15px;
    line-height: 1.7;
    border: #f2f5f7 1px solid;
    background: #f2f5f7;
    border-radius: 5px;
    box-sizing: border-box; /* 其他浏览器 */
    -webkit-box-sizing: border-box; /* 谷歌 */
    -moz-box-sizing: border-box; /* 火狐 */
}

.login_input:focus {
    border: #016bff 1px solid;
}

.login_input::-webkit-input-placeholder {
    color: darkgrey;
}

.login_input::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: darkgrey;
}

.login_input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: darkgrey;
}

.login_input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: darkgrey;
}

/* 去除密码类型输入框，右侧小眼睛样式 */
.login_input[type="password"]::-ms-reveal {
    display: none;
}

.login_checkBox {
    cursor: pointer;
    position: relative;
    width: 12px;
    height: 12px;
    font-size: 14px;
}

.login_checkBox::after {
    position: absolute;
    top: 0;
    background-color: #FFFFFF;
    border: 1px #016bff solid;
    color: #016bff;
    width: 12px;
    height: 12px;
    display: inline-block;
    visibility: visible;
    padding-left: 0;
    text-align: center;
    content: ' ';
    border-radius: 3px;
    line-height: 1;
}

.login_checkBox:checked::after {
    content: "✓";
    font-size: 12px;
    font-weight: bold;
    border: 1px #016bff solid;
    border-radius: 3px;
    line-height: 1;
}

.login_radio {
    cursor: pointer;
    position: absolute;
    clip: rect(0, 0, 0, 0);
}

.login_radio + span::before {
    content: " ";
    display: inline-block;
    vertical-align: middle;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 1px solid #999999;
    margin-right: 0.2rem;
    box-sizing: border-box;
    margin-top: -0.1rem;
}

.login_radio:checked + span::before {
    background-color: #016bff;
    background-clip: content-box;
    border: 1px solid #016bff;
    padding: 0.1rem;
    box-sizing: border-box;
}

.login_btn {
    width: 100%;
    padding: 10px 0;
    color: #ffffff;
    border-radius: 5px;
    border: 1px #cccccc solid;
    cursor: pointer;
    box-shadow: 0 1px 2px #00000029;
}

.login_btn:hover,.login_btn:hover a span {
    box-shadow: 0 3px 6px #00000029;
    background-color: #004ebc !important;
    color: #fff !important;
}

.blueText {
    color:#016bff;
}

.blueText:hover {
    color:#004ebc;
}

.errMsgTip {
    color: #333;
    position: absolute;
    left: 102%;
    width: max-content;
    min-width: 100px;
    max-width: 500px;
    padding: 10px 10px 10px 20px;
    top: 0;
    line-height: 20px;
    background: #ffffff 0 0 no-repeat padding-box;
    box-shadow: 0 3px 6px #00000029;
    border-radius: 4px;
    z-index: 1;
    word-wrap: break-word;
}

.errMsgTip::before {
    background-color: #951818;
    color: #fff;
    border-radius: 50%;
    display: inline-block;
    content: '!';
    width: 14px;
    height: 14px;
    line-height: 14px;
    text-align: center;
    font-size: 12px;
    margin-right: 8px;
    vertical-align: middle;
    position: absolute;
    left: 10px;
    top: 12px;
}
