html,
body,
.container {
  height: 100%;margin:0;padding:0;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  flex-direction: column;
}

.title {
  font-size: 38px;
  color: #616161;
  font-style: italic;
  font-weight: 800;
}

.timeline {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 5px 25px 5px rgba(0, 0, 0, 0.2);
}
.timeline .swiper-container {
  height: 960px;
  width: 100%;
  position: relative;
}
.timeline .swiper-wrapper {
  /* transition: 2s cubic-bezier(0.68, -0.4, 0.27, 1.34) 0.2s; */
}
.timeline .swiper-slide {
  position: relative;
  color: #fff;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
/* .timeline .swiper-slide::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: -115%;
  bottom: -10%;
  width: 100%;
  height: 100%;
  box-shadow: -230px 0 150px 60vw rgba(0, 0, 0, 0.7);
  border-radius: 100%;
} */
.timeline .swiper-slide-content {
  position: absolute;
  text-align: center;
  width: 100%;
  max-width: 100%;
  right: 50%;
  top: 13%;
  -webkit-transform: translate(50%, 0);
          transform: translate(50%, 0);
  font-size: 12px;
  z-index: 2;
}

.timeline .swiper-slide .timeline-title {
  font-weight: 800;
  font-size: 34px;
  margin: 0 0 30px;
  opacity: 0;
  -webkit-transform: translate3d(20px, 0, 0);
          transform: translate3d(20px, 0, 0);
  transition: .2s ease .5s;
}

 
.timeline .swiper-slide .timeline-text {
  line-height: 1.5;
  opacity: 0;
  -webkit-transform: translate3d(20px, 0, 0);
          transform: translate3d(20px, 0, 0);
  transition: .2s ease .6s;
}
.timeline .swiper-slide-active .timeline-title {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  transition: .3s ease 1.0s;
}
.timeline .swiper-slide-active .timeline-text {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  transition: .4s ease 1.0s;
}
.timeline .swiper-pagination {
  /* right: 15% !important; */
  height: 50%;
  display: none;
  flex-direction: column;
  justify-content: center;
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  z-index: 1;
}
.timeline .swiper-pagination::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}
.timeline .swiper-pagination-bullet {
  width: auto;
  height: auto;
  text-align: center;
  opacity: 1;
  background: transparent;
  color: #d4a024;
  margin: 15px 0 !important;
  position: relative;
}
.timeline .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -32.5px;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #d4a024;
  -webkit-transform: scale(0);
          transform: scale(0);
  transition: .1s;
}
.timeline .swiper-pagination-bullet-active {
  color: #d4a024;
}
.timeline .swiper-pagination-bullet-active::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.timeline .swiper-button-next,
.timeline .swiper-button-prev {
  background-size: 20px 20px;
  top: 15%;
  width: 20px;
  height: 20px;
  margin-top: 0;
  z-index: 2;
  transition: .2s;
}
.timeline .swiper-button-prev {
  left: 8%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23d4a024'%2F%3E%3C%2Fsvg%3E");
}
.timeline .swiper-button-prev:hover {
  -webkit-transform: translateX(-3px);
          transform: translateX(-3px);
}
.timeline .swiper-button-next {
  right: 8%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23d4a024'%2F%3E%3C%2Fsvg%3E");
}
.timeline .swiper-button-next:hover {
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}
@media screen and (min-width: 768px) {
  /* .timeline .swiper-slide::after {
    right: -30%;
    bottom: -8%;
    width: 240px;
    height: 50%;
    box-shadow: none;
  } */
  .timeline .swiper-slide-content {
    right:0; 
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-size: 18px;
    text-align: center;
  }
  /**/
  .timeline .swiper-slide .timeline-title {
    font-size: 55px;
    margin: 0;
    color: #113587;
    padding-left: 100px;
  }
  .timeline .swiper-slide .timeline-text ul {
    display: flex;
    list-style: none;
    justify-content:center;
    }
    .timeline .swiper-slide .timeline-text ul li{
      margin-left: 51px;
      color: #113587;
      font-size: 28px;
      padding: 10px;
    }
    .timeline-text button{
      border: none;
      color: #113587;
      padding: 15px 75px;
      text-align: center;
      text-decoration: none;
      display: inline-block;
      font-size: 16px;
      margin: 4px 2px;
      background-color:transparent;
      border-style:none;
      border: 2px solid #4964a1;
    }
  .timeline .swiper-pagination {
    display: flex;
  }
  .timeline .swiper-button-prev {
    top: 15%;
    left: auto;
    right: 0;
    -webkit-transform: rotate(90deg) translate(0, 10px);
            transform: rotate(90deg) translate(0, 10px);
  }
  .timeline .swiper-button-prev:hover {
    -webkit-transform: rotate(90deg) translate(-3px, 10px);
            transform: rotate(90deg) translate(-3px, 10px);
  }
  .timeline .swiper-button-next {
    top: auto;
    bottom: 15%;
    right: 0;
    -webkit-transform: rotate(90deg) translate(0, 10px);
            transform: rotate(90deg) translate(0, 10px);
  }
  .timeline .swiper-button-next:hover {
    -webkit-transform: rotate(90deg) translate(3px, 10px);
            transform: rotate(90deg) translate(3px, 10px);
 
}
}
@media screen and (min-width: 1024px) {
  /* .timeline .swiper-slide::after {
    right: -20%;
    bottom: -12%;
    height: 50%;
    box-shadow: -230px 0 150px 39vw rgba(0, 0, 0, 0.7);
  } */
.line-title{
  font-size: 55px;
  margin: 0;
  color: #113587;
}
.timeline .swiper-slide .line-title {
  font-weight: 800;
  font-size: 34px;
  margin: 0 0 30px;
  opacity: 0;
  left: 500px;
  -webkit-transform: translate3d(20px, 0, 0);
          transform: translate3d(20px, 0, 0);
  transition: .1s ease .4s;
}
.time-text{
  width: 800px;
  text-align: center;
  font-size: 18px;
}
.bottom-text{
/*   display: flex; */
  margin-top:200px;
  border-top: 1px solid #fff;
 
}
.box{
  margin-left: 150px; 
  display: flex;
}
.bottom-text-title{
  width: 45px;
  height:47px;
  border-radius: 45px;
   padding: 20px;
   font-size: 16px;
  background-color: #d4a024;
  top: 0;
  margin-top: -45px;
  margin-left: 70px;
  cursor: pointer;
}
.liner-title{
  width: 1200px;
}
.conter{
  width: 100%;
/* 	height: 100vh; */
  background-image: url('../img/banner1-4.png');
}
.peper-name{
width: 40%;
height: 50%;
padding: 75px;
text-align: center;

/* background-color: ivory; */
}
.peper-name h1{
  color:#000;
  font-size:45px;
  font-weight: 500;
}

.peper-name p{
    color: #6b6d6f;
}
.information{
  width: 80%;
  height: 50%;
  margin: auto;
  display: flex;
}
.information-title{
    width: 33%;
  /*   height: 80%; */
  height: 500px;
    background-color:#fff;
    opacity: 0.8;
    color: #000;
}
.information-title img{
  margin-top: -34px;
  margin-left: 55px;
}
.information-title-dr h2{
    text-align: center;
    padding: 20px;
  
}
.dr-title{
  width: 70%;
  margin: auto;
  padding: 10px;
  line-height: 35px;
}
.head-portrait{
  width: 30%;
  margin: auto;
  height: 560px;
  /* background-image: url(../img/teacher.png); */
  margin-top: -30px;
  background-color: #fff;
  border-radius: 15px;
  opacity: 0.9;
}
.head-portrait-nume span{
  text-align: center;
  font-size: 57px;
  /* padding: 20px; */
  color: #fff;
  margin: 0 20px;

}
.head-portrait-nume{
  background-image: url('../img/tuxing1-1.png');
  width: 129px;
  height: 129px;
}
.hdaeimg{
  width: 100%;
  /* min-width: 400px; */
}

.hdaeimg img{
  width: 85%;
  position: relative;
  left: 10%;
}
}