/*--------------------------------------------------------------
# 常规设置
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

body ul {
  margin: 0;
  padding: 0;
}

body ul li {
  list-style: none;
}

a {
  color: #2487ce;
}

a:hover {
  color: #469fdf;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

@media (max-width: 767px) {
  h1 {
	font-size: 28px;	
  }
  h2 {
  	font-size:20px;
  	font-weight: bold;
  }
  
}

.container i {
  color: #2487ce;
}

img {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Sections 常规样式
--------------------------------------------------------------*/
section {
  padding: 80px 0;
}

.section-bg {
  background-color: #f8fbfe;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #124265;
}

.section-title p {
  margin-bottom: 0;
  font-size: 14px;
  color: #919191;
}


/*--------------------------------------------------------------
# 单独字体代码
--------------------------------------------------------------*/
.title-size {
  font-size: 18px;
}

.content-size {
  font-size: 14px;
}

.description-size {
  font-size: 14px;
}

.subtitle-size {
  font-size: 14px;
}

.date-size {
  font-size: 10px;
}

/*--------------------------------------------------------------
# 分页效果 用于page.html页面
--------------------------------------------------------------*/
.page-num:not(:disabled) {
  cursor: pointer;
}

.page-num,
.page-link {
  position: relative;
  display: block;
  padding: .5rem .75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #2487ce;
  background-color: #fff;
  border: 1px solid #dee2e6;
}

a.page-num:hover,
.page-link:hover {
  text-decoration: none;
}

.page-num-current {
  z-index: 1;
  color: #fff;
  background-color: #2487ce;
  border-color: #2487ce;
}

.page-num-current:hover {
  color: #fff;
}

/*--------------------------------------------------------------
# 右下角返回头部标签
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #2487ce;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #3e9bdd;
  color: #fff;
}

/*--------------------------------------------------------------
# 预加载
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #2487ce;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Header 头部代码 head.html文件
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  background: #fff;
  z-index: 997;
  padding: 15px 0;
  border-bottom: 1px solid #e6f2fb;
}

#header.header-scrolled {
  border-color: #fff;
  box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #16507b;
}

#header .logo img {
  max-height: 40px;
}

@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# 导航菜单 nav.html页面
--------------------------------------------------------------*/
/* PC端导航菜单 */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu>ul {
  display: flex;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
  padding: 14px 0 14px 28px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #124265;
  transition: 0.3s;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
  color: #2487ce;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 15px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 20px rgba(18, 66, 101, 0.1);
  transition: 0.3s;
  border-radius: 5px;
}

.nav-menu .drop-down:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #124265;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
  color: #2487ce;
}

.nav-menu .drop-down>a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down>a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }

  .nav-menu .drop-down .drop-down:hover>ul {
    left: -100%;
  }

  .nav-menu .drop-down .drop-down>a:after {
    content: "\ea9d";
  }
}

/* 手机端导航菜单 */

.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 18px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #124265;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
  background-color: #eaeaea;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav ul li {
  border-bottom: inset;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #124265;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
  color: #2487ce;
  text-decoration: none;
}

.mobile-nav .drop-down>a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down>a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down>a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(10, 38, 58, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# home样式 首页 index.html页面
--------------------------------------------------------------*/
#home {
  width: 100%;
  height: 100vh;
  position: relative;
  background: url("../img/hero-bg.jpg") top center;
  background-size: cover;
}

#home:before {
  content: "";
  /* background: rgba(255, 255, 255, 0.8); */
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#home .container {
  padding-top: 80px;
}

#home h1 {
  margin: 0;
  font-size: 46px;
  font-weight: 700;
  line-height: 72px;
  color: #124265;
  font-family: "Poppins", sans-serif;
}

#home h2 {
  color: #5e5e5e;
  margin: 10px 0 0 0;
  font-size: 22px;
}

#home .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 14px 50px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #2487ce;
}

#home .btn-get-started:hover {
  background: #3194db;
}

#home .icon-boxes {
  margin-top: 100px;
}

#home .icon-box {
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

#home .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#home .icon-box .title a {
  color: #124265;
  transition: 0.3s;
}

#home .icon-box .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

#home .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 36px;
  line-height: 1;
  color: #2487ce;
}

#home .icon-box:hover {
  transform: scale(1.08);
}

#home .icon-box:hover .title a {
  color: #2487ce;
}

@media (min-width: 1024px) {
  #home {
    background-attachment: fixed;
  }
}

@media (max-width: 992px),
(max-height: 500) {
  #home {
    height: auto;
  }

  #home h1 {
    font-size: 24px;
    line-height: 36px;
  }

  #home h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# 新闻列表页左侧leftside
--------------------------------------------------------------*/
.news-leftside .icon-boxes {
  margin-top: 10px;
}

.news-leftside .icon-box {
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease-in-out;
}

.news-leftside .icon-box:hover {
  transform: scale(1.01);
}

/*--------------------------------------------------------------
# 新闻列表页右侧rightside
--------------------------------------------------------------*/
.news-rightside div {
  position: relative;
  overflow: hidden;
  background: rgb(253, 253, 253);
  transition: all 0.3s ease-in-out;
}

.news-rightside div p {
  border-bottom:lightslategray 2px solid;
}


.news-rightside ul li {
  height: 30px;
  line-height: 15px;
  margin-bottom: 10px;
  padding-left: 5px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.news-rightside ul li i {
  display: block;
  width: 16px;
  height: 16px;
  background: #B1B1B1;
  float: left;
  margin-right: 10px;
  position: relative;
  font-style: normal;
}

.news-rightside ul li i::before {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 9px;
  color: #fff;
  line-height: 16px;
  width: 16px;
  text-align: center;
}

.news-rightside ul li:nth-child(1) i {
  background: red;
}

.news-rightside ul li:nth-child(2) i {
  background: red;
}

.news-rightside ul li:nth-child(3) i {
  background: red;
}

.news-rightside ul li:nth-child(1) i::before {
  content: "1";
}

.news-rightside ul li:nth-child(2) i::before {
  content: "2";
}

.news-rightside ul li:nth-child(3) i::before {
  content: "3";
}

.news-rightside ul li:nth-child(4) i::before {
  content: "4";
}

.news-rightside ul li:nth-child(5) i::before {
  content: "5";
}

.news-rightside ul li:nth-child(6) i::before {
  content: "6";
}

.news-rightside ul li:nth-child(7) i::before {
  content: "7";
}

.news-rightside ul li:nth-child(8) i::before {
  content: "8";
}
/*--------------------------------------------------------------
# case样式 caselist.html页面
--------------------------------------------------------------*/
#case {
  width: 100%;
}

#case .container {
  padding-top: 80px;
}

#case h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 72px;
  color: #124265;
  font-family: "Poppins", sans-serif;
}

#case h2 {
  color: #5e5e5e;
  margin: 10px 0 0 0;
  font-size: 22px;
}

#case .icon-boxes {
  margin-top: 10px;
}

#case .icon-box {
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

#case .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#case .icon-box .title a {
  color: #124265;
  transition: 0.3s;
}

#case .icon-box .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

#case .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 36px;
  line-height: 1;
  color: #2487ce;
}

#case .icon-box:hover {
  transform: scale(1.08);
}

#case .icon-box:hover .title a {
  color: #2487ce;
}

@media (min-width: 1024px) {
  #case {
    background-attachment: fixed;
  }
}

@media (max-width: 992px),
(max-height: 500) {
  #case {
    height: auto;
  }

  #case h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #case h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-width: 767px) {
  #case .icon-box {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# insti样式 institutionlist.html页面
--------------------------------------------------------------*/
#insti {
  width: 100%;
  margin-bottom:60px;
}

#insti .container {
  padding-top: 80px;
}

#insti h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 72px;
  color: #124265;
  font-family: "Poppins", sans-serif;
}

#insti h2 {
  color: #5e5e5e;
  margin: 10px 0 0 0;
  font-size: 22px;
}

#insti img {
  padding: .25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: .25rem;
  max-width: 100%;
  
}

#insti .icon-boxes {
  margin-top: 10px;
}

#insti .icon-box {
  padding: 10px 10px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  width:100%;
}

#insti .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
  color: #124265;
}

#insti .icon-box p {
  color: #124265;
}

#insti .icon-box .title a {
  color: #124265;
  transition: 0.3s;
}

#insti .icon-box .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

#insti .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 36px;
  line-height: 1;
  color: #124265;
}

#insti .icon-box:hover .title a {
  color: #2487ce;
}

@media (min-width: 1024px) {
  #insti {
    background-attachment: fixed;
  }
}

@media (max-width: 992px),
(max-height: 500) {
  #insti {
    height: auto;
  }

  #insti h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #insti h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-width: 767px) {
  #insti .icon-box {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Footer 底部样式
--------------------------------------------------------------*/