.gp-header5 {
  width: 100%;
  z-index: 999;
  position: relative;
}
.gp-header5 .gp-menu {
  width: 100%;
  position: relative;
  height: 40px;
  display: none;
  z-index: 99991;
  background-color: #ba2528;
}
.gp-header5 .gp-menu .gp-menu-header {
  width: 100%;
  height: 40px;
  position: absolute;
  top: 0px;
  right: 0px;
}
.gp-header5 .gp-menu .gp-menu-header .gp-menu-header-icon {
  color: #ba2528;
  height: 32px;
  text-align: left;
  float: right;
  width: 32px;
  position: relative;
  cursor: pointer;
  margin-right: 20px;
  font-weight: bold;
  text-align: right;
  margin-top: 5px;
  background: #fff;
  transition: background 0.5s;
}
.gp-header5 .gp-menu .gp-menu-header .gp-menu-header-icon span {
  position: absolute;
  left: 7px;
  top: calc((100% - 0px) / 3);
  width: 20px;
  height: 2px;
  background-color: #ba2528;
  display: block;
}
.gp-header5 .gp-menu .gp-menu-header .gp-menu-header-icon span:nth-child(1) {
  transform: translateY(4px) rotate(0deg);
}
.gp-header5 .gp-menu .gp-menu-header .gp-menu-header-icon span:nth-child(2) {
  transform: translateY(-4px) rotate(0deg);
}
.gp-header5 .gp-menu .gp-menu-header .gp-menu-header-icon-click span:nth-child(1) {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: clickfirst;
}
.gp-header5 .gp-menu .gp-menu-header .gp-menu-header-icon-click span:nth-child(2) {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: clicksecond;
}
.gp-header5 .gp-menu .gp-menu-header .gp-menu-header-icon-click span:nth-child(3) {
  display: none;
}
.gp-header5 .gp-menu .gp-menu-nav {
  background-color: #fff;
  width: 100%;
  position: absolute;
  top: 40px;
  left: 0px;
  padding-top: 10px;
  padding-bottom: 25px;
  display: none;
}
.gp-header5 .gp-menu .gp-menu-nav .gp-m-link {
  float: left;
  line-height: 40px;
  padding-left: 20px;
}
.gp-header5 .gp-menu .gp-menu-nav .gp-m-link li {
  display: inline-block;
  padding: 0;
}
.gp-header5 .gp-menu .gp-menu-nav .gp-m-link li a {
  border-bottom: none;
  color: #666666;
}
.gp-header5 .gp-menu .gp-menu-nav li {
  position: relative;
  padding: 0 22px;
}
.gp-header5 .gp-menu .gp-menu-nav li strong {
  color: #aaa;
  position: absolute;
  right: 20px;
  top: 0;
  font-size: 25px;
  cursor: pointer;
  width: 40px;
  height: 45px;
  text-align: center;
  line-height: 40px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.gp-header5 .gp-menu .gp-menu-nav li .mobile_subNav {
  display: none;
  padding-left: 10px;
}
.gp-header5 .gp-menu .gp-menu-nav li a {
  display: inline-block;
  line-height: 38px;
  text-decoration: none;
  width: 100%;
  font-size: 14px;
  border-bottom: solid 1px #d3d3d3;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
  text-indent: 15px;
}
.gp-header5 .gp-menu .gp-menu-nav dd a {
  height: 35px;
  line-height: 35px;
  border-bottom: dotted 1px rgba(0, 0, 0, 0.2);
  text-indent: 15px;
}
@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.gp-header5 .gp-menu .gp-menu-nav .gp-m-search {
  clear: both;
  position: relative;
  height: 36px;
  margin: 10px 30px 0;
  border: 1px solid #d3d3d3;
  border-radius: 30px;
  overflow: hidden;
}
.gp-header5 .gp-menu .gp-menu-nav .gp-m-search .search {
  width: 100%;
  height: 38px;
  position: relative;
  overflow: hidden;
  z-index: 9999;
}
.gp-header5 .gp-menu .gp-menu-nav .gp-m-search .search input,
.gp-header5 .gp-menu .gp-menu-nav .gp-m-search .search button {
  width: 100%;
  outline: none;
  height: 38px;
  line-height: 38px;
  color: #bababa;
  border: none;
  background: #eee;
  padding: 0 72px 0 17px;
}
.gp-header5 .gp-menu .gp-menu-nav .gp-m-search .search .notxt1 {
  width: 55px;
  background-color: #fff;
  color: #ba2528;
  position: absolute;
  top: 0;
  right: 0;
  height: 35px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  z-index: 9999;
  padding-right: 0;
}
.gp-header5 .gp-menu .gp-menu-nav .gp-m-search .search .gp-m-search input.notxt {
  width: 95%;
  color: #333333;
  margin-left: 55px;
  border: none;
  height: 34px;
  background: none;
  padding-left: 10px;
  font-family: "Microsoft yahei";
}
.gp-header5 .gp-menu .mobile-inner-header-icon-out span {
  width: 20px;
  height: 2px;
  background-color: #992c23;
  display: block;
}
.gp-header5 .gp-menu .gp-menu-header-icon-out span:nth-child(1) {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: outfirst;
}
.gp-header5 .gp-menu .gp-menu-header-icon-out span:nth-child(2) {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: outsecond;
}
.gp-header5 .gp-menu .gp-menu-header-icon-out span:nth-child(3) {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: outthird;
}
.gp-header5 .gp-menu .mobile-inner-header-icon span:nth-child(1) {
  transform: translateY(4px) rotate(0deg);
}
.gp-header5 .gp-menu .mobile-inner-header-icon span:nth-child(2) {
  transform: translateY(-4px) rotate(0deg);
}
.gp-header5 .gp-menu .mobile-inner-header-icon span:nth-child(3) {
  transform: translateY(-4px) rotate(0deg);
}
.gp-header5 .gp-menu .gp-menu-header-icon-click span {
  left: calc((100% - 25px) / 2);
  top: calc((100% - -9px) / 3);
}
.gp-header5 .gp-menu .gp-menu-header-icon-click span:nth-child(1) {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: clickfirst;
}
.gp-header5 .gp-menu .gp-menu-header-icon-click span:nth-child(2) {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: clicksecond;
}
.gp-header5 .gp-menu .gp-menu-header-icon-click span:nth-child(3) {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: clickthird;
}
@keyframes clickfirst {
  0% {
    transform: translateY(4px) rotate(0deg);
  }
  100% {
    transform: translateY(0) rotate(45deg);
  }
}
@keyframes clicksecond {
  0% {
    transform: translateY(-4px) rotate(0deg);
  }
  100% {
    transform: translateY(0) rotate(-45deg);
  }
}
@keyframes clickthird {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.gp-header5 .gp-menu .mobile-inner-header-icon-out span:nth-child(1) {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: outfirst;
}
.gp-header5 .gp-menu .mobile-inner-header-icon-out span:nth-child(2) {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: outsecond;
}
.gp-header5 .gp-menu .mobile-inner-header-icon-out span:nth-child(3) {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: outthird;
}
@keyframes outfirst {
  0% {
    transform: translateY(0) rotate(-45deg);
  }
  100% {
    transform: translateY(-4px) rotate(0deg);
  }
}
@keyframes outsecond {
  0% {
    transform: translateY(0) rotate(45deg);
  }
  100% {
    transform: translateY(4px) rotate(0deg);
  }
}
@keyframes outthird {
  0% {
    transform: translateY(0) rotate(90deg);
  }
  100% {
    transform: translateY(12px) rotate(0deg);
  }
}
.gp-header5 .header {
  position: relative;
  overflow: hidden;
}
.gp-header5 .header .gp-logo {
  float: left;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  padding: 20px 0;
}
.gp-header5 .header .gp-logo img {
  max-height: 70px;
}
.gp-header5 .header .gp-logo a {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  vertical-align: middle;
}
.gp-header5 .header .gp-link {
  float: right;
  position: relative;
  margin-top: 10px;
}
.gp-header5 .header .gp-search {
  width: 200px;
  overflow: hidden;
  margin: 14px auto 0;
  position: absolute;
  right: 0;
  top: 29px;
  height: 30px;
  border-radius: 20px;
}
.gp-header5 .header .gp-search .ser {
  z-index: 999;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.gp-header5 .header .gp-search .ser .search {
  width: 100%;
  height: 38px;
  position: relative;
  overflow: hidden;
  z-index: 9999;
}
.gp-header5 .header .gp-search .ser .search input,
.gp-header5 .header .gp-search .ser .search button {
  border: none;
  width: 100%;
  height: 30px;
  line-height: 28px;
  color: #bababa;
  border: none;
  background: #eeeeee;
  padding-left: 0px;
}
.gp-header5 .header .gp-search .ser .search .notxt {
  color: #bababa;
  padding-left: 10px;
  outline: none;
  height: 30px;
  font-family: ;
  font-size: 12px;
}
.gp-header5 .header .gp-search .ser .search .notxt1 {
  position: absolute;
  width: 35px;
  height: 30px;
  top: 0px;
  right: 0px;
  border: none;
  color: #ba2528;
  cursor: pointer;
  overflow: hidden;
  background-color: #d9d9d9;
  z-index: 9999;
}
.gp-header5 .gp-nav {
  width: 100%;
  height: 50px;
  background: #ba2528;
}
.gp-header5 .gp-nav ul {
  height: 50px;
  width: 100%;
  display: flex;
  display: -webkit-flex;
  justify-content: space-around;
}
.gp-header5 .gp-nav ul li {
  position: relative;
  line-height: 50px;
  padding: 0 15px;
}
.gp-header5 .gp-nav ul li > a {
  color: #fff;
  font-size: 16px;
  text-align: center;
  display: block;
}
.gp-header5 .gp-nav ul li .subNav {
  position: absolute;
  left: 0;
  top: 50px;
  display: none;
  background: #ba2528;
  width: 100%;
  overflow: hidden;
  z-index: 999;
  *z-index: 9999;
}
.gp-header5 .gp-nav ul li .subNav dd a {
  line-height: 1.4;
  padding: 8px 0;
  display: block;
  text-align: center;
  color: #fff;
}
.gp-header5 .gp-nav ul li .subNav dd:hover {
  background: #fff;
}
.gp-header5 .gp-nav ul li .subNav dd:hover a {
  color: #333333;
}
.gp-header5 .gp-nav ul li.on .subNav {
  display: block;
}
.gp-header5 .gp-nav ul li:hover {
  cursor: pointer;
  color: #fff;
}
.gp-header5 .gp-nav ul li.on {
  background: #fff;
}
.gp-header5 .gp-nav ul li.on > a {
  color: #333;
}
@media screen and (max-width:996px) {
  .gp-header5 .gp-menu {
    display: block;
  }
  .gp-header5 .gp-menu.open .gp-menu-nav {
    display: block;
  }
  .gp-header5 .gp-search {
    display: none;
  }
  .gp-header5 .gp-link {
    display: none;
  }
  .gp-header5 .header {
    height: auto;
    background: none;
  }
  .gp-header5 .gp-nav {
    display: none;
  }
  .gp-header5 .header .gp-logo {
    float: none;
    justify-content: center;
  }
}
.gp-menu .gp-menu-nav > ul > li > .gp-menu-arrow {
  cursor: pointer;
  width: 30px;
  height: 45px;
  line-height: 45px;
  color: #e9e9e9;
  text-align: right;
  position: absolute;
  right: 23px;
  top: -2px;
  font-size: 20px;
  transition: all 0.3s ease-in-out;
  color: #dad6ce;
}
.gp-menu .gp-menu-nav li.on .mobile_subNav {
  display: block;
}
.gp-menu-nav > ul > li.on > .gp-menu-arrow {
  transform: rotate(90deg);
}
.gp-header5 {
  transition: all 0.4s ease-out 0s;
  z-index: 10;
}
.gp-header5.currents {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.gp-header5 .header {
  transition: all 0.2s ease-in-out 0s;
}
.gp-header5.currents .header {
  height: 0;
  display: none;
}
.single_img1 .gp-img-responsive {
  padding-bottom: 26.04%;
  display: block;
}
/*侧边栏*/
.asideList11 .gp-subLeft {
  position: relative;
}
.asideList11 .gp-subLeft .subLeftTitle {
  padding: 25px 0 25px 40px;
  color: #fff;
  background: #ba2528;
  position: relative;
  margin-bottom: 1px;
}
.asideList11 .gp-subLeft .gp-m-inner-header-icon {
  width: 40px;
  height: 40px;
  text-align: center;
  color: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  display: none;
  line-height: 40px;
  transform: translateY(-50%);
}
.asideList11 .gp-subLeft > ul > li {
  position: relative;
}
.asideList11 .gp-subLeft > ul > li > a {
  padding: 18px 40px;
  display: block;
  transition: all 0.35s ease-in-out;
  position: relative;
  position: relative;
  line-height: 1.4;
  background: #f0f2f7;
  color: #444;
}
.asideList11 .gp-subLeft > ul > li > a:hover {
  color: #ba2528;
  background-color: #fff;
  margin-right: 0;
  font-weight: bold;
}
.asideList11 .gp-subLeft > ul > li > a.active {
  color: #ba2528;
  background-color: #fff;
  margin-right: 0;
  font-weight: bold;
  border-bottom: 1px solid #ba2528;
}
.asideList11 .gp-subLeft > ul > li .gp-toggles {
  width: 40px;
  height: 53px;
  position: absolute;
  right: 0;
  top: 0;
  line-height: 56px;
  text-align: center;
  cursor: pointer;
  color: #999;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 18px;
}
.asideList11 .gp-subLeft > ul > li a.active + span.gp-toggles {
  color: #fff !important;
}
.asideList11 .gp-subLeft > ul > li .gp-second-nav {
  display: none;
  margin-left: 40px;
}
.asideList11 .gp-subLeft > ul > li .gp-second-nav dd a {
  display: block;
  padding: 13px 15px 13px 50px;
  color: #666;
  transition: all 0.35s ease-in-out;
  position: relative;
  background: #f0f2f7;
}
.asideList11 .gp-subLeft > ul > li .gp-second-nav dd a:hover {
  background-color: #fff;
  color: #ba2528;
  font-weight: bold;
}
.asideList11 .gp-subLeft > ul > li .gp-second-nav dd a.active {
  background-color: #fff;
  color: #ba2528;
  font-weight: bold;
}
.asideList11 .gp-subLeft > ul > li .gp-second-nav dd a > span {
  position: relative;
}
@media screen and (max-width:996px) {
  .asideList11 .gp-subLeft .subLeftTitle {
    padding: 10px 15px;
    text-align: left;
    font-size: 20px;
  }
  .asideList11 .gp-subLeft .gp-m-inner-header-icon {
    display: block;
  }
  .asideList11 .gp-subLeft > ul {
    display: none;
  }
}
.gp-bread6 {
  color: #999999;
  line-height: 20px;
}
.gp-bread6 span {
  color: #999999;
}
.gp-bread6 span a {
  color: #999999;
  margin: 0 5px;
}
.gp-title63 {
  border-bottom: 1px solid #e9e9e9;
  overflow: hidden;
  margin-bottom: 40px;
}
.gp-title63 .gpColumnTitle {
  display: inline-block;
}
.gp-title63 .gpColumnTitle a {
  color: #333333;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding: 10px 0;
}
.gp-title63 .gpColumnTitle a::before {
  content: '';
  display: block;
  width: 100%;
  height: 5px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #ba2528;
}
.gp-title63 .more {
  display: block;
  width: 15px;
  height: 15px;
  margin-top: 20px;
}
.gp-title63 .more:hover {
  -webkit-animation: wrench 2.5s ease infinite;
  animation: wrench 2.5s ease infinite;
  transform-origin-x: 90%;
  transform-origin-y: 35%;
  transform-origin-z: initial;
}
@-webkit-keyframes wrench {
  0% {
    -webkit-transform: rotate(-12deg);
    transform: rotate(-12deg);
  }
  8% {
    -webkit-transform: rotate(12deg);
    transform: rotate(12deg);
  }
  10% {
    -webkit-transform: rotate(24deg);
    transform: rotate(24deg);
  }
  18% {
    -webkit-transform: rotate(-24deg);
    transform: rotate(-24deg);
  }
  20% {
    -webkit-transform: rotate(-24deg);
    transform: rotate(-24deg);
  }
  28% {
    -webkit-transform: rotate(24deg);
    transform: rotate(24deg);
  }
  30% {
    -webkit-transform: rotate(24deg);
    transform: rotate(24deg);
  }
  38% {
    -webkit-transform: rotate(-24deg);
    transform: rotate(-24deg);
  }
  40% {
    -webkit-transform: rotate(-24deg);
    transform: rotate(-24deg);
  }
  48% {
    -webkit-transform: rotate(24deg);
    transform: rotate(24deg);
  }
  50% {
    -webkit-transform: rotate(24deg);
    transform: rotate(24deg);
  }
  58% {
    -webkit-transform: rotate(-24deg);
    transform: rotate(-24deg);
  }
  60% {
    -webkit-transform: rotate(-24deg);
    transform: rotate(-24deg);
  }
  68% {
    -webkit-transform: rotate(24deg);
    transform: rotate(24deg);
  }
  100%,
  75% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes wrench {
  0% {
    -webkit-transform: rotate(-12deg);
    transform: rotate(-12deg);
  }
  8% {
    -webkit-transform: rotate(12deg);
    transform: rotate(12deg);
  }
  10% {
    -webkit-transform: rotate(24deg);
    transform: rotate(24deg);
  }
  18% {
    -webkit-transform: rotate(-24deg);
    transform: rotate(-24deg);
  }
  20% {
    -webkit-transform: rotate(-24deg);
    transform: rotate(-24deg);
  }
  28% {
    -webkit-transform: rotate(24deg);
    transform: rotate(24deg);
  }
  30% {
    -webkit-transform: rotate(24deg);
    transform: rotate(24deg);
  }
  38% {
    -webkit-transform: rotate(-24deg);
    transform: rotate(-24deg);
  }
  40% {
    -webkit-transform: rotate(-24deg);
    transform: rotate(-24deg);
  }
  48% {
    -webkit-transform: rotate(24deg);
    transform: rotate(24deg);
  }
  50% {
    -webkit-transform: rotate(24deg);
    transform: rotate(24deg);
  }
  58% {
    -webkit-transform: rotate(-24deg);
    transform: rotate(-24deg);
  }
  60% {
    -webkit-transform: rotate(-24deg);
    transform: rotate(-24deg);
  }
  68% {
    -webkit-transform: rotate(24deg);
    transform: rotate(24deg);
  }
  100%,
  75% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
.gp-teacher11 {
  overflow: hidden;
  padding: 25px 0 0;
}
.gp-teacher11 .wrap_content {
  position: relative;
}
.gp-teacher11 .wrap_content >ul {
  overflow: hidden;
  margin: 0 -14px;
}
.gp-teacher11 .wrap_content >ul li {
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}
.gp-teacher11 .wrap_content >ul li a {
  display: block;
  margin: 0 14px 0;
  position: relative;
  overflow: hidden;
}
.gp-teacher11 .wrap_content >ul li a .left {
  width: 200px;
  position: relative;
  left: 0;
  top: 0;
  z-index: 3;
  margin: 0 auto;
}
.gp-teacher11 .wrap_content >ul li a .left .img {
  padding-bottom: 140%;
}
.gp-teacher11 .wrap_content >ul li a .right {
  /* border: 1px solid #e6e6e6; */
  border-radius: 0 20px 0 0;
  margin: 0;
  padding: 20px;
  text-align: justify;
  position: relative;
  z-index: 2;
  text-align: center;
}
.gp-teacher11 .wrap_content >ul li a .right .title {
  margin: 0 0 10px;
  line-height: 1.3;
  height: 1.3em;
  overflow: hidden;
  color: #333333;
  position: relative;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
}
.gp-teacher11 .wrap_content >ul li a .right .title::after {
  content: "";
  background: #dedede;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
  *
  display: inline;
  *
  zoom: 1;
  vertical-align: middle;
  display: none;
  margin: 0 0 0 40px;
}
.gp-teacher11 .wrap_content >ul li a .right .info {
  line-height: 1.5;
  height: 1.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #757575;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  white-space: normal;
}
.gp-teacher11 .wrap_content >ul li a .right::after {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  background: #ba2528;
  position: absolute;
  bottom: -1px;
  left: 200px;
}
.gp-teacher11 .wrap_content >ul li:hover {
  transform: translateY(8px);
}
@media screen and (max-width: 767px) {
  .gp-teacher1 .wrap_content ul li a .right .title {
    height: auto;
  }
  .gp-teacher1 .sub_top .sub_menu_1 li a {
    margin: 0 10px 0;
  }
}
@media screen and (max-width: 479px) {
  .gp-teacher1 .wrap_content ul li a .left {
    width: 150px;
  }
  .gp-teacher1 .wrap_content ul li a .right .info {
    height: auto;
    max-height: 7.5em;
  }
  .gp-teacher1 .wrap_content ul li a .right {
    padding: 27px 29px 29px 175px;
  }
}
.footer_block36 {
  background: #ba2528;
}
.footer_block36 .footer_top {
  background: url(/images/footer36_bg.png) no-repeat;
  background-size: cover;
  box-sizing: border-box;
  padding: 55px 0;
}
.footer_block36 .footer_top >div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer_block36 .footer_top .footer_lt {
  display: flex;
  align-items: center;
}
.footer_block36 .footer_top .footer_lt .flogo1 {
  padding-right: 15px;
  margin-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.footer_block36 .footer_top .footer_cen {
  flex: 1;
  margin: 0 100px;
}
.footer_block36 .footer_top .footer_cen p {
  line-height: 2;
  display: inline-block;
  margin-right: 30px;
}
.footer_block36 .footer_top .footer_rt .erweima a {
  display: block;
  position: relative;
}
.footer_block36 .footer_top .footer_rt .erweima a .weChat {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-sizing: border-box;
  padding: 12px;
  display: inline-block;
}
.footer_block36 .footer_top .footer_rt .erweima a .weChat img {
  width: 30px;
  height: 30px;
}
.footer_block36 .footer_top .footer_rt .erweima a .weChat_img {
  position: absolute;
  left: -23px;
  top: -100px;
  width: 100px;
  height: 100px;
  z-index: 1;
  display: none;
}
.footer_block36 .footer_top .footer_rt .erweima a:hover .weChat_img {
  display: block;
}
.footer_block36 .footer_bot {
  background: rgba(0, 0, 0, 0.1);
  color: #ffff;
  padding: 18px 0;
}
@media screen and (max-width: 996px) {
  .footer_block36 .footer_top {
    padding: 30px 0;
  }
  .footer_block36 .footer_top >div {
    display: block;
    text-align: center;
  }
  .footer_block36 .footer_top .footer_lt {
    justify-content: center;
  }
  .footer_block36 .footer_top .footer_cen {
    margin: 20px 0px;
  }
  .footer_block36 .footer_bot {
    text-align: center;
  }
}
