/* html {
    font-size: 100px
} */

html {
    font-family: sans-serif;
    /* 关闭字体大小自动调整功能 */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
dl,
dt,
dd,
ul,
ol,
li,
p,
blockquote,
pre,
hr,
figure,
caption,
th,
td,
form,
fieldset,
legend,
input,
button,
textarea,
menu,
img {
    margin: 0;
    border: none;
    font-family: "Microsoft YaHei";
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
}
ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px;
}
a,
a:link,
a:hover,
a:visited {
	text-decoration: none;
    border-bottom: 1px solid #10509e;
    padding-bottom: 1px;
}
a,
a:link,
a:hover,
a:active {
        color:#F00;}

input {
    margin: 0px;
}

ul {
    list-style: none;
}

.clearfix {
    zoom: 1;
    /* width: 100%; */
}

.clearfix::before,
.clearfix::after {
    content: "";
    display: table;
    clear: both;
    visibility: hidden;
    height: 0;
    /* overflow: auto; */
}

body {
    min-width: 1280px;
    min-height: 600px;
    overflow-y: scroll;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

.block {
    display: block;
}

.in-block {
    display: inline-block;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

a {
    color: #222;
    background-color: transparent;
    /* 设定元素在移动设备（如Adnroid、iOS）上被触发点击事件时，响应的背景框的颜色 */
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
}

a:active,
a:hover {
    outline: 0;
    text-decoration: none
}

img {
    display: block;
    padding: 0;
    border: none;
    /*IE7 可以解决缩放失真问题 */
    -ms-interpolation-mode: bicubic;
    max-width: 100%;
    max-height: 100%
}


/* Firefox去除点击虚线 */

button::-moz-focus-inner,
input::-moz-focus-inner {
    padding: 0;
    border: 0
}


/* header */

.wrap {
    width: 100%;
    margin: 0 auto;
    /*  overflow: hidden;*/
    position: relative;
}

.header {
    width: 100%;
    margin: 0 auto;
    background: url(../images/header-bg.png) no-repeat center;
}

.header-name {
    width: 1280px;
    height: 130px;
    margin: 0 auto;
}

.logo {
    width: 100%;
    height: 130px;
    background: url(../images/logo.png) no-repeat center;
}

.nav {
    width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
	background-color: #0b387d;
}

.nav li {
    padding: 10px 20px 20px;
}

.nav a {
    font-size: 20px;
    font-weight: bold;
    line-height: 40px;
    padding: 10px 10px;
    position: relative;
    color:#dde3ff;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: #CC3A35;
    width: 0%;
    height: 3px;
    transition: all 0.3s;
}

.nav li:hover>a::after {
    width: 100%;
}

.footer {
    width: 100%;
    margin: 40px auto 0;
    height: 180px;
    background: url(../images/footer-bg.png) no-repeat bottom center;
}

.footer-wrap {
    width: 1280px;
    margin: 0 auto;
}

.footer-logo {
    width: 54%;
    height: 180px;
    background: url(../images/footer-logo.png) no-repeat center;
    background-size: cover;
    float: left;
}

.school-msg {
    height: 180px;
    width: 46%;
    float: right;
    /* text-align: center; */
    padding: 40px 80px;
}

.school-msg p {
    font-size: 16px;
    color: #fff;
    line-height: 30px;
}