@charset "UTF-8";
/*!------------------------------------------------------------------
[MAIN STYLESHEET]

PROJECT:	Project Name
VERSION:	Versoin Number
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[TABLE OF CONTENTS]
-------------------------------------------------------------------*/
/*  typography */
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@font-face {
  font-family: 'futura-bold';
  src: url("../fonts/Futura-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

body {
  background-color: salmon;
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  color: #5c5c77; }

p, .paragraph {
  font-weight: 400;
  color: #5c5c77;
  font-size: 16px;
  line-height: 1.9;
  font-family: "Poppins", sans-serif; }
  @media (max-width: 991px) {
    p, .paragraph {
      line-height: 1.4; } }
h1, h2, h3, h4, h5, h6 {
  color: #1e1e4b;
  font-family: "futura-bold";
  font-weight: 700;
  line-height: 1.2; }

h1, .h1 {
  font-size: 60px; }
  @media (max-width: 575px) {
    h1, .h1 {
      font-size: 45px; } }
h2, .h2 {
  font-size: 30px;
  color: #333333; }
  @media (max-width: 575px) {
    h2, .h2 {
      font-size: 30px; } }
h3, .h3 {
  font-size: 25px; }
  @media (max-width: 575px) {
    h3, .h3 {
      font-size: 20px; } }
h4, .h4 {
  font-size: 20px; }
  @media (max-width: 575px) {
    h4, .h4 {
      font-size: 18px; } }
h5, .h5 {
  font-size: 18px; }
  @media (max-width: 575px) {
    h5, .h5 {
      font-size: 16px; } }
h6, .h6 {
  font-size: 16px; }
  @media (max-width: 575px) {
    h6, .h6 {
      font-size: 14px; } }
/* Button style */
.btn {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  padding: 15px 40px;
  border-radius: 0;
  font-weight: 500;
  border: 0;
  position: relative;
  z-index: 1;
  transition: .2s ease;
  overflow: hidden;
  white-space: nowrap; }
  @media (max-width: 991px) {
    .btn {
      padding: 5px 15px;
      font-size: 12px;
      margin: 0; } }
  .btn::before {
    position: absolute;
    content: "";
    height: 80%;
    width: 100%;
    left: 0;
    bottom: 10%;
    z-index: -1;
    transition: transform .2s ease-in-out;
    transform-origin: top;
    transform: scaleY(0); }
  .btn:active, .btn:hover, .btn.focus, .btn:focus, .btn.active {
    outline: 0;
    box-shadow: none !important; }
    .btn:active::before, .btn:hover::before, .btn.focus::before, .btn:focus::before, .btn.active::before {
      transform: scaleY(1);
      transform-origin: bottom; }

.btn-sm {
  font-size: 14px;
  padding: 10px 35px; }

.btn-xs {
  font-size: 12px;
  padding: 5px 15px; }

.btn-primary {
  color: #fff;
  background-color: #498FF1; }
  @media (max-width: 991px) {
    .btn-primary {
      padding: 5px 15px;
      font-size: 12px;
      margin: 12px 10px 0; } }
  .btn-primary::before {
    background-color: #fff; }
  .btn-primary:active, .btn-primary:hover, .btn-primary.focus, .btn-primary:focus, .btn-primary.active {
    color: #498FF1 !important;
    background-color: #1a72ed !important;
    border-color: #1a72ed !important; }

.btn-outline-primary {
  color: #498FF1;
  background-color: transparent; }
  .btn-outline-primary::before {
    background-color: #fff; }
  .btn-outline-primary:active, .btn-outline-primary:hover, .btn-outline-primary.focus, .btn-outline-primary:focus, .btn-outline-primary.active {
    color: #498FF1 !important;
    background-color: #498FF1 !important;
    border-color: #498FF1 !important; }

.btn-light {
  color: #498FF1;
  background-color: #fff;
  border: none !important; }
  .btn-light::before {
    background-color: #498FF1; }
  .btn-light:active, .btn-light:hover, .btn-light.focus, .btn-light:focus, .btn-light.active {
    color: #fff !important;
    background-color: #fff !important; }

body {
  background-color: #fff;
  overflow-x: hidden; }

::selection {
  background: #78acf5;
  color: #fff; }

/* preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center; }

ol,
ul {
  margin: 0px;
  padding: 0 0 0 20px; }
  @media (max-width: 991px) {
    ol,
    ul {
      padding: 0 0 0 20px; } }
img {
  image-rendering: -moz-crisp-edges;
  /* Firefox */
  image-rendering: -o-crisp-edges;
  /* Opera */
  image-rendering: -webkit-optimize-contrast;
  /* Webkit (non-standard naming) */
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  /* IE (non-standard property) */
  vertical-align: middle;
  border: 0; }

a,
a:hover,
a:focus {
  text-decoration: none; }

a {
  color: inherit; }

a,
button,
select {
  cursor: pointer;
  transition: 0.2s ease; }
  a:focus,
  button:focus,
  select:focus {
    outline: 0;
    color: #498ff2; }

a:hover {
  color: #498FF1; }

a.text-primary:hover {
  color: #498FF1 !important; }

a.text-light:hover {
  color: #498FF1 !important; }

h4 {
  transition: 0.2s ease; }

a h4:hover {
  color: #498FF1; }

.slick-slide {
  outline: 0; }

.section {
  padding-top: 50px !important; }
  @media (max-width: 991px) {
    .section {
      padding-top: 20px !important; } }
  .section-sm {
    padding-top: 40px;
    padding-bottom: 40px; }
  .section-title {
    margin-bottom: 30px; }

.bg-cover {
  -webkit-background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat; }
  @media (max-width: 575px) {
    .bg-cover {
      margin-top: 0px;
      background-size: cover; } }
.aboutimage {
  width: 38%;
  margin-top: 120px;
  margin-right: -13px; }
  @media (max-width: 575px) {
    .aboutimage {
      margin-right: 0px;
      width: 100%;
      margin-top: 0px; } }
.border-primary {
  border-color: #ededf1 !important; }

/* overlay */
.overlay {
  position: relative; }
  .overlay::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0.8; }

.outline-0 {
  outline: 0 !important; }

.d-unset {
  display: unset !important; }

.bg-primary {
  background: #498FF1 !important; }

.bg-secondary {
  background: #1a1a37 !important; }

.bg-gray {
  background: #f8f8f8; }

.text-primary {
  color: #498FF1 !important; }

.text-color {
  color: #5c5c77; }

.text-light {
  color: #8585a4 !important; }

.fitstbb {
  font-weight: bold;
  font-size: 42px;
  line-height: 48px; }
  @media (max-width: 991px) {
    .fitstbb {
      font-size: 18px; } }
.twoaaaa {
  font-size: 42px;
  line-height: 42px;
  font-weight: bold; }
  @media (max-width: 991px) {
    .twoaaaa {
      font-size: 16px !important;
      padding: 0 !important; } }
.home_a {
  color: #498ff2 !important;
  font-size: 24px !important;
  line-height: 48px; }
  @media (max-width: 991px) {
    .home_a {
      font-size: 12px !important;
      padding: 0 3px !important; } }
.text-lighten {
  display: none;
  color: #d6d6e0 !important;
  font-size: 24px;
  line-height: 24px;
  margin-top: 35px; }
  @media (max-width: 991px) {
    .text-lighten {
      max-width: 288px;
      font-size: 14px;
      margin-top: 3px;
      padding: 0 0px 0 25px;
      display: none; } }
.text-color-nowrap {
  white-space: nowrap; }

.master_content li {
  padding-bottom: 20px;
  color: #333333; }

.master_content {
  color: #333333; }

.text-muted {
  color: #b5b5b7 !important; }

.text-dark {
  color: #1e1e4b !important; }

.font-secondary {
  font-family: "futura-bold"; }

.mb-10 {
  margin-bottom: 10px !important; }

.mb-20 {
  margin-bottom: 20px !important; }

.mb-30 {
  margin-bottom: 30px !important; }

.mb-40 {
  margin-bottom: 40px !important; }

.mb-50 {
  margin-bottom: 50px !important; }

.mb-60 {
  margin-bottom: 60px !important; }

.mb-70 {
  margin-bottom: 70px !important; }

.mb-80 {
  margin-bottom: 80px !important; }

.mb-90 {
  margin-bottom: 90px !important; }

.mb-100 {
  margin-bottom: 100px !important; }

.pl-150 {
  padding-left: 150px; }

.zindex-1 {
  z-index: 1; }

@media (max-width: 991px) {
  .overflow-md-hidden {
    overflow: hidden; } }

.first_home .bottom_box {
  position: absolute;
  bottom: 0;
  height: 60px;
  left: 50%;
  transform: translate(-50%); }
  @media (max-width: 991px) {
    .first_home .bottom_box {
      width: 100%;
      height: 25px !important; } }
  .first_home .bottom_box .bottom_line {
    position: absolute;
    display: block;
    width: calc(50% + 15px);
    height: 65px;
    bottom: 0;
    right: 15px;
    background-color: #fff; }
    @media (max-width: 991px) {
      .first_home .bottom_box .bottom_line {
        height: 25px !important;
        right: 0;
        bottom: -2px; } }
.vertical-align-middle {
  vertical-align: middle; }

.icon-md {
  font-size: 36px; }

/* page title */
.page-title-section {
  padding: 160px 0 160px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
  height: 100px; }
  .page-title-section::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0.8; }
  .page-title-section .bottom_box {
    position: absolute;
    bottom: 0;
    height: 60px;
    left: 50%;
    transform: translate(-50%); }
    @media (max-width: 991px) {
      .page-title-section .bottom_box {
        width: 100%;
        height: 25px !important; } }
    .page-title-section .bottom_box .bottom_line {
      position: absolute;
      display: block;
      width: calc(50% + 15px);
      height: 65px;
      bottom: -1px;
      right: 15px;
      background-color: #fff; }
      @media (max-width: 991px) {
        .page-title-section .bottom_box .bottom_line {
          height: 25px !important;
          right: 0; } }
  @media (max-width: 991px) {
    .page-title-section {
      padding: 72px 0 35px;
      height: 160px; } }
.custom-breadcrumb .breadcrumbbbb {
  margin-right: 0 !important; }
  @media (max-width: 991px) {
    .custom-breadcrumb .breadcrumbbbb {
      margin-left: 25px; } }
.custom-breadcrumb li.nasted {
  position: relative;
  padding-left: 25px; }
  .custom-breadcrumb li.nasted::before {
    position: absolute;
    font-family: "themify";
    content: "\e649";
    font-size: 20px;
    top: 50%;
    left: -5px;
    color: #fff;
    transform: translateY(-50%); }

/* /page title */
.list-styled {
  padding-left: 25px; }
  .list-styled li {
    position: relative;
    margin-bottom: 15px; }
    .list-styled li::before {
      position: absolute;
      content: "";
      height: 10px;
      width: 10px;
      border-radius: 50%;
      background: #498FF1;
      left: -25px;
      top: 5px; }

textarea.form-control {
  height: 200px;
  padding: 20px; }

.secondary_title {
  font-size: 25px;
  margin-top: 32px; }
  @media (max-width: 991px) {
    .secondary_title {
      margin-top: 20px;
      font-size: 18px; } }
.first_level_description {
  line-height: 1.5;
  font-size: 16px;
  margin-top: 12px; }
  .first_level_description p {
    line-height: 1.5;
    font-size: 16px; }
    @media (max-width: 991px) {
      .first_level_description p {
        line-height: 1.5;
        font-size: 16px; } }
  @media (max-width: 991px) {
    .first_level_description {
      margin-top: 10px;
      font-size: 16px;
      margin-bottom: 20px; } }
.first_level_description_patent {
  line-height: 1.5;
  font-size: 16px;
  margin-top: 12px;
  color: #498FF2;
  margin-left: 10px; }

.representative_articles {
  margin-top: 32px;
  font-size: 25px; }
  @media (max-width: 991px) {
    .representative_articles {
      margin-top: 20px;
      font-size: 18px; } }
.option_list_box .list_item:hover .sj {
  display: block !important;
  border-top: 22px solid #478CF2; }

@media (max-width: 991px) {
  .option_list_box .list_item::after {
    content: '';
    position: absolute;
    top: 24px;
    right: 0px;
    width: 1px;
    height: 12px;
    background-color: #DDD; }
  .option_list_box .list_item.active::after {
    display: none;
    /* 伪元素 */ } }

#map_canvas {
  height: 500px; }

.news_boxs {
  z-index: 10;
  display: table-cell;
  vertical-align: middle;
  position: relative;
  /* margin-top: 20px; */
  font-size: 23px;
  /* width: 200px; */
  padding: 29px 20px; }
  @media (max-width: 991px) {
    .news_boxs {
      display: flex;
      margin-top: 13px;
      /* justify-content: center; */
      align-items: center;
      padding: 0 9px;
      font-size: 12px;
      font-weight: 400;
      width: 133px;
      /* line-height: 64px; */
      word-wrap: break-word;
      /* overflow-wrap: break-word; */
      white-space: pre-wrap; } }
@media (max-width: 991px) {
  .nobackgroundimages {
    margin-top: 100px; } }

.setjian {
  margin-top: -20px;
  margin-left: -35px;
  text-align: center;
  font-size: 24px;
  color: #333333;
  margin-bottom: 300px; }
  @media (max-width: 991px) {
    .setjian {
      margin-left: -10px;
      text-align: center;
      font-size: 15px;
      color: #333333;
      margin-bottom: 60px; } }
.look_for_membersend {
  margin-bottom: 15px; }

.mastop {
  margin-top: 300px; }
  @media (max-width: 991px) {
    .mastop {
      margin-top: 30px;
      height: 340px; } }
.srightimagess {
  margin: 0 auto;
  width: 280px;
  height: 280px;
  margin-top: -70px; }
  @media (max-width: 991px) {
    .srightimagess {
      margin: 0 auto;
      width: 100px;
      height: 100px; } }
@media (max-width: 991px) {
  .secondary_title_one {
    margin-top: 15px;
    font-size: 20px !important; } }

.post-thumb-sm {
  max-width: 100px; }

/* pagination */
.pagination {
  justify-content: center; }
  .pagination .page-item {
    margin: 0 10px; }
    .pagination .page-item.active .page-link {
      background: #498FF1;
      color: #fff;
      border-color: #498FF1; }
    .pagination .page-item:first-child .page-link, .pagination .page-item:last-child .page-link {
      border-radius: 0; }
    .pagination .page-item .page-link {
      color: #5c5c77; }

.content * {
  margin-bottom: 20px; }

.content a {
  text-decoration: underline; }

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  margin-bottom: 10px; }

.content ol {
  padding-left: 20px;
  font-size: 16px;
  margin-left: -6px; }

.content ul {
  padding-left: 0; }
  .content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    list-style-type: none; }
    .content ul li::before {
      position: absolute;
      content: "\e65d";
      font-family: "themify";
      font-size: 14px;
      left: 0;
      top: 1px;
      color: #498FF1;
      transition: 0.3s ease; }

.content table {
  text-align: left;
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  border: 1px solid #dee2e6; }
  .content table th,
  .content table td {
    padding: 0.75rem;
    vertical-align: top;
    border: 1px solid #dee2e6; }
  .content table thead {
    background: #eff1fd; }
  .content table tbody {
    background: #f8f9fe; }
    .content table tbody td {
      text-align: left !important; }

.content blockquote p {
  margin-bottom: 0;
  color: #5c5c77;
  font-style: italic !important; }

.content pre {
  padding: 10px 20px;
  background: #f8f9fe; }

.teacher-thumb-sm {
  height: 85px;
  width: 85px;
  object-fit: cover; }

.text-limit-1 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical; }

.text-limit-2 {
  margin-bottom: 20px;
  display: -webkit-box !important;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; }

.text-limit-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; }

.text-limit-4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical; }

.text-limit-5 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical; }

.text-limit-6 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical; }

.text-limit-7 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical; }

.view-first img {
  transition: all 0.2s linear; }

.view-first .mask {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease-in-out; }

.view-first h2 {
  transform: translateY(-100px);
  opacity: 0;
  transition: all 0.2s ease-in-out; }

.view-first p {
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.2s linear; }

.view-first a.info {
  opacity: 0;
  transition: all 0.2s ease-in-out; }

.view-first:hover img {
  /*transform: scale(1.1);*/ }

.view-first:hover .mask {
  opacity: 1; }

.view-first:hover h2,
.view-first:hover p,
.view-first:hover a.info {
  opacity: 1;
  transform: translateY(0px); }

.view-first:hover p {
  transition-delay: 0.1s; }

.view-first:hover a.info {
  transition-delay: 0.2s; }

.schooltime {
  margin-top: 92px; }
  @media (max-width: 991px) {
    .schooltime {
      margin-top: 52px; } }
.descrigp {
  line-height: 26px;
  margin-bottom: 0px; }

.descrigplst {
  margin-bottom: 20px; }

@media (max-width: 991px) {
  .schooltime_content {
    font-size: 13px; } }

.schooltimes {
  margin-top: 130px; }
  @media (max-width: 991px) {
    .schooltimes {
      margin-top: 108px; } }
.distence {
  margin-left: 16px;
  font-size: 14px;
  color: #FFFFFF;
  margin-right: 16px; }
  @media (max-width: 991px) {
    .distence {
      font-size: 13px; } }
.research_direction {
  margin-top: 2px; }

.sj {
  z-index: 1;
  position: absolute;
  bottom: -12px;
  left: 50%;
  width: 0;
  height: 0;
  transform: translate(-50%);
  border-left: 41px solid transparent;
  border-right: 41px solid transparent; }
  @media (max-width: 991px) {
    .sj {
      bottom: -6px; } }
.article_main {
  margin-top: 32px; }
  @media (max-width: 991px) {
    .article_main {
      margin-top: -10px; } }
.spacekhang {
  margin-top: 20px; }
  @media (max-width: 991px) {
    .spacekhang {
      margin-top: 5px; } }
@media (max-width: 991px) {
  .justify-content-center .letsmallbox {
    margin-bottom: 20px !important; } }

.option_pagebox {
  margin-top: 100px; }
  @media (max-width: 991px) {
    .option_pagebox {
      margin-top: 70px; } }
.distence_one {
  margin-top: 20px; }
  @media (max-width: 991px) {
    .distence_one {
      margin-top: 10px !important; } }
@media (max-width: 991px) {
  .about_p_box {
    margin-top: -20px;
    margin-left: -15px; } }

.madegin ul li {
  margin-bottom: 24px;
  font-weight: 400;
  color: #5c5c77;
  font-size: 16px;
  line-height: 24px;
  font-family: "Poppins", sans-serif; }

@media (max-width: 991px) {
  .madegin {
    margin-top: 5px;
    margin-left: 0px;
    top: 0 !important;
    margin-bottom: 10px !important; } }

@media (max-width: 991px) {
  .busuanzi_value_site_pv_style {
    font-size: 10px !important; } }

ul {
  list-style-type: disc;
  /* 设置列表项的样式为黑点 */ }

.content_m {
  width: 255px;
  position: absolute;
  top: 50px;
  left: 400px; }
  .content_m li {
    margin-bottom: 0.5rem;
    font-weight: 400;
    color: #5c5c77;
    font-size: 16px;
    line-height: 1.9;
    font-family: "Poppins", sans-serif; }
  @media (max-width: 991px) {
    .content_m {
      position: initial; } }
.content2 {
  width: 255px;
  position: absolute;
  top: 62px;
  left: 400px; }
  .content2 li {
    margin-bottom: 0.5rem;
    font-weight: 400;
    color: #5c5c77;
    font-size: 16px;
    line-height: 1.9;
    font-family: "Poppins", sans-serif; }
  @media (max-width: 991px) {
    .content2 {
      position: initial; } }
.e_maildress_member {
  position: absolute;
  top: -4px;
  left: 118px;
  display: inline-block;
  padding: 8px 32px 8px 16px;
  margin-left: 20px;
  margin-bottom: 10px;
  border-radius: 28px;
  background: rgba(73, 143, 242, 0.1);
  color: #498FF2;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  white-space: nowrap; }
  @media (max-width: 991px) {
    .e_maildress_member {
      background: none;
      position: initial;
      padding: 8px 32px 8px 0px;
      margin-left: 4px;
      color: #5c5c77;
      margin-bottom: 10px;
      white-space: wrap; } }
.e_maildress {
  position: absolute;
  top: 1px;
  left: 118px;
  display: inline-block;
  padding: 8px 32px 8px 16px;
  margin-left: 20px;
  margin-bottom: 10px;
  border-radius: 28px;
  background: rgba(73, 143, 242, 0.1);
  color: #498FF2;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  white-space: nowrap; }
  @media (max-width: 991px) {
    .e_maildress {
      background: none;
      position: initial;
      padding: 8px 32px 8px 0px;
      margin-left: 4px;
      color: #5c5c77;
      margin-bottom: 10px; } }
@media (max-width: 991px) {
  #qqmailurl {
    display: none; } }

#qqmailurlM {
  display: none; }
  @media (max-width: 991px) {
    #qqmailurlM {
      display: inline-block; } }
.contectM {
  display: none; }
  @media (max-width: 991px) {
    .contectM {
      margin-left: 0 !important;
      display: block; } }
@media (max-width: 991px) {
  .mb-photos {
    display: inline-block !important;
    margin-top: 0 !important;
    width: 100%; }
    .mb-photos div div {
      margin-bottom: 10px; } }

@media (max-width: 991px) {
  .set-photos-height {
    height: 250px !important; } }

@media (max-width: 991px) {
  .card-img-top-m {
    height: 200px !important; } }

@media (max-width: 991px) {
  .card-img-top-mh {
    height: 105px !important;
    width: 172px !important; } }

@media (max-width: 991px) {
  .card-img-top-tpm {
    height: 245px !important;
    margin-top: -5px !important; } }

@media (max-width: 991px) {
  .dwy_website_detail {
    font-size: 13px !important; } }

.busuanzi_value_site_pv_style {
  width: 120px; }

@media (max-width: 991px) {
  .spj-photos {
    padding: 0; } }

.top-header {
  font-size: 12px;
  transition: transform 0.2s ease;
  transform-origin: top;
  font-weight: 600; }
  .top-header.hide {
    transform: scaleY(0);
    transform-origin: top; }

.navbar-toggler {
  padding: 0 9px !important; }

.navigation {
  background: linear-gradient(to right, transparent 50%, #498FF1 50%);
  transition: 0.2s ease;
  background-color: white; }
  .navigation .header-boxbox {
    margin-left: 12px;
    width: 327px; }
    @media (max-width: 991px) {
      .navigation .header-boxbox {
        padding: 10px 0; } }
    @media (max-width: 768px) {
      .navigation .header-boxbox {
        width: 50.6%; } }
    @media (max-width: 575px) {
      .navigation .header-boxbox {
        background-color: #fff;
        width: 62.6%;
        margin-left: -15px; } }
    .navigation .header-boxbox a {
      width: 95%; }
      @media (max-width: 991px) {
        .navigation .header-boxbox a {
          width: 100%;
          padding: 0; } }
      .navigation .header-boxbox a img {
        width: 110%;
        image-rendering: -moz-crisp-edges;
        /* Firefox */
        image-rendering: -o-crisp-edges;
        /* Opera */
        image-rendering: -webkit-optimize-contrast;
        /* Webkit (non-standard naming) */
        image-rendering: crisp-edges;
        -ms-interpolation-mode: nearest-neighbor;
        /* IE (non-standard property) */ }
        @media (max-width: 991px) {
          .navigation .header-boxbox a img {
            width: 75%;
            margin: 0 auto; } }
    @media (max-width: 575px) {
      .navigation .header-boxbox {
        padding: 10px 0; } }
  @media (max-width: 1200px) {
    .navigation .navbar-brand {
      margin-right: 15px !important; } }
  @media (max-width: 1200px) and (max-width: 575px) {
    .navigation .navbar-brand {
      width: 100%; } }
  @media (max-width: 1200px) {
      .navigation .navbar-brand img {
        width: 100%;
        height: 100%; } }
  @media (max-width: 991px) {
    .navigation {
      background-color: linear-gradient(to right, transparent 50%, #498ff1 50%); }
      .navigation .navbar-brand {
        margin-right: 0px !important; }
        .navigation .navbar-brand img {
          display: block; } }
@media (max-width: 991px) {
  .navbar-collapse {
    background: #1a1a37;
    margin: 0 -100px; } }

#select-language_two {
  display: none; }
  @media (max-width: 991px) {
    #select-language_two {
      display: none;
      font-size: 12px; } }
#select-language {
  display: none; }
  @media (max-width: 991px) {
    #select-language {
      display: none; } }
.navbar-nav {
  padding-left: 35px;
  background: #498FF1; }
  @media (max-width: 991px) {
    .navbar-nav {
      padding-left: 0;
      background: #498ff2;
      padding-bottom: 26px; } }
.nav-item {
  margin: 0 20px !important;
  margin: 0 15px;
  position: relative; }
  @media (max-width: 1200px) {
    .nav-item {
      min-width: 30px;
      margin: 0 10px !important; } }
  .nav-item .nav-link {
    font-size: 19px;
    text-transform: uppercase; }
    @media (max-width: 991px) {
      .nav-item .nav-link:hover {
        background: #569cfd; } }
    @media (max-width: 575px) {
      .nav-item .nav-link {
        font-size: 14px; } }
  .nav-item .line {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 6px;
    width: 100%;
    content: "";
    background: #fff;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease; }
    @media (max-width: 991px) {
      .nav-item .line {
        display: none; } }
  .nav-item .activeline {
    transform: scaleY(1);
    transform-origin: bottom; }
  .nav-item:hover .line, .nav-item.active .line {
    transform: scaleY(1);
    transform-origin: bottom; }

.navbar-dark .navbar-nav .nav-link {
  color: #fff; }

link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
  color: #fff; }

.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show > .nav-link {
  color: #fff; }

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 30px 0px; }
  @media (max-width: 991px) {
    .navbar-expand-lg .navbar-nav .nav-link {
      padding: 20px; } }
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  background: #fff;
  box-shadow: 0 2px 5px #0000000d; }

.navbar {
  position: relative; }
  .navbar .dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0); }
  .navbar .dropdown-menu {
    box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
    border-bottom: 5px solid #498FF1;
    padding: 15px;
    top: 96px;
    border-radius: 0;
    display: block;
    visibility: hidden;
    transition: 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    background: #fff; }
    @media (max-width: 991px) {
      .navbar .dropdown-menu {
        display: none;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transform-origin: unset; } }
    .navbar .dropdown-menu.show {
      visibility: hidden; }
      @media (max-width: 991px) {
        .navbar .dropdown-menu.show {
          visibility: visible;
          display: block; } }
  .navbar .dropdown-item {
    position: relative;
    color: #1e1e4b;
    transition: 0.2s ease;
    text-transform: capitalize;
    font-family: "Poppins", sans-serif; }
    @media (max-width: 991px) {
      .navbar .dropdown-item {
        text-align: center; } }
    .navbar .dropdown-item:not(:last-child) {
      margin-bottom: 10px; }
    .navbar .dropdown-item:hover {
      color: #498FF1;
      background: transparent; }

.hero-section {
  padding-top: 250px;
  padding-bottom: 85px; }
  @media (max-width: 991px) {
    .hero-section {
      padding: 88px 0 83px; } }
.hero-slider .prevArrow,
.hero-slider .nextArrow {
  position: absolute;
  bottom: -22px;
  z-index: 9;
  padding: 15px;
  color: rgba(255, 255, 255, 0.5);
  border: 0;
  font-size: 30px;
  transition: all linear .2s;
  background: transparent; }
  .hero-slider .prevArrow:focus,
  .hero-slider .nextArrow:focus {
    outline: 0; }
  .hero-slider .prevArrow:hover,
  .hero-slider .nextArrow:hover {
    color: #498FF1; }

.hero-slider .prevArrow {
  right: 60px; }
  @media (max-width: 991px) {
    .hero-slider .prevArrow {
      display: none !important; } }
.hero-slider .nextArrow {
  right: 0; }
  @media (max-width: 991px) {
    .hero-slider .nextArrow {
      display: none !important; } }
.hero-slider .slick-dots {
  position: absolute;
  left: 0;
  bottom: -63px;
  padding-left: 0; }
  .hero-slider .slick-dots li {
    display: inline-block;
    margin: 0 6px; }
    .hero-slider .slick-dots li.slick-active button {
      background: #498FF1; }
    .hero-slider .slick-dots li button {
      color: transparent;
      padding: 0;
      overflow: hidden;
      height: 10px;
      width: 10px;
      background: rgba(255, 255, 255, 0.5);
      border: 0;
      outline: 0; }
      @media (max-width: 991px) {
        .hero-slider .slick-dots li button {
          display: none; } }
/* banner feature */
.feature-icon {
  font-size: 50px;
  color: #498FF1;
  display: inline-block; }

.feature-blocks {
  margin-top: -100px;
  padding-left: 70px;
  padding-top: 80px;
  padding-right: 30%; }
  @media (max-width: 1400px) {
    .feature-blocks {
      padding-right: 10%; } }
  @media (max-width: 1200px) {
    .feature-blocks {
      padding-right: 50px;
      padding-left: 50px;
      padding-top: 30px; }
      .feature-blocks h3 {
        font-size: 20px; } }
  @media (max-width: 991px) {
    .feature-blocks {
      margin-top: 0;
      padding: 50px; }
      .feature-blocks h3 {
        font-size: 25px; } }
/* /banner feature */
/* course */
.card-btn {
  font-size: 12px;
  padding: 5px 10px; }

.flex-basis-33 {
  flex-basis: 33.3333%; }

.hover-shadow {
  transition: 0.3s ease; }
  .hover-shadow:hover {
    box-shadow: 0px 4px 25px 0px rgba(27, 39, 71, 0.15); }

/* /course */
/* success story */
.success-video {
  min-height: 300px; }
  .success-video .play-btn {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%); }
    @media (max-width: 768px) {
      .success-video .play-btn {
        left: 50%;
        transform: translate(-50%, -50%); } }
.play-btn {
  display: inline-block;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background: #498FF1;
  color: #fff;
  font-size: 20px;
  text-align: center; }
  .play-btn i {
    line-height: 80px; }
  .play-btn::before {
    position: absolute;
    content: "";
    height: 0;
    width: 0;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    z-index: -2;
    transition: 0.3s ease;
    transition-delay: 0.2s; }
  .play-btn::after {
    position: absolute;
    content: "";
    height: 80%;
    width: 80%;
    transform: translate(-50%, -50%);
    background: #498FF1;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    z-index: -1;
    transition: 0.3s ease; }
  .play-btn:hover::before {
    height: 80%;
    width: 80%;
    transition-delay: 0s; }
  .play-btn:hover::after {
    height: 0;
    width: 0;
    transition: 0s ease; }

/* /success story */
/* events */
.card-date {
  position: absolute;
  background: #498FF1;
  font-family: "futura-bold";
  text-align: center;
  padding: 10px;
  color: #fff;
  top: 0;
  left: 0;
  text-transform: uppercase; }
  .card-date span {
    font-size: 40px; }

/* /events */
/* teacher */
.teacher-info {
  width: 70%;
  bottom: 0;
  right: 0; }

/* /teacher */
/* footer */
.newsletter {
  background-image: linear-gradient(to right, transparent 50%, #498FF1 50%);
  margin-bottom: -170px;
  position: relative;
  z-index: 1; }
  .newsletter-block {
    padding-left: 50px; }
    @media (max-width: 575px) {
      .newsletter-block {
        padding-left: 15px; } }
.input-wrapper {
  position: relative; }
  .input-wrapper button {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%); }
    @media (max-width: 575px) {
      .input-wrapper button {
        position: static;
        transform: translateY(-10px);
        width: 100%;
        outline: 5px solid #fff;
        outline-offset: -5px; } }
.form-control {
  height: 60px;
  background: #fff;
  border-radius: 0;
  padding-left: 25px; }
  .form-control:focus {
    border-color: #498FF1;
    box-shadow: none; }

.about_section {
  padding-top: 150px !important;
  padding: 165px 0 60px; }
  @media (max-width: 991px) {
    .about_section {
      padding: 40px 0 20px;
      padding-top: 80px !important; } }
.newsletter-block .form-control {
  height: 80px;
  padding-right: 160px; }
  @media (max-width: 575px) {
    .newsletter-block .form-control {
      padding-right: 25px; } }
.align-items-center {
  margin: 0; }

.bg-footer {
  background-color: #f8f8f8; }

.logo-footer {
  display: inline-block; }

.footer {
  padding: 82px 0 90px;
  color: #8996a7; }
  .footer a {
    color: #8996a7; }
    .footer a:hover {
      text-decoration: none;
      color: #000; }
  .footer .img-fluid {
    margin-top: 10px;
    width: 270px;
    height: 44px;
    margin-bottom: 25px;
    object-fit: contain; }
    @media (max-width: 991px) {
      .footer .img-fluid {
        margin-left: -22px; } }
  .footer .list-first {
    max-width: 340px; }
    .footer .list-first li:first-child {
      font-size: 18px;
      font-weight: 600;
      color: #333333;
      margin-bottom: 14px; }
      @media (max-width: 991px) {
        .footer .list-first li:first-child {
          font-size: 14px;
          margin-bottom: 12px; } }
    .footer .list-first .first_item {
      font-size: 14px;
      color: #333333;
      line-height: 24px; }
      @media (max-width: 991px) {
        .footer .list-first .first_item {
          font-size: 12px; } }
  .footer .footer_item_list {
    margin-top: 20px; }
    .footer .footer_item_list h4 {
      font-size: 18px;
      margin-bottom: 12px !important; }
    .footer .footer_item_list .list-unstyled li {
      margin-bottom: 26px !important;
      color: #333333;
      font-size: 14px; }
      .footer .footer_item_list .list-unstyled li a {
        color: #333333;
        font-size: 14px; }
        .footer .footer_item_list .list-unstyled li a:hover {
          color: #498FF1; }
      .footer .footer_item_list .list-unstyled li:last-child {
        margin-bottom: 0 !important; }
    @media (max-width: 991px) {
      .footer .footer_item_list {
        margin-top: 12px; }
        .footer .footer_item_list h4 {
          font-size: 12px;
          margin-bottom: 12px !important; }
        .footer .footer_item_list .list-unstyled li {
          margin-bottom: 12px !important;
          color: #333333;
          font-size: 14px; }
          .footer .footer_item_list .list-unstyled li a {
            color: #333333;
            font-size: 10px; }
          .footer .footer_item_list .list-unstyled li:last-child {
            margin-bottom: 0 !important; } }
  @media (max-width: 991px) {
    .footer {
      padding: 42px 0 44px; }
      .footer .footer_item_list {
        padding-right: 0; }
        .footer .footer_item_list:last-child {
          padding-right: 15px; } }
@media (max-width: 991px) {
  .about_boxmbs {
    margin-left: 60px !important;
    margin-bottom: 24px !important; } }

.copyright p {
  color: #8996a7;
  text-transform: capitalize; }

.test_box {
  background-color: red; }
  .test_box:nth-child(odd) {
    background-color: yellow; }

@media (max-width: 991px) {
  .mb-5 {
    margin-bottom: 0 !important; } }

.resertch-body p {
  padding: 20px 20px 0;
  font-size: 18px;
  color: #333333;
  line-height: 1.8 !important;
  margin: 0; }
  @media (max-width: 991px) {
    .resertch-body p {
      font-size: 18px;
      padding: 16px 16px 0;
      margin: 0; } }
.about_p_box p {
  margin-bottom: 0.5rem; }
  @media (max-width: 575px) {
    .about_p_box p {
      font-size: 14px; } }
.about_p_box h3 {
  margin-left: 20px;
  font-size: 25px;
  margin-bottom: 25px; }
  @media (max-width: 575px) {
    .about_p_box h3 {
      font-size: 20px;
      margin-bottom: 10px; } }
.about_p_box .btn {
  margin-left: -15px;
  margin-top: 15px; }
  @media (max-width: 991px) {
    .about_p_box .btn {
      margin-top: 10px;
      margin-left: 0px; } }
.srightimage {
  width: 84%;
  margin-right: 0px !important;
  margin-top: 0px !important; }

.madegin {
  position: relative;
  top: -10px;
  left: -72px; }
  @media (max-width: 575px) {
    .madegin {
      left: 0px; } }
.apply_content ul li {
  margin-bottom: 24px;
  font-weight: 400;
  color: #5c5c77;
  font-size: 16px;
  line-height: 24px;
  font-family: "Poppins", sans-serif; }

.hero-slider {
  position: relative;
  top: -22px; }
  @media (max-width: 575px) {
    .hero-slider {
      top: 0 !important; } }
.about_box {
  width: 80%; }
  @media (max-width: 1200px) {
    .about_box {
      text-align: center; } }
  .about_box img {
    margin-right: 9px;
    text-align: right; }
    @media (max-width: 575px) {
      .about_box img {
        max-width: 100%;
        margin-right: 0px;
        margin-top: 0px; } }
  .about_box .bg_about_box {
    display: none; }
  @media (max-width: 991px) {
    .about_box .bg_about_boxmb {
      width: 180px !important;
      height: 231px !important; } }
  .about_box .aboutimage {
    margin-top: 120px;
    width: 38%; }
    @media (max-width: 575px) {
      .about_box .aboutimage {
        width: 100%;
        margin-top: 0px; } }
  @media (max-width: 991px) {
    .about_box {
      margin-bottom: 40px !important; }
      .about_box .bg_about_box {
        display: block;
        background: #F4F4F4;
        width: 225px;
        height: 286px;
        margin-left: 45px; }
      .about_box img {
        width: 50%;
        position: absolute;
        left: 90px;
        top: 26px;
        max-width: 224px; } }
.introduction_box {
  padding: 10px;
  width: 50%;
  float: left; }
  .introduction_box img {
    width: 100%; }

/* /footer */
#select-language {
  margin-left: 20px;
  margin-bottom: 0 !important; }

.dawawdawd {
  margin-left: -15px; }
  .dawawdawd ul li {
    margin-bottom: 0.5rem;
    font-weight: 400;
    color: #5c5c77;
    font-size: 16px;
    line-height: 1.9;
    font-family: "Poppins", sans-serif; }
  @media (max-width: 575px) {
    .dawawdawd {
      width: 110%;
      margin-left: 0px;
      margin-top: 50px; } }
@media (max-width: 575px) {
  .dawawdawds {
    margin-top: 14px !important; } }

#qqmailurl {
  margin-top: -4px; }

/* home*/
.index_home {
  margin-top: 70px;
  margin-bottom: 50px; }
  @media (max-width: 575px) {
    .index_home {
      margin-top: 62px;
      margin-bottom: 10px; } }
  .index_home img {
    width: 80%;
    display: block;
    margin: 10px auto;
    text-align: center; }
    @media (max-width: 575px) {
      .index_home img {
        width: 100%;
        margin: 10px auto; } }
  @media (max-width: 575px) {
    .index_home h2 {
      font-size: 20px; } }
  @media (max-width: 575px) {
    .index_home p {
      font-size: 16px;
      line-height: 1.9; } }
.article_box p {
  line-height: 26px; }
  @media (max-width: 575px) {
    .article_box p {
      font-size: 16px !important;
      line-height: 1.9; } }
.yanjiusheng {
  display: flex;
  justify-content: flex-start !important;
  cursor: pointer; }
  .yanjiusheng .mb-5 {
    margin-bottom: 32px !important; }

@media (max-width: 991px) {
  .text-white {
    font-size: 21px !important;
    padding: 0 10px; } }

@media (max-width: 991px) {
  .text-muted {
    padding: 0 10px;
    font-size: 14px; } }

.section-title {
  margin-bottom: 30px; }
  @media (max-width: 991px) {
    .section-title {
      font-size: 22px !important;
      margin-bottom: 20px;
      margin-top: 0px; } }
@media (max-width: 991px) {
  #aboutTitlefirst {
    display: none; } }

@media (max-width: 991px) {
  #aboutTitlefirsts {
    display: none; } }

#aboutTitletwo {
  display: none; }
  @media (max-width: 991px) {
    #aboutTitletwo {
      display: block; } }
#aboutTitletwos {
  display: none; }
  @media (max-width: 991px) {
    #aboutTitletwos {
      display: block;
      font-size: 20px !important; } }
#aboutTitle {
  display: none; }
  @media (max-width: 991px) {
    #aboutTitle {
      display: block; } }
  @media (max-width: 768px) {
    #aboutTitle {
      display: none !important; } }
@media (max-width: 991px) {
  .card {
    font-size: 14px;
    margin-bottom: 16px; } }

@media (max-width: 991px) {
  .cards {
    margin-bottom: 16px;
    height: 265px;
    border: 1px solid #484242; } }

@media (max-width: 991px) {
  .people_box {
    justify-content: space-between !important;
    padding: 0 15px; } }

@media (max-width: 991px) {
  .people_box .col-6 {
    margin-bottom: 0 !important;
    padding: 0;
    width: 48%;
    max-width: 48%; } }

.people_boxs {
  margin-left: -14px; }
  @media (max-width: 991px) {
    .people_boxs {
      margin-left: 0px;
      justify-content: space-between !important;
      padding: 0; } }
  @media (max-width: 991px) {
    .people_boxs .col-6 {
      padding: 0;
      width: 48%;
      max-width: 48%;
      margin-bottom: 0 !important; } }
.ResearchDirection_box .small_box {
  margin-bottom: 1.5rem !important; }
  @media (max-width: 991px) {
    .ResearchDirection_box .small_box {
      margin-bottom: 20px !important; } }
@media (max-width: 991px) {
  .ResearchDirection_box .researchdirbox {
    padding-bottom: 0; } }

.index_about_box_first {
  text-align: right; }
  @media (max-width: 991px) {
    .index_about_box_first {
      padding: 0; }
      .index_about_box_first img {
        width: 100%; } }
  .index_about_box_first .dawawdawd > ul {
    padding-left: 20px !important; }
    .index_about_box_first .dawawdawd > ul li {
      margin-bottom: 0.5rem;
      font-weight: 400;
      color: #5c5c77;
      font-size: 16px;
      line-height: 1.9;
      font-family: "Poppins", sans-serif; }

.card-body {
  height: 168px;
  padding: 20px 18px 0; }
  .card-body p {
    line-height: 26px;
    font-size: 14px; }
  @media (max-width: 1200px) {
    .card-body {
      height: 172px;
      padding: 16px 10px 0; }
      .card-body p {
        line-height: 23px;
        font-size: 14px; } }
  @media (max-width: 991px) {
    .card-body {
      height: 150px;
      padding: 16px 8px 0; }
      .card-body p {
        line-height: 23px;
        font-size: 14px; } }
  @media (max-width: 370px) {
    .card-body p {
      line-height: 19px;
      font-size: 14px; } }
  @media (max-width: 768px) {
    .card-body {
      line-height: 25px;
      font-size: 18px; } }
.look_for_members {
  margin-bottom: 20px;
  font-size: 34px;
  font-weight: 600; }
  @media (max-width: 991px) {
    .look_for_members {
      font-size: 16px; } }
.card-bodys {
  height: 66px;
  padding: 15px 20px 0; }
  .card-bodys p {
    line-height: 26px; }
  @media (max-width: 1200px) {
    .card-bodys {
      padding: 16px 10px 0; }
      .card-bodys p {
        line-height: 24px;
        font-size: 14px; } }
  @media (max-width: 991px) {
    .card-bodys {
      padding: 16px 10px 0; }
      .card-bodys p {
        line-height: 26px;
        font-size: 13px; } }
.card-title {
  font-size: 18px; }
  @media (max-width: 991px) {
    .card-title {
      font-size: 16px; } }
@media (max-width: 991px) {
  .text-center {
    position: relative;
    top: 0px; } }

.filter-controls li {
  cursor: pointer;
  transition: .1s ease; }
  .filter-controls li.active {
    font-weight: 600;
    color: #498FF1; }
  .filter-controls li:hover {
    color: #498FF1; }

.tag-list a {
  display: block;
  padding: 5px 10px;
  background: #f8f9fe;
  color: #5c5c77; }
  .tag-list a:hover {
    background-color: #498FF1;
    color: #fff; }

.media a:hover h5 {
  color: #498FF1;
  transition: 0.3s; }

#aboutTitle {
  display: none; }
  @media (max-width: 991px) {
    #aboutTitle {
      display: block; } }
.direction_big_box {
  padding: 80px 0 0; }
  @media (max-width: 991px) {
    .direction_big_box {
      padding: 40px 0 0; }
      .direction_big_box h2 {
        font-size: 20px;
        padding-right: 20px !important; }
      .direction_big_box .direction_col_box {
        margin-bottom: 20px !important; }
      .direction_big_box .more_box {
        padding: 0 15px 0 20px !important;
        right: 15px !important;
        margin-right: -15px;
        font-size: 14px; }
        .direction_big_box .more_box .iconyou {
          display: inline-block !important;
          font-size: 15px; } }
  .direction_big_box .direction_col_box {
    margin-bottom: 30px;
    line-height: 33px;
    overflow: hidden; }
    .direction_big_box .direction_col_box h2 {
      width: auto;
      display: inline-block;
      margin: 0;
      margin-left: -15px;
      padding-right: 30px;
      padding-left: 15px;
      position: relative;
      z-index: 999;
      background-color: #fff; }
    .direction_big_box .direction_col_box .more_box {
      position: absolute;
      right: 0;
      top: 50%;
      padding-left: 30px;
      transform: translate(0, -50%);
      background-color: #fff;
      cursor: pointer; }
      .direction_big_box .direction_col_box .more_box .iconyou {
        display: none; }
    .direction_big_box .direction_col_box .line_box {
      z-index: -1;
      position: absolute;
      left: 0;
      top: 50%;
      transform: translate(0, -50%); }
      .direction_big_box .direction_col_box .line_box .line {
        width: 3000px !important;
        height: 1px;
        background-color: #dadada; }

@media (max-width: 991px) {
  .direction_only {
    margin-bottom: 20px !important; }
    .direction_only:last-child {
      margin-bottom: 0px !important; } }

@media (max-width: 991px) {
  .direction_only .direction_box {
    margin-bottom: 20px !important; }
    .direction_only .direction_box:last-child {
      margin-bottom: 0px !important; } }

.dir_bigbox {
  border: 1px solid #EEEEEE; }
  .dir_bigbox a img {
    object-fit: contain; }

.direction_box .resertch-body p {
  padding: 20px 20px 0;
  line-height: 1;
  min-height: 50px;
  font-size: 18px !important; }
  @media (max-width: 991px) {
    .direction_box .resertch-body p {
      font-size: 16px !important;
      padding: 16px 16px 0;
      margin-bottom: 16px; } }
.direction_box .resertch-body a {
  margin: 0 0 30px 20px; }
  @media (max-width: 991px) {
    .direction_box .resertch-body a {
      margin: 0 0 16px 16px; } }
.first_titlep {
  font-size: 28px;
  color: #333333;
  font-weight: 700; }
  @media (max-width: 991px) {
    .first_titlep {
      font-size: 20px; } }
.default_pagebox {
  transition: all 0.5s; }

.text-white {
  font-size: 37px;
  font-weight: 600;
  margin-bottom: 12px; }

.about_boxcss {
  text-align: right; }

@media (max-width: 991px) {
  .bg_about_boxmb {
    width: 180px;
    height: 231px; } }

.masdertop {
  margin-top: 10px; }
  @media (max-width: 991px) {
    .masdertop {
      margin-top: 0px; } }
@media (max-width: 991px) {
  .about_boxmb {
    margin-left: 48px !important;
    margin-bottom: 10px !important; } }

.apply_infomation {
  margin-bottom: 16px; }
  @media (max-width: 991px) {
    .apply_infomation {
      margin-bottom: 14px; } }
.apply_infomation_wjs {
  margin-top: 15px;
  margin-bottom: 16px; }
  @media (max-width: 991px) {
    .apply_infomation_wjs {
      margin-top: 15px;
      margin-bottom: 14px; } }
.descrigps {
  line-height: 26px;
  margin-bottom: 0px;
  margin-top: 15px; }

@media (max-width: 991px) {
  .article_box {
    padding-left: 33px;
    padding-right: 33px; } }

.section-sm {
  padding-bottom: 0; }

.colc p {
  font-size: 20px; }
  .colc p image {
    margin-bottom: 10px; }

.distence_another {
  height: 50px; }

.slick-list {
  overflow: initial !important;
  position: relative;
  top: -48px;
  overflow: initial; }
  @media (max-width: 991px) {
    .slick-list {
      top: 25px;
      overflow: hidden !important; } }
.zrimg {
  width: 80%; }

.aetion {
  margin-bottom: 10px; }
  @media (max-width: 991px) {
    .aetion {
      margin-bottom: 0px; } }
.option_pagebox {
  transition: all 0.5s;
  width: 100%; }
  .option_pagebox .option_list_box::-webkit-scrollbar {
    display: none;
    /* 隐藏滚动条 */ }
  .option_pagebox .option_list_box {
    padding: 0 40px;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    flex-wrap: wrap; }
    @media (max-width: 991px) {
      .option_pagebox .option_list_box {
        height: 66px;
        justify-content: flex-start;
        overflow-x: auto;
        /* 允许水平滚动 */
        white-space: nowrap;
        /* 禁止换行 */
        -webkit-overflow-scrolling: touch;
        /* 兼容iOS平滑滚动 */
        flex-wrap: nowrap; } }
    .option_pagebox .option_list_box li {
      position: relative;
      display: table;
      height: 80px;
      text-align: center;
      width: calc(24.33% - 10px);
      list-style: none;
      font-size: 34px;
      color: #333333;
      margin-right: 10px; }
      .option_pagebox .option_list_box li:hover {
        background-color: #478cf2 !important;
        color: #fff;
        cursor: pointer; }
      .option_pagebox .option_list_box li:last-child {
        margin-right: 0px; }
    @media (max-width: 991px) {
      .option_pagebox .option_list_box {
        padding: 0 !important;
        margin-bottom: 20px; }
        .option_pagebox .option_list_box li {
          font-size: 16px;
          width: 138px;
          height: 55px;
          margin-right: 0px;
          font-weight: bold; }
        .option_pagebox .option_list_box .option_list_box {
          padding: 0 !important; } }
  .option_pagebox .option_content_box {
    margin-bottom: 20px; }
    @media (max-width: 991px) {
      .option_pagebox .option_content_box {
        padding: 0;
        margin-bottom: 10px; } }
    .option_pagebox .option_content_box .content_item {
      list-style: none;
      display: none; }
      .option_pagebox .option_content_box .content_item .abc_class {
        margin-bottom: 60px !important; }
        .option_pagebox .option_content_box .content_item .abc_class:last-child {
          margin-bottom: 0 !important; }
        @media (max-width: 991px) {
          .option_pagebox .option_content_box .content_item .abc_class {
            margin-bottom: 20px !important; } }
.absimage {
  max-width: 10%; }
  @media (max-width: 991px) {
    .absimage {
      max-width: 35%; } }
.distance {
  margin-top: -9px; }
  @media (max-width: 991px) {
    .distance {
      margin-top: 0px; } }
.marginTop10 {
  margin-top: 10px; }
  @media (max-width: 991px) {
    .marginTop10 {
      margin-top: 0px; } }
.brainLanguage {
  padding: 138px 0 10px; }
  .brainLanguage .page_title {
    margin-bottom: 48px;
    font-size: 20px; }
    .brainLanguage .page_title .blue_box {
      color: #498ff2;
      font-weight: 500; }
  .brainLanguage .page_content {
    width: 100%; }
    .brainLanguage .page_content img {
      display: block;
      margin: 0 auto;
      max-width: 100%; }
  @media (max-width: 991px) {
    .brainLanguage {
      padding: 77px 0 0px; }
      .brainLanguage .page_title {
        margin: 0 15px 20px !important;
        font-size: 16px; }
      .brainLanguage .page_content h2 {
        font-size: 20px; }
      .brainLanguage .page_content p {
        font-size: 14px; } }
.col-lg-11 {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%; }
  @media (max-width: 991px) {
    .col-lg-11 {
      flex: none; } }
.fontwt {
  font-weight: 600;
  font-size: 19px;
  text-transform: uppercase; }

.col-xs-5ths, .col-sm-5ths, .col-md-5ths, .col-lg-5ths {
  position: relative;
  min-height: 0px;
  padding-left: 0px;
  padding-right: 0px; }

@media (min-width: 768px) {
  .col-sm-5ths {
    width: 20%;
    float: left; } }

@media (min-width: 992px) {
  .col-md-5ths {
    width: 20%;
    float: left; } }

@media (min-width: 1200px) {
  .col-lg-5ths {
    width: 20%;
    float: left; } }

.news_box {
  padding: 110px 0 100px !important; }
  .news_box .section-title {
    font-size: 28px;
    color: #333333;
    font-weight: bold; }
  .news_box .news_box_list {
    padding: 0; }
    .news_box .news_box_list .list_item {
      list-style: none;
      border-bottom: 1px solid #f1f1f1;
      padding-bottom: 10px;
      margin-bottom: 20px;
      cursor: pointer; }
      .news_box .news_box_list .list_item .item-first {
        margin-bottom: 10px;
        line-height: 28px;
        display: flex;
        align-items: center;
        justify-content: flex-start; }
        .news_box .news_box_list .list_item .item-first img {
          max-width: 22px;
          vertical-align: middle;
          margin-right: 15px; }
        .news_box .news_box_list .list_item .item-first span {
          color: #333333;
          font-size: 22px;
          font-weight: regular; }
      .news_box .news_box_list .list_item .list_p {
        line-height: 28px;
        font-size: 16px;
        margin-bottom: 0;
        color: #999999; }
  @media (max-width: 991px) {
    .news_box {
      padding: 60px 0 50px !important;
      margin-top: 20px; }
      .news_box .news_box_list .list_item {
        padding-bottom: 10px;
        margin-bottom: 10px; }
      .news_box .section-title {
        font-size: 20px;
        margin-bottom: 14px !important; }
      .news_box .item-first span {
        font-size: 18px !important; }
      .news_box .item-first img {
        max-width: 15px;
        margin-right: 15px; }
      .news_box .list_p {
        font-size: 14px !important;
        line-height: 14px !important; } }
.single_news .card-img-top {
  height: 263px; }
  @media (max-width: 575px) {
    .single_news .card-img-top {
      height: auto; } }
.pagination .activepage .page-link {
  border: 1px solid #498ff2 !important;
  color: #498ff2; }

.page-link {
  padding: 0;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center; }
  @media (max-width: 991px) {
    .page-link {
      width: 36px;
      height: 36px;
      line-height: 36px; } }
#previous {
  width: auto;
  padding: 0 10px; }

.incut {
  margin-top: 100px; }
  @media (max-width: 991px) {
    .incut {
      margin-top: 40px; } }
.member_box {
  position: relative;
  left: -72px; }
  @media (max-width: 991px) {
    .member_box {
      padding-left: 15px;
      position: relative;
      left: 0px;
      top: 15px; } }
  .member_box .apply_name {
    margin-bottom: 25px; }
    @media (max-width: 991px) {
      .member_box .apply_name {
        margin: 0px 0 15px; } }
    .member_box .apply_name h3 {
      margin-left: 20px;
      font-size: 30px;
      line-height: 34px; }
      @media (max-width: 991px) {
        .member_box .apply_name h3 {
          font-size: 20px; } }
  .member_box .apply_job {
    margin-bottom: 12px; }
    @media (max-width: 991px) {
      .member_box .apply_job {
        margin-bottom: 14px; } }
  .member_box .apply_content {
    margin-bottom: 25px; }
    @media (max-width: 991px) {
      .member_box .apply_content {
        margin-bottom: 15px; } }
    .member_box .apply_content p {
      margin: 0;
      line-height: 26px; }
