@charset "utf-8";
* {
    padding: 0;
    margin: 0;
}/*去掉所有标签之间的默认间隙*/
html,body {
    width: 100%;
    margin: 0 auto;
    /*设置所有body中所有div居中显示*/
    font-family: "微软雅黑", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: #FFFFFF;
    font-size: 14px;
}

input {
    outline: none!important;
    /*去除蓝色边框*/
}

ul {
    list-style: none;
}/*去掉无序列表的项目符号*/
ol {
    list-style: none;
}/*去掉无序列表的项目符号*/
a {
    text-decoration: none;
}/*去掉超级链接的下划线*/
img {
    border: none;
    display: block;
}/*去掉图片加载完链接之后的边框*/
a {
    color: black
}
a:link {
    text-decoration: none!important;
}
a:visited {
    text-decoration: none!important;
}
a:hover {
    text-decoration: none!important;
}
a:active {
    text-decoration: none!important;
}
/*********************头部*************************/
.head {
    height: 134px;
    width: 1200px;
    min-width: 1200px;
    margin: auto;
}
.head a {
    display: block;
    float: left;
}
/*********************banner*************************/
.banner {
    width: 100%;
    min-width: 1200px;
    height: 408px;
    background: url("./images/banner.png") no-repeat center center;
}
/*********************考生入口*************************/
.entrance {
    width: 1200px;
    min-width: 1200px;
    margin: auto;
    margin-top: 40px;
    padding-top: 30px;
    padding-bottom: 30px;
    box-shadow: 0px 0px 5px #aaabf4;
}
.entrance_title {
    width: 300px;
    height: 42px;
    background: url("./images/entrance_title.png") no-repeat;
    margin: auto;
}
.entrance ul {
    overflow: hidden;
    padding-left: 53px;
    padding-top: 31px;
}
.entrance ul li {
    width: 199px;
    height: 31px;
    border: 1px solid #8871fc;
    float: left;
    margin: 7px 35px;
    line-height: 31px;
}
.entrance ul li a {
    padding-left: 10px;
    padding-right: 10px;
    width: 179px;
    height: 100%;
    display: block;
    color: #000162;
}
.entrance ul li a:hover {
    background: #5657e8;
    color: #FFFFFF;
    transition: all 0.4s ease 0s;
}
/*********************考办入口*************************/
.examination {
    width: 1200px;
    min-width: 1200px;
    padding: 70px 0;
    margin: auto;
}
.examination dl {
    width: 116px;
    margin: auto;
}
.examination dl a {
    display: block;
}
.examination dl a dd {
    text-align: center;
    font-size: 16px;
    padding-top: 15px;
}
.examination dl a:hover {
    color: #8871fc;
    transition: all 0.4s ease 0s;
}
/*********************底部*************************/
.foot {
    background: #8871fc;
    min-width: 1200px;
}
.foot p {
    color: #FFFFFF;
    line-height: 110px;
    width: 1200px;
    text-align: center;
    margin: auto;
}