.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: 50%;
  top: 50px;
  display: none;
  background: #ba2528;
  width: 160px;
  overflow: hidden;
  z-index: 9999;
  margin-left: -80px;
}
.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;
}
/*ä¸“é¢˜å¤§å›¾*/
.topicList1 .gpImgSize {
  padding-bottom: 26.04%;
}
.topicList1 .gpImgSize img:hover {
  transform: none;
  opacity: 1;
}
.gp-title44 {
  width: 80px;
  height: 100%;
  position: relative;
}
.gp-title44 h2 {
  font-weight: bold;
  text-align: center;
  padding: 0 15px 0 7px;
  line-height: 1em;
}
.gp-title44 h2 a {
  display: inline-block;
  width: 1em;
  line-height: 1.2;
  word-wrap: break-word;
  letter-spacing: 20px;
  color: #ba2528;
  position: relative;
  vertical-align: top;
}
.gp-title44 h2 span {
  display: inline-block;
}
.gp-title44 h2 .TitleEn {
  transform: rotate(90deg);
  transform-origin: 0 50%;
  margin-left: 10px;
}
@media screen and (max-width:996px) {
  .gp-title44 {
    width: auto;
    height: auto;
    border: none;
  }
  .gp-title44 h2 {
    text-align: left;
    display: inline-block;
    border: none;
    padding: 10px 0;
  }
  .gp-title44 h2 a {
    width: auto;
    letter-spacing: initial;
    text-align: left;
  }
  .gp-title44 .more {
    bottom: 50%;
    transform: translateY(50%);
  }
  .gp-title44 .more a {
    width: auto;
    letter-spacing: initial;
  }
}
.block-list221 li a {
  display: block;
  border-left: 1px solid #ba2528;
  padding-left: 25px;
}
.block-list221 li a h3 {
  line-height: 1.2;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  margin-bottom: 15px;
  height: 1.2em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
}
.block-list221 li a p {
  line-height: 1.5;
  height: 4.5em;
  display: -webkit-box;
  overflow: hidden;
  white-space: normal !important;
  text-overflow: ellipsis;
  word-wrap: break-word;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.block-list221 li a:hover h3 {
  color: #bfbeac;
  padding-left: 10px;
}
.carousel67 {
  overflow: hidden;
}
.carousel67 ul {
  margin: 0 -10px;
  max-width: 1028px;
  margin: 0 auto;
}
.carousel67 ul .slick-list {
  overflow: visible;
}
.carousel67 ul .slick-list li > a {
  display: block;
  margin: 0 10px;
  position: relative;
}
.carousel67 ul .slick-list li > a .imgResponsive {
  padding-bottom: 55.22%;
  overflow: hidden;
}
.carousel67 ul .slick-list li > a .imgResponsive img {
  width: 100%;
  display: block;
}
.carousel67 ul .slick-list li > a .slide_title {
  overflow: hidden;
  width: 100%;
  transition: all 1s ease-in-out;
  position: absolute;
  left: 0;
  bottom: -100%;
  font-weight: bold;
  transition: all 1s ease-in-out;
  box-sizing: border-box;
  padding: 10px;
}
.carousel67 ul .slick-list li .slide_bg {
  height: 60px;
  width: 100%;
}
.carousel67 ul .slick-list li .slide_title {
  color: #fff;
  height: 60px;
  line-height: 60px;
  overflow: hidden;
  position: absolute;
  left: 0;
  padding: 0 15px;
  box-sizing: border-box;
  bottom: -100%;
  font-weight: bold;
  transition: all 1s ease-in-out;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  bottom: -100%;
  z-index: 0;
  transition: all 1s ease-in-out;
}
.carousel67 ul .slick-list li.slick-current .slide_title {
  bottom: 0;
  bottom: 0;
}
.carousel67 ul .slick-dots {
  width: auto;
  position: absolute;
  bottom: 16px;
  right: 20px;
  z-index: 99;
}
.carousel67 ul .slick-dots li {
  width: 8px;
  height: 8px;
  margin: 0px 4px;
}
.carousel67 ul .slick-dots li button {
  background: #fff !important;
  border-radius: 0;
}
.carousel67 ul .slick-dots li.slick-active button {
  background: #ba2528 !important;
}
.carousel67 ul .slick-arrow:after {
  display: none;
}
.carousel67 ul .slick-arrow::before {
  display: none;
}
.carousel67 ul .slick-prev {
  left: 10px;
  width: 50px;
  height: 100px;
  background: url(../images/lf.png) no-repeat center center;
  z-index: 8;
}
.carousel67 ul .slick-next {
  width: 50px;
  height: 100px;
  background: url(../images/rt.png) no-repeat center center;
  right: 10px;
  z-index: 8;
}
@media screen and (max-width: 767px) {
  .carousel67 ul .slick-dots {
    bottom: 7px;
  }
  .carousel67 ul .slick-list li > a .slide_bg {
    height: 40px;
  }
  .carousel67 ul .slick-prev {
    width: 40px;
    height: 70px;
    left: 5px;
  }
  .carousel67 ul .slick-next {
    width: 40px;
    height: 70px;
    right: 5px;
  }
}
.gp-title74 {
  overflow: hidden;
  text-align: center;
  position: relative;
}
.gp-title74 h2 {
  height: 92px;
  margin: 0 auto;
  position: relative;
  display: inline-block;
}
.gp-title74 h2 .icon2 {
  position: absolute;
  display: inline-block;
}
.gp-title74 a {
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
  color: #bfbeac;
  padding-top: 12px;
  padding-bottom: 50px;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.gp-title74 a:hover {
  color: #ba2528;
}
.gp-title74 h2::before {
  content: '';
  display: block;
  width: 415px;
  height: 40px;
  background: url(../images/title_bg3.png) no-repeat right;
  position: absolute;
  left: -413px;
  top: 50%;
  margin-top: -20px;
}
.gp-title74 h2::after {
  content: '';
  display: block;
  width: 415px;
  height: 40px;
  background: url(../images/title_bg3.png) no-repeat right;
  transform: rotateY(180deg);
  position: absolute;
  right: -415px;
  top: 50%;
  margin-top: -20px;
}
@media screen and (max-width: 997px) {
  .gp-title74 h2 {
    height: 62px;
  }
  .gp-title74 h2 .icon2 {
    width: 176px;
  }
  .gp-title74 .title {
    font-size: 20px;
  }
  .gp-title74 a {
    padding-left: 76px;
  }
}
@media screen and (max-width: 479px) {
  .gp-title74 h2::before,
  .gp-title74 h2::after {
    display: none;
  }
}
.block-list227 a {
  display: flex;
  overflow: hidden;
  margin-left: 25px;
  margin-right: 25px;
  border-bottom: 1px dashed #c8c8c8;
  padding-bottom: 15px;
}
.block-list227 a .left {
  width: 200px;
  overflow: hidden;
}
.block-list227 a .left .leftPic {
  padding-bottom: 56.25%;
}
.block-list227 a .right {
  flex: 1;
  padding-left: 20px;
  box-sizing: border-box;
}
.block-list227 a .right h3 {
  height: 1.5em;
  font-weight: normal;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  margin-bottom: 12px;
  transition: all 0.3s ease-in-out;
}
.block-list227 a .right p {
  height: 5.58em;
  line-height: 1.86;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  color: #999999;
}
.block-list227 li:hover img {
  transform: scale(1.1);
  opacity: 0.85;
}
.block-list227 li:hover h3 {
  padding-left: 10px;
  color: #ba2528;
}
@media screen and (max-width: 414px) {
  .block-list227 a {
    display: block;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .block-list227 a .left {
    width: 100%;
    margin-bottom: 10px;
  }
  .block-list227 a .right {
    padding-left: 0;
  }
}
.block-list228 {
  overflow: hidden;
  margin: 0 -15px;
}
.block-list228 a {
  display: block;
  margin: 0 15px;
}
.block-list228 a .imgResponsive {
  padding-bottom: 56.25%;
  overflow: hidden;
}
.block-list228 a p {
  line-height: 1.7;
  height: 3.4em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  margin-top: 10px;
  position: relative;
  transition: all 0.3s ease-in-out;
  top: 0;
  box-sizing: content-box;
}
.block-list228 a:hover .imgResponsive img {
  transform: scale(1.1);
  opacity: 0.85;
}
.block-list202 >li .mode6l {
  display: block;
  position: relative;
}
.block-list202 >li .mode6l .mode6Pic {
  padding-bottom: 62.26%;
}
.block-list202 >li .mode6l .mode6Bot {
  display: none;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  color: #333333;
  background: rgba(51, 51, 51, 0.5);
}
.block-list202 >li .mode6l .mode6Bot p {
  line-height: 1.5;
  height: 1.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  color: #fff;
}
.block-list202 >li:hover .mode6Bot {
  display: block;
}
.block-list233 li a {
  display: flex;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.block-list233 li a span {
  height: 1.5em;
  line-height: 1.5;
  color: #ba2528;
  box-sizing: border-box;
  display: inline-block;
  padding-right: 10px;
}
.block-list233 li a p {
  flex: 1;
  height: 1.5em;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
}
.block-list233 li a:hover {
  padding-left: 10px;
}
.block-list233 li a:hover p {
  color: #ba2528;
}
.carousel69 {
  padding: 0 50px;
  box-sizing: border-box;
}
.carousel69 a {
  display: block;
  border: 1px solid #fff;
  position: relative;
  display: block;
  transition: all 0.3s ease-in-out;
}
.carousel69 a .striveImg {
  display: block;
  padding: 30px 0 0 30px;
  box-sizing: border-box;
  position: relative;
  z-index: 10;
}
.carousel69 a .striveImg .imgResponsive {
  padding-bottom: 56.25%;
  overflow: hidden;
}
.carousel69 a .striveInfo {
  padding: 20px 30px 40px 30px;
  box-sizing: border-box;
  overflow: hidden;
}
.carousel69 a .striveInfo h3 {
  font-weight: normal;
  margin-bottom: 10px;
  line-height: 24px;
  transition: all 0.3s ease-in-out;
}
.carousel69 a .striveInfo p {
  color: #999999;
  line-height: 1.5;
  height: 6em;
  overflow: hidden;
  position: relative;
  top: 0;
  transition: all 0.3s ease-in-out;
}
.carousel69 a .slick-txt {
  background: none;
  position: static;
  height: auto;
  line-height: auto;
}
.carousel69 a:hover {
  border-color: #d1aa34;
}
.carousel69 a:hover h3 {
  padding-left: 10px;
}
.carousel69 a:hover:before {
  background: #d1aa34;
}
.carousel69 a:before {
  position: absolute;
  z-index: 0;
  background: #fff;
  content: "";
  clear: both;
  top: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
  width: 45%;
  height: 47.5%;
}
.carousel69 .slick-prev {
  width: 50px;
  height: 100px;
  background: url(../images/lf.png) no-repeat center center;
  left: -50px;
}
.carousel69 .slick-next {
  width: 50px;
  height: 100px;
  background: url(../images/rt.png) no-repeat center center;
  right: -50px;
}
.carousel69 .slick-arrow:after,
.carousel69 .slick-arrow:before {
  display: none;
}
@media screen and (max-width: 767px) {
  .carousel69 .slick-prev {
    left: -43px;
  }
  .carousel69 .slick-next {
    right: -43px;
  }
  .carousel69 a .slick-txt {
    display: block;
  }
}
.block-list229 li a {
  display: block;
  padding: 10px 0;
  box-sizing: border-box;
  margin-left: 35px;
  margin-right: 35px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease-in-out;
  top: 0;
}
.block-list229 li a .comment-info {
  position: relative;
  display: flex;
}
.block-list229 li a .comment-info span {
  position: absolute;
  top: -5px;
  left: 4px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  background: #ba2528;
  box-shadow: 2px 2px 7px #bdbdbd;
  transition: all 0.3s ease-in-out;
  margin-top: 4px;
  color: #fff;
}
.block-list229 li a .comment-info span::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid #fff;
  position: absolute;
  left: 0;
  top: 0;
}
.block-list229 li a .comment-info p {
  padding-left: 50px;
  height: 58px;
  line-height: 3.6;
  overflow: hidden;
  transition: all 0.8s ease-in-out;
  padding-right: 10px;
  flex: 1;
  margin-left: 26px;
  box-sizing: border-box;
  border: 1px solid #ba2528;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
}
.block-list229 li a:hover {
  top: -10px;
}
.block-list229 li a:hover .comment-info span {
  transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  /* IE 9 */
  -moz-transform: rotate(360deg);
  /* Firefox */
  -webkit-transform: rotate(360deg);
  /* Safari Ã¥â€™Å’ Chrome */
  -o-transform: rotate(360deg);
  /* Opera */
}
@media screen and (max-width: 479px) {
  .block-list229 li a {
    margin: 0 20px;
  }
}
.block-list230 a {
  display: block;
}
.block-list230 a .imgResponsive {
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  display: block;
  position: relative;
}
.block-list230 a .imgResponsive .play {
  position: absolute;
  bottom: 50%;
  left: 50%;
  margin-left: -23px;
  width: 46px;
  height: 46px;
  margin-bottom: -23px;
  display: block;
  transition: all 0.3s ease-in-out;
  background-size: cover;
}
.block-list230 a .vedioInfo02 {
  margin: -40px 0px;
  padding: 10px 30px;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
    line-height: 1.5;
  overflow: hidden;

  left: 0;
  bottom: 0;
  z-index: 20;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  width: 100%;
  box-sizing: border-box;
}
.block-list230 a .vedioInfo02 h3 {
  font-weight: normal;
  line-height: 1.3;
  margin-bottom: 10px;
}
.block-list230 a .vedioInfo02 p {
  color: #999999;
  height: 15.1em;
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  overflow: hidden;
}
.block-list230 a:hover .play {
  bottom: 20px;
  left: 20px;
  margin-left: 0;
  margin-bottom: 0;
  width: 30px;
  height: 30px;
}
.block-list17 {
  margin: 0 -10px;
  position: relative;
}
.block-list17 li {
  overflow: hidden;
}
.block-list17 > a > img {
  opacity: 0.8;
}
.block-list17 .gp-img-responsive {
  padding-bottom: 56.25%;
  position: relative;
  margin: 0 10px;
  display: block;
  overflow: hidden;
}
.block-list17 .video_title {
  line-height: 1.5;
  overflow: hidden;
  padding: 10px 20px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 20;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  width: 100%;
  box-sizing: border-box;
}
.block-list17 .play {
  width: 15%;
  position: absolute;
  left: 50%;
  bottom: 50%;
  transform: translate(-50%, 50%);
  transition: all 0.35s ease-out;
  max-width: 60px;
}
.block-list17 li:hover .play {
  left: 10px;
  bottom: 10px;
  transform: none;
}
