a {
  text-decoration: none;
  color: #2f2e3f;
}
a:hover {
  text-decoration: none;
  color: #000;
}
body,
html {
  padding: 0;
  margin: 0;
  font-size: 14px;
}
img {
  max-width: 100%;
}
ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}
*,
*:after,
*::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
input[type="button"],
input[type="submit"],
input[type="reset"] {
  -webkit-appearance: none;
}
textarea {
  -webkit-appearance: none;
}
/* 去除iphone按钮默认样式代码 */
input[type=button],
input[type=submit],
input[type=file],
button {
  cursor: pointer;
  -webkit-appearance: none;
}
input::-webkit-input-placeholder {
  /* Chrome, Opera, Safari */
  color: #d1d1d1;
}
input:-moz-placeholder {
  /* Firefox 18- */
  color: #d1d1d1;
  opacity: 1;
  /* 修复Firefox 18- 的不透明度问题 */
}
input::-moz-placeholder {
  /* Firefox 19+ */
  color: #d1d1d1;
  opacity: 1;
  /* 修复Firefox 19+ 的不透明度问题 */
}
input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #d1d1d1;
}
input::-webkit-contacts-auto-fill-button {
  visibility: hidden;
  display: none !important;
  pointer-events: none;
  position: absolute;
  right: 0;
}
.main_header2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 40px 0 40px;
  background: inherit;
  transition: all 0.2s ease-in-out;
}
.main_nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.nav_list {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 882px;
  justify-content: space-between;
}
.nav_item {
  position: relative;
  margin: 0 4px;
}
.nav_item > a {
  color: #222;
  font-size: 18px;
  padding: 8px 0;
  text-decoration: none;
  transition: color 0.2s;
}
.nav_item > a:hover {
  color: #128fab;
}
.dropdown_menu {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  min-width: 140px;
  background: #128fab;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  z-index: 100;
  padding: 8px 0;
  margin-top: 8px;
}
.dropdown_menu li {
  margin: 0;
}
.dropdown_menu a {
  display: block;
  color: #fff;
  font-size: 16px;
  padding: 8px 20px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.dropdown_menu a:hover {
  background: #0c7f99;
  color: #fffab5;
}
.search-btn {
  background: none;
  border: none;
  outline: none;
  margin-left: 32px;
  font-size: 22px;
  color: #222;
  cursor: pointer;
  transition: color 0.2s;
}
.search-btn:hover {
  color: #128fab;
}
.search-modal {
  display: flex;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.search-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.search-modal-content {
  background: #fff;
  border-radius: 8px;
  padding: 32px 28px 24px 28px;
  min-width: 320px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.search-modal.active .search-modal-content {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.search-modal-close {
  position: absolute;
  right: 12px;
  top: 8px;
  background: none;
  border: none;
  font-size: 28px;
  color: #888;
  cursor: pointer;
}
.search-group {
  position: relative;
  display: flex;
  align-items: center;
}
.search-group .search-btn .layui-icon-search {
  font-size: 22px;
}
.search-pop {
  display: none;
  position: absolute;
  right: 0;
  top: 140%;
  min-width: 260px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  z-index: 999;
  animation: none;
}
.search-pop.active {
  display: block;
}
.search-form {
  display: flex;
  align-items: center;
  gap: 0;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: none;
}
.search-form input[type="text"] {
  flex: 1;
  padding: 0 0 0 18px;
  font-size: 16px;
  border: none;
  border-radius: 4px 0 0 4px;
  outline: none;
  background: #fff;
  color: #222;
  height: 40px;
}
.search-form input[type="text"]::placeholder {
  color: #bbb;
  font-size: 15px;
}
.search-form button {
  background: #128fab;
  color: #fff;
  border: none;
  border-radius: 0 4px 4px 0;
  padding: 0 22px;
  font-size: 20px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: none;
}
.search-form button:hover {
  background: #0b85a0;
}
.nav-category .nav_list > li > a {
  color: #fff;
}
.nav-category .layui-icon {
  color: #fff;
}
@media (max-width: 991px) {
  .main_header2 {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 10px 0 10px;
  }
  .main_header2 img {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .main_nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav_list {
    flex-direction: column;
    width: 100%;
  }
  .nav_item {
    margin-right: 0;
    margin-bottom: 8px;
  }
  .search-btn {
    margin-left: 0;
    margin-top: 8px;
  }
}
@media (max-width: 1600px) {
  .nav_list {
    width: 782px;
  }
  .nav_item > a {
    font-size: 16px;
  }
  .search-btn {
    margin-left: 10px;
  }
}
@media (max-width: 1200px) {
  .nav_list {
    width: 700px;
  }
  .main_header2 {
    padding: 32px 20px 0 20px;
  }
}
.jzk_toggle_01 {
  display: none;
  width: 26px;
  z-index: 2;
  border-radius: 50%;
  margin: 0 10px;
  position: absolute;
  top: 33px;
  right: 10px;
  cursor: pointer;
  -webkit-transition-duration: 0.66s;
  transition-duration: 0.66s;
  -webkit-transition-timing-function: swing;
  transition-timing-function: swing;
}
.jzk_toggle_01 .jzk_icon_01 {
  width: 26px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  position: absolute;
  top: -5px;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.jzk_toggle_01 .jzk_icon_01:before,
.jzk_toggle_01 .jzk_icon_01:after {
  width: 26px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  content: "";
  margin-left: -13px;
  position: absolute;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: swing;
  transition-timing-function: swing;
}
.jzk_toggle_01 .jzk_icon_01:before {
  top: -9px;
}
.jzk_toggle_01 .jzk_icon_01:after {
  top: 9px;
}
.jzk_open .jzk_toggle_01 {
  box-shadow: none;
  right: 0;
}
.jzk_open .jzk_toggle_01 .jzk_icon_01:before {
  -webkit-transform: translateY(9px) rotate(45deg);
  -ms-transform: translateY(9px) rotate(45deg);
  transform: translateY(9px) rotate(45deg);
}
.jzk_open .jzk_toggle_01 .jzk_icon_01:after {
  -webkit-transform: translateY(-9px) rotate(-45deg);
  -ms-transform: translateY(-9px) rotate(-45deg);
  transform: translateY(-9px) rotate(-45deg);
}
.jzk_open .jzk_toggle_01 .jzk_icon_01 {
  width: 0;
}
.head_box.hv .jzk_toggle_01 .jzk_icon_01 {
  background-color: #007979;
}
.head_box.hv .jzk_toggle_01 .jzk_icon_01:before,
.head_box.hv .jzk_toggle_01 .jzk_icon_01:after {
  background-color: #007979;
}
.wap_nav_box {
  display: none;
}
@media (max-width: 991px) {
  .wap_nav_box {
    position: absolute;
    z-index: 9;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    padding: 0.1rem 8% 0.45rem;
    background: linear-gradient(90deg, #006e88 0%, #004f61 100%);
    background-size: cover;
    overflow-y: auto;
  }
  .wap_nav_box .nav_list {
    position: relative;
    margin-left: 100%;
    display: inline-block;
    width: 100%;
    float: left;
    margin-top: 80px;
    /* 旋转效果 */
  }
  .wap_nav_box .nav_list li {
    margin-left: 0;
    padding: 4px 0;
    margin-bottom: 0 ;
    line-height: 1.4em;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  }
  .wap_nav_box .nav_list li a {
    color: #fff;
    padding: 12px 0;
    display: inline-block;
    width: 100%;
  }
  .wap_nav_box .nav_list .has-dropdown a::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 24px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff;
    transition: transform 0.3s ease;
  }
  .wap_nav_box .nav_list .has-dropdown.active > a::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .wap_nav_box .nav_list .dropdown_menu a::after {
    display: none;
  }
  .wap_nav_box .nav_list .dropdown_menu {
    position: inherit;
    left: inherit;
    background: none;
    transform: inherit;
    box-shadow: inherit;
    padding: 0;
  }
  .wap_nav_box .nav_list .dropdown_menu li {
    margin-left: 0;
    padding: 4px 0;
    line-height: 1.4em;
    border-bottom: inherit;
  }
  .wap_nav_box .nav_list .dropdown_menu li a {
    font-size: 14px;
    padding: 3px 20px;
  }
  .wap_nav_box .search-pop {
    display: block;
    position: relative;
    top: inherit;
    display: inline-block;
    width: 100%;
    margin-top: 12px;
    margin-left: 100%;
    margin-bottom: 30px;
    float: left;
  }
  .jzk_toggle_01 {
    display: block;
  }
  .search-group {
    display: none;
  }
  .nav_list {
    display: none;
  }
  .main_header2 {
    flex-direction: inherit;
    padding-top: 20px !important;
  }
  .main_nav {
    width: inherit;
  }
  .main_header2 img {
    height: 34px;
  }
  .main_header2 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}
@media (max-width: 767px) {
  .main_header2 {
    padding-top: 10px !important;
  }
}
.w {
  width: 1600px;
  margin: 0 auto;
  z-index: 1;
}
.section .w {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1600px) {
  .w {
    width: 1400px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 1440px) {
  .w {
    width: 1190px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 1200px) {
  .w {
    max-width: 100vw;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .section .w,
  .w {
    position: inherit;
    left: inherit;
    top: inherit;
    transform: inherit;
  }
}
@media (max-width: 767px) {
  .w {
    width: 92%;
    padding-left: 0;
    padding-right: 0;
    margin-left: 4%;
    margin-right: 4%;
  }
}
.section-title-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 18px 0;
  background: transparent;
  border-radius: 8px;
  position: relative;
}
.section-title-barfff .section-title-left {
  background: url(../images/title_bg3.png) no-repeat center center;
}
.section-title-barfff .section-title-main,
.section-title-barfff .section-title-sub {
  color: #fff;
}
.section-title-barfff .section-title-btn-icon {
  background: #00657c;
}
.section-title-barfff .section-title-btn:hover {
  background: #00657c;
  border: 1px solid #fff;
}
.section-title-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: url(../images/title_bg.png) no-repeat center center;
  min-width: 111px;
  height: 111px;
  text-align: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s, border-bottom 0.2s;
}
.section-title-left.active .section-title-main {
  color: #128fab;
  font-weight: bold;
}
.section-title-main {
  font-size: 30px;
  font-weight: bold;
  color: #222;
  line-height: 1.1;
  letter-spacing: 1px;
  width: 100%;
  font-family: "Source Han Serif CN";
}
.section-title-sub {
  font-size: 18px;
  color: #006c78;
  margin-top: 2px;
  width: 100%;
  font-family: 'Times New Roman', serif;
  font-weight: bold;
  letter-spacing: 1px;
}
.section-title-btn {
  display: flex;
  align-items: center;
  border: 1px solid #006c78;
  color: #006c78;
  background: #fff;
  border-radius: 22px;
  padding: 4px 7px 4px 18px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.section-title-btn:hover {
  background: #006c78;
  color: #fff;
}
.section-title-btn-icon {
  display: inline-block;
  margin-left: 8px;
  font-size: 1.2em;
  transition: transform 0.2s;
  background: #006c78;
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  text-align: center;
}
.section-title-btn-icon svg {
  width: 13px !important;
}
.section-title-btn:hover .section-title-btn-icon {
  background: #fff;
  color: #006c78;
}
.section-title-btn:hover .section-title-btn-icon svg path {
  stroke: #006c78;
}
@media (max-width: 1600px) {
  .section-title-bar {
    padding: 8px 20px 8px 0;
  }
}
@media (max-width: 1440px) {
  .section-title-left .section-title-main {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .section-title-left {
    background-size: 90px !important;
  }
  .section-title-btn {
    border-radius: 22px;
    font-size: 12px;
    padding: 2px 5px 2px 12px;
    transition: background 0.2s, color 0.2s;
  }
  .section-title-btn-icon {
    margin-left: 6px;
    width: 22px;
    height: 22px;
  }
  .section-title-btn-icon svg {
    width: 11px !important;
  }
}
@media (max-width: 767px) {
  .section-title-left {
    background-size: 80px !important;
  }
  .section-title-left .section-title-main {
    font-size: 18px;
  }
  .section-title-sub {
    font-size: 14px;
  }
  .section-title-bar {
    padding: 8px 0px 0 0;
    margin-top: 12px;
  }
  .section-title-left {
    min-width: 80px;
    height: 80px;
  }
}
.academy {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.academy_l {
  text-align: center;
  float: left;
  position: relative;
  margin-left: 15%;
}
.academy_l div img {
  width: 58px;
}
.academy_l span {
  position: relative;
  z-index: 999;
  display: inline-block;
}
.academy_l svg {
  width: 50px !important;
  height: 50px !important;
}
.academy_l1 {
  position: absolute;
  right: 67px;
  bottom: 67px;
  background: url(../images/a1.png) no-repeat left center;
  width: 203px;
  height: 199px;
  padding-top: 38px;
}
.academy_l2 {
  position: absolute;
  left: 67px;
  bottom: 67px;
  background: url(../images/a2.png) no-repeat left center;
  width: 247px;
  height: 174px;
  padding-top: 18px;
}
.academy_l3 {
  position: absolute;
  right: 62px;
  top: 67px;
  background: url(../images/a3.png) no-repeat left center;
  width: 209px;
  height: 205px;
  padding-top: 32px;
}
.academy_l4 {
  position: absolute;
  left: 67px;
  top: 67px;
  background: url(../images/a4.png) no-repeat left center;
  width: 217px;
  height: 235px;
}
.academy_countup {
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  width: 215px;
}
.academy_countup_unit {
  font-size: 16px;
}
.academy_countup_desc {
  font-size: 16px;
  font-weight: normal;
  margin-top: 4px;
  width: 100%;
}
.academy_r {
  margin-right: 3%;
  float: right;
  margin-top: -10%;
  position: relative;
}
.academy_r2 {
  position: absolute;
  left: -28%;
  bottom: -26%;
  background: url(../images/aa5.png) no-repeat left center;
  background-size: contain;
  width: 434px;
  height: 296px;
  color: #fff;
  padding-top: 60px;
  padding-left: 17px;
  padding-right: 17px;
  line-height: 1.6;
}
.academy_r2 h3 {
  font-size: 24px;
  width: 100%;
  text-align: center;
  padding-bottom: 11px;
}
.academy_r2 p {
  font-size: 14px;
}
.academy_r2 a {
  color: #fff;
}
@media (max-width: 1600px) {
  .academy_r {
    margin-right: 3%;
    float: right;
    margin-top: -4%;
  }
  .academy_r2 {
    left: -18%;
    bottom: -16%;
    width: 404px;
    height: 286px;
    padding-top: 40px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 1440px) {
  .academy_r {
    margin-right: 3%;
    float: right;
    margin-top: -4%;
  }
  .academy_r2 {
    left: -22%;
    bottom: -36%;
    width: 404px;
    height: 286px;
    padding-top: 40px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .academy_r1 img {
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .academy_r2 {
    left: -10%;
    bottom: -36%;
    width: 404px;
    height: 286px;
    padding-top: 40px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 991px) {
  .academy {
    flex-wrap: wrap;
    padding-bottom: 60px;
  }
  .academy_l {
    margin-top: 40%;
    margin-left: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .academy_r {
    width: 100%;
  }
  .academy_r {
    margin-right: 0;
    margin-top: 200px;
    text-align: center;
  }
  .academy_r img {
    border-radius: 20px;
    width: 440px;
  }
  .academy_r2 {
    position: inherit;
    left: inherit;
    bottom: inherit;
    margin: 0 auto;
    margin-top: -80px;
  }
  .fp-tableCell {
    height: auto !important;
  }
}
.academy_l1,
.academy_l2,
.academy_l3,
.academy_l4 {
  background-size: contain;
}
@media (max-width: 767px) {
  .academy_l {
    margin-top: 50%;
    zoom: 0.9;
  }
  .academy_l span img {
    width: 90px;
    height: 90px;
  }
  .academy_l1 {
    right: 50px;
    bottom: 50px;
    width: 150px;
    height: 144px;
    padding-top: 18px;
    background-size: contain;
  }
  .academy_l2 {
    position: absolute;
    left: 50px;
    bottom: 40px;
    width: 180px;
    height: 145px;
    padding-top: 18px;
    padding-right: 20px;
  }
  .academy_l3 {
    right: 45px;
    top: 54px;
    width: 150px;
    height: 145px;
    padding-top: 12px;
  }
  .academy_l4 {
    left: 50px;
    top: 50px;
    width: 180px;
    height: 160px;
  }
  .academy_countup {
    font-size: 24px;
    width: 100%;
  }
  .academy_countup_unit {
    font-size: 14px;
  }
  .academy_countup_desc {
    font-size: 14px;
    margin-top: 2px;
  }
  .academy_r {
    margin-top: 150px;
  }
  .academy_r img {
    border-radius: 16px;
    width: 90%;
  }
  .academy_r2 {
    margin-top: 0px;
    width: 90%;
    height: auto;
    padding-bottom: 20px;
    margin-top: 10px;
    padding-top: 20px;
    padding-left: 12px;
    padding-right: 12px;
    background: linear-gradient(to bottom right, #64d19c, #0d64ba);
    border-radius: 12px;
    text-align: left;
  }
  .academy_r2 h3 {
    font-size: 16px;
    padding-bottom: 4px;
  }
}
.news_box_l {
  width: 50%;
  float: left;
  position: relative;
}
.news_box_l .swiper-slide {
  position: relative;
}
.news_box_l .swiper-slide img {
  width: 100%;
}
.news_box_l .swiper-pagination-bullet {
  width: 22px;
  height: 22px;
  background: url(../images/b4.png) no-repeat center top;
  opacity: 1;
  transition: 0.2s;
}
.news_box_l .swiper-pagination-bullet-active {
  background: url(../images/b3.png) no-repeat center top;
}
.news_box_l .swiper-container {
  position: relative;
}
.news_box_l .swiper-pagination {
  position: absolute;
  width: auto;
  left: initial;
  right: 20px;
  bottom: 54px;
  z-index: 10;
}
.news_box_l .swiper_box_bg {
  position: relative;
  margin-left: 2%;
  margin-top: 4%;
}
.news_box_l .swiper_box_bg .swiper_box {
  width: 679px;
  border-radius: 3px;
}
.news_box_l .swiper_box_bg .swiper_box img {
  height: 391px;
  width: 100%;
}
.news_box_l .swiper_box_bg .swiper_box h3 {
  color: #fff;
  padding-top: 18px;
}
.news_box_l .swiper_box_bg::after {
  background: url(../images/swbg.jpg) no-repeat center top;
  background-size: cover;
  content: ' ';
  display: inline-block;
  width: 688px;
  border-radius: 3px;
  overflow: hidden;
  height: 396px;
  position: absolute;
  left: 0;
  bottom: -24px;
}
.news_box_r {
  width: 50%;
  float: right;
  padding-left: 40px;
}
.section-title-l {
  width: 50%;
  display: flex;
}
.section-title-l .section-title-left {
  margin-right: 20px;
}
.section-title-left {
  transition: ease-in-out 0.2s all;
  background: url(../images/title_bg2.png) no-repeat center center;
}
.section-title-left.active {
  background: url(../images/title_bg.png) no-repeat center center;
}
.news-tabs {
  display: flex;
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: bold;
}
.news-tab {
  cursor: pointer;
  color: #006c78;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border 0.2s, color 0.2s;
  transition: ease-in-out 0.2s all;
}
.news-tab.active {
  color: #222;
  border-bottom: 2px solid #006c78;
}
.news-list {
  display: flex;
  flex-direction: column;
  margin-top: 28px;
}
.news-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #222;
  border-radius: 6px;
  padding: 12px 18px;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.2s;
}
.news-list-title {
  font-size: 18px;
  font-weight: bold;
  color: #222;
  margin-bottom: 6px;
  line-height: 1.3;
  transition: color 0.2s;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-list-desc {
  color: #888;
  font-size: 15px;
  line-height: 1.6;
  max-width: 100%;
  height: auto;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-list-item:hover {
  color: #128fab;
}
.news-list-item:hover .news-list-title,
.news-list-item:hover .news-list-desc {
  color: #128fab;
}
.news-list-date {
  color: #888;
  font-size: 14px;
  margin-left: 18px;
  flex-shrink: 0;
}
.news-list-datebox {
  min-width: 92px;
  text-align: center;
  font-family: "Source Han Serif CN";
  margin-right: 20px;
  border-radius: 10px;
  border: 1px solid #a6d0d0;
  padding: 5px 5px 5px 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.news-list-day {
  font-size: 34px;
  color: #006f89;
  font-weight: bold;
  line-height: 1;
}
.news-list-month {
  font-size: 16px;
  width: 81px;
  color: #fff;
  background: #006f89;
  border-radius: 5px;
  padding: 0 10px;
  height: 34px;
  line-height: 34px;
  margin-top: 8px;
  font-weight: bold;
  display: inline-block;
  white-space: nowrap;
}
.news-list-content {
  width: 90%;
}
.news-feature-section {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  background: none;
  margin:  0 0 0;
  min-height: 380px;
}
.news-feature-left {
  margin-right: 48px;
  background: #fff;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 15px;
  padding-bottom: 23px;
}
.news-feature-left a {
  display: inline-block;
  position: relative;
}
.news-feature-left a:after {
  content: '';
  display: block;
  position: absolute;
  left: -15px;
  bottom: -23px;
  width: 100%;
  height: 100%;
  border-radius: 0;
  z-index: 0;
  background: #c7dfe5;
  pointer-events: none;
}
.news-feature-img {
  width: 100%;
  height: auto;
  display: block;
  border: 15px solid #006f89;
  box-sizing: border-box;
  background: #eaf6fa;
  overflow: hidden;
  position: relative;
  z-index: 9;
}
.news-feature-img img {
  max-width: 420px;
  min-width: 320px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-feature-left:hover .news-feature-img img,
.news-feature-img:hover img {
  transform: scale(1.06);
  z-index: 2;
}
.news-feature-main {
  margin-right: 32px;
  display: flex;
  flex-direction: column;
  justify-content: top;
  padding-top: 50px;
}
.news-feature-main a:hover {
  color: #006f89;
}
.news-feature-main a:hover .news-feature-title,
.news-feature-main a:hover .news-feature-desc {
  color: #006f89;
}
.news-feature-title {
  font-size: 28px;
  font-weight: bold;
  color: #222;
  margin-bottom: 18px;
  line-height: 1.3;
  transition: all 0.2s ease-in-out;
}
.news-feature-desc {
  font-size: 18px;
  color: #888;
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 700px;
  min-height: 48px;
  transition: all 0.2s ease-in-out;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-feature-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.news-feature-date {
  background: #006f89;
  color: #fff;
  border-radius: 22px;
  padding: 0 0 0 22px;
  font-size: 14px;
  font-weight: bold;
  margin-right: 8px;
  line-height: 34px;
  height: 34px;
  border: 1px solid #006f89;
}
.news-feature-btn {
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #0596a7;
  border-radius: 22px;
  font-size: 14px;
  float: right;
  font-weight: bold;
  line-height: 32px;
  height: 32px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  margin-left: 9px;
  padding-left: 22px;
}
.news-feature-btn .section-title-btn-icon {
  margin-right: 3px;
}
.news-feature-btn i {
  margin-top: 10px;
}
.news-feature-btn:hover {
  background: #0596a7;
  color: #fff;
}
.news-feature-btn:hover .section-title-btn-icon {
  background: #fff;
  color: #0596a7;
}
.news-feature-btn:hover svg path {
  stroke: #0596a7;
}
.news-feature-btn .section-title-btn-icon {
  margin-left: 8px;
  background: #0596a7;
  color: #fff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-feature-timeline {
  flex: 0 0 390px;
  background: #006f89;
  width: 390px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: auto;
}
.news-feature-timeline-list {
  width: 100%;
  padding: 0 0 0 0;
  margin: 0;
  list-style: none;
}
.news-feature-timeline-list li {
  padding: 16px 24px 0 32px;
  transition: all 0.2s ease-in-out;
  min-height: 56px;
  cursor: pointer;
  background: #006f89;
  position: relative;
  border-bottom: 1px solid #338ca1;
}
.news-feature-timeline-date {
  color: #fff;
  font-size: 14px;
  margin-right: 12px;
  position: relative;
  z-index: 2;
  display: inline-block;
  height: 32px;
  line-height: 32px;
  transition: all 0.2s ease-in-out;
  border-bottom: 1px solid #70aebd;
}
.news-feature-timeline-date .timeline-dot {
  margin-left: -20px;
  width: 32px;
  height: 32px;
  transition: all 0.2s ease-in-out;
  opacity: 0;
}
.news-feature-timeline .swiper-slide-active {
  background: linear-gradient(90deg, #006e88 0%, #004f61 100%);
}
.news-feature-timeline .swiper-slide-active .news-feature-timeline-date {
  border-bottom: 1px solid #128fab;
  margin-left: -28px;
  background: #128fab;
  padding-left: 20px;
  padding-right: 16px;
  border-radius: 0 16px 16px 0;
}
.news-feature-timeline .swiper-slide-active .news-feature-timeline-date .timeline-dot {
  opacity: 1;
}
.news-feature-timeline-title {
  color: #fff;
  font-size: 17px;
  font-weight: normal;
  line-height: 1.5;
  word-break: break-all;
  flex: 1;
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  padding-top: 15px;
  padding-bottom: 20px;
  text-overflow: ellipsis;
}
@media (max-width: 1600px) {
  .news_box_l .swiper_box_bg .swiper_box {
    width: 590px;
  }
  .news_box_l .swiper_box_bg .swiper_box img {
    height: 340px;
  }
  .news_box_l .swiper_box_bg::after {
    height: 340px;
    width: 590px;
  }
  .news-list {
    display: flex;
    flex-direction: column;
    margin-top: 18px;
  }
}
@media (max-width: 1440px) {
  .news_box_l .swiper_box_bg .swiper_box {
    width: 490px;
  }
  .news_box_l .swiper_box_bg .swiper_box img {
    height: 282px;
  }
  .news_box_l .swiper_box_bg::after {
    height: 282px;
    width: 490px;
  }
  .news-list {
    display: flex;
    flex-direction: column;
    margin-top: 18px;
  }
  .news-list-month {
    font-size: 14px;
    width: 71px;
    border-radius: 5px;
    padding: 0 6px;
    height: 28px;
    line-height: 28px;
    margin-top: 4px;
  }
  .news-list-day {
    font-size: 28px;
    padding: 3px 0;
  }
  .news-list-datebox {
    min-width: 78px;
    margin-right: 10px;
    padding: 2px 5px ;
  }
  .news-list-item {
    padding: 6px 12px;
    padding-bottom: 10px;
  }
  .news-list-title {
    font-size: 16px;
    margin-bottom: 3px;
  }
}
@media (max-width: 1200px) {
  .news-list {
    margin-top: 8px;
    padding-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .news_box_l,
  .news_box_r {
    width: 100%;
    padding: 0;
  }
  .news_box_l .swiper_box_bg::after {
    width: 100%;
  }
  .news_box_l .swiper_box_bg {
    background: url(../images/swbg.jpg) no-repeat center top;
    background-size: cover;
  }
  .news_box_l .swiper_box_bg .swiper_box {
    width: 100%;
  }
  .news_box_l .swiper_box_bg .swiper_box img {
    height: auto;
  }
  .news_box_l .swiper_box_bg .swiper_box h3 {
    padding: 18px 15px;
  }
  .news_box_l .swiper_box_bg::after {
    display: none;
  }
  .news_box_l .swiper_box_bg {
    position: relative;
    margin-left: 0;
    margin-top: 4%;
  }
  .news_box_l .swiper-pagination {
    right: 20px;
    bottom: 74px;
  }
}
@media (max-width: 767px) {
  .news_box_l .swiper_box_bg .swiper_box h3 {
    padding: 10px 15px;
  }
  .news-list-item {
    padding: 6px 0;
    padding-bottom: 10px;
  }
  .news-list-title {
    font-size: 16px;
    margin-bottom: 0;
  }
  .news-list-desc {
    font-size: 14px;
  }
  .news-list-month {
    font-size: 12px;
    width: 64px;
    height: 26px;
    line-height: 26px;
    border-radius: 3px;
  }
  .news-list-datebox {
    min-width: 68px;
    margin-right: 8px;
    padding: 2px 3px;
    border-radius: 6px;
  }
  .news-list {
    margin-top: 8px;
    padding-bottom: 0;
  }
  .news_box_r {
    padding-bottom: 20px;
    padding-top: 5px;
  }
  .news_box_l .swiper-pagination-bullet {
    width: 18px;
    height: 18px;
    background-size: 18px 18px;
    margin: 0 2px !important;
  }
  .news_box_l .swiper-pagination {
    right: 10px;
    bottom: 74px;
  }
}
.salon_l {
  width: 40%;
  float: left;
}
.salon_r {
  width: 50%;
  float: right;
}
.timeline-list {
  position: relative;
  margin: 15px 0 0 0;
  padding: 0;
  list-style: none;
  min-width: 260px;
}
.timeline-list li {
  position: relative;
  min-height: 70px;
  margin-bottom: 30px;
  padding-left: 0;
}
.timeline-dot {
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 42px;
  background: #10a0bb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-size: 20px;
  color: #fff;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(16, 160, 187, 0.08);
}
.timeline-date {
  display: inline-block;
  background: #10a0bb;
  color: #fff;
  border-radius: 21px;
  padding: 9px 24px 9px 50px;
  font-size: 16px;
  min-width: 120px;
  text-align: left;
  font-family: 'Source Han Sans CN', 'Microsoft YaHei', Arial, sans-serif;
  vertical-align: middle;
  transition: all 0.2s ease-in-out;
  z-index: 9;
  position: relative;
}
.timeline-date .layui-icon {
  font-size: 20px;
}
.timeline-list::after {
  content: '';
  position: absolute;
  left: 18px;
  top: 36px;
  width: 2px;
  height: calc(100% - 36px);
  background: #10a0bb;
  z-index: 1;
}
.timeline-content {
  margin-left: 44px;
  border-radius: 8px;
  padding: 16px 18px 12px 10px;
  max-width: 566px;
  transition: all 0.2s ease-in-out;
}
.timeline-list li a:hover .timeline-content {
  transform: translateX(-10px);
}
.timeline-list li a:hover .timeline-date {
  background: #fff;
  color: #10a0bb;
}
.timeline-title {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 4px;
}
.timeline-desc {
  font-size: 15px;
  color: #fff;
  line-height: 1.7;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  .timeline-date {
    border-radius: 21px;
    padding: 8px 16px 8px 40px;
    font-size: 14px;
    min-width: 120px;
  }
  .timeline-date .layui-icon {
    font-size: 18px;
  }
  .timeline-dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 33px;
    height: 33px;
    font-size: 18px;
    border: 2px solid #fff;
  }
  .timeline-content {
    margin-left: 24px;
    padding: 16px 18px 12px 10px;
  }
  .timeline-title {
    font-size: 16px;
  }
  .timeline-desc {
    font-size: 14px;
    -webkit-line-clamp: 4;
  }
}
.talent-list {
  margin: 10px 0 0 0;
  padding: 0;
  list-style: none;
  height: 540px;
}
.talent-list li {
  display: inline-block;
  width: 96%;
  margin-bottom: 16px;
  padding: 14px;
  background: url(../images/bg8.png);
  transition: box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.talent-list li a {
  width: 100%;
  display: flex;
  align-items: flex-start;
}
.talent-list li:hover {
  box-shadow: 0 8px 32px rgba(16, 160, 187, 0.18);
  transform: translate(-4px, -4px);
  z-index: 2;
}
.talent-avatar {
  width: 116px;
  height: 149px;
  object-fit: cover;
  margin-right: 19px;
  background: #eaf6fa;
  flex-shrink: 0;
}
.talent-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.talent-title {
  font-size: 23px;
  font-weight: bold;
  color: #222;
  margin-bottom: 6px;
  font-family: 'Source Han Serif CN', 'Microsoft YaHei', Arial, sans-serif;
}
.talent-meta {
  font-size: 17px;
  color: #222;
  padding-left: 12px;
  display: flex;
  align-items: center;
}
.talent-meta i {
  color: #10a0bb;
  font-size: 20px;
  margin-right: 8px;
}
.talent-meta i svg {
  width: 20px;
  height: 20px;
  margin-top: 8px;
}
.news-feature-section-box {
  width: 100%;
  display: flex;
  padding: 35px 45px 18px 22px;
  height: 540px;
}
.news-feature-swiper {
  background: url(../images/bg9.png) no-repeat right center;
  background-size: cover;
}
@media (max-width: 1600px) {
  .talent-title {
    font-size: 18px;
  }
  .news-feature-section {
    margin: 12px 0 0 0;
    min-height: 380px;
  }
}
@media (max-width: 1440px) {
  .news-feature-img img {
    max-width: 300px;
    min-width: 220px;
  }
  .news-feature-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .news-feature-desc {
    font-size: 16px;
    margin-bottom: 22px;
  }
  .news-feature-main {
    margin-right: 12px;
    padding-top: 40px;
  }
  .news-feature-left {
    margin-right: 28px;
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 15px;
    padding-bottom: 23px;
  }
  .news-feature-section-box {
    padding: 35px 45px 18px 22px;
    height: 440px;
  }
  .news-feature-timeline-list li {
    padding: 10px 24px 0 32px;
    min-height: 46px;
  }
  .news-feature-timeline-title {
    font-size: 16px;
    padding-top: 5px;
    padding-bottom: 14px;
  }
}
@media (max-width: 991px) {
  .salon {
    background: none !important;
  }
  .salon .w {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .salon_l {
    width: 100%;
    padding: 0 4%;
    float: left;
    background: url(../images/bg10.jpg) no-repeat right center;
    background-size: cover;
    padding-bottom: 20px;
  }
  .salon_r {
    width: 100%;
    padding: 0 4% 30px;
    float: right;
    background: url(../images/bg11.jpg) no-repeat right center;
    background-size: cover;
  }
  .talent-list {
    height: auto;
    margin: 0;
  }
  .timeline-content {
    max-width: 100%;
    padding: 16px 0 12px 10px;
  }
  .timeline-list li {
    position: relative;
    min-height: 70px;
    margin-bottom: 20px;
    padding-left: 0;
  }
  .timeline-list {
    margin: 0;
    min-width: 260px;
  }
  .news-feature-section {
    flex-wrap: wrap;
    width: 100%;
  }
  .news-feature-timeline {
    width: 100%;
    flex: inherit;
    margin-bottom: 30px;
  }
  .news-feature-left {
    margin-right: 28px;
    padding-left: 15px;
    padding-bottom: 23px;
    width: 40%;
  }
  .news-feature-main {
    margin-right: 0;
    width: 60%;
    padding-top: 30px;
  }
  .news-feature-img img {
    max-width: 100%;
    min-width: 50%;
  }
  .news-feature-title {
    font-size: 22px;
    margin-bottom: 18px;
  }
  .news-feature-desc {
    font-size: 16px;
    margin-bottom: 32px;
    max-width: 700px;
    min-height: 48px;
  }
  .news-feature-section {
    margin: 12px 0 0 0;
    min-height: inherit;
  }
  .news-feature-section-box {
    padding: 25px 35px 12px 18px;
    height: auto;
  }
  .news-feature-timeline-title {
    font-size: 14px;
    padding-top: 5px;
    padding-bottom: 10px;
  }
  .news-feature-timeline-list li {
    padding: 10px 14px 0 22px;
    transition: all 0.2s ease-in-out;
    min-height: 56px;
    cursor: pointer;
    background: #006f89;
    position: relative;
    border-bottom: 1px solid #338ca1;
  }
  .news-feature-timeline-date .timeline-dot {
    margin-left: -12px;
    width: 32px;
    height: 32px;
  }
  .news-feature-timeline .swiper-slide-active .news-feature-timeline-date {
    margin-left: -22px;
    padding-left: 30px;
    padding-right: 16px;
    border-radius: 0 16px 16px 0;
  }
}
@media (max-width: 767px) {
  .news-feature-timeline-list li {
    padding: 0 14px 0 22px;
    transition: all 0.2s ease-in-out;
    min-height: 36px;
    cursor: pointer;
    background: #006f89;
    position: relative;
    border-bottom: 1px solid #338ca1;
  }
  .news-feature-left a:after {
    display: none;
  }
  .news-feature-section-box {
    padding: 0;
    height: auto;
  }
  .news-feature-left {
    margin-right: 18px;
    padding-left: 0;
    padding-bottom: 13px;
    padding-top: 13px;
    width: 40%;
  }
  .news-feature-img {
    width: 100%;
    border: 5px solid #006f89;
    margin-left: 2px;
  }
  .news-feature-title {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .news-feature-desc {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    max-width: 700px;
    min-height: 48px;
  }
  .news-feature-main {
    margin-right: 0;
    width: 60%;
    padding-top: 20px;
  }
  .talent-meta {
    font-size: 14px;
    padding-left: 0;
    line-height: 20px;
  }
  .talent-title {
    font-size: 14px;
  }
  .talent-avatar {
    width: 100px;
    height: 128px;
    object-fit: cover;
    margin-right: 10px;
    background: #eaf6fa;
    flex-shrink: 0;
  }
  .talent-meta i {
    color: #10a0bb;
    font-size: 20px;
    margin-right: 6px;
  }
  .talent-meta i svg {
    width: 16px;
    height: 16px;
    margin-top: 4px;
  }
  .news-feature-actions {
    display: none;
  }
}
.site-footer {
  background: url(../images/footbg.png) no-repeat right center;
  background-size: cover;
  border-top: 9px solid #034552;
}
.site-footer .w {
  position: relative;
  left: inherit;
  top: inherit;
  transform: inherit;
  margin: 0 auto;
  padding: 40px 0 35px;
  overflow: hidden;
  height: auto;
  background: url(../images/footbg2.png) no-repeat 65% 80%;
}
.site-footer-l {
  width: 50%;
  float: left;
  color: #fff;
  line-height: 1.8;
}
.site-footer-l > a {
  display: inline-block;
  padding-bottom: 24px;
}
.site-footer-l .site-footer-l1 {
  width: 40%;
  float: left;
  margin-right: 10%;
}
.site-footer-l .site-footer-l2 {
  width: 50%;
  float: left;
}
.site-footer-r {
  float: right;
}
.site-footer-r li {
  margin-left: 30px;
  width: 141px;
  float: left;
}
.site-footer-r li span {
  width: 100%;
  display: inline-block;
  color: #fff;
  text-align: center;
  line-height: 42px;
}

@media (min-width: 1200px) {

.section-title-bar-news{padding-bottom:0;}
.section-title-bar-news .section-title-left{
height:80px;}
}



@media (max-width: 1200px) {
  .site-footer .w {
    padding: 40px 20px 35px;
    background: url(../images/footbg2.png) no-repeat 65% 80%;
    background: none;
  }
  .site-footer-l {
    width: 60%;
  }
}
@media (max-width: 991px) {
  .site-footer-l {
    width: 100%;
    padding-bottom: 30px;
    text-align: center;
  }
  .site-footer-l a img {
    height: 50px;
  }
  .site-footer-l .site-footer-l1 {
    width: 100%;
    margin-right: 0;
  }
  .site-footer-l .site-footer-l2 {
    width: 100%;
    padding-top: 8px;
  }
  .site-footer-r {
    width: 100%;
    text-align: center;
  }
  .site-footer-r ul {
    margin: 0 auto;
    display: inline-block;
  }
  .site-footer-r li {
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media (max-width: 767px) {
  .site-footer-l {
    width: 100%;
    padding-bottom: 14px;
    text-align: center;
  }
  .site-footer-l a img {
    height: auto;
  }
  .site-footer-r li {
    margin-left: 10px;
    margin-right: 10px;
    width: 100px;
    float: left;
  }
  .site-footer-l > a {
    display: inline-block;
    padding-bottom: 14px;
  }
  .site-footer .w {
    padding: 20px 10px 20px;
  }
  .site-footer {
    background: url(../images/footbg.png) no-repeat right center;
    background-size: cover;
    border-top: 4px solid #034552;
  }
}
@media (min-width: 991px) {
  /* 初始状态 */
  .academy_l {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease-out;
  }
  /* 动画后状态 */
  .section.activev .academy_l {
    opacity: 1;
    transform: translateX(0);
  }
  /* academy_r 右侧划入动画 */
  .academy_r {
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.8s ease-out;
  }
  /* 动画后状态 */
  .section.activev .academy_r {
    opacity: 1;
    transform: translateX(0);
  }
  /* news_box_l 和 news_box_r 左右进入动画 */
  .news_box_l {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.8s ease-out;
  }
  .news_box_r {
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.8s ease-out;
  }
  /* 动画后状态 */
  .section.activev .news_box_l {
    opacity: 1;
    transform: translateX(0);
  }
  .section.activev .news_box_r {
    opacity: 1;
    transform: translateX(0);
  }
  /* salon_l 和 salon_r 左右进入动画 */
  .salon_l {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.8s ease-out;
  }
  .salon_r {
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.8s ease-out;
  }
  /* 动画后状态 */
  .section.activev .salon_l {
    opacity: 1;
    transform: translateX(0);
  }
  .section.activev .salon_r {
    opacity: 1;
    transform: translateX(0);
  }
  /* sectionbox 上到下划入动画 */
  .sectionbox {
    opacity: 0;
    transform: translateY(-80px);
    transition: all 0.8s ease-out;
  }
  /* 动画后状态 */
  .section.activev .sectionbox {
    opacity: 1;
    transform: translateY(0);
  }
}
.pape_r .talent-list li {
  border-bottom: 1px dashed #f1f1f1;
  margin-bottom: 0;
  padding: 22px 10px;
  width: 50%;
  float: left;
}
.pape_r .talent-title {
  font-size: 20px;
  padding-top: 10px;
  padding-bottom: 5px;
}
.pape_r .talent-meta {
  line-height: 28px;
  padding-left: 0;
  font-size: 15px;
}
.pape_r .talent-list li:hover {
  box-shadow: inherit;
  transform: inherit;
  z-index: 2;
}
@media (max-width: 991px) {
  .pape_r .talent-list li {
    padding: 22px 10px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .pape_r .talent-list li {
    padding: 16px 5px;
    width: 100%;
  }
  .pape_r .talent-title {
    font-size: 18px;
    padding-top: 5px;
    padding-bottom: 0x;
    margin-bottom: 0;
  }
  .pape_r .talent-meta {
    line-height: 22px;
    padding-left: 0;
    font-size: 14px;
  }
}