* {
    font-size: 1.6rem;
}

ul, menu, dir {
    padding: 0;
    margin: 0;
}

body {
    background: #fff;
}

#content {
    font-family: "微软雅黑"
}

a:hover, a:focus {
    color: #333333;
    text-decoration: underline;
}

.clear {
    clear: both;
}

.pages {
    display: block;
    width: 100%;
    position: relative;
}

a {
    color: #333333;
}

a:hover, a:visited {
    text-decoration: none;
}

h4 {
    font-weight: 800;
}

.plr0 {
    padding-left: 0;
    padding-right: 0;
}

.pl0 {
    padding-left: 0;
}

.pr0 {
    padding-right: 0;
}

.pl10 {
    padding-left: 10px;
}

.pr10 {
    padding-right: 10px;
}

img {
    max-width: 100%;
    font-family: "Helvetica Neue", Helvetica, Microsoft Yahei, Hiragino Sans GB, WenQuanYi Micro Hei, sans-serif;
}

.pages {
    max-width: 100%;
    overflow: hidden;
    padding-bottom: 6rem;
}

/*header logo+menu*/
header {
    height: 50px;
    font-size: 26px;
    background: #1E69FF;
}

header em {
    color: #fff;
}

header h5 {
    line-height: 25px;
    height: 25px;
    color: #fff;
}

header h5 span {
    float: left;
    width: 85%;
    height: 25px;
    overflow: hidden;
    display: block;
}

.mobile-inner-header {
    background: url(../images/m_logo.png) no-repeat center center;
    background-size: 80%;
    width: 100%;
    height: 50px;
    position: absolute;
    top: 0px;
    left: 0px;
}

.mobile-inner-header-icon {
    color: #ffffff;
    height: 50px;
    font-size: 25px;
    text-align: center;
    float: right;
    width: 50px;
    position: relative;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
}

.mobile-inner-header-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.mobile-inner-header-icon span {
    position: absolute;
    left: calc((100% - 40px) / 2);
    top: calc((100% - 1px) / 2);
    width: 25px;
    height: 4px;
    background: #9b9b9b;
    border-radius: 10px;
}

.mobile-inner-header-icon span:nth-child(1) {
    transform: translateY(6px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(2) {
    transform: translateY(-6px) rotate(0deg);
}

.mobile-inner-header-icon-click span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickfirst;
}

.mobile-inner-header-icon-click span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clicksecond;
}

@keyframes clickfirst {
    0% {
        transform: translateY(6px) rotate(0deg);
    }
    100% {
        transform: translateY(0) rotate(45deg);
    }
}

@keyframes clicksecond {
    0% {
        transform: translateY(-6px) rotate(0deg);
    }
    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

.mobile-inner-header-icon-out span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outsecond;
}

@keyframes outfirst {
    0% {
        transform: translateY(0) rotate(-45deg);
    }
    100% {
        transform: translateY(-6px) rotate(0deg);
    }
}

@keyframes outsecond {
    0% {
        transform: translateY(0) rotate(45deg);
    }
    100% {
        transform: translateY(6px) rotate(0deg);
    }
}

.mobile-inner-nav {
    background-color: rgba(0, 0, 0, 0.9);
    width: 100%;
    position: absolute;
    top: 50px;
    left: 0px;
    padding-top: 30px;
    padding-bottom: 80px;
    display: none;
    z-index: 2;
}

.mobile-inner-nav a {
    display: inline-block;
    line-height: 50px;
    text-decoration: none;
    width: 80%;
    margin-left: 10%;
    color: #FFFFFF;
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: returnToNormal;
    animation-name: returnToNormal;
}

@-webkit-keyframes returnToNormal {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes returnToNormal {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.mobile-inner-nav a:hover {
    color: rgba(255, 255, 255, 0.4);
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}

.items {
    z-index: 1;
    background: #fff;
    padding: 20px 0 8px 0;
}

.more {
    font-size: 1.3rem;
    color: #7e818a;
}

.items img {
    width: 3.5rem;
}

.items .col-xs-3 {
    padding-left: 0;
    padding-right: 0;
}

.items .col-xs-3 .text-center {
    height: 8rem;
}

.items .col-xs-3 .text-center h5 {
    font-size: 1.5rem;
    margin-top: 1.4rem;
    margin-bottom: 1.4rem;
}

.zsksrk {
    padding: .5rem 0 1rem
}

.zsksrk a {
    display: block;
}
.mnks {
	margin: 1rem 0 1.5rem;
}
.mnks .col-xs-4 hr {
    border-top: 1px solid #dbdbdb;
}

.mnks .text-center {
    background: url(../images/icon.png) no-repeat 0px -48px;
    line-height: 3rem;
    padding-left: 25px;
}

.mnks .text-center i {
    display: inline-block;
    width: 25px;
    height: 25px;
}

.mnkslist {
    width: 33.33%;
}

.mnkslist a {
    display: block;
}

.mnkslist a img {
    width: 90%;
}

.mnkslist .media-body .text-center {
    line-height: 2em;
    height: 2em;
}

.moremnks {
    width: 90%;
    height: 35px;
    line-height: 35px;
    background: #1E69FF;
    margin: 10px auto 15px auto;
    border-radius: 5px;
    text-align: center;
}

.moremnks a {
    color: #fff;
}

.examlist {
    margin-bottom: .8rem;
}

.examlist .examone {
    width: 48%;
    background-size: cover;
    background-repeat: no-repeat;
    float: left;
    height: 7rem;
}

.examlist .examone:nth-child(2n) {
    margin-left: 1rem;
}

.examlist .examone span {
    display: block;
    color: #ffffff;
    font-size: 1.5rem;
    padding-top: 1.3rem;
    font-weight: bold;
}

.examlist .examone p {
    font-size: 1.2rem;
    color: #FFE5E0;
    /*overflow: hidden;*/
    margin: 0.2rem 0 0;
}

.nav-tabs > li.active {
    background: #ff6600;
}

.nav-tabs > li a {
    padding: 10px 25px;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
    border-radius: 0;
    border: 0;
    color: #fff;
    background: url(../images/icon.png) no-repeat 0 -127px;
}

.newslist .newone {
    padding: .8rem 0;
    /*border-bottom: 1px solid #ddd;*/
}

.newslist .newone img {
    width: 100%;
}

.newslist .newone .newliright {
}

.newslist .newone .newliright span {
    display: block;
    /*height: 2rem;*/
    /*line-height: 2rem;*/
    /*overflow: hidden;*/
}

.newslist .newone .newliright p {
    font-size: 1.3rem;
    color: #8C8C8C;
    margin: 3rem 0 0;
    float: left;
    width: 50%;
}

.newslist .newone .newliright p:nth-child(2n-1) {
    text-align: right;
}

.newslist .newone .newliright a {
    color: #ff6600;
    border: 1px solid #ff6600;
    border-radius: 15px;
    font-size: 1rem;
    padding: 0.2rem 1rem;
}

.newslist .newli {
    padding: 10px 0;
    height: 4rem;
    line-height: 2rem;
    overflow: hidden;
    border-bottom: 1px dashed #ddd;
}

.newslist .newli i {
    background: url(../images/icon.png) no-repeat -8px -155px;
    display: block;
    float: left;
    width: 1.5rem;
    height: 2rem;
}

.newslist .newli span {
    display: block;
    float: left;
    width: 87%;
    height: 2rem;
    overflow: hidden;
}

.morenews {
    text-align: center;
}

.morenews a {
    font-weight: bold;
    color: #1E69FF
}

.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
    background: #1E69FF;
}

.btn-primary, .btn-primary:hover,
.btn-primary:active, .btn-primary.active,
.btn-primary:active:hover, .btn-primary.active:hover,
.btn-primary:focus, .btn-primary.focus {
    color: #fff;
    background-color: #1E69FF;
    border-color: #1E69FF;
}

footer {
    width: 100%;
    margin: 0 auto;
}

footer .copyright {
    padding: 1rem;
    line-height: 2rem;
    color: #9c9c9c;
    font-size: 1rem;
}

footer .copyright a {
    color: #9c9c9c;
    font-size: 1rem;
}

footer .footnav {
    background: #ffffff;
    margin-bottom: 0;
    padding-inline-start: 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer .footnav li {
    list-style: none;
    width: 50%;
    float: left;
    text-align: center;
    padding: .8rem 0;
}

footer .footnav li a {
    display: block;
}

footer .footnav li i {
    display: block;
    background: url(../images/footer.png) no-repeat;
    width: 24px;
    height: 24px;
    margin: 0 auto;
}

footer .footnav li i.exam {
    background-position: 0 -62px;
}

footer .footnav li i.user {
    background-position: 0 0;
}

footer .footnav li.active i.exam {
    background-position: 0 -95px;
}

footer .footnav li.active i.user {
    color: #245bdb;
    background-position: 0 -31px;
}

footer .footnav li span {
    display: block;
    width: 100%;
    height: 25px;
    line-height: 25px;
    color: #505362;
    font-size: 1.2rem;
}

.input-group-addon {
    font-size: 1.4rem;
    background: none;
    border: 0;
}

.form-group .glyphicon {
    color: #ccc;
}

.form-group input {
    font-size: 1.6rem;
    padding: 1.2rem; /**height:4.4rem;**/
    line-height: 2.4rem;
    border: 0;
    box-shadow: none;
    border-bottom: 1px solid #cfcfcf;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #ccc;
}

input:-moz-placeholder, textarea:-moz-placeholder {
    color: #ccc;
}

input::-moz-placeholder, textarea::-moz-placeholder {
    color: #ccc;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: #ccc;
}

#login {
    display: none;
    height: 100%;
}

.login {
    background: url(../images/m_login.jpg) no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

.form {
    padding: 20px 40px 20px;
    /*background: #fff;*/
    border-radius: 10px;
    border: none;
}
.form .note{
    width: 100%;
    text-align: center;
    padding: 10px 0;
}

#facebook {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 999;
    height: 100%;
    background-color: #255D8C;
    color: #FFFFFF;
}

#allmap img {
    height: auto !important;
}

.title {
    position: relative;
    color: #0A3668;
    border-bottom: 1px solid #ebebeb;
    line-height: 2em;
    font-weight: 500;
    font-size: 16px;
}

.title::after {
    background: #0A3668 none repeat scroll 0 0;
    bottom: -1px;
    content: "";
    height: 1px;
    left: -5px;
    position: absolute;
    width: 5rem;
}

.box {
    border-radius: 0;
    background-color: #d9edf7;
    margin: 10px auto 0px auto;
    height: auto;
    overflow: hidden;
    display: block;
}

.itembox {
    padding: 0px 20px 15px 20px;
}

.footbar a {
    color: #FFFFFF;
}

.footer a {
    color: #3A3A3A;
}

.footer a.active {
    color: #EE615C;
}

input[type="checkbox"] {
    width: 1.5rem;
    height: 1.5rem;
    background-color: #F5F5F5;
    border: 0.05rem solid #CCC;
    -webkit-border-radius: 50% !important;
    border-radius: 50% !important;
    vertical-align: middle;
}

.swiper-slide {
    width: 100% !important;
}
#contenttext img{
    width: 100% !important;
    height: auto !important;
}