/* Box sizing reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* Remove default margin and padding */
* {
  margin: 0;
  padding: 0;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}
/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
input,
button,
textarea,
select {
  font: inherit;
  outline: 0;
  border: 0;
  background: none;
  color: inherit;
}
input:focus,
textarea:focus {
  color: inherit;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
}
/* Remove list styles on ul, ol elements */
ul,
ol {
  list-style: none;
}
/* Make images easier to work with */
picture {
  display: block;
}
img {
  max-width: 100%;
}
/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}
/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
a,
a:active,
a:focus,
a:hover {
  outline: none;
  text-decoration: none;
}
table {
  width: 100%;
  border-collapse: collapse;
  border: 0;
}
img {
  max-width: 100%;
  height: auto;
  width: auto \9;
  /* ie8 */
  -ms-interpolation-mode: bicubic;
  /*为了照顾ie图片缩放失真*/
  border: none;
}
/* display */
.dn {
  display: none;
}
.di {
  display: inline;
}
.db {
  display: block;
}
.dib {
  display: inline-block;
}
/* overflow */
.ovh {
  overflow: hidden;
}
/* position */
.rel {
  position: relative;
}
.abs {
  position: absolute;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
/* 块状元素水平居中 */
.auto {
  margin-left: auto;
  margin-right: auto;
}
/* text-align */
.tc {
  text-align: center;
}
.tr {
  text-align: right;
}
.tl {
  text-align: left;
}
.tj {
  text-align: justify;
}
/* 弹性布局 */
.flex {
  display: flex;
}
.flex-column {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-end {
  justify-content: flex-end;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
/* 网格布局 */
.grid {
  display: grid;
}
/* 定位 */
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.sticky {
  position: sticky;
}
/* 显示隐藏 */
.hidden {
  display: none;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
:root {
  --skincol: #CE181B;
  --acolor: #2057d2;
  --webcolor: #2057d2;
}
body {
  font-family: "Microsoft YaHei", '微软雅黑', Arial, PingFangSC-Regular, sans-serif !important;
  font-size: 14px;
}
a {
  color: #3d3d3d;
}
a:hover {
  color: #0854BC;
}
/* 清除浮动 */
.fix {
  *zoom: 1;
}
.fix::after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  font-size: 0;
}
.container {
  *zoom: 1;
}
.container:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  font-size: 0;
}
@media (min-width: 1440px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 90%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 1800px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1600px;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 90%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 992px) and (max-width: 1279px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 90%;
  }
}
.phone-toggle {
  position: absolute;
  cursor: pointer;
  user-select: none;
  top: 20px;
  z-index: 9980;
  width: 26px;
  min-height: 24px;
  right: 0.8rem;
}
.phone-toggle span {
  width: 26px;
  top: 50%;
  transform: translateY(-50%);
  transform-origin: 50% 50%;
}
.phone-toggle span,
.phone-toggle span::before,
.phone-toggle span::after {
  display: block;
  position: absolute;
  left: 0;
  height: 2px;
  background: #fff;
  transition: all 0.2s ease;
  border-radius: 2px;
}
.phone-toggle span::before,
.phone-toggle span::after {
  content: '';
  width: 100%;
}
.phone-toggle span::before {
  top: -8px;
}
.phone-toggle span::after {
  bottom: -8px;
}
.phone-toggle:hover span,
.phone-toggle:hover span::before,
.phone-toggle:hover span::after {
  background: #0854BC;
}
.phone-toggle.toggle-open span {
  background: #0854BC;
  transform: rotate(45deg);
}
.phone-toggle.toggle-open span::before {
  transform: translate3d(0, 8px, 0);
}
.phone-toggle.toggle-open span::after {
  transform: rotate(-90deg) translate3d(8px, 0, 0);
}
.nav-close {
  display: none;
}
.hc-offcanvas-nav.nav-close-button-empty .nav-title {
  padding-right: 0.3rem;
  color: #fff;
  font-weight: bold;
  line-height: 1.4;
}
.hc-offcanvas-nav .nav-container,
.hc-offcanvas-nav .nav-wrapper {
  background-color: #477EDC;
  background: linear-gradient(180deg, #1B4EBC 0%, #477EDC 98%);
}
.hc-offcanvas-nav ul {
  background-color: transparent;
}
.hc-offcanvas-nav .nav-wrapper > .nav-content > ul:first-of-type > li:first-child:not(.nav-back):not(.nav-close) > .nav-item-wrapper > .nav-item-link {
  border-top-color: transparent;
}
.hc-offcanvas-nav .nav-item-link,
.hc-offcanvas-nav li.nav-close a,
.hc-offcanvas-nav .nav-back a {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.hc-offcanvas-nav.nav-levels-expand li.level-open,
.hc-offcanvas-nav.nav-levels-none li.level-open {
  background: rgba(0, 56, 148, 0.6);
}
.hc-offcanvas-nav.nav-levels-expand li.level-open > .nav-item-wrapper > a,
.hc-offcanvas-nav.nav-levels-none li.level-open > .nav-item-wrapper > a {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.hc-offcanvas-nav:not(.touch-device) li:not(.nav-item-custom) a:not([disabled]):hover {
  background: rgba(0, 56, 148, 0.8);
}
.hc-offcanvas-nav a.nav-next {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.h16 {
  font-size: 16px;
}
.h18 {
  font-size: 18px;
}
.h20 {
  font-size: 20px;
}
.h22 {
  font-size: 22px;
}
.h24 {
  font-size: 24px;
}
.h26 {
  font-size: 26px;
}
.h28 {
  font-size: 28px;
}
.h30 {
  font-size: 30px;
}
.h32 {
  font-size: 30px;
}
.h34 {
  font-size: 34px;
}
.h36 {
  font-size: 36px;
}
.h40 {
  font-size: 40px;
}
@media (max-width: 1199px) {
  .h40 {
    font-size: 34px;
  }
  .h28 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .h20 {
    font-size: 18px;
  }
  .h24 {
    font-size: 20px;
  }
  .h26 {
    font-size: 22px;
  }
  .h28 {
    font-size: 24px;
  }
  .h34 {
    font-size: 26px;
  }
  .h40 {
    font-size: 28px;
  }
}
/* 动画类 - 基础隐藏状态 */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
}
.web-animate {
  opacity: 0;
}
/* 淡入动画 */
.fade-in {
  /* 基础隐藏状态由.title-animate提供 */
}
/* 从左侧滑入 */
.slide-left {
  transform: translateX(-60px);
}
/* 从右侧滑入 */
.slide-right {
  transform: translateX(60px);
}
/* 从上方滑入 */
.slide-top {
  transform: translateY(-60px);
}
/* 从下方滑入 */
.slide-bottom {
  transform: translateY(60px);
}
/* 缩放动画 */
.scale-up {
  transform: scale(0.8);
}
.scale-down {
  transform: scale(1.2);
}
.anim-list li {
  opacity: 0;
  transform: translateY(50px);
}
/*ui-select样式，可根据实际项目需求进行调整*/
.ui-select-wrap {
  display: inline-block;
  border: 1px solid #aaa;
  position: relative;
  height: 30px;
  padding-right: 15px;
  border-radius: 3px;
  background-color: #f2f2f2;
  cursor: pointer;
  font: 100 16px/30px;
  -webkit-user-select: none;
  user-select: none;
  z-index: 8;
  vertical-align: top;
}
.ui-select-wrap.focus {
  z-index: 9;
}
select.ui-select {
  height: 32px;
  vertical-align: top;
  padding: 0 8px 0 4px;
  border: 1px solid #aaa;
  border-radius: 3px;
  background-color: #f2f2f2;
  font: 100 16px/30px;
}
.ui-select-wrap > select {
  display: none;
  height: 32px;
  vertical-align: top;
  padding: 0 8px;
  border: 1px solid #aaa;
}
.ui-select-input {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 15px;
  padding-left: 8px;
  white-space: nowrap;
  overflow: hidden;
}
.ui-select-arrow {
  display: block;
  position: absolute;
  right: 3px;
  top: 40%;
  height: 0;
  width: 0;
  border: 5px solid transparent;
  border-width: 6px 5px 0 5px;
  border-top-color: #999;
}
.ui-select-list {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
  left: -1px;
  top: 30px;
  background-color: #fff;
  border: 1px solid #AAA;
  width: 100%;
  overflow: auto;
  max-height: 200px;
  border-radius: 0 3px 3px 3px;
}
.ui-select-wrap.up .ui-select-list {
  top: auto;
  bottom: 30px;
}
.ui-select-wrap.focus .ui-select-list {
  display: block;
}
.ui-select-list > li {
  display: block;
  line-height: 28px;
  padding: 0 10px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ui-select-list > li:hover {
  background-color: #ddd;
}
.ui-select-list > li.selected {
  background-color: #0080ff;
  color: #fff;
}
.ui-select-list > li.disabled {
  background-color: #f2f2f2;
  color: #999;
  cursor: not-allowed;
}
.ui-select-list > li.disabled.selected {
  background-color: #59ADFF;
  color: #f2f2f2;
  cursor: not-allowed;
}
.ui-select-wrap.disabled {
  color: #999;
  border-color: #ccc;
  cursor: not-allowed;
}
.ui-select-wrap.disabled .ui-select-arrow {
  border-top-color: #ccc;
}
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 98;
  padding: 0;
}
.navbar .container {
  position: relative;
}
.navbar .navbar-brand {
  width: 542px;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-right: 0;
  font-size: 0;
}
.navbar .navbar-brand img {
  width: 100%;
  display: block;
}
.navbar .navbar-nav li {
  margin-left: 40px;
}
.navbar .navbar-nav li:hover a.nav-link::before,
.navbar .navbar-nav li.active a.nav-link::before {
  display: block;
}
.navbar .navbar-nav li a.nav-link {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 0;
  line-height: 60px;
  height: 60px;
  display: block;
  text-align: center;
  position: relative;
}
.navbar .navbar-nav li a.nav-link::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 20px;
  height: 4px;
  border-radius: 4px;
  background: #fff;
  display: none;
}
.navbar .navbar-nav li a.nav-link::after {
  display: none;
}
.navbar .navbar-nav li .dropdown-menu {
  width: 100%;
  border-radius: 8px;
  border: none;
  padding: 15px 10px;
  margin-top: 0;
  background: #0854bc;
  left: 50%;
  transform: translateX(-50%);
}
.navbar .navbar-nav li .dropdown-menu a {
  display: block;
  font-size: 16px;
  line-height: 26px;
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  margin-bottom: 2px;
  border-radius: 2px;
}
.navbar .navbar-nav li .dropdown-menu a:last-child {
  margin-bottom: 0;
}
.navbar .navbar-nav li .dropdown-menu a:hover {
  background-color: rgba(255, 255, 255, 0.8);
  color: #0854BC;
}
#main-nav {
  display: none;
}
.search-groups-w {
  position: relative;
}
.search-a {
  height: 36px;
  width: 36px;
  background: url('sklpst_search_w.png') no-repeat center center rgba(255, 255, 255, 0.4);
  background-size: 16px;
  border-radius: 50%;
  display: none;
  position: absolute;
  right: 60px;
}
.search-input {
  /* Mozilla Firefox 4 to 18 */
  /* Mozilla Firefox 19+ */
  /* Internet Explorer 10-11 */
}
.search-input::-webkit-input-placeholder {
  color: rgba(51, 51, 51, 0.6);
}
.search-input:-moz-placeholder {
  color: rgba(51, 51, 51, 0.6);
}
.search-input::-moz-placeholder {
  color: rgba(51, 51, 51, 0.6);
}
.search-input:-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.6);
}
.search-box {
  width: 218px;
  position: relative;
}
.search-box .search-input {
  height: 36px;
  line-height: 36px;
  border: none;
  border-radius: 16px;
  display: block;
  width: 100%;
  padding-left: 20px;
  padding-right: 50px;
  color: #333;
  transition: all 0.5s;
  background: #f5f7fc;
  font-size: 14px;
}
.search-box .search-input:focus {
  box-shadow: 0 0 0.05rem #f5f7fc;
}
.search-box .search-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  background: url('sklpst_search.png') no-repeat center center;
  background-size: contain;
  width: 16px;
  height: 16px;
}
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 163, 223, 0.8) 0%, #003894 100%);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -99;
}
.search-overlay.active {
  z-index: 99;
  opacity: 1;
}
.search-overlay .search-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.search-overlay .search-input-container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
  width: 100%;
}
.search-overlay .search-input {
  width: 100%;
  padding: 15px 50px 15px 15px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
  background-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.search-overlay .search-input:focus {
  background-color: rgba(255, 255, 255, 0.6);
}
.search-overlay .search-btn {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  background: url('sklpst_search_w.png') no-repeat center center;
  background-size: contain;
  width: 20px;
  height: 20px;
}
.search-overlay .search-close {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
  background: url('comm-close.png') no-repeat center center;
  background-size: 30px;
}
.search-overlay .search-close:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
.search-overlay .search-input {
  /* Mozilla Firefox 4 to 18 */
  /* Mozilla Firefox 19+ */
  /* Internet Explorer 10-11 */
}
.search-overlay .search-input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.search-overlay .search-input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.search-overlay .search-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.search-overlay .search-input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.phone-toggle {
  display: none !important;
}
@media (max-width: 1679px) {
  .navbar .navbar-brand {
    width: 440px;
  }
}
@media (max-width: 1439px) {
  .navbar .navbar-brand {
    width: 380px;
  }
  .navbar .navbar-nav li {
    margin-left: 22px;
  }
  .navbar .navbar-nav li a.nav-link {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .navbar .navbar-brand {
    width: 360px;
  }
  .navbar .navbar-nav {
    display: none;
  }
  .phone-toggle {
    display: block !important;
    top: 36px;
    right: 15px;
  }
}
@media (max-width: 767px) {
  .navbar .navbar-brand {
    width: 280px;
  }
  .navbar .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .phone-toggle {
    top: 30px;
    right: 15px;
  }
  .search-a {
    right: 53px;
    width: 28px;
    height: 28px;
    background-size: 14px;
    top: 35px;
  }
  .nav-other {
    top: 2px;
    right: 15px;
  }
}
.footer {
  background: #0854bc;
  padding-top: 40px;
  padding-bottom: 40px;
  color: #fff;
  line-height: 26px;
}
.footer a,
.footer span {
  display: inline-block;
  color: #fff;
  margin-right: 10px;
}
.footer .footer-main {
  display: flex;
  align-items: center;
}
.footer .footer-logo img {
  display: block;
}
.footer .footer-info {
  line-height: 26px;
  position: relative;
  margin-left: 20px;
  padding-left: 20px;
  line-height: 30px;
}
.footer .footer-info::after {
  content: '';
  position: absolute;
  left: 0;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  background: #fff;
}
.index-banner {
  overflow: hidden;
}
.index-banner .banner-other {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  z-index: 1;
  pointer-events: none;
}
.index-banner .banner-page {
  width: auto;
  position: static;
  padding: 0;
  margin: 0;
  font-size: 0;
  text-align: right;
}
.index-banner .banner-page .swiper-pagination-bullet {
  width: 30px;
  height: 26px;
  border-radius: 0;
  border: none;
  opacity: 1;
  background: url('psych_icon08.png') no-repeat center center;
  background-size: contain;
  margin: 0 0 0 10px;
}
.index-banner .banner-page .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-image: url('psych_icon09.png');
}
.index-banner .banner-box {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.index-banner .banner-box:hover .banner-img img {
  transform: scale(1.1);
}
.index-banner .banner-box .banner-img {
  overflow: hidden;
  position: relative;
}
.index-banner .banner-box .banner-img img {
  width: 100%;
  height: 720px;
  object-fit: cover;
  transition: all 0.5s;
}
.index-banner .banner-box .banner-title {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9;
  background-color: rgba(0, 0, 4, 0.2);
  background: linear-gradient(180deg, #000004 0%, rgba(0, 0, 4, 0) 20%);
}
.index-banner .banner-box .banner-title .title-w {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
}
.index-banner .banner-box .banner-title .box-title {
  color: #FFFFFF;
  z-index: 2;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 40px;
  line-height: 40px;
}
@media (max-width: 767px) {
  .index-banner .banner-box .banner-title .box-title {
    overflow: visible;
    white-space: normal;
    height: auto;
    line-height: 1.6;
  }
}
.index-banner .box-title {
  -webkit-animation: fadeOutDown 0.5s both;
  animation: fadeOutDown 0.5s both;
}
.index-banner .swiper-slide-active .box-title {
  -webkit-animation: fadeInUp 0.5s both 1s;
  animation: fadeInUp 0.5s both 1s;
}
.index-title {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
  background: url('psych_btbj.png') no-repeat top center;
  font-weight: bold;
  line-height: 1;
  min-height: 120px;
  padding-top: 60px;
}
.index-title span,
.index-title a {
  display: block;
  text-align: center;
}
.index-title .title-more {
  position: absolute;
  right: 0;
  bottom: 12px;
  background: url('psych_more.png') no-repeat center center;
  width: 29px;
  height: 29px;
  transition: all 0.3s;
}
.index-title .title-more:hover {
  transform: rotate(180deg);
}
.index-wrap {
  padding-top: 40px;
  padding-bottom: 100px;
  background-position: right bottom;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
.scientific-research {
  background-image: url(psych_bg01.png);
}
.scientific-research .row-w {
  margin-left: 0;
  margin-right: 0;
}
.scientific-research .row-w .col-w {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 1200px) {
  .scientific-research .list-w {
    -ms-flex: 0 0 34.5%;
    flex: 0 0 34.5%;
    max-width: 34.5%;
  }
  .scientific-research .scroll-w {
    -ms-flex: 0 0 65.5%;
    flex: 0 0 65.5%;
    max-width: 65.5%;
  }
}
.research-list .box-s {
  padding-right: 60px;
}
.research-list .box-s .box-title {
  display: block;
  border-bottom: 1px solid #D8D8D8;
  height: 118px;
  display: flex;
  align-items: center;
  color: #333333;
  transition: all 0.3s;
}
.research-list .box-s .box-title span {
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 32px;
  max-height: 64px;
}
@media (max-width: 767px) {
  .research-list .box-s .box-title span {
    overflow: visible;
    display: block;
    -webkit-line-clamp: none;
    max-height: none;
    line-height: 1.6;
  }
}
.research-list .box-s:hover,
.research-list .box-s.active {
  background: url('psych_boxbg02.png') no-repeat left center;
  background-size: cover;
}
.research-list .box-s:hover .box-title,
.research-list .box-s.active .box-title {
  color: #ffff;
  border-bottom-color: transparent;
  padding-left: 30px;
}
.research-groups .box-s:hover .box-img img {
  transform: scale(1.1);
}
.research-groups .box-s .box-img {
  overflow: hidden;
}
.research-groups .box-s .box-img img {
  display: block;
  width: 100%;
  height: 590px;
  object-fit: cover;
  transition: all 0.5s;
}
.research-groups .box-s .box-title {
  background-color: rgba(0, 160, 233, 0.8);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px;
  line-height: 1.4;
  color: #fff;
  display: none;
}
.research-groups .research-page {
  text-align: center;
  position: static;
  padding-top: 10px;
  display: none;
}
.research-groups .research-page .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border: none;
  opacity: 1;
  background: #00a0e9;
  margin: 0 5px;
}
.research-groups .research-page .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #0854bc;
}
.tabs-title {
  display: flex;
  justify-content: center;
  margin-bottom: 45px;
}
.tabs-title li {
  background: url('psych_line.png') no-repeat right center;
  padding-right: 50px;
  padding-left: 38px;
}
.tabs-title li:last-child {
  background-image: none;
  padding-right: 38px;
}
.tabs-title li.active a {
  color: #0854bc;
}
.tabs-title li.active a .title-icon {
  display: block;
}
.tabs-title li.active a .title-s {
  font-size: 26px;
}
.tabs-title li a {
  display: flex;
  align-items: center;
  font-weight: bold;
  height: 46px;
  line-height: 46px;
}
.tabs-title li .title-icon {
  width: 43px;
  margin-right: 15px;
  display: none;
}
.tabs-title li .title-icon img {
  display: block;
}
.tabs-cont > div {
  display: none;
}
.tabs-cont > div.active {
  display: block;
}
.news-notice {
  background-image: url(psych_bg02.png);
  padding-bottom: 70px;
}
.news-notice .row-w {
  margin-left: -20px;
  margin-right: -20px;
}
.news-notice .row-w .col-w {
  padding-left: 20px;
  padding-right: 20px;
}
.news-notice .box-01:hover .box-img img {
  transform: scale(1.1);
}
.news-notice .box-01 .box-img {
  overflow: hidden;
}
.news-notice .box-01 .box-img img {
  display: block;
  width: 100%;
  height: 508px;
  object-fit: cover;
  transition: all 0.5s;
}
.news-notice .box-01 .box-info {
  position: relative;
  min-height: 188px;
  padding: 35px 40px 35px 0;
}
.news-notice .box-01 .box-info::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 2000px;
  background: url('psych_boxbg02.png') no-repeat right top;
  background-size: auto 100%;
  z-index: 1;
}
.news-notice .box-01 .box-info a,
.news-notice .box-01 .box-info div {
  position: relative;
  z-index: 2;
}
.news-notice .box-01 .box-info .info-title {
  font-weight: bold;
  color: #fff;
  margin-bottom: 25px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 36px;
  line-height: 36px;
}
@media (max-width: 767px) {
  .news-notice .box-01 .box-info .info-title {
    overflow: visible;
    white-space: normal;
    height: auto;
    line-height: 1.6;
  }
}
.news-notice .box-01 .box-info .info-text {
  line-height: 1.4;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 30px;
  height: 60px;
}
.news-notice .box-02 {
  position: relative;
  margin-bottom: 30px;
}
.news-notice .box-02:hover .box-img img {
  transform: scale(1.1);
}
.news-notice .box-02:hover .box-title {
  color: #0854BC;
}
.news-notice .box-02 .box-img {
  overflow: hidden;
}
.news-notice .box-02 .box-img img {
  display: block;
  width: 100%;
  height: 244px;
  object-fit: cover;
  transition: all 0.5s;
}
.news-notice .box-02 .box-date {
  width: 98px;
  height: 30px;
  line-height: 30px;
  background-color: #00A0E9;
  background: linear-gradient(270deg, #0854BC 0%, #00A0E9 100%);
  text-align: center;
  color: #fff;
  position: absolute;
  left: 0;
  margin-top: -15px;
}
.news-notice .box-02 .box-title {
  margin-top: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 32px;
  height: 64px;
}
@media (max-width: 767px) {
  .news-notice .box-02 .box-title {
    overflow: visible;
    display: block;
    -webkit-line-clamp: none;
    height: auto;
    max-height: none;
    line-height: 1.6;
  }
}
.news-notice .box-03 {
  background: url('psych_boxbg01.png') no-repeat center top #fff;
  box-shadow: 0px 0px 20px 0px rgba(8, 84, 188, 0.1);
  padding: 110px 40px 20px 40px;
  margin-bottom: 60px;
  height: 318px;
  position: relative;
}
.news-notice .box-03:hover .box-title {
  color: #0854BC;
}
.news-notice .box-03 .box-date {
  position: absolute;
  left: 0;
  top: 40px;
  width: 180px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: linear-gradient(270deg, #0854BC 0%, #00A0E9 100%), #00A0E9;
  color: #fff;
}
.news-notice .box-03 .box-date span {
  display: inline-block;
  vertical-align: middle;
}
.news-notice .box-03 .box-date .date-01 {
  font-weight: bold;
  margin-right: 15px;
}
.news-notice .box-03 .box-title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 32px;
  height: 64px;
  margin-bottom: 26px;
}
@media (max-width: 767px) {
  .news-notice .box-03 .box-title {
    overflow: visible;
    display: block;
    -webkit-line-clamp: none;
    height: auto;
    max-height: none;
    line-height: 1.6;
  }
}
.news-notice .box-03 .box-text {
  color: #666666;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 32px;
  height: 64px;
}
.cooperation-exchange {
  background-image: url(psych_bg03.png);
  padding-bottom: 45px;
}
.cooperation-exchange .row-w {
  margin-left: -30px;
  margin-right: -30px;
}
.cooperation-exchange .row-w .col-w {
  padding-left: 30px;
  padding-right: 30px;
}
.cooperation-exchange .box-01:hover .box-img img {
  transform: scale(1.1);
}
.cooperation-exchange .box-01 .box-img a {
  overflow: hidden;
  border: 1px solid #E5E5E5;
  border-bottom: none;
  height: 326px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cooperation-exchange .box-01 .box-img a img {
  display: block;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.5s;
}
.cooperation-exchange .box-01 .box-info {
  background-color: #00A0E9;
  background: linear-gradient(270deg, #0854BC 0%, #00A0E9 100%);
  padding: 15px 15px 15px 0;
  color: #fff;
  display: flex;
  align-items: flex-start;
}
.cooperation-exchange .box-01 .box-info .info-date {
  text-align: center;
  width: 98px;
  flex-shrink: 0;
  margin-right: 20px;
  position: relative;
}
.cooperation-exchange .box-01 .box-info .info-date::after {
  content: '';
  position: absolute;
  right: 0;
  width: 1px;
  background-color: #fff;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
}
.cooperation-exchange .box-01 .box-info .info-date .date-01 {
  font-weight: bold;
  line-height: 40px;
}
.cooperation-exchange .box-01 .box-info .info-date .date-02 {
  line-height: 20px;
}
.cooperation-exchange .box-01 .box-info .info-title {
  flex: 1;
  min-width: 0;
  height: 60px;
  line-height: 60px;
  color: #fff;
  display: flex;
  align-items: center;
}
.cooperation-exchange .box-01 .box-info .info-title span {
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 30px;
  max-height: 60px;
}
@media (max-width: 767px) {
  .cooperation-exchange .box-01 .box-info .info-title span {
    overflow: visible;
    display: block;
    -webkit-line-clamp: none;
    max-height: none;
    line-height: 1.6;
  }
}
.cooperation-exchange .box-02 {
  display: flex;
  min-height: 176px;
  margin-bottom: 60px;
}
.cooperation-exchange .box-02:hover .box-info .info-title {
  color: #0854BC;
}
.cooperation-exchange .box-02 .box-date {
  width: 92px;
  flex-shrink: 0;
  color: #0854BC;
}
.cooperation-exchange .box-02 .box-date .date-01 {
  line-height: 40px;
  font-weight: bold;
}
.cooperation-exchange .box-02 .box-date .date-02 {
  line-height: 20px;
}
.cooperation-exchange .box-02 .box-info {
  flex: 1;
  min-width: 0;
  background: url('psych_line.02.png') no-repeat left top;
  padding-left: 30px;
}
.cooperation-exchange .box-02 .box-info .info-title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 32px;
  height: 64px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .cooperation-exchange .box-02 .box-info .info-title {
    overflow: visible;
    display: block;
    -webkit-line-clamp: none;
    height: auto;
    max-height: none;
    line-height: 1.6;
  }
}
.cooperation-exchange .box-02 .box-info .info-txt {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 30px;
  line-height: 30px;
  padding-left: 30px;
  color: #666666;
  background-position: 0 5px;
  background-repeat: no-repeat;
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .cooperation-exchange .box-02 .box-info .info-txt {
    overflow: visible;
    white-space: normal;
    height: auto;
    line-height: 1.6;
  }
}
.cooperation-exchange .box-02 .box-info .info-txt:last-child {
  margin-bottom: 0;
}
.cooperation-exchange .box-02 .box-info .info-txt.txt-01 {
  background-image: url('psych_icon10.png');
}
.cooperation-exchange .box-02 .box-info .info-txt.txt-02 {
  background-image: url('psych_icon11.png');
}
.cooperation-exchange .box-02 .box-info .info-txt.txt-03 {
  background-image: url('psych_icon12.png');
}
.cooperation-exchange .box-03 {
  background: #FFFFFF;
  box-shadow: 0px 0px 20px 0px rgba(8, 84, 188, 0.1);
  padding: 25px 40px 25px 0;
  display: flex;
  margin-bottom: 40px;
  border-left: 4px solid #0854BC;
}
.cooperation-exchange .box-03:hover {
  border-left-color: #DB5B0F;
}
.cooperation-exchange .box-03:hover .box-date,
.cooperation-exchange .box-03:hover .box-title {
  color: #DB5B0F;
}
.cooperation-exchange .box-03 .box-date {
  width: 136px;
  flex-shrink: 0;
  margin-right: 30px;
  position: relative;
  color: #0854BC;
  text-align: center;
}
.cooperation-exchange .box-03 .box-date::after {
  content: '';
  position: absolute;
  right: 0;
  width: 1px;
  background-color: #0854BC;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
}
.cooperation-exchange .box-03 .box-date .date-01 {
  font-weight: bold;
  line-height: 40px;
}
.cooperation-exchange .box-03 .box-date .date-02 {
  line-height: 20px;
}
.cooperation-exchange .box-03 .box-title {
  flex: 1;
  min-width: 0;
  height: 60px;
  line-height: 60px;
}
.cooperation-exchange .box-03 .box-title span {
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 30px;
  max-height: 60px;
}
@media (max-width: 767px) {
  .cooperation-exchange .box-03 .box-title span {
    overflow: visible;
    display: block;
    -webkit-line-clamp: none;
    max-height: none;
    line-height: 1.6;
  }
}
.public-banner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  color: #fff;
  position: relative;
}
.public-banner:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 4, 0.8) 0%, rgba(0, 0, 4, 0) 20%);
}
.public-banner .container {
  height: 460px;
  position: relative;
  z-index: 2;
}
.public-banner .banner-cont {
  position: absolute;
  bottom: 30px;
  left: 0;
}
.public-banner .banner-cont .channel-title {
  line-height: 1;
  margin-bottom: 30px;
}
.bread-crumbs {
  padding-left: 38px;
  background: url('psych_icon13.png') no-repeat 0 3px;
  background-size: 24px;
}
.bread-crumbs .bread-item {
  color: #fff;
  line-height: 32px;
}
.bread-crumbs .bread-item a,
.bread-crumbs .bread-item span {
  display: inline-block;
}
.bread-crumbs .bread-item a {
  color: #fff;
}
.bread-crumbs .bread-item > span {
  padding-left: 5px;
  padding-right: 5px;
}
.bread-crumbs .bread-item > span::before {
  content: '/';
  color: #fff;
}
.page-main {
  padding-top: 40px;
  padding-bottom: 60px;
  min-height: calc(100vh - 470px - 170px);
}
@media (min-width: 1280px) {
  .row-page {
    margin-left: -30px;
    margin-right: -30px;
  }
  .row-page .col-page {
    padding-left: 30px;
    padding-right: 30px;
  }
  .row-page .page-l {
    -ms-flex: 0 0 22%;
    flex: 0 0 22%;
    max-width: 22%;
  }
  .row-page .page-r {
    -ms-flex: 0 0 78%;
    flex: 0 0 78%;
    max-width: 78%;
  }
}
.left-menu {
  border-radius: 10px;
  background: url('psych_boxbg03.png') no-repeat bottom center #0854BC;
  padding: 20px 0 220px 10px;
  padding-left: 10px;
}
.left-menu .menu-cont {
  background-color: #F5FBFE;
  background: linear-gradient(270deg, #E3EFFF 0%, #F5FBFE 12%, #F5FBFE 100%);
  position: relative;
  z-index: 3;
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 10px 10px 0 0;
}
.left-menu .menu-cont::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -70px;
  background: url(psych_boxbg04.png) no-repeat;
  background-size: 100% 100%;
  height: 70px;
}
.left-menu .box-a {
  position: relative;
}
.left-menu .box-a::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10px;
  background: #005fb3;
  left: -10px;
  z-index: 3;
  transition: all 0.3s;
}
.left-menu .box-a.active,
.left-menu .box-a:hover {
  background: #fff;
}
.left-menu .box-a.active::before,
.left-menu .box-a:hover::before {
  background: #00A0E9;
}
.left-menu .box-a.active .a-title,
.left-menu .box-a:hover .a-title {
  color: #0854BC;
}
.left-menu .box-a.active .a-title::after,
.left-menu .box-a:hover .a-title::after {
  color: #0854BC;
}
.left-menu .box-a .a-title {
  display: block;
  position: relative;
  color: #333333;
  line-height: 40px;
  padding: 15px 35px 15px 30px;
  z-index: 2;
}
.left-menu .box-a .a-title::after {
  content: "\f105";
  font-family: 'FontAwesome';
  position: absolute;
  right: 25px;
  top: 15px;
  color: #B5D4FF;
  font-weight: normal;
  font-size: 24px;
}
.main-content {
  min-height: 300px;
}
.channle-title {
  font-weight: bold;
  position: relative;
  margin-bottom: 35px;
}
.channle-title .title-s {
  display: inline-block;
  height: 42px;
  line-height: 1;
  background: url('psych_line.03.png') no-repeat right bottom #fff;
  padding-right: 50px;
  position: relative;
  z-index: 2;
}
.channle-title .title-s::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  background: #0854BC;
  width: 12px;
  height: 3px;
}
.channle-title::after {
  content: '';
  position: absolute;
  right: 0;
  left: 0;
  bottom: 20px;
  height: 1px;
  background: #D8D8D8;
}
.details-page .detail-top {
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 15px;
  margin-bottom: 30px;
}
.details-page .detail-top .title-s {
  color: #333333;
  max-width: 100%;
  line-height: 1.6;
  text-align: center;
  font-weight: bold;
}
.details-page .detail-top .top-other {
  margin-top: 25px;
  color: #666666;
  padding: 0;
}
.details-page .detail-top .top-other.top-other-no-share .other-info {
  float: none;
  text-align: center;
}
.details-page .detail-top .top-other .other-info {
  float: left;
  line-height: 24px;
  padding-top: 3px;
  padding-bottom: 3px;
}
.details-page .detail-top .top-other .other-share {
  float: right;
}
.details-page .detail-top .top-other .other-share > div {
  display: inline-block;
}
.details-page .detail-top .top-other span,
.details-page .detail-top .top-other a {
  display: inline-block;
  margin-right: 5px;
}
.details-page .detail-top .top-other span:last-child,
.details-page .detail-top .top-other a:last-child {
  margin-right: 0;
}
.details-page .detail-top .other-info span,
.details-page .detail-top .other-info a {
  color: #999999;
}
.details-page .detail-top .other-info .line {
  vertical-align: middle;
  margin-top: -3px;
}
.details-page .main-cont {
  line-height: 1.8;
  text-align: justify;
  color: #333;
}
.details-page .main-cont .ue_table {
  text-align: center;
}
.details-page .main-cont .ue_table table {
  margin-left: auto;
  margin-right: auto;
}
.details-page .main-cont .cont-title {
  font-weight: bold;
  margin-bottom: 20px;
}
.details-page .main-cont.cont-xilan img {
  max-width: 800px;
  width: 100%;
}
.details-page .main-cont img {
  max-width: 100%;
}
.details-page .main-cont p,
.details-page .main-cont div {
  line-height: 1.8;
  margin-bottom: 20px;
}
.details-page .main-cont p:last-child,
.details-page .main-cont div:last-child {
  margin-bottom: 0;
}
.details-page .main-page {
  margin-top: 30px;
  border-top: 1px solid #cdd7e8;
  padding-top: 30px;
  line-height: 26px;
  color: #666666;
}
.details-page .main-page .a-page {
  margin-bottom: 0.1rem;
}
.details-page .main-page .a-page:last-child {
  margin-bottom: 0;
}
.details-page .main-page .a-page a,
.details-page .main-page .a-page span,
.details-page .main-page .a-page p {
  display: inline;
}
.details-page .main-page .a-page a {
  color: #666666;
}
.details-page .main-page .a-page:hover {
  color: #0854BC;
}
.details-page .main-page .a-page:hover a {
  color: #0854BC;
}
@media (min-width: 768px) {
  .details-page.details-xl {
    padding-top: 20px;
  }
  .details-page .d-md-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .details-page .detail-top .title-s {
    font-size: 20px;
  }
}
/*分享*/
.social-share {
  /*二维码样式*/
}
.social-share a {
  position: relative;
  text-decoration: none;
  margin: 4px;
  display: inline-block;
  outline: none;
}
.social-share .social-share-icon {
  position: relative;
  display: inline-block;
  width: 26px;
  height: 26px;
  font-size: 20px;
  border-radius: 50%;
  line-height: 26px;
  border: none;
  color: #666;
  text-align: center;
  vertical-align: middle;
  transition: background 0.6s ease-out 0s;
}
.social-share .social-share-icon:hover {
  background: #666;
  color: #fff;
}
.social-share .icon-wechat .wechat-qrcode {
  display: none;
  border: 1px solid #eee;
  position: absolute;
  z-index: 999;
  top: -205px;
  left: -64px;
  width: 160px;
  height: 192px;
  color: #666;
  font-size: 12px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 2px 10px #aaa;
  transition: all 200ms;
  -webkit-tansition: all 350ms;
  -moz-transition: all 350ms;
}
.social-share .icon-wechat .wechat-qrcode.bottom {
  top: 40px;
  left: -64px;
}
.social-share .icon-wechat .wechat-qrcode.bottom:after {
  display: none;
}
.social-share .icon-wechat .wechat-qrcode h4 {
  font-weight: normal;
  height: 26px;
  line-height: 26px;
  font-size: 12px;
  background-color: #f3f3f3;
  margin: 0;
  padding: 0;
  color: #777;
}
.social-share .icon-wechat .wechat-qrcode .qrcode {
  width: 100px;
  margin: 10px auto;
}
.social-share .icon-wechat .wechat-qrcode .qrcode table {
  margin: 0 !important;
}
.social-share .icon-wechat .wechat-qrcode .help p {
  font-weight: normal;
  line-height: 16px;
  padding: 0;
  margin: 0;
}
.social-share .icon-wechat .wechat-qrcode:after {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -6px;
  bottom: -13px;
  width: 0;
  height: 0;
  border-width: 8px 6px 6px 6px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}
.social-share .icon-wechat:hover .wechat-qrcode {
  display: block;
}
.share-xl .social-share a {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: none;
  margin: 0 0 0 8px;
}
.share-xl .social-share a.icon-wechat {
  background: url("comm-wx.png") no-repeat center center;
  background-size: contain;
}
.share-xl .social-share a.icon-weibo {
  background: url("comm-wb.png") no-repeat center center;
  background-size: contain;
}
@media (max-width: 991px) {
  .details-page .detail-top .top-other {
    margin-top: 15px;
    text-align: center;
  }
  .details-page .detail-top .top-other .other-info,
  .details-page .detail-top .top-other .other-share {
    float: none;
    display: block;
  }
  .details-page .detail-top .top-other .other-share {
    margin-top: 5px;
  }
  .details-page .main-cont.cont-xilan img {
    max-width: 100%;
    width: 100%;
  }
}
/*分页*/
.comp-pages {
  padding-top: 40px;
  padding-bottom: 20px;
}
.comp-pages .page-pc {
  text-align: center;
}
.comp-pages .page-pc ul li {
  display: inline-block;
  vertical-align: bottom;
}
.comp-pages .page-pc a,
.comp-pages .page-pc span {
  display: inline-block;
  height: 40px;
  min-width: 40px;
  line-height: 40px;
  border-radius: 4px;
  background: #fff;
  text-align: center;
  color: #333333;
  padding-left: 15px;
  padding-right: 15px;
  background: #FFFFFF;
  border: 1px solid #EBEBEB;
  margin-left: 2px;
  margin-right: 2px;
}
.comp-pages .page-pc a:hover,
.comp-pages .page-pc span:hover,
.comp-pages .page-pc a.active,
.comp-pages .page-pc span.active {
  background: #005fb3;
  color: #fff;
}
.comp-pages .page-pc span {
  background: #005fb3;
  border: none;
  color: #fff;
}
.comp-pages .page-phone {
  height: 46px;
  line-height: 46px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  background: #005fb3;
  display: none!important;
}
.comp-pages .page-phone:hover,
.comp-pages .page-phone:active {
  color: #fff;
}
@media (max-width: 767px) {
  /*分页*/
  .comp-pages .page-pc {
    display: none;
  }
  .comp-pages .page-phone {
    display: block!important;
  }
}
.list-img-text li {
  margin-bottom: 30px;
}
.list-img-text li:last-child {
  margin-bottom: 0;
}
.list-img-text .box-s {
  background: #FFFFFF;
  padding: 30px;
  box-shadow: 0px 0px 10px 0px rgba(8, 84, 188, 0.2);
}
.list-img-text .box-s:hover {
  background-color: #0854BC;
  background: linear-gradient(270deg, #0854BC 0%, #00A0E9 100%);
}
.list-img-text .box-s:hover .box-img img {
  transform: scale(1.1);
}
.list-img-text .box-s:hover .box-info .box-title,
.list-img-text .box-s:hover .box-info .box-txt,
.list-img-text .box-s:hover .box-info .box-date {
  color: #fff;
}
.list-img-text .box-s .box-img {
  float: left;
  margin-right: 30px;
  overflow: hidden;
  width: 320px;
}
.list-img-text .box-s .box-img img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: all 0.5s;
}
.list-img-text .box-s .box-info {
  overflow: hidden;
  padding-top: 5px;
}
.list-img-text .box-s .box-info .box-title {
  margin-bottom: 25px;
  font-weight: bold;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 30px;
  line-height: 30px;
}
@media (max-width: 767px) {
  .list-img-text .box-s .box-info .box-title {
    overflow: visible;
    white-space: normal;
    height: auto;
    line-height: 1.6;
  }
}
.list-img-text .box-s .box-info .box-txt {
  color: #666666;
  margin-bottom: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 30px;
  height: 60px;
}
.list-img-text .box-s .box-info .box-date {
  color: #666666;
}
.list-txt-01 .box-s {
  position: relative;
  min-height: 60px;
  padding: 25px 140px 25px 42px;
  line-height: 40px;
  border-bottom: 1px dashed #D8D8D8;
}
.list-txt-01 .box-s:hover .box-title,
.list-txt-01 .box-s:hover .box-date {
  color: #0854BC;
}
.list-txt-01 .box-s::before {
  content: '';
  position: absolute;
  left: 0;
  top: 38px;
  width: 18px;
  height: 14px;
  background: url('psych_icon17.png') no-repeat center center;
  background-size: contain;
}
.list-txt-01 .box-s .box-title {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 40px;
  line-height: 40px;
}
@media (max-width: 767px) {
  .list-txt-01 .box-s .box-title {
    overflow: visible;
    white-space: normal;
    height: auto;
    line-height: 1.6;
  }
}
.list-txt-01 .box-s .box-date {
  position: absolute;
  right: 0;
  top: 25px;
  color: #666666;
}
.list-txt-02 li {
  margin-bottom: 30px;
}
.list-txt-02 li:last-child {
  margin-bottom: 0;
}
.list-txt-02 .box-s {
  display: flex;
  background: #FFFFFF;
  box-shadow: 0px 0px 10px 0px rgba(8, 84, 188, 0.2);
  padding: 30px;
}
.list-txt-02 .box-s:hover {
  background-color: #0854BC;
  background: linear-gradient(270deg, #0854BC 0%, #00A0E9 100%), #FFFFFF;
}
.list-txt-02 .box-s:hover .box-date {
  border-color: #fff;
}
.list-txt-02 .box-s:hover .box-date .date-01 {
  color: #fff;
}
.list-txt-02 .box-s:hover .box-date .date-02 {
  background: #fff;
  color: #0854BC;
}
.list-txt-02 .box-s:hover .box-info .info-title,
.list-txt-02 .box-s:hover .box-info .info-txt {
  color: #fff;
}
.list-txt-02 .box-s:hover .box-info .info-txt.txt-01 {
  background-image: url('psych_icon14.png');
}
.list-txt-02 .box-s:hover .box-info .info-txt.txt-02 {
  background-image: url('psych_icon15.png');
}
.list-txt-02 .box-s:hover .box-info .info-txt.txt-03 {
  background-image: url('psych_icon16.png');
}
.list-txt-02 .box-s .box-date {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  border: 1px solid #0854BC;
  overflow: hidden;
  flex-shrink: 0;
  text-align: center;
  margin-right: 30px;
}
.list-txt-02 .box-s .box-date .date-01 {
  line-height: 44px;
  height: 44px;
  font-weight: bold;
  color: #0854BC;
}
.list-txt-02 .box-s .box-date .date-02 {
  background-color: #0854BC;
  height: 24px;
  line-height: 24px;
  color: #fff;
}
.list-txt-02 .box-s .box-info {
  flex: 1;
  min-width: 0;
}
.list-txt-02 .box-s .box-info .info-title {
  font-weight: bold;
  display: block;
  margin-bottom: 15px;
  line-height: 30px;
}
.list-txt-02 .box-s .box-info .info-txt {
  padding-left: 30px;
  color: #666666;
  background-position: 0 5px;
  background-repeat: no-repeat;
  margin-bottom: 4px;
  line-height: 30px;
}
.list-txt-02 .box-s .box-info .info-txt:last-child {
  margin-bottom: 0;
}
.list-txt-02 .box-s .box-info .info-txt.txt-01 {
  background-image: url('psych_icon10.png');
}
.list-txt-02 .box-s .box-info .info-txt.txt-02 {
  background-image: url('psych_icon11.png');
}
.list-txt-02 .box-s .box-info .info-txt.txt-03 {
  background-image: url('psych_icon12.png');
}
.contact-us {
  background: #EFF7FF;
}
.contact-us .row-w {
  margin-left: 0;
  margin-right: 0;
}
.contact-us .row-w .col-w {
  padding-left: 0;
  padding-right: 0;
}
.contact-us .map-s {
  height: 540px;
}
.contact-us .info-s {
  height: 540px;
  padding: 45px 30px 30px;
}
.contact-us .info-logo {
  margin-bottom: 60px;
}
.contact-us .info-logo img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.contact-us .info-txt {
  text-align: center;
}
