@charset "UTF-8";

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

body,
button,
input,
select,
textarea {
    font: 12px/1.5 tahoma, arial, '微软雅黑';
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
}

address,
cite,
dfn,
em,
var {
    font-style: normal;
}

code,
kbd,
pre,
samp {
    font-family: courier new, courier, monospace;
}

small {
    font-size: 12px;
}

ul,
ol,
li,
dl,
dt,
dd {
    list-style: none;
}

.mask{
    position: fixed;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    background-color: rgba(0,0,0,.5);
    z-index: 100;
}

.login-popup{
    width: 700px;
    height: 400px;
    position: fixed;
    top: 50%;
    margin-top: -200px;
    left: 50%;
    margin-left: -350px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    z-index: 200;
    background-color: #fff;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
.login-popup .title{
    font-size: 20px;
    line-height: 50px;
    text-align: center;
    font-weight: bold;
}

.popup-body{
    display: flex;
    padding: 0 20px;
    box-sizing: border-box;
}
@media (max-width: 800px) {
            .login-popup {
                width: 100%;
                left: 90%;
            }
            .login-body {
                width: 90%;
            }
            .college {
            	font-size: 12px;
            }
            .provincesitem {
            	font-size: 12px;
            }
}
.left_infor{
    margin-right: 20px;
    flex: 1;

}
.right_infor{
    flex: 1;
}

.left_infor .top-tips{
    font-size: 14px;
    color: #666;
}

.content{
    height: 200px;
    margin: 10px 0;
    display: flex
}
.content li{
    cursor: pointer;
    padding: 2px 10px;
}
.content .province{
    flex: 1;
   border: 1px solid #999;
   overflow-y: auto;
   padding: 0 10px;
}
.content li.active{
    color: #238cff;
    background-color: #f3f7fb;
}
.content .college{
    flex: 1;
    border: 1px solid #999;
    margin-left: -1px;
    overflow-y: auto;
    padding: 0 10px;
}

.bottom-tips{
    font-size: 14px;
    color: #666;
}
.bottom-tips a{
    color: #2479ed;
}
.gologin{
    width: 100%;
    line-height: 40px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    border: none;
    margin-top: 20px;
    border-radius: 8px;
    cursor: pointer;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    background-image: linear-gradient(to bottom,#5ab8fe,#208bff);
}

.login-step {
    margin-top: 50px;
}

.login-step li{
    margin-bottom: 10px;
    font-size: 12px;
}

.remask{
    font-size: 14px;
    color: #999;
}
.close{
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 16px;
    cursor: pointer;
}

::-webkit-scrollbar {
    width: 6px;
    /* 设置滚动条的宽度 */
}

/* 滚动条轨道上的滑块 */
::-webkit-scrollbar-thumb {
    background-color: #999;
    /*设置滑块的背景颜色*/
        /* 设置滑块的圆角 */
        border-radius: 3px;
}

/* 滚动条边缘 */
::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    /* 设置滚动条轨道的背景颜色 */
}

/* 鼠标悬停在滚动条上时的样式 */
::-webkit-scrollbar-thumb:hover {
    background-color: #666;
}