﻿@charset "utf-8";

/* 公用 */
* {
    padding: 0;
    margin: 0;
    outline: 0
}

/*body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, pre, form, fieldset, legend, button, input, textarea, th, td {
    margin: 0;
    padding: 0;
    border: 0px;
}*/

body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, pre, form, fieldset, legend, button, input, textarea {
    margin: 0;
    padding: 0;
    border: 0px;
}

body, button, input, select, textarea {
    font-family: 'Microsoft YaHei';
}

body {
    font-size: 14px;
    height: 100%;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
}

ul, ol, li {
    list-style: none;
}

i, em, b {
    font-style: normal;
    display: block;
    line-height: 20px;
}

a {
    text-decoration: none;
}

    a:link, a:visited, a:hover, a:active {
        text-decoration: none;
        cursor: pointer;
        color: #8C1515;
    }

fieldset, img {
    border: 0;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.clear {
    clear: both;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.container {
    width: 1280px;
    margin: auto;
}



/* 导航 */


.menuicon, .menuicon2 {
    display: none;
}

.nav-wrapper {
    width: 100%;
    height: 60px;
    background-color: #8C1515;
    position: relative;
}

.logo {
    width: 348px;
    height: 0;
    position: relative;
    z-index: 99992;
    top: 20px;
    margin: 0 auto;
    transition: all 0.3s ease;
    text-align: center;
    right: 20px;
}

    .logo img {
        width: 270px;
    }

.logo_bg {
    width: 348px;
    height: 0;
    position: relative;
    z-index: 9;
    top: 60px;
    margin: 0 auto;
}

.nav {
    width: 85%;
    margin: 0 auto;
    z-index: 9992;
    height: 60px;
}

.nav_lf {
    width: 38.5%;
    float: left;
}

.nav_rt {
    width: 38.5%;
    float: right;
}

.nav ul > li {
    width: 20%;
}

.nav ul li {
    float: left;
    height: 60px;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

    .nav ul li > a {
        padding: 0;
        text-align: center;
        line-height: 60px;
        height: 60px;
        color: #fff;
        transition: all 0.3s ease;
        font-size: 18px;
    }

.subNav {
    position: absolute;
    left: 0;
    top: 60px;
    display: none;
    z-index: 100;
}

    .subNav a {
        color: #fff;
        padding: 8px 8px;
        display: block;
        font-size: 14px;
    }

.nav ul li.on > a, .nav ul li:hover > a {
    color: #fff;
    background-color: #AD1010;
    height: 60px;
    line-height: 60px;
    display: block
}

.nav ul li.on {
    height: 60px;
}

    .nav ul li.on .subNav {
        display: block;
    }

.subNav {
    width: 100%;
    background: url(/src/img/header/subnavbg.png) repeat;
}

.nav ul li.on > a, .nav ul li:hover > a {
    height: 60px;
    line-height: 60px;
}

.fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 50px;
}

.fixedRight0 {
    right: 0px;
}

.nav-wrapper.fixed .logo_bg {
    top: 50px;
    width: 275px;
}

    .nav-wrapper.fixed .logo_bg img {
        width: 100%
    }

.nav-wrapper.fixed .logo {
    width: 205px
}

    .nav-wrapper.fixed .logo img {
        /*width: 90%;*/
        width: 100%;
        display: block;
        padding-top: 5px;
    }

.nav-wrapper.fixed .nav ul li {
    height: 50px;
}

    .nav-wrapper.fixed .nav ul li > a {
        line-height: 50px;
        height: 50px;
    }

.nav-wrapper.fixed .subNav {
    top: 50px;
}

.nav-wrapper.fixed .topTool {
    top: 15px;
}

.subNav a:hover {
    background: #931818;
}

.line {
    position: absolute;
    left: -5px;
    width: 5px;
    background-color: #CC3300;
    height: 60px;
    z-index: 99;
}

.flipInY {
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
    animation-duration: 0.6s;
    -webkit-animation-duration: 0.6s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    visibility: visible !important;
    display: block;
}

@keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

/* 底部 */


.footTop {
    background: url("/src/img/footer/footbg.png") no-repeat center bottom #8C1515;
    padding: 90px 0;
}

.copyRight {
    background: #223356;
    padding: 10px 0;
    color: #999999;
    font-size: 14px;
    line-height: 26px;
}

.shareList {
    overflow: hidden;
    width: auto;
    height: auto;
}

    .shareList li {
        float: left;
        margin-left: 10px;
    }

        .shareList li:first-child {
            margin-left: 0px;
        }

        .shareList li img {
            height: 160px;
            width: 160px;
        }

        .shareList li p {
            color: #CCCCCC;
            text-align: center;
        }

        .shareList li a {
            display: block;
            width: 100%;
            height: 100%
        }

        .shareList li.weibo {
            background-position: 0 0;
        }

        .shareList li.weixin {
            background-position: -64px 0;
        }

        .shareList li.youxiang {
            background-position: -130px -2px;
        }

        .shareList li.shipin {
            background-position: -197px -2px;
        }

.xiaoqu {
    font-size: 16px;
    color: #CCCCCC;
    margin-top: -23px;
    margin-left: 50px;
    margin-right: 55px;
    width: 340px;
}

    .xiaoqu p {
        margin-top: 35px;
    }

    .xiaoqu b {
        font-weight: normal;
        margin-top: 10px;
    }

.footlink {
    overflow: hidden;
    width: 245px;
    margin-top: -20px;
}

    .footlink li {
        float: left;
        width: 120px;
        font-size: 16px;
        color: #CCCCCC;
        margin-top: 20px;
    }

        .footlink li a {
            color: #CCCCCC;
        }

            .footlink li a:hover {
                color: #fcfcfc;
            }

.footkslj {
    margin-top: -30px;
}

.select_box {
    width: 218px;
    position: relative;
    padding: 0;
    font-size: 12px;
    margin-top: 30px;
}

    .select_box p {
        cursor: pointer;
        display: block;
        line-height: 40px;
        height: 40px;
        overflow: hidden;
        border: 1px solid #af5b5b;
        padding-right: 15px;
        padding-left: 20px;
        background: url(/src/img/footer/footkslj.png) no-repeat 95% center;
        width: 180px;
        color: #ccc;
    }

    .select_box ul {
        width: 218px;
        position: absolute;
        left: 0;
        top: 40px;
        border: 1px solid #ccc;
        background: #fff;
        overflow: hidden;
        display: none;
        background: #ebebeb;
        z-index: 99999;
    }

        .select_box ul li {
            display: block;
            height: 30px;
            overflow: hidden;
            line-height: 30px;
            padding-left: 5px;
            width: 100%;
            cursor: pointer;
            margin-left: 0;
        }

.copyRight a {
    color: #999999;
}

.select_box ul li:hover {
    background: #F4F4F4
}

.select_box ul li a {
    color: #000;
    display: block;
}

/* 移动端底部（默认隐藏）*/
.ydfoot {
    display: none
}

/* 回到顶部 */
.backtop {
    position: fixed;
    bottom: 50px;
    right: 50px;
    cursor: pointer;
    z-index: 100
}









@media screen and (max-width: 1520px) {
    .ywkx {
        width: 1280px;
    }

    .ywkxtit2 {
        width: 425px;
    }

    .bannertit span:before {
        display: none
    }
}

@media screen and (max-width: 1400px) {
    .ztjj li {
        font-size: 22px;
    }

        .ztjj li.bg5 a span {
            font-size: 22px;
        }
}

@media screen and (max-width: 1320px) {
    .container {
        width: 1100px;
    }

    .ywPicTxtItem1 {
        width: 780px;
    }

        .ywPicTxtItem1 li {
            width: 320px;
        }

    .ywPicTxtItem2 {
        width: 320px;
    }

    .fdspImg {
        width: 630px;
    }

    .fdspTxt {
        width: 485px;
    }

    #slick1 .slick-dots {
        width: 1100px;
    }

    .bannertit {
        width: 100%;
    }

        .bannertit span {
            width: 1100px;
        }

    .ywkx {
        width: 1100px;
    }

    .xiaoqu {
        margin-right: 110px;
    }

    .logo {
        width: 140px;
    }

        .logo img {
            width: 100%
        }

    .logo_bg {
        width: 200px;
    }

        .logo_bg img {
            max-width: 100%;
        }

    .topbantxt {
        width: 1100px;
    }

    .rightCon {
        width: 775px;
    }

    .xxjjNum {
        width: 150px;
    }

    .xxjjinner {
        width: 550px;
    }

    .kydtCon ul, .list_dl, .xsqkCon ul {
        width: 810px;
    }

    .ywkxtit2 {
        width: 345px;
    }
}

@media screen and (max-width: 1200px) {

    .bannertxt2, .banner_mag {
        display: none;
    }

    .bmxy {
        margin-top: 10px;
        width: 100%;
    }

    .gengdd {
        display: none
    }

    .nav-wrapper.fixed .logo_bg {
        top: 29px;
        width: 200px;
    }

    .nav-wrapper.fixed .topTool {
        top: 0px;
    }

    .nav-wrapper.fixed .logo {
        width: 160px;
    }

    .serBoxzk div {
        width: auto;
        height: 40px;
        margin: auto;
        padding: 0 10px;
    }

    .tzmore {
        display: none
    }

    .serK {
        width: calc(100% - 80px);
        height: 40px;
        line-height: 40px;
    }

    .serBtn {
        width: 20px;
        height: 20px;
        background: #C29860;
        padding: 10px;
        float: left;
    }

    .container {
        width: auto;
        padding: 0 10px;
    }

    .ywPicTxtItem2 > li {
        padding: 15px 0;
    }

    .tzzb > ul {
        width: 100%;
    }

        .tzzb > ul > li .enterMore {
            display: none
        }

        .tzzb > ul > li.cur .enterMore {
            display: block
        }

    .enterMore {
        font-size: 12px;
        padding: 0 5px;
        border: 1px solid #D5D5D5;
        color: #999999;
        position: absolute;
        right: 0;
        top: 2px;
        display: block;
    }

    .enterXw {
        position: absolute;
        /*right: -120px;*/
        right: -55px;
        top: 3px;
        font-size: 12px;
        color: #990000;
        border: 1px solid #990000;
        padding: 0 10px;
    }

    .menuicon {
        display: block
    }

    .ywkx {
        display: none
    }

    #slick1 .slick-dots {
        width: auto;
        bottom: 10px;
        right: 10px;
    }

    .bannertit {
        width: 100%;
        bottom: 0;
        z-index: 100;
        background: url("/src/img/index/ydbannertxtbg.png") repeat-x;
        height: 60px;
    }

    .bannertxt {
        height: 60px;
        display: none
    }

    .ywPicTxtItem1 {
        float: none;
        margin-left: -3%;
        width: auto;
    }

        .ywPicTxtItem1 li {
            width: 47%;
            margin-left: 3%
        }

            .ywPicTxtItem1 li .ywPicTxtItem2 {
                height: auto
            }

                .ywPicTxtItem1 li .ywPicTxtItem2 li {
                    width: 100%;
                    float: none;
                    margin-bottom: 0;
                }

    .ywPicTxtItem2 {
        float: none;
        margin-left: 0;
        width: auto;
    }

    .bannertit span {
        bottom: 25px;
        top: auto;
        left: 10px;
        font-size: 14px;
        width: auto;
    }

    .date {
        display: none;
    }

    .xwtxt b {
        font-size: 14px;
        color: #999999;
        display: block;
        font-weight: normal;
        margin-top: 10px;
    }

    .xwtxt {
        float: none;
        padding-left: 0;
        position: relative
    }

        .xwtxt div {
            padding-left: 0;
            border-left: 0;
        }

    .tzggList {
        margin-bottom: 20px;
        padding-top: 0;
    }

        .tzggList li {
            float: none;
            width: 97%;
            margin-bottom: 0;
            padding: 15px 0;
            border-bottom: 1px solid #DDDDDD;
        }

    .jzhdTxt a {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .jzhdTxt p {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 12px;
    }

    .jzhdList li {
        float: none;
        width: auto;
        margin-left: 0;
        position: relative;
        padding-left: 65px;
        margin-bottom: 10px;
    }

    .jzhdTxt {
        padding-left: 0;
        width: 100%;
    }

    .tzzb i {
        display: none
    }

    .title span {
        font-size: 16px;
        background: transparent;
        top: 0;
        padding: 0;
    }

        .title span em {
            font-size: 12px;
        }

    .title {
        width: auto !important;
        height: auto;
        background: transparent;
        text-align: left;
        position: relative;
    }

    .ywPicTxt, .jzhdList {
        padding-top: 20px;
    }

    .jzhdList {
        margin-left: 0;
    }

    .sp-thumbnails-container {
        display: none
    }

    .ksdh {
        display: none;
    }

    .ztjj li {
        font-size: 16px;
        width: 49%;
        margin-bottom: 15px;
        padding: 10px 0;
    }

    .bg5 {
        display: none
    }

    .ztjj ul, .fdsjCon {
        padding-top: 20px;
    }

    .ztjj, .fdrw, .fdsj, .fdyw {
        padding: 20px 0 20px 0;
    }

    .sp-caption-container a {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .sp-caption-container p {
        font-size: 14px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
    }

    .sp-caption-container span {
        font-size: 14px;
    }

    .sp-caption-container {
        padding: 10px;
    }

    .slider-pro {
        top: 20px;
        padding-bottom: 20px;
    }

    .fdsjtw {
        float: none;
        position: initial
    }

    .fdsjtwImg {
        width: auto;
    }

    .fdsjtwTxt {
        width: 80%;
        padding: 20px 20px;
    }

    .fdsp {
        float: none;
        width: auto;
    }

    .fdspImg {
        width: 100%;
        height: 300px;
    }

    .fdspTxt {
        width: 80%;
        padding: 20px 20px;
    }

        .fdspTxt a {
            font-size: 16px;
            margin-bottom: 10px;
        }

    .videobg span {
        width: 40px;
        height: 40px;
        display: block;
        margin: 100px auto;
        background: url(/src/img/index/videobtn.png) no-repeat;
        background-size: cover;
    }

    .nav {
        display: none
    }

    .yyqh {
        display: none
    }

    .topTool {
        right: 0;
        top: 0;
        background: #223356;
        width: 30px;
        height: 30px;
        line-height: 30px;
        text-align: center
    }

    .nav-wrapper {
        height: 30px;
    }

    .logo_bg {
        top: 28px;
    }

    .logo {
        top: 14px;
        width: 180px;
        left: 4px;
    }

    .serBox {
        margin-left: 0;
        height: auto;
        float: none;
    }

    /*.menuicon {
        width: 20px;
        height: 20px;
        position: absolute;
        left: 10px;
        top: 5px;
    }

        .menuicon img {
            width: 100%;
        }*/

    .menuicon {
        width: 75px;
        height: 20px;
        position: absolute;
        left: 10px;
        top: 7px;
        color: #FFF;
        line-height: 20px;
    }

        .menuicon img {
            width: 29%;
            margin-right: 5px;
            margin-top: 0px;
        }

    .navBox {
        z-index: 8;
        position: absolute;
        top: 30px;
        width: 100%;
        padding-top: 30px;
        background: #FEF9EC;
    }

    #ydnav li {
        background: #FEF9EC;
        padding: 0 10px;
    }

        #ydnav li p {
            border-bottom: 1px solid #D7D4CC;
            padding: 10px;
        }

        #ydnav li a {
            color: #000000;
            font-size: 14px;
        }

        #ydnav li ul {
            margin: 0;
        }

            #ydnav li ul li {
                border-bottom: 1px dashed #7E7E7E;
                padding: 9px 20px;
            }

                #ydnav li ul li a {
                    font-size: 12px;
                    color: #666666
                }

    .zkicon {
        background: url("/src/img/header/zkicon.png") no-repeat;
        width: 13px;
        height: 13px;
        background-size: 100%;
        display: inline-block;
        float: right;
        position: relative;
        top: 7px;
    }

    .sqicon {
        background: url("/src/img/header/sqicon.png") no-repeat;
        width: 13px;
        height: 2px;
        background-size: 100%;
        position: relative;
        top: 13px;
    }

    .ccc {
        background: #E0D2B5;
        padding: 0 10px;
    }

        .ccc ul {
            overflow: hidden
        }

            .ccc ul li {
                float: left;
                padding: 10px 0;
                width: 32%;
            }

        .ccc a {
            color: #000;
            font-size: 14px;
        }

    .itemBox {
        overflow: hidden
    }

        .itemBox li {
            float: left
        }

            .itemBox li a {
                display: block;
                color: #000
            }

    .serBox span {
        position: relative;
        top: 3px;
    }

    .shareList {
        float: none;
        width: 200px;
        margin: 0 auto 20px;
    }

    .xiaoqu {
        float: none;
        margin-left: 0;
        margin-right: 0;
        margin-top: 0;
    }

        .xiaoqu b {
            display: inline;
        }

    .footlink {
        float: none;
        width: auto;
        margin-bottom: 20px;
    }

    .footkslj {
        float: none;
        margin-bottom: 20px;
    }

    .footTop {
        padding: 20px 0;
    }

    .shareList li {
        /*margin-top: 0;*/
    }

    .date3 {
        top: 10px;
    }

    .date4 span {
        font-size: 20px;
    }

    .xiaoqu p {
        margin-top: 0;
        margin-bottom: 15px;
        font-size: 14px;
    }

    .footlink li {
        width: 30%;
        margin-left: 3%
    }

    .select_box {
        width: 47%;
        margin-left: 3%;
        float: left
    }

    .footTop {
        display: none
    }

    .ydfoot {
        background: url("/src/img/footer/footbg.png") no-repeat center bottom #8C1515;
        padding: 20px 0;
        display: block
    }

    .shareList li {
        /*width: 30px;
        height: 30px;
        background: url("../img/index/shareicon.png") no-repeat;
        float: left;
        background-size: cover;*/
    }

        .shareList li.weibo {
            background-position: 0 0;
        }

        .shareList li.weixin {
            background-position: -33px 0;
        }

        .shareList li.youxiang {
            background-position: -65px 0;
        }

        .shareList li.shipin {
            background-position: -100px 0px;
        }

    .banner #slick1 .slick-dots li {
        width: 10px;
        height: 10px;
        background-size: cover;
        margin: 0 3px;
    }

    .ywTxt {
        padding: 10px;
    }

        .ywTxt h2 {
            font-size: 16px;
            margin-bottom: 10px;
        }

    .date2 {
        width: 50px;
    }

        .date2 span {
            font-size: 16px;
            height: 30px;
            line-height: 30px;
        }

        .date2 b {
            font-size: 12px;
        }
    /*内容页*/
    .topbantxt {
        width: auto !important;
    }

        .topbantxt dl {
            background: rgba(0,0,0,.5);
            width: auto !important;
            height: auto;
            padding: 10px;
            left: 10px !important;
        }

            .topbantxt dl dd {
                display: none;
            }

            .topbantxt dl dt {
                padding: 0;
                font-size: 16px;
                border-bottom: 0;
            }

    .articleTitle h3 {
        font-size: 16px;
    }

    .article img {
        width: 100%;
        margin: 15px auto
    }

    .pageArticle {
        margin: 0;
    }

    .share {
        display: none
    }
    /*历任领导*/
    .leftNav {
        float: none;
        width: 100%;
        border-top: 0;
    }

    .rightCon {
        width: auto;
        float: none;
        margin-left: 0;
    }

    .leaderListItem li {
        width: 29%;
        margin-left: 3%;
        padding: 10px 0;
    }

    .leftNav span {
        display: block
    }

    .xrldsubtit {
        position: relative;
        left: 0;
        top: 0;
        background: url("/src/img/index/xrldsubtit.png") no-repeat;
        font-size: 14px;
        margin-bottom: 20px;
    }

    .xrld > div {
        position: relative;
        padding-left: 0;
        margin-bottom: 20px;
    }
    /*学校简介*/
    .xxjjNum {
        display: none
    }

    .xxjjinner {
        width: auto;
        float: none;
    }

    .xxjjNum p span {
        font-size: 18px;
    }

    .xxjjNum p {
        font-size: 14px;
    }

    .xxjjNum li {
        margin-bottom: 15px;
    }

    .xxjjinner p, .xzzcCon p {
        font-size: 14px;
    }
    /*学校章程*/
    .xxzcCon {
        padding: 20px;
    }

        .xxzcCon h1 {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .xxzcCon h2 {
            font-size: 16px;
            margin-bottom: 30px;
        }

    .xxzcitem1 {
        border-bottom: 2px solid #F0F0F0;
        padding-bottom: 20px;
    }

        .xxzcitem1 h3 {
            font-size: 16px;
            margin-bottom: 15px;
        }

        .xxzcitem1 p {
            font-size: 14px;
            line-height: 26px;
            margin-bottom: 20px;
        }

        .xxzcitem1 h6 {
            font-size: 14px;
            margin-bottom: 20px;
        }

    .xxzcitem2 {
        padding-top: 25px;
    }

        .xxzcitem2 h4 {
            font-size: 14px;
            margin-bottom: 15px;
        }

        .xxzcitem2 h5 {
            font-size: 14px;
            margin-bottom: 20px;
        }

        .xxzcitem2 p {
            font-size: 14px;
            line-height: 26px;
            margin-bottom: 20px;
            text-indent: 2em;
        }
    /*科学研究*/
    #zbjg {
        height: 200px;
        overflow: hidden;
    }

    .kxyjLeftTit {
        float: none
    }

    .list_dl {
        width: auto;
        float: none
    }

    .list_dt {
        width: auto
    }

    .kxyjLeftTit {
        margin-bottom: 20px;
    }

    .kydtCon ul {
        width: auto;
        float: none
    }

    .xsqkCon ul {
        width: auto;
        float: none;
    }

    .kxyjLeftTit dd {
        font-size: 18px;
    }

    .list_dd li {
        width: 47%;
        margin-left: 3%;
        margin-bottom: 20px;
        float: left;
    }

    .xsqkCon li {
        width: 47%;
        margin-left: 3%;
        background: #FCFCFC;
        float: left;
    }

    .loacl2 {
        display: none
    }

    .xwtxt a {
        font-size: 14px;
        height: auto;
    }

    .xwtxt b {
        font-size: 12px;
        display: none;
    }

    .tzggList a {
        font-size: 14px;
    }

    .xzzx {
        padding: 30px 0;
    }

    .xzzxList {
        margin-top: 20px;
    }

    .tzzb > ul > li {
        margin-top: 0px;
    }

    .tzgg {
        padding: 50px 0 70px 0;
        padding-bottom: 20px;
    }

    .ywPic {
        height: 220px;
    }

    .xwtxt p {
        max-height: 38px;
        overflow: hidden;
    }

    .logo img {
        position: relative;
        top: -3px;
    }
}

@media screen and (max-width: 800px) {
    .ztlistPage li {
        width: 26%;
    }

    .xzzxList {
        margin-left: -3%;
    }

        .xzzxList li {
            width: 47%;
            margin-bottom: 15px;
        }

    .ywPic {
        height: 220px;
    }

    .fdspImg {
        height: 200px
    }

    .fdsjtwImg {
        height: 200px
    }

    #slick2 {
        display: none;
    }

    #swipe2 {
        display: block;
    }

        #swipe2 .swiper-pagination-bullet {
            background: url(../img/index/fddot1.png) no-repeat;
            background-size: 100%;
        }

            #swipe2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
                background: url(../img/index/fddot2.png) no-repeat;
                background-size: 100%;
            }

        #swipe2 .swiper-pagination {
            text-align: right;
        }
}

@media screen and (max-width: 500px) {
    .ywPicTxtItem1 {
        margin-left: 0;
    }

        .ywPicTxtItem1 li {
            width: 100%;
            margin-left: 0;
            float: none;
        }

    .select_box {
        width: 100%;
        margin-left: 0;
        float: left;
    }

        .select_box p {
            cursor: pointer;
            display: block;
            line-height: 40px;
            height: 40px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,.3);
            padding-right: 40px;
            padding-left: 20px;
            /*background: url(../img/index/footkslj.png) no-repeat 95% center;*/
            width: auto;
            color: #ccc;
        }
    /*列表页*/
    .titleList li a {
        font-size: 14px;
    }

    .titleList li span {
        font-size: 12px;
        right: 10px;
    }

    .titleList li {
        padding-right: 90px;
        padding-left: 10px;
    }

    .leaderListItem li {
        width: 46%;
        margin-left: 3%;
        padding: 10px 0;
    }

    .loacl2 span {
        font-size: 16px;
    }

    .ztlistPage li {
        width: 47%;
        height: 94px;
        padding-top: 8px;
        float: left;
        margin-left: 3%
    }

    .fdrw span.hualef {
        display: none
    }

    .select_box ul {
        width: 100%
    }
}



.sec-con {
    overflow: hidden;
}

.sec-conHeader a {
    display: block;
    color: #fff;
    background-color: #A30F0F;
    padding: 12px 20px;
    font-size: 16px;
}

.sec-conHeader {
    height: auto;
    line-height: 26px;
    width: 31%;
    margin-bottom: 20px;
    font-weight: normal;
}

.sec-con li {
    display: inline-block;
    width: 30%;
    margin-bottom: 12px;
    overflow: hidden;
    vertical-align: middle;
    margin-left: 3%;
    background-color: #ededee;
}

    .sec-con li a {
        padding: 10px 20px;
        display: block;
        color: #000;
    }

.sec-row {
    margin-bottom: 12px;
}

    .sec-row ul {
        margin-left: -3%
    }


/*major_nav*/
.major_nav {
    width: 100%;
    height: 45px;
    line-height: 45px;
    font-size: 16px;
}

    .major_nav .zj_box {
    }

    .major_nav .tit {
        display: inline-block;
        width: 128px;
        background: url(http://static.vixue.com/resources/www.caesedu.com/images/imgs_index/major_nav_bg.png) right center no-repeat;
        color: #fff;
        font-size: 18px;
        font-weight: bold;
        position: absolute;
        top: 0;
        left: 0;
    }

        .major_nav .tit i {
            display: block;
            float: left;
            width: 20px;
            height: 20px;
            background: url(http://static.vixue.com/resources/www.caesedu.com/images/imgs_index/major_nav_i.png) no-repeat;
            margin: 15px 5px 0 9px;
        }

    .major_nav ul {
        /*float: right;*/
    }

    .major_nav li {
        display: block;
        float: left;
        margin-left: 1px;
        padding: 0 11px;
        background: #8C1515;
        /*width: 127px;*/
        width: 100px;
        height: 50px;
        line-height: 50px;
    }

        .major_nav li a {
            display: block;
            color: #fff;
            text-align: center;
            height: 50px;
            line-height: 55px;
        }

        .major_nav li.nav_hot a {
            /*background: url(http://static.vixue.com/resources/www.caesedu.com/images/hot3.gif) 92px 12px no-repeat;*/
            background: url(/src/img/index/hot3.gif) 48px 5px no-repeat;
        }

            .major_nav li.nav_hot a.hot {
                /*background: url(http://static.vixue.com/resources/www.caesedu.com/images/hot3.gif) 100px 12px no-repeat;*/
                background: url(/src/img/index/hot3.gif) 58px 5px no-repeat;
            }

        .major_nav li:hover {
            /*background: #AD1010;*/
            background: #F8B62C;
        }

            .major_nav li:hover a {
                color: #fff;
            }

@media screen and (max-width: 1200px) {
    .shareList li {
        margin-left: 0px;
    }
}

@media screen and (max-width: 992px) {
    .sec-con li {
        width: 30%;
    }

        .sec-con li a {
            margin: 0 0;
        }

    .article p span img {
        width: 15px;
        margin-right: 10px;
        position: relative;
        top: 15px;
    }
}

@media screen and (max-width: 840px) {
    .sec-con li {
        width: 46%;
    }

    #doyoo_monitor, #doyoo_panel {
        display: none !important;
    }

    .menuicon2 {
        width: 75px;
        height: 20px;
        position: absolute;
        right: -14px;
        top: 5px;
        color: #FFF;
        line-height: 20px;
        display: block;
    }

    .dqwz, .dqwz span {
        background: none !important;
    }
}

@media screen and (max-width: 768px) {
    .sec-conHeader {
        width: auto;
    }

    .xzzxtxt a {
        height: auto;
        line-height: 20px;
    }

    .kxyjLeftTit {
        width: auto;
        margin-right: 0;
    }

    .ywPicTxtItem1 li .ywPicTxtItem2 li:last-child {
        border-bottom: 1px solid #E4E4E4;
    }
}

@media screen and (max-width: 640px) {
    .sec-con li {
        width: 46%;
    }

    .ywPic {
        height: 160px;
    }
}

@media screen and (max-width: 460px) {
    .sec-con li {
        width: 100%;
    }

    .xzzxList {
        margin-left: 0;
    }

        .xzzxList li {
            width: auto;
            margin-left: 0;
            float: none;
            margin-bottom: 15px;
        }
}
