@charset "utf-8";

@font-face {
    font-family: "经典综艺体简";
    src: url(../font/JDJZONGYI.woff);
}

html {
    /* 关闭字体大小自动调整功能 */
    -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;
    padding: 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;
}

a,
a:link,
a:hover,
a:visited {
    text-decoration: none;
}

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
}

.w1280 {
    width: 1280px;
    margin: 0 auto;
}

.m40-aut {
    margin: 40px auto;
}

.left {
    width: 49%;
    float: left;
}

.right {
    margin-left: 51%;
}

.p0_15px {
    padding: 0 15px;
}

.pic-big {
    overflow: hidden;
}

    .pic-big img {
        transition: all .3s;
        -moz-transition: all .3s;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        width: 100%;
        height: 100%;
    }

    .pic-big:hover img {
        transform: scale(1.2);
    }

.show-title:hover {
    animation: fadeShow 1s linear;
}

@keyframes fadeShow {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeShow {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeShow {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeShow {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.wrap {
    width: 100%;
    margin: 0 auto;
}


/* 动画及换行显示 */

.tran03 {
    transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
}

.tran05 {
    transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
}

.trans1 {
    transition: all 1s;
    -moz-transition: all 1s;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
}

.elp {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lincp2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.lincp3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.lincp6 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}


/* header */

.header {
    width: 100%;
    margin: 0 auto;
    height: 120px;
    position: relative;
    z-index: 111;
    background: #01508d;
}

.header-wrap {
    height: 100%;
    position: relative;
}

.logo {
    height: 71px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    overflow: hidden;
}

    .logo a {
        float: left;
    }

        .logo a img {
            height: 70px;
        }

        .logo a:last-child img {
            height: 56px;
            margin-left: 15px;
            margin-top: 15px;
        }


.nav {
    background-color: rgb(1, 86, 151);
    box-shadow: 0px 4px 28.8px 3.2px rgba(1, 1, 1, 0.15);
    height: 54px;
}

.nav-wrap {
    width: 1280px;
    margin: 0 auto;
}

.nav-box ul {
    width: 100%;
    margin: 0 auto;
}

.nav-item {
    float: left;
    text-align: center;
    position: relative;
    font-size: 17px;
    line-height: 54px;
}

    .nav-item a {
        color: #fff;
        font-size: 13.5pt;
        padding: 0 20px;
    }

    .nav-item.on:hover .nav-item-child {
        display: block;
    }

.nav-item-child {
    display: none;
    position: absolute;
    z-index: 111;
    width: 100%;
}

.nav-item-son {
    width: 100%;
    font-size: 17px;
    background-color: rgba(0, 0, 0, 0.5);
}

    .nav-item-son a {
        color: #fff;
        line-height: 30px;
    }

    .nav-item-son:hover {
        background-color: #076ab1;
    }


/* search */

.search-area {
    float: right;
    margin: 11px auto;
    position: relative;
}

.search-txt {
    box-shadow: 0px 2px 2.7px 0.3px rgba(0, 0, 0, 0.2);
    width: 163px;
    height: 32px;
    padding-left: 10px;
    font-size: 14px;
}

    .search-txt::placeholder {
        color: #818181;
    }

    .search-txt:focus {
        outline: none;
    }

.search-btn {
    width: 36px;
    height: 32px;
    background: url(search-icon.png) no-repeat center;
    position: absolute;
    background-color: #003567;
    right: -1px;
    top: 0;
}


/* footer */

.footer {
    width: 100%;
    margin: 0 auto;
    height: 98px;
    background-color: rgb(1, 86, 151);
}

.footer-wrap {
    position: relative;
    height: 100%;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.school-msg {
    font-size: 11pt;
    margin: 23px;
    line-height: 26px;
}

.copyright a{
	color: #fff;
}

/* 网站标题语 */

.web-title {
    width: 100%;
    margin: 23px auto 20px;
    text-align: center;
}

    .web-title p {
        font-size: 30px;
        color: #d50011;
        font-weight: bold;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

        .web-title p:last-child,
        .web-title p:nth-child(2) {
            margin-top: 10px;
            font-size: 18px;
            color: #010101;
            font-weight: bold;
        }

.fl49 {
    width: 49%;
    float: left;
}

.ml51 {
    margin-left: 51%;
}


.nav, .nav-wrap, .nav ul, .nav li, .search-area, .search-area form {
    filter: url("") !important;
    /* Webkit only, Chrome & Safari 6+ */
    -webkit-filter: none !important; /* webkit */
    -moz-filter: none !important; /*firefox*/
    -ms-filter: none !important; /*ie9*/
    -o-filter: none !important; /*opera*/
    filter: none !important;
    /*filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1); */
    filter: none !important; /*ie9- */
}
