/* Base Reset */
html, body, h1, h2, h3, h4, h5, h6, div, dl, dt, dd, ul, ol, li, p,
blockquote, pre, hr, figure, table, caption, th, td, form, fieldset,
legend, input, button, textarea, menu {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Microsoft YaHei", "PingFang SC", "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  min-width: 1200px;
  padding: 24px 0 26px 0;
  background-color: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 10px rgba(0,0,0,.05);
}

.header .header-container {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .logo {
  height: 50px;
}

.header .nav {
  display: flex;
}

.header .nav .nav-item {
  font-size: 22px;
  color: #000000;
  text-decoration: none;
}

.header .nav .nav-item + .nav-item {
  margin-left: 20px;
}

.header .nav .nav-item.__active {
  color: rgb(0,91,172);
  font-weight: bold;
}

.banner {
  width: 100%;
  min-width: 1200px;
  height: 300px;
  position: relative;
  background-image: url("../img/banner.jpg");
  background-size: cover;
  background-position: center;
}

.banner .banner-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0,91,172,0.8);
}

.banner .banner-text .banner-title {
  width: 1200px;
  font-size: 36px;
  line-height: 50px;
  color: #ffffff;
}

.banner .banner-text .banner-description {
  margin-top: 30px;
  padding-top: 30px;
  width: 1200px;
  border-top: 1px solid rgba(255,255,255,0.5);
  text-align: right;
  color: #ffffff;
}

.sections .section {
  margin: 0 auto;
  width: 1200px;
}

.sections .section .anchor {
  position: relative;
  top: -120px;
}

.sections .section .section-title {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-top: 40px;
}

.sections .section .section-description {
  font-size: 18px;
  font-weight: normal;
  text-align: center;
  color: rgb(120,127,135);
  margin-top: 16px;
  margin-bottom: 40px;
}

.downloads {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}

.downloads .download {
  width: 290px;
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,91,172,0.5);
  background-color: rgba(203,215,243,0.5);
}

.downloads .download:hover {
  border-color: rgb(0,91,172);
  background-color: rgb(203,215,243);
}

.downloads .download .download-icon {
  width: 128px;
  height: 128px;
  border-radius: 128px;
  color: #ffffff;
  background-color: rgba(0,91,172,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}

.downloads .download:hover .download-icon {
  background-color: rgb(0,91,172);
}

.downloads .download .download-title {
  font-size: 24px;
  margin-top: 26px;
}

.downloads .download .download-description {
  color: rgb(120,127,135);
  font-size: 16px;
  margin-top: 14px;
}

.downloads .download .download-button {
  text-decoration: none;
  padding: 5px 16px;
  margin-top: 26px;
  cursor: pointer;
  color: rgb(0,91,172);
  border: 1px solid rgb(0,91,172);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.downloads .download .download-button .download-button-icon {
  padding-right: 5px;
}

.downloads .download .download-button:hover {
  color: #ffffff;
  background-color: rgb(0,91,172);
}

.blues {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.blues .blue {
  position: relative;
  height: 400px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background-size: cover;
  background-position: center;
}

.blues .blue:nth-child(1) {
  background-image: url("../img/practice/image60.jpeg");
}

.blues .blue:nth-child(2) {
  background-image: url("../img/practice/image61.jpeg");
}

.blues .blue:nth-child(3) {
  background-image: url("../img/practice/image62.jpeg");
}

.blues .blue:nth-child(4) {
  background-image: url("../img/practice/image63.jpeg");
}

.blues .blue:nth-child(5) {
  background-image: url("../img/practice/image64.jpg");
}

.blues .blue .blue-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  color: #ffffff;
  background-color: rgba(0,91,172,0.8);
}

.blues .blue .blue-text > div {
  width: 80%;
}

.blues .blue .blue-text .blue-title {
  font-size: 30px;
  line-height: 46px;
  margin-top: 50px;
  margin-bottom: 20px;
}

.blues .blue .blue-text .blue-hr {
  border-top: 1px solid #ffffff;
  opacity: 1;
  transition: opacity 0.5s;
}

.blues .blue .blue-text .blue-description {
  font-size: 16px;
  text-align: justify;
  height: 0;
  overflow: hidden;
  transition: height 0.5s;
}

.blues .blue .blue-text .blue-description p {
  margin-bottom: 20px;
}

.blues .blue .blue-text .blue-button {
  text-decoration: none;
  padding: 5px 16px;
  cursor: pointer;
  color: #ffffff;
  background-color: rgb(0,91,172);
  width: fit-content;
  width: -moz-fit-content;
}

.blues .blue:hover .blue-hr {
  opacity: 0;
}

.blues .blue:hover .blue-description {
  height: 100%;
}

.crosses {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.crosses .cross {
  width: 50%;
  height: 400px;
  flex-basis: 50%;
}

.crosses .cross.__img {
  background-image: url("../img/university.jpg");
  background-size: cover;
  background-position: center;
}

.crosses .cross .cross-description {
  padding: 50px;
}

.crosses .cross .cross-description p {
  text-align: justify;
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 1rem;
}

.crosses .cross .cross-description li {
  font-size: 18px;
  line-height: 30px;
}

.crosses .cross .cross-button {
  width: fit-content;
  width: -moz-fit-content;
  padding: 5px 16px;
  cursor: pointer;
  color: rgb(0,91,172);
  border: 1px solid rgb(0,91,172);
}

.crosses .cross .cross-button:hover {
  color: #ffffff;
  background-color: rgb(0,91,172);
}

.images {
  display: flex;
  overflow-x: auto;
  max-height: 250px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.images img {
  height: 200px;
  border: 1px solid rgb(100,100,100);
}

.images img + div {
  width: 100%;
  text-align: center;
  color: #000000;
}

.images a {
  text-decoration: none;
  margin-right: 20px;
}

.sections .lSSlideOuter .lSAction > a {
  background: rgba(0,0,0,0.8);
  width: 40px;
  height: 40px;
  border-radius: 20px;
  margin-top: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
}

.sections .lSSlideOuter .lSPager.lSpg > li a {
  width: 5px;
  height: 5px;
  background-color: rgb(220,220,220);
}

.sections .lSSlideOuter .lSPager.lSpg > li.active a,
.sections .lSSlideOuter .lSPager.lSpg > li:hover a {
  background-color: #000000;
}

.people {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.people .person {
  width: 290px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid rgba(0,91,172,0.5);
  background-color: rgba(203,215,243,0.5);
  margin-bottom: 10px;
}

.people .person:hover {
  border-color: rgb(0,91,172);
  background-color: rgb(203,215,243);
}

.people .person .photo {
  height: 160px;
  width: 110px;
  margin: 20px;
  background-image: url("../img/photo.png");
  background-size: cover;
  background-position: center;
}

.people .person .detail {
  margin-top: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.people .person .detail .name {
  font-size: 24px;
}

.people .person .detail .description {
  color: rgb(120,127,135);
  font-size: 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s;
}

.people .person:hover .detail .description {
  max-height: 150px;
}

.people .person .detail p {
  margin-top: 8px;
}

.people .person .detail .more-button {
  display: block;
  width: fit-content;
  width: -moz-fit-content;
  text-decoration: none;
  font-size: 14px;
  padding: 3px 10px;
  margin-top: 8px;
  cursor: pointer;
  color: rgb(0,91,172);
  border: 1px solid rgb(0,91,172);
}

.people .person .detail .more-button:hover {
  color: #ffffff;
  background-color: rgb(0,91,172);
}

.footer {
  width: 100%;
  min-width: 1200px;
  color: #ffffff;
  background-color: rgb(40,40,40);
  padding: 80px 0;
  margin-top: 50px;
}

.footer .logo-and-links,
.footer .copyright {
  width: 1200px;
  margin: 0 auto;
}

.footer .logo-and-links {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer .logo-and-links .logo {
  height: 120px;
}

.footer .logo-and-links .links {
  display: flex;
  flex-direction: column;
}

.footer .logo-and-links .links .link-title {
  margin: 20px 0;
  color: rgba(255,255,255,0.5);
  font-size: 30px;
  text-align: right;
}

.footer .logo-and-links .links .link {
  font-size: 20px;
  line-height: 30px;
  text-align: right;
}

.footer .copyright {
  margin-top: 50px;
  padding-top: 50px;
  color: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.5);
}

.footer a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

.footer a:hover {
  color: #ffffff;
}
