/* 通用样式 */

@charset "utf-8";
html {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    /* Firefox */
    -webkit-box-sizing: border-box;
    /* Safari */
    border: none;
    outline: none;
}

body {
    margin: 0 auto;
    font-family: "Microsoft YaHei";
    font-weight: normal;
    font-stretch: normal;
    line-height: 1;
    font-size: 1rem;
}


/* 3.去除列表默认样式 */

h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
dl,
dt,
dd,
hr,
input,
p {
    padding: 0;
    margin: 0;
    list-style: none;
    outline: none;
    border: none;
}

input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

li {
    cursor: pointer;
}


/* 4.去除默认倾斜效果 */

em,
i {
    font-style: normal;
}


/* 5.去除a标签默认的下划线,并设置默认文字颜色 */

a {
    color: inherit;
    font: inherit;
    text-decoration: none;
    outline: none;
}

a:hover {
    text-decoration: none;
}

a:focus {
    border: none;
    outline: none;
    text-decoration: none;
}


/* 6.设置img的垂直对齐方式为居中对齐 */

img {
    vertical-align: middle;
    max-width: 100%;
    border: none;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}


/* 7.左右浮动 */

.fl {
    float: left;
}

.fr {
    float: right;
}


/* 清除浮动影响 */

.clearfix::before,
.clearfix::after {
    content: "";
    display: table;
}

.clearfix::after {
    clear: both;
}


/* 版心的公共类 */

.container {
    position: relative;
    width: 1300px;
    margin: 0 auto;
}


/* ------------------------------------------------- */


/* 内容板块头部标题 */

.header .more a {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-right: 8px;
    width: 90px;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
    color: #666;
    background-color: #dbdbdb;
}

.header .more a::after {
    position: absolute;
    content: "";
    width: 90px;
    height: 30px;
    top: 4px;
    left: 5px;
    border: 2px solid #dbdbdb;
}

.header .more a:hover {
    color: #fff;
    background-color: #cf2c0f;
}

.header .more a:hover::after {
    position: absolute;
    content: "";
    width: 90px;
    height: 30px;
    top: 4px;
    left: 5px;
    border: 2px solid #cf2c0f;
}


/* 板块内调整margin值 */

.inner_box {
    margin: 0 -1%;
}


/* 网页底部 */

footer {
    padding-bottom: 28px;
    background-color: #313131;
}

footer p {
    font-size: 14px;
    color: #ffffff;
    opacity: 0.63;
    line-height: 28px;
}

.ft_logo {
    width: 632px;
    padding-top: 37px;
}

.ft_logo img {
    max-width: 100%;
    opacity: 0.63;
}

.ft_text {
    width: calc(100% - 720px);
}

.copyright_box {
    padding-top: 30px;
}

.copyright_box .about {
    margin-top: 20px;
}

.htgl_box {
    width: 57px;
    padding-top: 33px;
}

.htgl_icon {
    height: 47px;
    width: 47px;
    margin: 0 auto 15px auto;
    background-color: #545454;
    background-image: url("../images/htgl.png");
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 6px;
}

.htgl_title {
    font-size: 14px;
    color: #fff;
}


/* 副页面上方图块 */

.page_img {
    width: 100%;
}

.page_img img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}


/* 副页面内容主体盒子 */

.contents_box {
    padding: 56px 0;
}


/* 副页面左侧栏目导航盒子 */

.snav {
    width: 260px;
}


/* 栏目导航标题 */

.snav .snav_title {
    text-align: center;
    padding: 21px 0;
    font-size: 28px;
    color: #fff;
    background-color: #af251b;
}


/* 栏目项目 */

.snav .snav_column {
    margin-top: 20px;
    padding-bottom: 145px;
    background-color: #f2f2f2;
    /* 领导列表页导航背景 */
    background-image: url("../images/sNav_bg1.png");
    background-position: bottom center;
    background-repeat: no-repeat;
    border-top: 1px solid #af251b;
}


/* 常规页导航背景 */

.snav .putong {
    background-image: url("../images/sNav_bg2.png");
    background-position: bottom center;
    background-repeat: no-repeat;
}


/* 教师列表页导航背景 */

.snav .teacher {
    background-image: url("../images/sNav_bg3.png");
    background-position: bottom center;
    background-repeat: no-repeat;
}


/* 导航栏目 */

.snav_column>div {
    position: relative;
    background-color: #f2f2f2;
    text-align: center;
    cursor: pointer;
}

.snav_column .column_name {
    font-size: 20px;
    line-height: 25px;
    color: #111;
    display: block;
    padding: 21px 10px;
    border-bottom: 1px solid #e5e5e5;
}

.snav_column .on .c_left,
.snav_column .on .c_right {
    position: absolute;
    width: 9px;
    height: 33px;
    background-color: #af251b;
}

.snav_column .on .c_left {
    top: 0;
    left: 0;
}

.snav_column .on .c_right {
    bottom: 0;
    right: 0;
}

.snav_column .on {
    background-color: #fff;
}

.snav_column .on .column_name {
    color: #af251b;
    font-weight: 700;
    border: none;
}


/* 侧导航三级栏目 */

.snav_column ul {
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
}

.snav_column ul li>a {
    display: block;
    padding: 7px 0;
    text-align: center;
    font-size: 16px;
    color: #333;
}

.snav_column ul li>a:hover {
    color: #af251b;
    font-weight: 700;
}


/* 栏目导航 end */


/* 副页面右侧内容盒子 */

.right_box {
    width: calc(100% - 315px);
    padding-top: 22px;
}


/* 副页面右侧头部标题 */

.inner_header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #af251b;
}

.inner_header .hd_title {
    font-size: 28px;
    color: #af251b;
    padding-bottom: 20px;
}


/* 副页面右侧头部当前位置 */

.inner_header .position {
    margin-top: 8px;
    font-size: 14px;
    line-height: 30px;
    padding-left: 27px;
    background: url("../images/position.png") no-repeat 0 8px;
}

.inner_header .position .now_p {
    color: #888;
}

.inner_header .position li {
    float: left;
    color: #888;
}

/*  */



.list-pic{
margin-top:30px;
}

.list-pic ul{
overflow:hidden;
margin:0 -20px;
}

.list-pic ul li{float:left;width:20%;}
.list-pic ul li .box{margin:0 20px;}
.list-pic ul li .box a{display:block;width:100%;padding-bottom:56%;position:relative;}
.list-pic ul li img{width:100%;position:absolute;}

.list-pic ul li p{}






















