/*全局样式*/
body {
    padding: 0;
    margin: 0;
    font-family: Microsoft YaHei;
    font-size: 14px;
    color: #333;}

div, img, ul, li, dl, dt, dd, h1, h2, h3, h4, h5, h6, form, p {
    padding: 0;
    margin: 0;
    border: 0;}

ul {
    list-style: none;}

a {
    text-decoration: none;
    color: #333;}

i, em {
    font-style: normal;}

img {
    display: block;
    max-width: 100%;
    margin:auto;
    height: auto;}

/*去掉 input 默认边框*/
input {
    padding: 0;
    border: 0;
    font-family: Microsoft YaHei;
    font-size: 14px;}

input[type="submit"] {
    background-color: transparent;
    cursor: pointer;}

/*去掉 textarea 默认边框*/
textarea {
    padding: 0;
    border: 0;
    font-family: Microsoft YaHei;
    font-size: 14px;}

/*去掉 button 默认边框*/
button {
    border: 0;
    padding: 0;
    background-color: transparent;
    font-family: Microsoft YaHei;
    font-size: 14px;
    cursor: pointer;}

/*清除浮动*/
.clearfix:after {
    content: '';
    display: table;
    clear: both;}

.clearfix {
    *zoom: 1;}

/*解决chrome浏览器 input,textarea 获得焦点时会有一个边框的问题*/
input, textarea {
    outline: none;}

/*清除ios端 input,textarea 默认内阴影 默认圆角*/
input[type="text"], input[type="submit"], textarea {
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;}

/*常用盒模型*/
* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;}

/*常用宽度*/
.w1400 {
    position: relative;
    width: 94%;
    margin: 0 auto;
    height: 100%;
    max-width: 1400px;}

.w1300 {
    position: relative;
    width: 94%;
    margin: 0 auto;
    height: 100%;
    max-width: 1300px;}

.w1200 {
    position: relative;
    width: 94%;
    margin: 0 auto;
    height: 100%;
    max-width: 1200px;}

.w1100 {
    position: relative;
    width: 94%;
    margin: 0 auto;
    height: 100%;
    max-width: 1100px;}

.w1000 {
    position: relative;
    width: 94%;
    margin: 0 auto;
    height: 100%;
    max-width: 1000px;}

/*常用过渡*/
.tran200 {
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    transition: 0.2s;}

.tran300 {
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;}

.tran400 {
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    transition: 0.4s;}

.tran500 {
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;}

/*常用缩放*/
.scale105:hover {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);}

.scale110:hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);}

/*常用浮动*/
.fl {
    float: left;}

.fr {
    float: right;}

/*通用字体大小*/
.fz14{font-size: 14px;}
.fz16{font-size: 16px;}
.fz18{font-size: 18px;}
.fz20{font-size: 20px;}
.fz22{font-size: 22px;line-height: 32px;}
.fz24{font-size: 24px;}
.fz28{font-size: 28px;}

/*按钮通用样式*/
.btns-area {
    font-size: 0;
    text-align: center;}

.btns-area .btn {
    display: inline-block;
    height: 36px;
    padding: 0 30px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    line-height: 34px;
    color: #000;
    cursor: pointer;}

.btns-area .btn img {
    display: inline-block;
    vertical-align: middle;
    margin: -3px 6px 0 0;}

.btns-area .btn:hover {
    opacity: .9;
    filter: alpha(opacity=90);}

/*滚动条*/
body *::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background: #eee;}

body *::-webkit-scrollbar-thumb {
    background: #ccc;}

/*头部*/
body {
    background-color: #f2f2f2;}

.header {
    min-width: 1200px;
    height: 108px;
    background-color: #fff;}

.header .logo {
    float: left;
    margin-top: 21px;}

.header .logo img {
    max-height: 64px;}

.header .lang {
    position: absolute;
    right: 0;
    top: 20px;
    line-height: 20px;
    color: #0062ac;}

.header .lang a {
    display: inline-block;
    padding: 0 3px;
    color: #0062ac;
    opacity: .5;
    filter: alpha(opacity=50);}

.header .lang a.on {
    opacity: 1;
    filter: alpha(opacity=100);}

/*导航*/
.nav {
    position: absolute;
    right: 14px;
    top: 48px;}

.nav li {
    position: relative;
    float: left;
    margin-left: 44px;}

.nav li:first-child {
    margin-left: 0;}

.nav li > a {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 20px;
    color: #666;}

.nav li > a:after {
    content: "";
    position: absolute;
    right: -14px;
    top: 6px;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-top: 7px solid #666;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;}

.nav li:first-child > a:after {
    display: none;}

.nav li.on > a, .nav li:hover > a {
    color: #0062ac;}

.nav li.on > a:after, .nav li:hover > a:after {
    border-top-color: #0062ac;
    transform: rotate(180deg);
    transform-origin: 5px 4px;}

.nav li .subNav {
    display: none;
    z-index: 10;
    position: absolute;
    top: 20px;
    left: -45%;
    width: 200%;
    border-radius: 10px;
    background: #0062ac;
    background: rgba(0, 98, 172, .6);}

.nav li .subNav > a {
    position: relative;
    display: block;
    padding: 8px 5px;
    font-size: 14px;
    text-align: center;
    line-height: 20px;
    color: #fff;}

.nav li .subNav > a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 0;
    background-color: #fff;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;}

.nav li .subNav > a:hover:before {
    top: 0;
    height: 100%;}

/*头部 end*/

/*banner*/
.banner {
    position: relative;
    min-width: 1200px;
    max-height: 540px;
    overflow: hidden;}

.banner .hd {
    z-index: 1;
    position: absolute;
    left: 0;
    bottom: 11px;
    width: 100%;
    text-align: center;}

.banner .hd li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: #fff;
    font-size: 0;
    cursor: pointer;}

.banner .hd li.on {
    background-color: #0062ac;}

/*banner end*/

/*首页*/
.index-part {
    min-width: 1200px;
    padding: 30px;
    margin-bottom: 20px;
    background-color: #fff;}

/*标题*/
.index-title {
    overflow: hidden;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e2e2;
    line-height: 20px;}

.index-title span {
    float: left;
    padding-left: 12px;
    margin-left: 3px;
    border-left: 2px solid #0062ac;
    font-size: 18px;
    font-weight: bold;
    color: #0062ac;}

.index-title a {
    position: relative;
    float: right;
    padding-right: 12px;
    margin-right: 5px;
    font-size: 12px;
    color: #999;}

.index-title a:after {
    content: "";
    position: absolute;
    right: 0;
    top: 7px;
    width: 0;
    height: 0;
    border: 3px solid transparent;
    border-left: 5px solid #999;}

.index-title a:hover {
    color: #0062ac;}

.index-title a:hover:after {
    border-left-color: #0062ac;}

/*热点新闻列表*/
.hot-news-list {
    overflow: hidden;
    margin-top: 10px;}

.hot-news-list li {
    float: left;
    width: 46%;
    margin: 0 2% 30px;}

.hot-news-list li a {
    display: block;}

.hot-news-list li .title {
    margin-bottom: 10px;
    border-bottom: 1px solid #e2e2e2;
    line-height: 30px;}

.hot-news-list li .title .name {
    display: inline-block;
    font-weight: bold;}

.hot-news-list li .title .date {
    float: right;
    font-size: 12px;
    color: #999;}

.hot-news-list li .info {
    position: relative;
    height: 135px;}

.hot-news-list li .info .pic {
    height: 100%;
    overflow: hidden;}

.hot-news-list li .info .pic img {
    width: 100%;
    height: 100%;
    transition: 0.3s;
    -webkit-transition: 0.3s;}

.hot-news-list li .info .txt {
    height: 100px;
    font-size: 12px;
    line-height: 20px;
    color: #666;
    overflow: hidden;}

.hot-news-list li .info .more {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 0 34px;
    border: 1px solid #999;
    font-size: 12px;
    line-height: 18px;
    text-transform: uppercase;}

.hot-news-list li:hover .title .name {
    color: #0062ac;}

.hot-news-list li:hover .info .pic img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);}

.hot-news-list li:hover .info .more {
    background-color: #0062ac;
    border-color: #0062ac;
    color: #fff;}

/*新闻列表*/
/*样式1*/
.news-list1 {
    min-height: 200px;}

.news-list1 li {
    overflow: hidden;
    border-top: 1px dotted #ccc;
    line-height: 45px;}

.news-list1 li:first-child {
    border-top: 0;}

.news-list1 li a {
    position: relative;
    float: left;
    width: 75%;
    padding-left: 12px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;}

.news-list1 li a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    width: 4px;
    height: 4px;
    margin-top: -2px;
    background-color: #bebebe;
    border-radius: 50%;}

.news-list1 li em {
    float: right;
    font-size: 12px;
    color: #999;}

.news-list1 li:hover a {
    color: #0062ac;
    text-indent: 0.3em;}

.news-list1 li:hover a:before {
    background-color: #0062ac;}

.news-list1 li:hover em {
    color: #0062ac;}

/*样式2*/
.news-list2 {
    min-height: 200px;}

.news-list2 li {
    padding: 15px 0;
    border-bottom: 1px dotted #999;}

.news-list2 li a {
    display: block;}

.news-list2 li .num {
    float: left;
    width: 45px;
    height: 34px;
    border-right: 1px solid #999;
    font-size: 28px;
    text-align: center;
    line-height: 34px;
    font-weight: bold;
    letter-spacing: -0.05em;
    color: #666;}

.news-list2 li .info {
    height: 34px;
    margin-left: 60px;}

.news-list2 li .info .tit {
    height: 20px;
    line-height: 20px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;}

.news-list2 li .info .date {
    height: 14px;
    font-size: 12px;
    line-height: 14px;
    color: #999;}

.news-list2 li:hover .num {
    color: #0062ac;}

.news-list2 li:hover .info .tit {
    color: #0062ac;}

/*样式3*/
.news-list3 {
    min-height: 200px;}

.news-list3 li {
    padding: 10px 0;
    border-bottom: 1px dotted #999;}

.news-list3 li a {
    display: block;
    color: #666;}

.news-list3 li .date {
    float: left;
    width: 60px;
    height: 50px;
    border-right: 1px solid #999;
    text-align: center;}

.news-list3 li .date .day {
    font-size: 24px;
    line-height: 32px;
    font-weight: bold;}

.news-list3 li .date .year {
    font-size: 12px;
    line-height: 14px;}

.news-list3 li .info {
    margin-left: 70px;}

.news-list3 li .info .tit {
    line-height: 18px;
    font-weight: bold;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;}

.news-list3 li .info .txt {
    font-size: 12px;
    height: 32px;
    line-height: 16px;}

.news-list3 li:hover .date .day {
    color: #0062ac;}

.news-list3 li:hover .info .tit {
    color: #0062ac;}

/*图片轮播*/
.pic-slider {
    overflow: hidden;
    margin: 0 170px 0 50px;
    border: 1px solid #e2e2e2;}

.pic-slider .bd {
    padding: 9px 10px;}

.pic-slider .bd .list {}

.pic-slider .bd .list li {
    position: relative;
    float: left;
    width: 130px;
    height: 170px;
    margin: 0 10px;
    overflow: hidden;}

.pic-slider .bd .list li a {
    display: block;}

.pic-slider .bd .list li .pic {
    height: 100%;}

.pic-slider .bd .list li .pic img {
    width: 100%;
    height: 100%;}

.pic-slider .bd .list li .info {
    position: absolute;
    left: 0;
    top: -100%;
    width: 100%;
    height: 100%;
    padding: 8px 6px;
    background-color: rgba(0, 0, 0, .6);
    transition: 0.3s;
    -webkit-transition: 0.3s;}

.pic-slider .bd .list li .info .name {
    height: 100%;
    border: 1px solid #fff;
    text-align: center;
    color: #fff;}

.pic-slider .bd .list li .info .name .name1 {
    margin-top: 30px;
    font-size: 16px;
    font-weight: bold;}

.pic-slider .bd .list li .info .name .name2 {
    margin-top: 5px;
    font-size: 12px;}

.pic-slider .bd .list li .info .name .more {
    margin-top: 15px;
    font-size: 30px;
    font-weight: bold;}

.pic-slider .bd .list li:hover .info {
    top: 0;}

/*index-part1*/
.index-part1 {
    margin-top: 40px;}

.index-part1 > .con-l {
    float: left;
    width: 65%;}

.index-part1 > .con-r {
    float: right;
    width: 32%;}

/*index-part2*/
.index-part2 .item-box {
    width: 32%;}

.index-part2 .item-box1 {
    margin-right: 3%;}

.index-part2 .item-box2 {
    width: 34%;}

.index-part2 .item-box3 {
    width: 28%;}

/*index-part3*/
.index-part3 {}

.index-part3 .title {
    float: left;
    background-color: #0062ac;
    color: #fff;}

.index-part3 .title .text {
    display: table-cell;
    width: 36px;
    height: 190px;
    padding: 0 0.5em;
    vertical-align: middle;
    font-size: 18px;
    text-align: center;
    line-height: 30px;
    font-weight: bold;}

.index-part3 .entrance {
    position: absolute;
    right: 30px;
    top: 30px;
    width: 156px;}

.index-part3 .entrance .item {
    display: block;
    padding: 10px;
    background-color: #0062ac;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;}

.index-part3 .entrance .item1 {
    margin-bottom: 14px;
    background-image: url(../images/entrance_bg1.jpg);}

.index-part3 .entrance .item2 {
    margin-bottom: 14px;
    background-image: url(../images/entrance_bg2.jpg);}

.index-part3 .entrance .item .name {
    display: table-cell;
    width: 100%;
    height: 68px;
    padding: 0 1em;
    border: 1px solid #fff;
    vertical-align: middle;
    text-align: center;
    color: #fff;}

.index-part3 .entrance .item:hover {
    opacity: .9;
    filter: alpha(opacity=90);}

/*首页 end*/

/*footer*/
.footer {
    min-width: 1200px;
    padding: 30px 0;
    background-color: #0062ac;
    font-size: 12px;
    color: #fff;}

.footer .logo {
    float: left;
    width: 25%;
    padding-right: 30px;
    background: url(../images/footer_border.png) right 10px no-repeat;}

.footer .info {
    float: left;
    width: 35%;
    min-height: 140px;
    padding: 0 30px;
    background: url(../images/footer_border.png) right 10px no-repeat;
    line-height: 20px;}

.footer .info p {
    margin-bottom: 8px;}

.footer .friend-links {
    float: left;
    width: 25%;
    min-height: 140px;
    padding: 0 30px;
    background: url(../images/footer_border.png) right 10px no-repeat;}

.footer .friend-links .title {
    margin-bottom: 5px;
    line-height: 20px;}

.footer .friend-links select {
    width: 100%;
    height: 24px;
    margin-bottom: 8px;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 4px;
    color: #fff;}

.footer .friend-links select option {
    color: #000;}

.footer .code {
    float: right;
    width: 100px;
    text-align: center;}

.footer .code img {
    display: inline-block;}

.footer .code span {
    display: block;
    margin-top: 10px;}

/*footer end*/

/*内页*/
/*公共部分*/
.nBanner {
    max-height: 274px;
    overflow: hidden;}

.nBanner img {
    width: 100%;}

.container {
    overflow: hidden;
    width: 1200px;
    padding: 30px 25px 55px;
    margin: 38px auto 50px;
    background-color: #fff;}

.container > .conL {
    float: left;
    width: 230px;
    min-height: 450px;
    background: url(../images/conl_bg.jpg) right top no-repeat;}

.container > .conR {
    float: right;
    width: 865px;}

/*左侧菜单栏*/
.menu {
    width: 190px;}

.menu .name {
    position: relative;
    height: 56px;
    padding-left: 35px;
    border-bottom: 1px solid #ddd;
    font-size: 24px;
    font-weight: bold;
    line-height: 56px;
    color: #333;}

.menu .name:before {
    content: "";
    position: absolute;
    left: 12px;
    top: 23px;
    width: 8px;
    height: 8px;
    border: 2px solid #333;
    border-radius: 50%;}

.menu .list {}

.menu .list li {
    padding: 9px 0 5px;
    border-bottom: 1px solid #ddd;}

.menu .list li a {
    position: relative;
    display: block;
    width: 200px;
    height: 36px;
    padding-left: 40px;
    margin-left: -2px;
    font-size: 16px;
    line-height: 36px;
    color: #333;}

.menu .list li a:after {
    content: "";
    position: absolute;
    right: 42px;
    top: 13px;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-left: 8px solid #cfcfcf;
    border-right-width: 2px;}

.menu .list li:hover a, .menu .list li.on a {
    background-color: #0062ac;
    color: #fff;}

.menu .list li:hover a:after, .menu .list li.on a:after {
    border-left-color: #fff;}

/*面包屑*/
.inPageComTit .bread {
    color: #999;}

.inPageComTit .bread img {
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: top;
    margin-top: 8px;}

.inPageComTit .bread span {
    display: inline-block;}

.inPageComTit .bread a {
    display: inline-block;
    margin-right: 3px;
    color: #999;}

.inPageComTit .bread a:hover {
    color: #0062ac;}

/*右侧标题栏*/
.inPageComTit {
    overflow: hidden;
    margin-bottom: 20px;
    border-bottom: 9px solid #f4f4f4;
    line-height: 40px;}

.inPageComTit .name {
    float: left;
    margin-left: 4px;
    font-size: 20px;
    color: #0062ac;}

.inPageComTit .bread {
    float: right;}

/*分页*/
.pagination {
    margin: 20px 0;
    text-align: center;}

.pagination li{
    display: inline-block;}

.pagination a, .pagination span {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 3px;
    background-color: #f3f3f3;
    color: #666;}

.pagination a.pageDown {
    background-color: #666;
    color: #fff;}

.pagination a.on, .pagination a:hover {
    background-color: #0062ac;
    color: #fff;}

/*公共部分 end*/

/*新闻列表*/
.container .conR .newsList {
    padding: 0 15px;
    margin: 35px 0 46px;
    min-height: 500px;}

/*新闻详情*/
.newsDetails {
    margin-top: 40px;
    min-height: 600px;}

.newsDetails .tit {
    padding-bottom: 35px;
    margin-bottom: 25px;
    border-bottom: 1px dashed #d4d4d4;
    text-align: center;}

.newsDetails .tit h1 {
    font-size: 24px;
    font-weight: normal;
    color: #333;}

.newsDetails .tit h3 {
    margin-top: 20px;
    font-size: 14px;
    font-weight: normal;
    color: #999;}

.newsDetails .tit h3 span {
    display: inline-block;
    margin: 0 25px;}

.newsDetails p {
    padding: 0 20px;
    text-align: justify;
    line-height: 36px;
    color: #333;
    font-size: 16px;}

/*关于我们*/
.aboutCont {
    padding: 0 10px;
    margin-top: 30px;
    min-height: 600px;}

.aboutCont img {
    display: inline-block;}

.aboutCont p {
    text-align: justify;
    line-height: 36px;
    color: #666;}

/*图片列表*/
.imageList {
    width: 900px;
    min-height: 500px;
    margin-top: 30px;}

.imageList li {
    float: left;
    width: 195px;
    margin: 0 30px 30px 0;
    transition: 0.3s;
    -webkit-transition: 0.3s;}

.imageList li .pic {
    display: block;
    height: 240px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;}

.imageList li .tit {
    display: block;
    background-color: #f2f2f2;
    font-size: 16px;
    text-align: center;
    line-height: 54px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: 0.5s;
    -webkit-transition: 0.5s;}

.imageList li .tit em {
    font-size: 12px;}

.imageList li:hover {
    box-shadow: 0 5px 20px #aaa;}

.imageList li:hover .tit {
    background-color: #0062ac;
    color: #fff;}

/*第一条为带图文的新闻列表*/
.itemList {
    margin-top: 40px;}

.itemList .topCont {
    overflow: hidden;
    padding-bottom: 30px;
    border-bottom: 1px dashed #ddd;}

.itemList .topCont .pic {
    float: left;
    width: 30%;
    height: 170px;
    border: 1px solid #ccc;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;}

.itemList .topCont .txt {
    float: right;
    width: 67%;}

.itemList .topCont .txt h3 {
    width: 90%;
    font-size: 20px;
    font-weight: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;}

.itemList .topCont .txt h3 a {
    color: #333;}

.itemList .topCont .txt p {
    margin-top: 10px;
    line-height: 24px;
    color: #999;}

.itemList .topCont .txt h3 a:hover {
    color: #0062ac;
    text-decoration: underline;}

.itemList .list {
    margin-bottom: 54px;
    min-height: 300px;}

.itemList .list li {
    overflow: hidden;
    padding: 36px 20px 32px;
    border-bottom: 1px dashed #ddd;}

.itemList .list li .time {
    float: left;
    padding: 10px;
    background-color: #2982c5;
    border-radius: 4px;
    text-align: center;
    color: #fff;}

.itemList .list li .time span {
    display: block;
    font-size: 36px;
    font-weight: bold;
    line-height: 36px;}

.itemList .list li .time em {
    display: block;}

.itemList .list li .txt {
    float: right;
    width: 87%;
    padding-left: 30px;
    border-left: 1px solid #0062ac;}

.itemList .list li .txt h3 {
    width: 90%;
    font-size: 20px;
    font-weight: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;}

.itemList .list li .txt h3 a {
    color: #333;}

.itemList .list li .txt p {
    margin-top: 5px;
    line-height: 24px;
    color: #999;}

.itemList .list li .txt h3 a:hover {
    color: #0062ac;
    text-decoration: underline;}

/*联系我们*/
.contactUs {
    padding: 0 20px;
    margin-top: 40px;
    min-height: 600px;}

.contactUs iframe {
    display: block;
    width: 100%;
    height: 400px;}

.contactUs .info {
    margin-top: 20px;}

.contactUs .info p {
    line-height: 28px;}

/*内页 end*/

/*兼职导师*/
.conR .list_teacher{min-height: 600px;margin-top:-20px;}
.conR .list_teacher a{float: left;margin-top: 40px;display: inline-block;width: 16.5%;position: relative;line-height: 45px;}
.conR .list_teacher a:before{width: 5px;height: 5px;background: #777;-webkit-border-radius: 50%;border-radius: 50%;content: '';position: absolute;left: 25.9%;top: 50%;margin-top: -2px;}
.conR .list_teacher a span{padding-left: 37%;color: #777;}
.conR .list_teacher a:hover {background: #0062ac;}
.conR .list_teacher a:hover span{color: #fff;}
.conR .list_teacher a:hover:before{background: #fff;}