@charset "UTF-8";
header {
  position: relative;
  z-index: 10;
  padding: 0 35px 0 50px;
  background-color: #fff;
}

header.scrl {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
}

header .inner {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

header .logo {
  width: 230px;
}

header .logo img {
  width: 100%;
}

header .hd-right {
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header .hd-right nav ul {
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header .hd-right nav li {
  font-size: 16px;
  margin: 0 2.60417vw;
  position: relative;
}

header .hd-right nav li .one a {
  display: inline-block;
  line-height: 109px;
  white-space: nowrap;
  position: relative;
}

header .hd-right nav li .one a::after {
  content: '';
  display: block;
  background-color: #D32027;
  left: 0;
  bottom: 20%;
  position: absolute;
  height: 2px;
  width: 0;
  transition: all .5s;
  opacity: 0;
}

header .hd-right nav li .one a:hover {
  color: #D32027;
  font-weight: bold;
}

header .hd-right nav li .one a:hover::after {
  width: 100%;
  opacity: 1;
}

header .hd-right .dropnav {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%);
  transition: all .5s;
  white-space: nowrap;
  transition: all .5s;
  opacity: 0;
  visibility: hidden;
}

header .hd-right .dropnav .in {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  margin-top: 20px;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  width:500px;
  float: left;
}

header .hd-right .dropnav .in::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: 9px solid transparent;
  border-bottom-color: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -18px;
}

header .hd-right .dropnav .in > div {
  position: relative;
   width:50%;
  float: left;
}

header .hd-right .dropnav .in > div::after {
  content: '';
  display: block;
  background-color: #e7e7e7;
  left: 15px;
  right: 25px;
  bottom: 0;
  height: 1px;
  position: absolute;
}

header .hd-right .dropnav .in > div:last-child::after {
  display: none;
}

header .hd-right .dropnav .in a {
  display: block;
  position: relative;
  color: #424242;
  line-height: 39px;
  padding: 0 25px;
  font-size: 14px;
  position: relative;
}

header .hd-right .dropnav .in a:hover {
  color: #fff;
  background-color: #D32027;
}

header .hd-right .dropnav .in a:hover::after {
  display: none;
}

header .hd-right .dropnav .in .three-nav {
  display: inline-block;
  position: absolute;
  left: 100%;
  top: 0;
  background-color: #fff;
  box-shadow: 10px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
   z-index: 100;
}

header .hd-right .dropnav .in > div:hover > a {
  color: #fff;
  background-color: #D32027;
}

header .hd-right .dropnav .in > div:hover .three-nav {
  opacity: 1;
  visibility: visible;
}

header .hd-right nav li:hover .dropnav {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

header .langContact {
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 8.33333vw;
}

header .langContact a {
  display: inline-block;
  margin: 0 18px;
}

header .menu {
  margin-left: 20px;
  display: none;
}

header .menu a {
  display: block;
  width: 20px;
  height: 20px;
  position: relative;
}

header .menu a span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: #D32027;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transition: all .5s;
}

header .menu a span:before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #D32027;
  position: absolute;
  right: 0;
  top: -7px;
  transition: all .5s;
}

header .menu a span:after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #D32027;
  position: absolute;
  right: 0;
  bottom: -7px;
  transition: all .5s;
}

header .menu a.active span {
  background-color: transparent;
}

header .menu a.active span:before {
  transform: rotate(-45deg);
  top: 0;
  width: 100%;
}

header .menu a.active span:after {
  transform: rotate(45deg);
  top: 0;
  width: 100%;
}

@media screen and (max-width: 1440px) {
  header .logo {
    width: 200px;
  }
  header {
    padding: 0 20px;
  }
  header .hd-right nav li {
    margin: 0 20px;
  }
  header .langContact {
    margin-left: 20px;
  }
  header .langContact a:last-child {
    margin-right: 0;
  }
}

@media screen and (max-width: 1024px) {
  header .logo {
    width: 180px;
  }
  header .hd-right nav li > a {
    line-height: 80px;
  }
  header .hd-right nav li {
    margin: 0 10px;
  }
}

@media screen and (max-width: 880px) {
  header .langContact a:last-child {
    display: none;
  }
  header .langContact span {
    display: none;
  }
  header .langContact a {
    margin: 0;
  }
  header .inner {
    height: 60px;
  }
  header .inner .logo {
    width: 115px;
  }
  header .menu {
    display: block;
  }
  header .hd-right nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: rgba(255, 255, 255, 0.9);
    margin-top: 0;
    overflow-y: auto;
  }
  header .hd-right nav ul {
    flex-wrap: wrap;
  }
  header .hd-right nav li {
    width: 100%;
    margin: 0 20px;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: returnToNormal;
    animation-name: returnToNormal;
  }
  header .hd-right nav li .one a {
    color: #000;
    font-weight: bold;
    line-height: 60px;
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  header .hd-right nav li .one a::before {
    content: "\e775";
    font-family: 'iconfont';
    position: absolute;
    right: 0;
    color: #000;
    opacity: .3;
    transition: all .5s;
  }
  header .hd-right nav li .one a::after {
    display: none;
  }
  header .hd-right nav li.active .one a:before {
    transform: rotate(90deg);
  }
  header .hd-right nav .dropnav {
    position: static;
    transform: none;
    min-width: inherit;
    transition: none;
    opacity: 1;
    visibility: visible;
    display: none;
    width: 100%;
  }
  header .hd-right nav .dropnav .in::before {
    display: none;
  }
  header .hd-right nav .dropnav .in {
    background-color: transparent;
    box-shadow: inherit;
    width: 100%;
    left: 0;
    transform: none;
    margin-top: 0;
  }
  header .hd-right nav .dropnav .in a {
    padding-left: 20px;
    color: #575757;
    padding: 0;
  }
  header .hd-right nav .dropnav .in a::after {
    display: none;
  }
  header .hd-right nav .dropnav .in a:hover {
    background-color: transparent;
    color: #575757;
  }
  header .hd-right .dropnav .in .three-nav {
    position: relative;
    left: 0;
    margin: 0 10px;
    width: calc(100% - 20px);
    box-shadow: none;
    padding: 10px;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    display: none;
  }
  header .hd-right nav .dropnav .in a {
    margin-right: 60%;
    transition: all .5s;
  }
  header .hd-right .dropnav .in > div:hover > a {
    padding-left: 20px;
    color: #000;
    font-weight: bold;
    background-color: transparent;
  }
  header .hd-right .dropnav .in > div:hover .three-nav {
    display: block;
  }
}

.qcontainer {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
}

.qleft {
  float: left;
  width: 16px;
  height: 32px;
  position: relative;
  overflow: hidden;
  background-color: transparent;
}

.qleftcircle {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0);
  position: absolute;
  border-radius: 50%;
  left: 0px;
  top: 0px;
  border-bottom: 1px solid white;
  border-left: 1px solid white;
  transform: rotate(225deg);
}

.qright {
  float: left;
  width: 16px;
  height: 32px;
  position: relative;
  overflow: hidden;
  background-color: transparent;
}

.qrightcircle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0);
  position: absolute;
  border-top: 1px solid white;
  border-right: 1px solid white;
  right: 0px;
  top: 0px;
  transform: rotate(225deg);
}

@keyframes circle_right {
  0% {
    transform: rotate(-135deg);
  }
  50%, 100% {
    transform: rotate(45deg);
  }
}

.circle_right {
  -webkit-animation-name: circle_right;
  animation-name: circle_right;
}

@keyframes circle_left {
  0%, 50% {
    transform: rotate(-135deg);
  }
  100% {
    transform: rotate(45deg);
  }
}

.circle_left {
  -webkit-animation-name: circle_left;
  animation-name: circle_left;
}

.swiper-banner {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.swiper-banner .swiper-slide {
  height: 36.45833vw;
  overflow: hidden;
}

.swiper-banner .swiper-slide img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.swiper-banner video {
  display:block; margin:auto;
  height: 100%;
  object-fit: cover;
}
.swiper-banner .swiper-pagination {
  bottom: 28px;
}

.swiper-banner .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #fff;
  opacity: .5;
  margin: 0 25px;
  position: relative;
}

.swiper-banner .swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: #fff;
  opacity: 1;
}

.swiper-banner .swiper-pagination-bullets .swiper-pagination-bullet-active .qcontainer .qleftcircle {
  transform: rotate(45deg);
  animation-name: circle_left;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
}

.swiper-banner .swiper-pagination-bullets .swiper-pagination-bullet-active .qcontainer .qrightcircle {
  transform: rotate(45deg);
  animation-name: circle_right;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
}

@media screen and (max-width: 768px) {
  .swiper-banner .swiper-slide {
    height: 65.33333vw;
  }
  .swiper-banner .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0 10px;
  }
  .qcontainer, .qleftcircle, .qrightcircle {
    width: 16px;
    height: 16px;
  }
  .qleft, .qright {
    width: 8px;
    height: 16px;
  }
}

/* 追求学术卓越 */
.index-zhuiqiu {
  background: url(../images/bg_cis.png) center center/cover no-repeat;
  padding: 126px 0 90px;
}

.index-zhuiqiu .hd {
  justify-content: space-between;
  margin-bottom: 110px;
}

.index-zhuiqiu .hd .lt {
  margin-top: 60px;
}

.index-zhuiqiu .hd .lt h2 {
  margin-bottom: 30px;
}

.index-zhuiqiu .hd .lt h2 b {
  color: #D32027;
}

.index-zhuiqiu .hd .lt p {
  line-height: 36px;
  margin-bottom: 60px;
}

.index-zhuiqiu .hd .rt {
  width: 18.14286%;
}

.index-zhuiqiu .hd .rt .img-logo img {
  width: 100%;
}

.index-zhuiqiu .bd li {
  width: 16.66667%;
  text-align: center;
}

.index-zhuiqiu .bd li .num {
  color: #D32027;
  font-weight: bold;
}

.btn-more a {
  display: inline-block;
  color: #fff;
  padding: 0 22px;
  line-height: 40px;
  border-radius: 20px 0 20px 0;
  background-color: #D32027;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}

.btn-more a::after {
  content: '';
  display: block;
  width: 0;
  height: 100%;
  background-color: #af1c22;
  position: absolute;
  left: 0;
  top: 0;
  transition: all .5s;
  z-index: -1;
}

.btn-more a:hover {
  opacity: .9;
}

.btn-more a:hover::after {
  width: 100%;
}

/* 课程体系 */
.index-tixi {
  background: url(../images/bg_02.png) center center/cover no-repeat;
  padding: 54px 0 75px;
}

.index-tixi .hd {
  margin-bottom: 28px;
}

.index-tixi .hd h2 {
  color: #fff;
  margin: 0 100px;
}

.index-tixi .hd img {
  width: 100%;
}

.index-tixi .pc {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.index-tixi .pc .logo1 {
  width: 151px;
}

.index-tixi .pc .logo2 {
  width: 20%;
}

.index-tixi .swiper-tixi {
  overflow: hidden;
}

.index-tixi .swiper-tixi .swiper-slide {
  background-color: #000;
}

.index-tixi .swiper-tixi .inner {
  width: 100%;
  background-color: #fff;
  opacity: .5;
  transition: all .5s;
}

.index-tixi .swiper-tixi .inner .img {
  height: 15.10417vw;
  overflow: hidden;
}

.index-tixi .swiper-tixi .inner .img img {
  width: 100%;
  height: 100%;
  transition: all .4s;
  object-fit: cover;
}

.index-tixi .swiper-tixi .inner .info {
  padding: 30px 40px 36px;
}

.index-tixi .swiper-tixi .inner .info h2 {
  margin-bottom: 10px;
}

.index-tixi .swiper-tixi .inner .info p {
  height: 48px;
  line-height: 24px;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.index-tixi .swiper-tixi .inner:hover {
  opacity: 1;
}

/* 选择CIS的理由 */
.index-liyou {
  padding: 90px  0 112px;
}

.index-liyou .title {
  text-align: center;
}

.index-liyou .liyou-lists .item {
  margin-top: 40px;
  background-color: #F7F7F7;
  transition: all .5s;
}

.index-liyou .liyou-lists .item .img {
  width: 57.33333%;
  height: 413px;
  overflow: hidden;
}

.index-liyou .liyou-lists .item .img img {
  width: 100%;
  height: 100%;
  transition: all .4s;
  object-fit: cover;
}

.index-liyou .liyou-lists .item .text {
  width: 42.66667%;
  padding: 70px 66px 0;
}

.index-liyou .liyou-lists .item .text h3 {
  margin-bottom: 30px;
}

.index-liyou .liyou-lists .item .text p {
  height: 154px;
  color: #555B64;
  line-height: 1.8;
}

.index-liyou .liyou-lists .item .sft {
  border-top: 1px solid #C2C4DA;
  padding-top: 20px;
}

.index-liyou .liyou-lists .item .sft a {
  display: flex;
  justify-content: space-between;
  color: #DB092B;
  align-items: center;
}

.index-liyou .liyou-lists .item .sft .iconfont {
  font-size: 22px;
  transition: all .5s;
}

.index-liyou .liyou-lists .item:hover {
  background-color: #C62026;
}

.index-liyou .liyou-lists .item:hover .img img {
  transform: scale(1.05);
}

.index-liyou .liyou-lists .item:hover .text {
  color: #fff;
}

.index-liyou .liyou-lists .item:hover .text p {
  color: #fff;
}

.index-liyou .liyou-lists .item:hover .sft a {
  color: #fff;
}

.index-liyou .liyou-lists .item:nth-child(3) {
  flex-direction: row-reverse;
}

/* 校园环境 */
.index-huanjing {
  overflow: hidden;
  position: relative;
}

.index-huanjing .gallery-top .swiper-slide {
  position: relative;
}

.index-huanjing .gallery-top .swiper-slide .img {
  height: 40.10417vw;
  position: relative;
  overflow: hidden;
}

.index-huanjing .gallery-top .swiper-slide .img::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
}

.index-huanjing .gallery-top .swiper-slide .img img {
  width: 100%;
  height: 100%;
  transition: all .4s;
  object-fit: cover;
}

.index-huanjing .gallery-top .swiper-slide .wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.index-huanjing .gallery-top .swiper-slide h3 {
  color: #fff;
  margin-bottom: calc(115vw / 1920 * 100);
  transition: all 1.5s;
  opacity: 0;
  transform: translateY(10%);
}

.index-huanjing .gallery-top .swiper-slide .btn-more {

  transition: all 1.5s;
  transition-delay: .5s;
  opacity: 0;
  transform: translateY(10%);
}


.index-huanjing .gallery-top .swiper-slide-active h3 {
  transform: translateY(0);
  opacity: 1;
}

.index-huanjing .gallery-top .swiper-slide-active .btn-more {
  transform: translateY(0);
  opacity: 1;
}

.index-huanjing .thumbsbox {
  position: absolute;
  left: 0;
  bottom: 32px;
  width: 100%;
}

.index-huanjing .thumbsbox .wrap {
  position: relative;
}

.index-huanjing .gallery-thumbs {
  overflow: hidden;
}

.index-huanjing .gallery-thumbs .swiper-slide {
  position: relative;
  cursor: pointer;
}

.index-huanjing .gallery-thumbs .img {
  height: 146px;
  border: 5px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

.index-huanjing .gallery-thumbs .img img {
  width: 100%;
  height: 100%;
  transition: all .4s;
  object-fit: cover;
}

.index-huanjing .gallery-thumbs .txt {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 15px;
  background: rgba(0, 0, 0, 0.7);
  padding: 0 12px;
  line-height: 30px;
  color: #fff;
}

.index-huanjing .gallery-thumbs .txt p {
  white-space: nowrap;
}

.index-huanjing .gallery-thumbs .active-nav .img {
  border-color: #fff;
}

.index-huanjing .gallery-thumbs .active-nav .img img {
  transform: scale(1.05);
}

.index-huanjing .gallery-prev {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #D32027;
  left: -60px;
  transition: all .5s;
}

.index-huanjing .gallery-prev:hover {
  background-color: #D32027;
  color: #fff;
}

.index-huanjing .gallery-next {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #D32027;
  right: -60px;
  transition: all .5s;
}

.index-huanjing .gallery-next:hover {
  background-color: #D32027;
  color: #fff;
}

.index-pingjia {
  background-color: #F7F7F7;
  padding: 40px 0;
  position: relative;
  z-index: 2;
}

.index-pingjia .title {
  text-align: center;
  margin-bottom: 20px;
}

.index-pingjia .cont {
  position: relative;
}

.index-pingjia .cont::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: -20px;
  width: 30px;
  height: 29px;
  background: url(../images/yinhao.png) 0 0/cover no-repeat;
}

.index-pingjia .cont::after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  bottom: -14px;
  width: 30px;
  height: 29px;
  background: url(../images/yinhao1.png) 0 0/cover no-repeat;
}

.index-pingjia .swiper-pingjia {
  overflow: hidden;
  margin: 0 8.33333%;
}

.index-pingjia .swiper-pingjia p {
  color: #555B64;
  text-align: left;
  line-height: 2;
}

.index-pingjia .pingjia-prev {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #D32027;
  left: -60px;
  transition: all .5s;
}

.index-pingjia .pingjia-prev:hover {
  background-color: #D32027;
  color: #fff;
}

.index-pingjia .pingjia-next {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #D32027;
  right: -60px;
  transition: all .5s;
}

.index-pingjia .pingjia-next:hover {
  background-color: #D32027;
  color: #fff;
}

/* 校园新闻 */
.index-news {
  overflow: hidden;
  padding: 100px 0;
}

.index-news .hd {
  justify-content: space-between;
  margin-bottom: 30px;
}

.index-news .hd .lt {
  width: 47%;
}

.index-news .hd .lt h2 {
  margin-bottom: 20px;
}

.index-news .hd .lt p {
  color: #555B64;
}

.index-news .hd .rt {
  position: relative;
  display: flex;
}

.index-news .hd .rt > div {
  position: static;
  width: 74px;
  height: 74px;
  background: #f7f7f7;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  opacity: 1;
  cursor: pointer;
  transition: all .5s;
  color: #a2a5b0;
  margin-top: 0;
}

.index-news .hd .rt > div span {
  font-size: 22px;
}

.index-news .hd .rt > div:hover {
  background-color: #D32027;
  color: #fff;
}

.index-news .swiper-news {
  overflow: hidden;
}

.index-news .swiper-news a {
  display: block;
  background-color: #F6F6F6;
  border-bottom: 3px solid #B32129;
  padding: 66px 30px;
}

.index-news .swiper-news .datetime {
  background-color: #b32129;
  color: #fff;
  display: flex;
  align-items: center;
  width: 70px;
  height: 70px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.index-news .swiper-news .datetime b {
  line-height: 1.2;
}

.index-news .swiper-news h2 {
  margin-bottom: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.index-news .swiper-news p {
  height: 72px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #2C2C2C;
  line-height: 24px;
  margin-bottom: 20px;
}

.index-news .swiper-news button {
  color: #2C2C2C;
  opacity: .5;
  background-color: transparent;
}

.index-news .swiper-news a:hover button {
  color: #D32027;
  opacity: 1;
}

/* footer */
footer {
  background-color: #000;
}

footer .hd {
  background-color: #191919;
}

footer .hd > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 2% 20px;
}

footer .hd .logo {
  width: 39px;
}

footer .hd .logo img {
  width: 100%;
}

footer .hd a {
  color: #fff;
  letter-spacing: 5px;
}

footer .hd a:hover {
  color: #D32027;
}

footer .bd {
  padding: 84px 5.20833% 36px;
}

footer .bd .inner {
  justify-content: space-between;
  color: #fff;
}

footer .bd .lt h2 {
  margin-bottom: 30px;
}

footer .bd .md {
  width: 521px;
}

footer .bd .md img {
  margin-right: 20px;
  margin-bottom:20px;
  width:60%;
}

footer .bd .rt {
  text-align: right;
}

footer .bd .rt h3 {
  margin-bottom: 20px;
}

footer .bd .share {
  display: flex;
}

footer .bd .share a {
  display: block;
  width: 50px;
  height: 50px;
  margin-left: 10px;
  position: relative;
}

footer .bd .share a img {
  width: 100%;
}

footer .bd .share a .tc {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 110%;
  padding: 5px;
  background-color: #fff;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  width:100px;
}

footer .bd .share a:hover .tc {
  opacity: 1;
  visibility: visible;
}

footer .ft {
  border-bottom: 1.5625vw solid #b32129;
  color: #fff;
}

footer .ft > div {
  padding: 0 5.20833%;
  justify-content: space-between;
  margin-bottom: 30px;
}

footer .ft > div a {
  color: #fff;
}

footer .ft > div a:hover {
  color: #D32027;
}

footer .ft p {
  color: #fff;
  padding-bottom: 30px;
  text-align: center;
}

.fixed-right {
  position: fixed;
  z-index: 88;
  right: 20px;
  bottom: 5%;
}

.fixed-right #goTopBtn {
  width: 61px;
}

.fixed-right #goTopBtn img {
  width: 100%;
}

.fixed-right2 {
  position: fixed;
  z-index: 6;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.fixed-right2 li {
  margin-bottom: 1px;
}

.fixed-right2 li a {
  text-align: center;
  background-color: #D32027;
  color: #fff;
  width: 80px;
  height: 80px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 15px 0;
}

.fixed-right2 li a span {
  display: inline-block;
  font-size:12px;
}

.fixed-right2 li a span img {
  width: 100%;
}

.fixed-right2 li a .icon {
  width: 35px;
  height: 35px;
}

.fixed-right2 li a:hover {
  opacity: .8;
}

@media screen and (max-width: 1440px) {
  .index-zhuiqiu .hd .rt {
    width: 20%;
  }
  .index-liyou .liyou-lists .item .img {
    height: 347px;
  }
  .index-liyou .liyou-lists .item .text {
    padding: 50px 30px 0;
  }
  .index-liyou .liyou-lists .item .text p {
    height: 140px;
  }
  .index-huanjing .gallery-thumbs .img {
    height: 115px;
  }
  
  .fixed-right2 {
  position: fixed;
  z-index: 6;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.fixed-right2 li {
  margin-bottom: 1px;
}

.fixed-right2 li a {
  text-align: center;
  background-color: #D32027;
  color: #fff;
  width: 80px;
  height: 80px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 15px 0;
  font-size:12px;
}

.fixed-right2 li a span {
  display: inline-block;
}

.fixed-right2 li a span img {
  width: 100%;
}

.fixed-right2 li a .icon {
  width: 25px;
  height: 25px;
}

.fixed-right2 li a:hover {
  opacity: .8;
}

}

@media screen and (max-width: 1280px) {
  .index-tixi .hd h2 {
    margin: 0 50px;
  }
  .index-tixi .pc .logo1 {
    width: 100px;
  }
  .index-tixi .pc .logo2 {
    width: 160px;
  }
  .index-tixi .swiper-tixi .inner .info {
    padding: 20px;
  }
  .index-huanjing .gallery-top .swiper-slide h3 {
    margin-bottom: 50px;
  }
  .index-huanjing .gallery-prev {
    left: -20px;
  }
  .index-huanjing .gallery-next {
    right: -20px;
  }
  footer .bd .md {
    width: 120px;
  }
}

@media screen and (max-width: 1024px) {
  .index-zhuiqiu {
    padding: 66px 0 45px;
  }
  .index-zhuiqiu .hd {
    margin-bottom: 55px;
  }
  .index-zhuiqiu .hd .lt {
    margin-top: 30px;
  }
  .index-zhuiqiu .hd .lt h2 {
    margin-bottom: 15px;
  }
  .index-zhuiqiu .hd .lt p {
    margin-bottom: 30px;
  }
  .index-tixi .swiper-tixi .inner .img {
    height: 22vw;
  }
  .index-huanjing .gallery-top .swiper-slide .wrap {
    width: calc(100% - 40px);
  }
  .index-huanjing .gallery-top .swiper-slide .img {
    height: 50vw;
  }
  .index-huanjing .gallery-thumbs .img {
    height: 105px;
  }
  .index-news .hd .rt > div {
    width: 50px;
    height: 50px;
  }
  footer .bd .share a {
    width: 35px;
    height: 35px;
  }
  .fixed-right2 li a {
    width: 70px;
    height: 70px;
  }
  .fixed-right2 li a .icon {
    width: 28px;
    height: 28px;
  }
}

@media screen and (max-width: 768px) {
  .index-zhuiqiu {
    background-image: url(../images/bg_cis_h5.png);
  }
  .index-zhuiqiu .hd .lt {
    width: 100%;
    margin-top: 0;
  }
  .index-zhuiqiu .hd .lt p {
    line-height: 1.8;
    font-size: 12px;
  }
  .index-zhuiqiu .hd .rt {
    display: none;
  }
  .index-zhuiqiu .bd li {
    width: 33.33%;
    margin-bottom: 30px;
  }
  .index-zhuiqiu .mb {
    width: 103px;
    margin: 10px auto 0;
  }
  .index-zhuiqiu .mb img {
    width: 100%;
  }
  .index-tixi .pc {
    display: none;
  }
  .index-tixi {
    background-image: url(../images/bg_02_h5.png);
    padding: 40px 0;
  }
  .index-tixi .mb {
    text-align: center;
  }
  .index-tixi .mb .logobar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
  }
  .index-tixi .mb .logo1 {
    width: 75px;
    margin-right: 26px;
  }
  .index-tixi .mb .logo2 {
    width: 103px;
  }
  .index-tixi .swiper-tixi .inner .img {
    height: 33vw;
  }
  .index-liyou {
    padding: 40px 0 31px;
  }
  .index-liyou .title h2 {
    font-size: 22px;
  }
  .index-liyou .liyou-lists .item {
    margin-top: 30px;
  }
  .index-liyou .liyou-lists .item .img {
    width: 100%;
    height: 54vw;
  }
  .index-liyou .liyou-lists .item .text {
    width: 100%;
  }
  .index-liyou .liyou-lists .item .text {
    padding: 20px 20px 15px;
  }
  .index-liyou .liyou-lists .item .text h3 {
    margin-bottom: 15px;
  }
  .index-liyou .liyou-lists .item .text p {
    height: auto;
    padding-bottom: 20px;
  }
  .index-liyou .liyou-lists .item .sft {
    padding-top: 5px;
  }
  .index-liyou .liyou-lists .item .sft .iconfont {
    font-size: 16px;
  }
  .index-huanjing .gallery-top .swiper-slide .img {
    height: 86.66667vw;
  }
  .index-huanjing .gallery-top .swiper-slide .wrap {
    width: 100%;
    padding: 0 20px;
  }
  .index-huanjing .gallery-top .swiper-slide h3 {
    margin-bottom: 45px;
  }
  .index-huanjing .thumbsbox {
    position: relative;
  }
  .index-huanjing .thumbsbox .wrap {
    width: 100%;
    padding-left: 20px;
  }
  .index-huanjing .gallery-prev, .index-huanjing .gallery-next {
    display: none;
  }
  .index-huanjing .gallery-thumbs .img {
    border-width: 2px;
  }
  .index-huanjing .gallery-thumbs .img {
    height: 118px;
  }
  .index-pingjia {
    padding-bottom: 90px;
  }
  .index-pingjia .title h2 {
    font-size: 22px;
  }
  .index-pingjia .cont::before {
    position: relative;
  }
  .index-pingjia .cont::after {
    bottom: -30px;
  }
  .index-news {
    padding: 40px 0;
  }
  .index-news .hd .lt {
    width: 100%;
  }
  .index-news .hd .rt {
    display: none;
  }
  .index-news .swiper-news a {
    padding: 50px 25px;
  }
  .index-news .swiper-news h2 {
    margin-bottom: 35px;
  }
  footer .hd > div {
    width: 100%;
  }
  footer .bd .rt {
    width: 100%;
    text-align: left;
    margin-top: 20px;
  }
  footer .bd .rt h3 {
    margin-bottom: 10px;
  }
  footer .bd .lt h2 {
    margin-bottom: 15px;
  }
  footer .bd .md {
    width: 108px;
  }
  footer .ft > div {
    flex-direction: column-reverse;
  }
  footer .ft p {
    padding-bottom: 15px;
  }
  footer .hd > div {
    padding: 12px 20px;
    margin: 0;
  }
  footer .hd a {
    letter-spacing: 0;
    min-width: 56px;
    text-align: center;
  }
  footer .hd .logo {
    width: 20px;
    min-width: auto;
  }
  footer .bd {
    padding: 24px 20px;
  }
  footer .bd .lt p {
    font-size: 12px;
  }
  footer .ft {
    font-size: 12px;
  }
  .swiper-banner .swiper-pagination {
    bottom: 10px;
  }
  .index-zhuiqiu .hd .lt h2 {
    font-size: 22px;
  }
  .index-tixi .hd h2 {
    font-size: 22px;
    margin: 0;
  }
  .fixed-right {
    bottom: 10px;
    right: 10px;
  }
  .fixed-right #goTopBtn {
    width: 41px;
  }
}

@media screen and (max-width: 500px) {
  .index-tixi .swiper-tixi {
    padding-left: 15px;
  }
  .index-tixi .swiper-tixi .inner .img {
    height: 56vw;
  }
  .index-tixi .swiper-tixi .swiper-slide-active .inner {
    opacity: 1;
  }
  .index-liyou .liyou-lists .item {
    margin-top: 15px;
  }
  .index-huanjing .gallery-top .swiper-slide .wrap {
    padding: 0;
    width: calc(100% - 40px);
    margin: 0;
  }
  .index-huanjing .thumbsbox .wrap {
    margin: 0;
  }
  .index-pingjia .pingjia-prev {
    display: none;
  }
  .index-pingjia .pingjia-next {
    display: none;
  }
}

/* 新闻列表 */
.crumb-bar {
  position: relative;
  padding-top: 30px;
  overflow: hidden;
  background-color: #f7f7f7;
}

.crumb-bar .bg-red {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #D32027;
  top: 0;
  z-index: 0;
}

.crumb-bar .inner {
  position: relative;
  z-index: 2;
  background-color: #fff;
  padding: 30px 0 35px;
}

.crumb-bar .inner::before {
  content: '';
  display: block;
  width: 50vw;
  height: 100%;
  background-color: #fff;
  position: absolute;
  right: 100%;
  top: 0;
}

.crumb-bar .inner .hd {
  margin-bottom: 18px;
  color: #3F4240;
}

.crumb-bar .inner .hd a {
  color: #3F4240;
}

.crumb-bar .inner .hd a:hover {
  color: #D32027;
}

.crumb-bar .inner .hd span {
  color: #D32027;
}

.crumb-bar .inner .bd-title h2 {
  line-height: 1.2;
  color: #3F4240;
}

.inPages {
  background-color: #f7f7f7;
  padding: 20px 0;
}

.inPages .wrap {
  justify-content: space-between;
}

.inPages .sideMn {
  width: 22.85714%;
}

.inPages .mainCnt {
  width: 75.71429%;
}

.menuLists {
  background-color: #fff;
  margin-bottom: 20px;
  padding: 20px;
}

.menuLists li {
  border-bottom: 1px solid #e9e9e9;
  height: 54px;
  display: flex;
  align-items: center;
}

.menuLists li:last-child {
  border-bottom: none;
}

.menuLists li a {
  display: block;
  padding-left: 40px;
  position: relative;
  width: 100%;
}

.menuLists li a::before {
  content: '';
  display: block;
  width: 21px;
  height: 18px;
  background: url(../images/icon_menu.png) 0 0 no-repeat;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}

.menuLists li a::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 5px solid #D32027;
  opacity: 0;
}

.menuLists li.active a {
  color: #D32027;
  font-weight: bold;
}

.menuLists li.active a::before {
  opacity: 1;
}

.menuLists li.active a::after {
  opacity: 1;
}

.khActivity {
  overflow: hidden;
  position: relative;
}

.khActivity a {
  display: block;
}

.khActivity .img {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.khActivity .img img {
  width: 100%;
  height: 100%;
  transition: all .4s;
  object-fit: cover;
}

.khActivity .img span {
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(211, 32, 39, 0.8);
  width: 90px;
  line-height: 40px;
  color: #fff;
  text-align: center;
  font-weight: bold;
  z-index: 2;
}

.khActivity .info {
  background-color: #492924;
  color: #fff;
  padding: 20px;
  min-height: 360px;
  position: relative;
}

.khActivity .info h2 {
  line-height: 36px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 72px;
  margin-bottom: 20px;
}

.khActivity .info p {
  line-height: 24px;
}

.khActivity a:hover .img Img {
  transform: scale(1.05);
}

.khActivity .swiper-pagination {
  display: flex;
  background-color: #666;
  bottom: 0;
  height: 15px;
}

.khActivity .swiper-pagination-bullet {
  width: 100%;
  border-radius: 0;
  height: 100%;
  margin: 0 !important;
}

.khActivity .swiper-pagination-bullet-active {
  background-color: #D32027;
}

.focusNews {
  padding: 20px;
  background-color: #fff;
  margin-bottom: 20px;
  overflow: hidden;
}

.focusNews .img {
  width: 49.5098%;
  height: 284px;
  overflow: hidden;
}

.focusNews .img img {
  width: 100%;
  height: 100%;
  transition: all .4s;
  object-fit: cover;
}

.focusNews .info {
  width: 48.77358%;
  background-color: #fbfbfb;
  padding: 30px;
}

.focusNews .info h2 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 12px;
}

.focusNews .info .datetime {
  color: #D32027;
  margin-bottom: 12px;
}

.focusNews .info p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 48px;
  opacity: .7;
}

.focusNews .info .btn-more {
  margin-top: 35px;
}

.focusNews:hover .img img {
  transform: scale(1.05);
}

.focusNews:hover .info h2 {
  color: #D32027;
}

.newsLists li {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 20px;
}

.newsLists li a {
  display: flex;
  justify-content: space-between;
}

.newsLists li .datetime {
  width: 100px;
  height: 100px;
  background-color: #D32027;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  flex-shrink: 0;
  margin-right: 20px;
}

.newsLists li .datetime b {
  line-height: 1;
  display: block;
}

.newsLists li .info {
  width: 88.03922%;
}

.newsLists li .info h2 {
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.newsLists li .info p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 48px;
  opacity: .7;
}

/* 翻页 */
.pages {
  text-align: center;
  padding-top: 37px;
  padding-bottom: 40px;
  justify-content: center;
  align-items: center;
}

.pages a {
  display: inline-block;
  vertical-align: middle;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: #fff;
  position: relative;
  margin: 0 3px;
  color: #333;
}

.pages a.prevnext {
  width: 80px;
}

.pages a.active {
  background-color: #da0a28;
  color: #fff;
  border-color: #da0a28;
}

.pages a:hover {
  background-color: #da0a28;
  color: #fff;
  border-color: #da0a28;
}

@media screen and (max-width: 1440px) {
  .focusNews .info p {
    height: 42px;
  }
  .khActivity .img {
    height: 142px;
  }
  .focusNews .img {
    height: 257px;
  }
  .newsLists li .info {
    width: 85%;
  }
  .newsLists li .info h2 {
    padding-top: 10px;
  }
}

@media screen and (max-width: 1024px) {
  .newsLists li .info p {
    height: 42px;
  }
  .newsLists li .info {
    width: 82%;
  }
  .focusNews .img {
    height: 254px;
  }
  .khActivity .img {
    height: 126px;
  }
  .khActivity .info h2 {
    line-height: 28px;
    height: 56px;
  }
}

@media screen and (max-width: 768px) {
  .crumb-bar .inner {
    padding: 20px 0 25px;
  }
  .inPages .wrap {
    flex-direction: column-reverse;
  }
  .inPages .sideMn {
    width: 100%;
  }
  .inPages .mainCnt {
    width: 100%;
  }
  .focusNews .img {
    width: 100%;
  }
  .focusNews .info {
    width: 100%;
    padding: 20px;
  }
  .khActivity .img {
    height: 40vw;
  }
  .khActivity .info {
    min-height: auto;
    padding-bottom: 40px;
  }
  .pages {
    padding: 20px 0 40px;
  }
  .pages a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  .newsLists li .datetime {
    width: 80px;
    height: 80px;
  }
  .newsLists li .info {
    width: calc(100% - 100px);
  }
  .newsLists li .info h2 {
    padding-top: 0;
    margin-bottom: 5px;
  }
  .mb .menuLists {
    display: flex;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    padding: 20px 20px 20px 0;
  }
  .mb .menuLists li {
    border-bottom: none;
    height: 30px;
  }
  .menuLists li a {
    padding: 0 20px 0 25px;
  }
  .menuLists li a::before {
    left: 0;
  }
  .menuLists li a::after {
    display: none;
  }
}

@media screen and (max-width: 500px) {
  .focusNews .img {
    height: 43vw;
  }
}

/* 详情 */
.article-box {
  background-color: #fff;
  padding: 30px;
}

.article-box .title {
  text-align: center;
  padding: 0 0 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.article-box .title h2 {
  margin-bottom: 25px;
}

.article-box .title .other {
  opacity: .5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-box .title .other span {
  display: flex;
  align-items: center;
  margin: 0 25px;
}

.article-box .title .other span img {
  margin-right: 9px;
}

.article-box .title .other span:first-child {
  margin-left: 0;
}

.article-box .title .other span:last-child {
  margin-right: 0;
}

.article-box .content p {
  line-height: 2;
  color: #3F4240;
  font-family: Arial;
}

.article-box .content img {
  max-width: 50%;
}

.article-box .pg-prev-next {
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 20px;
  margin-top: 20px;
}

.article-box .pg-prev-next > div a {
  display: flex;
  align-items: center;
}

.article-box .pg-prev-next > div a img {
  height: 12px;
  margin-right: 9px;
}

.article-box .pg-prev-next .prevnext {
  width: 40%;
}

.article-box .pg-prev-next > div:last-child a {
  justify-content: flex-end;
}

.article-box .pg-prev-next p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-box .pg-prev-next > div:last-child a img {
  margin-right: 0;
  margin-left: 9px;
}

@media screen and (max-width: 768px) {
  .article-box {
    margin-bottom: 20px;
  }
  .article-box .content img {
    max-width: 100%;
  }
  .article-box .pg-prev-next .prevnext {
    width: auto;
  }
  .article-box .pg-prev-next > div a img {
    height: 9px;
    margin-right: 10px;
  }
  .article-box .pg-prev-next > div:last-child a img {
    margin-left: 0px;
  }
  .article-box .pg-prev-next > div a img {
    margin-right: 5px;
  }
}

/* 关于我们 */
.aboutbox {
  background-color: #fff;
  padding: 30px;
}

.aboutbox .title {
  background: url(../images/about/bg_about.png) center center/cover no-repeat;
  flex-direction: column;
  height: 130px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.aboutbox .title h3 {
  color: #D32027;
}

.aboutbox .cont h2 {
  
  align-items: center;
  padding: 20px 0;
}

.aboutbox .cont h2::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 24px;
  background-color: #D32027;
  margin-right: 9px;
  
}

.aboutbox .cont p {
  line-height: 32px;
  font-family: Arial;
  
}

.aboutbox .cont .img {
  text-align: center;
  margin: 20px 0;
  text-align: center;
}

.aboutbox .cont .img img {
  max-width: 100%;
}

.aboutbox .cont h3 {
  padding: 10px 0;
}

.aboutbox .cont .plist li {
  display: flex;
  align-items: center;
  padding: 0px 0;
}

.aboutbox .cont .plist li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background-color: #D32027;
  margin-right: 9px;
}

.aboutbox .about-ibox {
  margin-top: 20px;
}

.aboutbox .about-ibox ul {
  margin-left: -10px;
  margin-right: -10px;
}

.aboutbox .about-ibox ul li {
  width: 31.33%;
  padding: 10px;
  margin-bottom:10px;
  margin-right:2%;
}

.aboutbox .about-ibox ul li{
  background-color: #f7f7f7;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 195px;
  justify-content: center;
  text-align: center;
}

.aboutbox .about-ibox ul li .icon {
  width: 60px;
  margin-bottom: 10px;
}

.aboutbox .about-ibox ul li .icon img {
  width: 100%;
}

.aboutbox .about-ibox ul li .icon .normal {
  display: block;
}

.aboutbox .about-ibox ul li .icon .hover {
  display: none;
}

.aboutbox .about-ibox ul li p {
  opacity: .5;
  text-transform: uppercase;
}

.aboutbox .about-ibox ul li:hover {
  background-color: #D32027;
  color: #fff;
}

.aboutbox .about-ibox ul li:hover .icon .normal {
  display: none;
}

.aboutbox .about-ibox ul li:hover .icon .hover {
  display: block;
}

.aboutbox .about-ibox ul li:hover p {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .aboutbox {
    padding: 20px 10px;
  }
  .aboutbox .about-ibox ul li {
    width: 48%;
  }
  .aboutbox .about-ibox ul li .icon {
    width: 40px;
  }
  .aboutbox .about-ibox ul li p {
    word-break: break-all;
    font-size: 12px;
  }
  .aboutbox .about-ibox ul li  {
    height: 150px;
    padding: 0 5px;
  }
  .aboutbox .about-ibox ul li  h4 {
    font-size: 14px;
  }
}

/* 入学申请 */
.ruxuebox {
  margin-bottom: 20px;
}

.ruxuebox .cont h1 {
  color: #D32027;
  padding: 20px 0;
}

.ruxuebox .cont .red {
  color: #D32027;
  font-weight: bold;
  margin-left: 16px;
  padding: 8px 0;
}

.ruxuebox .cont .plist li {
  padding: 6px 0;
}

.ruxuebox .cont .botton-box {
  text-align: center;
  margin: 25px 0;
}

.ruxuebox .cont .botton-box button {
  width: 200px;
  height: 60px;
  background-color: #D32027;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: all .5s;
}

.ruxuebox .cont .botton-box button:hover {
  opacity: .8;
}

.ruxuebox .cont .table h6 {
  color: #D32027;
  padding: 0 0 20px;
}

.ruxuebox .cont .table table {
  width: 100%;
  border-left: 1px solid #fae8e9;
  border-bottom: 1px solid #fae8e9;
  margin-bottom: 20px;
}

.ruxuebox .cont .table table tr th {
  height: 50px;
  background-color: #D32027;
  border-right: 1px solid #fff;
  color: #fff;
}

.ruxuebox .cont .table table tr th:last-child {
  border-right: none;
}

.ruxuebox .cont .table table tr td {
  height: 50px;
  text-align: center;
  border-right: 1px solid #fae8e9;
  border-bottom: 1px solid #fae8e9;
}

.ruxuebox .cont .table table tr td span {
  font-size: 14px;
  margin-left: 10px;
  color: #D32027;
}

.ruxuebox .cont .table table tr td:last-child {
  padding-left: 0;
}

.ruxuebox .cont .table table tr:last-child td {
  border-bottom: none;
}

.ruxuebox .cont .table2 tr th:last-child {
  width: 30%;
}

.ruxuebox .cont .table2 tr td:first-child {
  text-align: left;
  padding-left: 13px;
}

.ruxuebox .cont .table2 tr td:first-child span {
  font-size: 14px;
  margin-left: 10px;
  color: #D32027;
}

.ruxuebox .cont .table2 tr td:nth-child(2) {
  text-align: left;
  padding-left: 13px;
}

.ruxuebox .cont .table2 tr td:last-child {
  text-align: center;
}

.ruxuebox .cont .table2 tr:nth-child(4) td:first-child {
  width: 52%;
}

.ruxuebox .cont .table3 tr td:first-child {
  text-align: left;
  padding-left: 13px;
}

.ruxuebox .cont .table3 tr td:first-child span {
  font-size: 14px;
  margin-left: 10px;
  color: #D32027;
}

.ruxuebox .cont .table3 tr:nth-child(2) td:first-child {
  width: 52%;
}

.ruxuebox .cont .table3 tr td:nth-child(2) {
  text-align: left;
  padding-left: 13px;
  width: auto;
}

.ruxuebox .cont .table3 tr td:last-child {
  text-align: center;
  width: 30%;
}

.ruxuebox .cont .tips {
  color: #D32027;
  font-size: 14px;
}

.ruxuebox .cont .tips p {
  line-height: 2;
}

.ruxuebox .zstd {
  margin-top: 20px;
  background: url(../images/ruxue/bg_rxsq.png) center center/cover no-repeat;
  padding: 30px;
  color: #fff;
}

.ruxuebox .zstd .st-t {
  margin-bottom: 20px;
}

.ruxuebox .zstd .st-bd ul li {
  width: 50%;
  line-height: 2;
}

@media screen and (max-width: 1024px) {
  .ruxuebox .cont .botton-box button {
    width: 150px;
    height: 42px;
  }
  .ruxuebox .cont .table2 tr:nth-child(4) td:first-child, .ruxuebox .cont .table3 tr:nth-child(2) td:first-child {
    width: 40%;
  }
  .ruxuebox .zstd .st-bd ul li {
    width: 100%;
  }
  .ruxuebox .zstd {
    padding: 20px;
  }
}

@media screen and (max-width: 768px) {
  .ruxuebox .cont .table table tr td {
    height: auto;
    padding: 10px;
  }
}

/* 我们的团队 */
.teambox {
  background-color: #fff;
  padding: 30px;
  margin-bottom: 20px;
}
.teambox p {
  white-space: normal;
    box-sizing: border-box;
    margin: 10px 0px;
    font-size: 16px;
    color: rgb(89, 89, 89);
    font-weight: 500;
    padding: 0px;
    line-height: 1.6;
    font-family: Arial;
}
.teambox .tabnav {
  border-bottom: 1px solid #eee;
  margin-bottom: 25px;
}

.teambox .tabnav a {
  display: inline-block;
  margin-right: 43px;
  padding-bottom: 25px;
  font-size: 22px;
  position: relative;
  color: #C1C1C1;
}

.teambox .tabnav a::after {
  content: '';
  display: block;
  width: 0;
  height: 5px;
  background-color: #D32027;
  opacity: 1;
  visibility: hidden;
  transition: all .5s;
  position: absolute;
  left: 0;
  bottom: -1px;
}

.teambox .tabnav a:last-child {
  margin-right: 0;
}

.teambox .tabnav a.active, .teambox .tabnav a:hover {
  color: #D32027;
}

.teambox .tabnav a.active::after, .teambox .tabnav a:hover::after {
  width: 100%;
  opacity: 1;
  visibility: visible;
}

.teambox .item p {
  line-height: 2;
}

.teambox .item ul {
  margin-left: -13px;
  margin-right: -13px;
}

.teambox .item ul li {
  padding: 13px;
  text-align: center;
  width: 25%;
}

.teambox .item ul li .img {
  height: 346px;
  margin-bottom: 10px;
  overflow: hidden;
}

.teambox .item ul li .img img {
  width: 100%;
  height: 100%;
  transition: all .4s;
  object-fit: cover;
}

.teambox .item ul li p {
  opacity: .5;
}

.teambox .item .in-box:hover .img Img {
  transform: scale(1.05);
}

@media screen and (max-width: 1440px) {
  .teambox .item ul li .img {
    height: 274px;
  }
}

@media screen and (max-width: 1024px) {
  .teambox {
    padding: 20px;
  }
  .teambox .tabnav a {
    padding-bottom: 20px;
  }
  .teambox .item ul li .img {
    height: 228px;
  }
}

@media screen and (max-width: 768px) {
  .teambox .item ul li {
    width: 33.33%;
  }
  .teambox .item ul {
    margin-left: -6px;
    margin-right: -6px;
  }
  .teambox .item ul li {
    padding: 6px;
  }
  .teambox .tabnav {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
  }
  .teambox .tabnav a {
    margin-right: 0;
  }
}

@media screen and (max-width: 500px) {
  .teambox .item ul li {
    width: 50%;
  }
  .teambox .item ul li .img {
    height: 60vw;
  }
}

.resourcebox {
  background-color: #fff;
  padding: 20px 20px 30px;
  margin-bottom: 20px;
}

.resourcebox li {
  background-color: #f7f7f7;
  margin-bottom: 10px;
}

.resourcebox li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  height: 60px;
  padding: 15px 20px;
}

.resourcebox li a i {
  display: inline-block;
  width: 28px;
  margin-right: 20px;
}

.resourcebox li a i img {
  width: 100%;
}

@media screen and (max-width: 500px) {
  .resourcebox li a {
    height: auto;
  }
  .resourcebox li a i {
    margin-right: 10px;
  }
}

/* 我们的相册 */
.imagesbox {
  background-color: #fff;
  padding: 30px;
}

.imagesbox .img {
  position: relative;
  margin-bottom: 10px;
  overflow: hidden;
}

.imagesbox .img img {
  width: 100%;
  height: 100%;
  transition: all .4s;
  object-fit: cover;
  
}

.imagesbox .img .text {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: center;
  z-index: 2;
  width: 100%;
  line-height: 40px;
}

.imagesbox .img1, .imagesbox .img5, .imagesbox .img9 {
  height: 563px;
  clear:both;
}

.imagesbox  {
  justify-content: space-between;
}

.imagesbox .img2 {
  width: 49.5%;
  height: 495px;
  float:left;
}
.imagesbox .img6 {
  width: 32.7%;
 margin-rigt:0.3%;
 margin-left:0.5%;
  float:left;
}

.imagesbox .imgs {
  width: 49.5%;
  margin-left:1%;
   float:left;
   height: 243px;
}

.imagesbox .imgs .img3 {
  height: 243px;
}

.imagesbox .img-col3 {
  justify-content: space-between;
}

.imagesbox .img-col3 .img {
  width: 32.7%;
  height: 219px;
}

@media screen and (max-width: 1440px) {
  .imagesbox .img1, .imagesbox .img5, .imagesbox .img9 {
    height: 404px;
  }
  .imagesbox .img-col2 .img2 {
    height: 350px;
  }
  .imagesbox .img-col2 .imgs .img {
    height: 170px;
  }
  .imagesbox .img-col3 .img {
    height: 140px;
  }
}

@media screen and (max-width: 1024px) {
  .imagesbox {
    padding: 20px;
  }
  .imagesbox .img1, .imagesbox .img5, .imagesbox .img9 {
    height: 368px;
  }
  .imagesbox .img-col2 .img2 {
    height: 270px;
  }
  .imagesbox .img-col2 .imgs .img {
    height: 130px;
  }
  .imagesbox .img-col3 .img {
    height: 120px;
  }
}

@media screen and (max-width: 768px) {
  .imagesbox .img1, .imagesbox .img5, .imagesbox .img9 {
    height: 40vw;
  }
  .imagesbox .img-col2 .img2 {
    height: 40vw;
    width: 100%;
  }
  .imagesbox .img-col2 .imgs {
    width: 100%;
  }
  .imagesbox .img-col2 .imgs .img {
    height: 40vw;
  }
  .imagesbox .img-col3 .img {
    height: 40vw;
    width: 100%;
  }
}

/* 校历 */
.rilibox {
  padding: 30px;
  margin-bottom: 20px;
  background-color: #fff;
}

.rilibox .fc-toolbar.fc-header-toolbar {
  background-color: #D32027;
  height: 50px;
  color: #fff;
  position: relative;
  margin-bottom: 0;
}

.rilibox .fc-right {
  display: none;
}

.rilibox .fc-icon, .rilibox .fc-toolbar .fc-center {
  line-height: 50px;
  font-size: 18px;
}

.rilibox .fc-center h2 {
  font-weight: normal;
}

.rilibox .fc-head td {
  background-color: #f7f7f7;
  height: 40px;
  line-height: 40px;
}

.rilibox .fc-state-default {
  background: transparent;
  border: none;
}

.rilibox .fc-state-default:hover {
  background-color: #b70e15;
}

.rilibox .fc-event .fc-content {
  position: relative;
}

.rilibox .fc-state-default.fc-corner-left {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.rilibox .fc-state-default.fc-corner-left .fc-icon {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: static;
  margin: 0;
  line-height: 1;
}

.rilibox .fc-state-default.fc-corner-left .fc-icon:after {
  content: "\e776";
  font-size: 16px;
  top: 0;
}

.rilibox .fc-state-default.fc-corner-right {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.rilibox .fc-state-default.fc-corner-right .fc-icon {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: static;
  margin: 0;
  line-height: 1;
}

.rilibox .fc-state-default.fc-corner-right .fc-icon:after {
  content: "\e775";
  font-size: 16px;
  top: 0;
}

@media screen and (max-width: 1024px) {
  .rilibox {
    padding: 0;
  }
  .rilibox .fc-basic-view .fc-body .fc-row {
    max-height: 65px;
  }
  .fc-scroller {
    max-height: 390px;
  }
}

/* 英语样式 */
.Enbody header .langContact {
  margin-left: 2vw;
}

.Enbody header .hd-right nav li {
  margin: 0 1.8vw;
}

.Enbody header .hd-right .dropnav {
  width: auto;
  white-space: nowrap;
}

.Enbody .index-zhuiqiu .hd .lt {
  width: auto;
}

.Enbody .index-zhuiqiu .hd .lt p {
  width: auto;
}

.Enbody .index-zhuiqiu .bd li p span {
  display: block;
  font-size: 14px;
}

.Enbody .btn-more a {
  width: 120px;
  text-align: center;
}

.Enbody .index-liyou .liyou-lists .item .text p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 85px;
}

.Enbody .index-liyou .liyou-lists .item .sft {
  margin-top: 40px;
}

.Enbody footer .hd a {
  letter-spacing: 0;
}

@media screen and (max-width: 1700px) {
  .index-tixi .swiper-tixi .inner .info {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 1440px) {
  .Enbody .index-liyou .liyou-lists .item .text p {
    height: 80px;
  }
  .Enbody header .hd-right nav li {
    margin: 0 20px;
  }
  .Enbody header .langContact {
    margin-left: 1vw;
  }
}

@media screen and (max-width: 1024px) {
  .Enbody header .hd-right nav li {
    margin: 0 10px;
  }
  .Enbody header .langContact a {
    margin: 0 5px;
  }
}

@media screen and (max-width: 768px) {
  .Enbody .index-zhuiqiu .hd .lt {
    width: 100%;
  }
  .Enbody .index-zhuiqiu .hd .lt p {
    width: 100%;
  }
  .Enbody .index-liyou .liyou-lists .item .sft {
    margin-top: 20px;
  }
  .Enbody .index-zhuiqiu .bd li p span {
    font-size: 12px;
  }
  .crumb-bar .inner .bd-title h2 {
    display: none;
  }
  .inPages .menuLists {
    display: none;
  }
  .crumb-bar .inner .hd {
    margin-bottom: 0;
  }
  .sideMn {
    display: none;
  }
  .article-box {
    padding: 20px;
  }
  .article-box .title .other {
    flex-wrap: wrap;
  }
  .article-box .title .other span {
    width: 100%;
  }
  .article-box .title .other span:last-child {
    margin-left: 0;
    margin-top: 10px;
  }
  .article-box .pg-prev-next .prevnext a p {
    display: none;
  }
  .newsLists li .datetime {
    margin-right: 10px;
  }
  .newsLists li .info h2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: inherit;
    height: 48px;
  }
  .newsLists li .info {
    width: calc( 100% - 90px);
  }
  .index-pingjia .swiper-pingjia p {
    font-size: 14px;
  }
}

@media screen and (max-width: 450px) {
  .index-zhuiqiu .bd li {
    width: 50%;
  }
  .index-tixi .hd h2 {
    padding: 0 20px;
  }
  footer .hd a {
    width: calc(50% - 20px);
    padding: 3px 0;
    margin: 10px;
    border-radius: 5px;
    color: #000;
  }
  footer .hd .logo {
    display: none;
  }
  footer .hd a:first-child {
    background-color: #fff;
  }
  footer .hd a:nth-child(2) {
    background-color: #fff;
  }
  footer .hd a:nth-child(4) {
    background-color: #fff;
  }
  footer .hd a:nth-child(5) {
    background-color: #fff;
  }
  footer .bd .share a:first-child {
    margin-left: 0;
  }
}



@media only screen and (min-width:768px) {
	.el-col-sm-0 {
		display: none;
		width: 0
	}

	.el-col-sm-offset-0 {
		margin-left: 0
	}

	.el-col-sm-pull-0 {
		position: relative;
		right: 0
	}

	.el-col-sm-push-0 {
		position: relative;
		left: 0
	}

	.el-col-sm-1 {
		width: 4.16667%
	}

	.el-col-sm-offset-1 {
		margin-left: 4.16667%
	}

	.el-col-sm-pull-1 {
		position: relative;
		right: 4.16667%
	}

	.el-col-sm-push-1 {
		position: relative;
		left: 4.16667%
	}

	.el-col-sm-2 {
		width: 8.33333%
	}

	.el-col-sm-offset-2 {
		margin-left: 8.33333%
	}

	.el-col-sm-pull-2 {
		position: relative;
		right: 8.33333%
	}

	.el-col-sm-push-2 {
		position: relative;
		left: 8.33333%
	}

	.el-col-sm-3 {
		width: 12.5%
	}

	.el-col-sm-offset-3 {
		margin-left: 12.5%
	}

	.el-col-sm-pull-3 {
		position: relative;
		right: 12.5%
	}

	.el-col-sm-push-3 {
		position: relative;
		left: 12.5%
	}

	.el-col-sm-4 {
		width: 16.66667%
	}

	.el-col-sm-offset-4 {
		margin-left: 16.66667%
	}

	.el-col-sm-pull-4 {
		position: relative;
		right: 16.66667%
	}

	.el-col-sm-push-4 {
		position: relative;
		left: 16.66667%
	}

	.el-col-sm-5 {
		width: 20.83333%
	}

	.el-col-sm-offset-5 {
		margin-left: 20.83333%
	}

	.el-col-sm-pull-5 {
		position: relative;
		right: 20.83333%
	}

	.el-col-sm-push-5 {
		position: relative;
		left: 20.83333%
	}

	.el-col-sm-6 {
		width: 25%
	}

	.el-col-sm-offset-6 {
		margin-left: 25%
	}

	.el-col-sm-pull-6 {
		position: relative;
		right: 25%
	}

	.el-col-sm-push-6 {
		position: relative;
		left: 25%
	}

	.el-col-sm-7 {
		width: 29.16667%
	}

	.el-col-sm-offset-7 {
		margin-left: 29.16667%
	}

	.el-col-sm-pull-7 {
		position: relative;
		right: 29.16667%
	}

	.el-col-sm-push-7 {
		position: relative;
		left: 29.16667%
	}

	.el-col-sm-8 {
		width: 33.33333%
	}

	.el-col-sm-offset-8 {
		margin-left: 33.33333%
	}

	.el-col-sm-pull-8 {
		position: relative;
		right: 33.33333%
	}

	.el-col-sm-push-8 {
		position: relative;
		left: 33.33333%
	}

	.el-col-sm-9 {
		width: 37.5%
	}

	.el-col-sm-offset-9 {
		margin-left: 37.5%
	}

	.el-col-sm-pull-9 {
		position: relative;
		right: 37.5%
	}

	.el-col-sm-push-9 {
		position: relative;
		left: 37.5%
	}

	.el-col-sm-10 {
		width: 41.66667%
	}

	.el-col-sm-offset-10 {
		margin-left: 41.66667%
	}

	.el-col-sm-pull-10 {
		position: relative;
		right: 41.66667%
	}

	.el-col-sm-push-10 {
		position: relative;
		left: 41.66667%
	}

	.el-col-sm-11 {
		width: 45.83333%
	}

	.el-col-sm-offset-11 {
		margin-left: 45.83333%
	}

	.el-col-sm-pull-11 {
		position: relative;
		right: 45.83333%
	}

	.el-col-sm-push-11 {
		position: relative;
		left: 45.83333%
	}

	.el-col-sm-12 {
		width: 50%
	}

	.el-col-sm-offset-12 {
		margin-left: 50%
	}

	.el-col-sm-pull-12 {
		position: relative;
		right: 50%
	}

	.el-col-sm-push-12 {
		position: relative;
		left: 50%
	}

	.el-col-sm-13 {
		width: 54.16667%
	}

	.el-col-sm-offset-13 {
		margin-left: 54.16667%
	}

	.el-col-sm-pull-13 {
		position: relative;
		right: 54.16667%
	}

	.el-col-sm-push-13 {
		position: relative;
		left: 54.16667%
	}

	.el-col-sm-14 {
		width: 58.33333%
	}

	.el-col-sm-offset-14 {
		margin-left: 58.33333%
	}

	.el-col-sm-pull-14 {
		position: relative;
		right: 58.33333%
	}

	.el-col-sm-push-14 {
		position: relative;
		left: 58.33333%
	}

	.el-col-sm-15 {
		width: 62.5%
	}

	.el-col-sm-offset-15 {
		margin-left: 62.5%
	}

	.el-col-sm-pull-15 {
		position: relative;
		right: 62.5%
	}

	.el-col-sm-push-15 {
		position: relative;
		left: 62.5%
	}

	.el-col-sm-16 {
		width: 66.66667%
	}

	.el-col-sm-offset-16 {
		margin-left: 66.66667%
	}

	.el-col-sm-pull-16 {
		position: relative;
		right: 66.66667%
	}

	.el-col-sm-push-16 {
		position: relative;
		left: 66.66667%
	}

	.el-col-sm-17 {
		width: 70.83333%
	}

	.el-col-sm-offset-17 {
		margin-left: 70.83333%
	}

	.el-col-sm-pull-17 {
		position: relative;
		right: 70.83333%
	}

	.el-col-sm-push-17 {
		position: relative;
		left: 70.83333%
	}

	.el-col-sm-18 {
		width: 75%
	}

	.el-col-sm-offset-18 {
		margin-left: 75%
	}

	.el-col-sm-pull-18 {
		position: relative;
		right: 75%
	}

	.el-col-sm-push-18 {
		position: relative;
		left: 75%
	}

	.el-col-sm-19 {
		width: 79.16667%
	}

	.el-col-sm-offset-19 {
		margin-left: 79.16667%
	}

	.el-col-sm-pull-19 {
		position: relative;
		right: 79.16667%
	}

	.el-col-sm-push-19 {
		position: relative;
		left: 79.16667%
	}

	.el-col-sm-20 {
		width: 83.33333%
	}

	.el-col-sm-offset-20 {
		margin-left: 83.33333%
	}

	.el-col-sm-pull-20 {
		position: relative;
		right: 83.33333%
	}

	.el-col-sm-push-20 {
		position: relative;
		left: 83.33333%
	}

	.el-col-sm-21 {
		width: 87.5%
	}

	.el-col-sm-offset-21 {
		margin-left: 87.5%
	}

	.el-col-sm-pull-21 {
		position: relative;
		right: 87.5%
	}

	.el-col-sm-push-21 {
		position: relative;
		left: 87.5%
	}

	.el-col-sm-22 {
		width: 91.66667%
	}

	.el-col-sm-offset-22 {
		margin-left: 91.66667%
	}

	.el-col-sm-pull-22 {
		position: relative;
		right: 91.66667%
	}

	.el-col-sm-push-22 {
		position: relative;
		left: 91.66667%
	}

	.el-col-sm-23 {
		width: 95.83333%
	}

	.el-col-sm-offset-23 {
		margin-left: 95.83333%
	}

	.el-col-sm-pull-23 {
		position: relative;
		right: 95.83333%
	}

	.el-col-sm-push-23 {
		position: relative;
		left: 95.83333%
	}

	.el-col-sm-24 {
		width: 100%
	}

	.el-col-sm-offset-24 {
		margin-left: 100%
	}

	.el-col-sm-pull-24 {
		position: relative;
		right: 100%
	}

	.el-col-sm-push-24 {
		position: relative;
		left: 100%
	}
}

@media only screen and (min-width:992px) {
	.el-col-md-0 {
		display: none;
		width: 0
	}

	.el-col-md-offset-0 {
		margin-left: 0
	}

	.el-col-md-pull-0 {
		position: relative;
		right: 0
	}

	.el-col-md-push-0 {
		position: relative;
		left: 0
	}

	.el-col-md-1 {
		width: 4.16667%
	}

	.el-col-md-offset-1 {
		margin-left: 4.16667%
	}

	.el-col-md-pull-1 {
		position: relative;
		right: 4.16667%
	}

	.el-col-md-push-1 {
		position: relative;
		left: 4.16667%
	}

	.el-col-md-2 {
		width: 8.33333%
	}

	.el-col-md-offset-2 {
		margin-left: 8.33333%
	}

	.el-col-md-pull-2 {
		position: relative;
		right: 8.33333%
	}

	.el-col-md-push-2 {
		position: relative;
		left: 8.33333%
	}

	.el-col-md-3 {
		width: 12.5%
	}

	.el-col-md-offset-3 {
		margin-left: 12.5%
	}

	.el-col-md-pull-3 {
		position: relative;
		right: 12.5%
	}

	.el-col-md-push-3 {
		position: relative;
		left: 12.5%
	}

	.el-col-md-4 {
		width: 16.66667%
	}

	.el-col-md-offset-4 {
		margin-left: 16.66667%
	}

	.el-col-md-pull-4 {
		position: relative;
		right: 16.66667%
	}

	.el-col-md-push-4 {
		position: relative;
		left: 16.66667%
	}

	.el-col-md-5 {
		width: 20.83333%
	}

	.el-col-md-offset-5 {
		margin-left: 20.83333%
	}

	.el-col-md-pull-5 {
		position: relative;
		right: 20.83333%
	}

	.el-col-md-push-5 {
		position: relative;
		left: 20.83333%
	}

	.el-col-md-6 {
		width: 25%
	}

	.el-col-md-offset-6 {
		margin-left: 25%
	}

	.el-col-md-pull-6 {
		position: relative;
		right: 25%
	}

	.el-col-md-push-6 {
		position: relative;
		left: 25%
	}

	.el-col-md-7 {
		width: 29.16667%
	}

	.el-col-md-offset-7 {
		margin-left: 29.16667%
	}

	.el-col-md-pull-7 {
		position: relative;
		right: 29.16667%
	}

	.el-col-md-push-7 {
		position: relative;
		left: 29.16667%
	}

	.el-col-md-8 {
		width: 33.33333%
	}

	.el-col-md-offset-8 {
		margin-left: 33.33333%
	}

	.el-col-md-pull-8 {
		position: relative;
		right: 33.33333%
	}

	.el-col-md-push-8 {
		position: relative;
		left: 33.33333%
	}

	.el-col-md-9 {
		width: 37.5%
	}

	.el-col-md-offset-9 {
		margin-left: 37.5%
	}

	.el-col-md-pull-9 {
		position: relative;
		right: 37.5%
	}

	.el-col-md-push-9 {
		position: relative;
		left: 37.5%
	}

	.el-col-md-10 {
		width: 41.66667%
	}

	.el-col-md-offset-10 {
		margin-left: 41.66667%
	}

	.el-col-md-pull-10 {
		position: relative;
		right: 41.66667%
	}

	.el-col-md-push-10 {
		position: relative;
		left: 41.66667%
	}

	.el-col-md-11 {
		width: 45.83333%
	}

	.el-col-md-offset-11 {
		margin-left: 45.83333%
	}

	.el-col-md-pull-11 {
		position: relative;
		right: 45.83333%
	}

	.el-col-md-push-11 {
		position: relative;
		left: 45.83333%
	}

	.el-col-md-12 {
		width: 50%
	}

	.el-col-md-offset-12 {
		margin-left: 50%
	}

	.el-col-md-pull-12 {
		position: relative;
		right: 50%
	}

	.el-col-md-push-12 {
		position: relative;
		left: 50%
	}

	.el-col-md-13 {
		width: 54.16667%
	}

	.el-col-md-offset-13 {
		margin-left: 54.16667%
	}

	.el-col-md-pull-13 {
		position: relative;
		right: 54.16667%
	}

	.el-col-md-push-13 {
		position: relative;
		left: 54.16667%
	}

	.el-col-md-14 {
		width: 58.33333%
	}

	.el-col-md-offset-14 {
		margin-left: 58.33333%
	}

	.el-col-md-pull-14 {
		position: relative;
		right: 58.33333%
	}

	.el-col-md-push-14 {
		position: relative;
		left: 58.33333%
	}

	.el-col-md-15 {
		width: 62.5%
	}

	.el-col-md-offset-15 {
		margin-left: 62.5%
	}

	.el-col-md-pull-15 {
		position: relative;
		right: 62.5%
	}

	.el-col-md-push-15 {
		position: relative;
		left: 62.5%
	}

	.el-col-md-16 {
		width: 66.66667%
	}

	.el-col-md-offset-16 {
		margin-left: 66.66667%
	}

	.el-col-md-pull-16 {
		position: relative;
		right: 66.66667%
	}

	.el-col-md-push-16 {
		position: relative;
		left: 66.66667%
	}

	.el-col-md-17 {
		width: 70.83333%
	}

	.el-col-md-offset-17 {
		margin-left: 70.83333%
	}

	.el-col-md-pull-17 {
		position: relative;
		right: 70.83333%
	}

	.el-col-md-push-17 {
		position: relative;
		left: 70.83333%
	}

	.el-col-md-18 {
		width: 75%
	}

	.el-col-md-offset-18 {
		margin-left: 75%
	}

	.el-col-md-pull-18 {
		position: relative;
		right: 75%
	}

	.el-col-md-push-18 {
		position: relative;
		left: 75%
	}

	.el-col-md-19 {
		width: 79.16667%
	}

	.el-col-md-offset-19 {
		margin-left: 79.16667%
	}

	.el-col-md-pull-19 {
		position: relative;
		right: 79.16667%
	}

	.el-col-md-push-19 {
		position: relative;
		left: 79.16667%
	}

	.el-col-md-20 {
		width: 83.33333%
	}

	.el-col-md-offset-20 {
		margin-left: 83.33333%
	}

	.el-col-md-pull-20 {
		position: relative;
		right: 83.33333%
	}

	.el-col-md-push-20 {
		position: relative;
		left: 83.33333%
	}

	.el-col-md-21 {
		width: 87.5%
	}

	.el-col-md-offset-21 {
		margin-left: 87.5%
	}

	.el-col-md-pull-21 {
		position: relative;
		right: 87.5%
	}

	.el-col-md-push-21 {
		position: relative;
		left: 87.5%
	}

	.el-col-md-22 {
		width: 91.66667%
	}

	.el-col-md-offset-22 {
		margin-left: 91.66667%
	}

	.el-col-md-pull-22 {
		position: relative;
		right: 91.66667%
	}

	.el-col-md-push-22 {
		position: relative;
		left: 91.66667%
	}

	.el-col-md-23 {
		width: 95.83333%
	}

	.el-col-md-offset-23 {
		margin-left: 95.83333%
	}

	.el-col-md-pull-23 {
		position: relative;
		right: 95.83333%
	}

	.el-col-md-push-23 {
		position: relative;
		left: 95.83333%
	}

	.el-col-md-24 {
		width: 100%
	}

	.el-col-md-offset-24 {
		margin-left: 100%
	}

	.el-col-md-pull-24 {
		position: relative;
		right: 100%
	}

	.el-col-md-push-24 {
		position: relative;
		left: 100%
	}
}

@media only screen and (min-width:1200px) {
	.el-col-lg-0 {
		display: none;
		width: 0
	}

	.el-col-lg-offset-0 {
		margin-left: 0
	}

	.el-col-lg-pull-0 {
		position: relative;
		right: 0
	}

	.el-col-lg-push-0 {
		position: relative;
		left: 0
	}

	.el-col-lg-1 {
		width: 4.16667%
	}

	.el-col-lg-offset-1 {
		margin-left: 4.16667%
	}

	.el-col-lg-pull-1 {
		position: relative;
		right: 4.16667%
	}

	.el-col-lg-push-1 {
		position: relative;
		left: 4.16667%
	}

	.el-col-lg-2 {
		width: 8.33333%
	}

	.el-col-lg-offset-2 {
		margin-left: 8.33333%
	}

	.el-col-lg-pull-2 {
		position: relative;
		right: 8.33333%
	}

	.el-col-lg-push-2 {
		position: relative;
		left: 8.33333%
	}

	.el-col-lg-3 {
		width: 12.5%
	}

	.el-col-lg-offset-3 {
		margin-left: 12.5%
	}

	.el-col-lg-pull-3 {
		position: relative;
		right: 12.5%
	}

	.el-col-lg-push-3 {
		position: relative;
		left: 12.5%
	}

	.el-col-lg-4 {
		width: 16.66667%
	}

	.el-col-lg-offset-4 {
		margin-left: 16.66667%
	}

	.el-col-lg-pull-4 {
		position: relative;
		right: 16.66667%
	}

	.el-col-lg-push-4 {
		position: relative;
		left: 16.66667%
	}

	.el-col-lg-5 {
		width: 20.83333%
	}

	.el-col-lg-offset-5 {
		margin-left: 20.83333%
	}

	.el-col-lg-pull-5 {
		position: relative;
		right: 20.83333%
	}

	.el-col-lg-push-5 {
		position: relative;
		left: 20.83333%
	}

	.el-col-lg-6 {
		width: 25%
	}

	.el-col-lg-offset-6 {
		margin-left: 25%
	}

	.el-col-lg-pull-6 {
		position: relative;
		right: 25%
	}

	.el-col-lg-push-6 {
		position: relative;
		left: 25%
	}

	.el-col-lg-7 {
		width: 29.16667%
	}

	.el-col-lg-offset-7 {
		margin-left: 29.16667%
	}

	.el-col-lg-pull-7 {
		position: relative;
		right: 29.16667%
	}

	.el-col-lg-push-7 {
		position: relative;
		left: 29.16667%
	}

	.el-col-lg-8 {
		width: 33.33333%;
		float: left;
	}

	.el-col-lg-offset-8 {
		margin-left: 33.33333%
	}

	.el-col-lg-pull-8 {
		position: relative;
		right: 33.33333%
	}

	.el-col-lg-push-8 {
		position: relative;
		left: 33.33333%
	}

	.el-col-lg-9 {
		width: 37.5%
	}

	.el-col-lg-offset-9 {
		margin-left: 37.5%
	}

	.el-col-lg-pull-9 {
		position: relative;
		right: 37.5%
	}

	.el-col-lg-push-9 {
		position: relative;
		left: 37.5%
	}

	.el-col-lg-10 {
		width: 41.66667%
	}

	.el-col-lg-offset-10 {
		margin-left: 41.66667%
	}

	.el-col-lg-pull-10 {
		position: relative;
		right: 41.66667%
	}

	.el-col-lg-push-10 {
		position: relative;
		left: 41.66667%
	}

	.el-col-lg-11 {
		width: 45.83333%
	}

	.el-col-lg-offset-11 {
		margin-left: 45.83333%
	}

	.el-col-lg-pull-11 {
		position: relative;
		right: 45.83333%
	}

	.el-col-lg-push-11 {
		position: relative;
		left: 45.83333%
	}

	.el-col-lg-12 {
		width: 32%
	}
.el-col-lg-121 {
		width: 32%
	}
	.el-col-lg-offset-12 {
		margin-left: 50%
	}

	.el-col-lg-pull-12 {
		position: relative;
		right: 50%
	}

	.el-col-lg-push-12 {
		position: relative;
		left: 50%
	}

	.el-col-lg-13 {
		width: 54.16667%
	}

	.el-col-lg-offset-13 {
		margin-left: 54.16667%
	}

	.el-col-lg-pull-13 {
		position: relative;
		right: 54.16667%
	}

	.el-col-lg-push-13 {
		position: relative;
		left: 54.16667%
	}

	.el-col-lg-14 {
		width: 58.33333%
	}

	.el-col-lg-offset-14 {
		margin-left: 58.33333%
	}

	.el-col-lg-pull-14 {
		position: relative;
		right: 58.33333%
	}

	.el-col-lg-push-14 {
		position: relative;
		left: 58.33333%
	}

	.el-col-lg-15 {
		width: 62.5%
	}

	.el-col-lg-offset-15 {
		margin-left: 62.5%
	}

	.el-col-lg-pull-15 {
		position: relative;
		right: 62.5%
	}

	.el-col-lg-push-15 {
		position: relative;
		left: 62.5%
	}

	.el-col-lg-16 {
		width: 66.66667%
	}

	.el-col-lg-offset-16 {
		margin-left: 66.66667%
	}

	.el-col-lg-pull-16 {
		position: relative;
		right: 66.66667%
	}

	.el-col-lg-push-16 {
		position: relative;
		left: 66.66667%
	}

	.el-col-lg-17 {
		width: 70.83333%
	}

	.el-col-lg-offset-17 {
		margin-left: 70.83333%
	}

	.el-col-lg-pull-17 {
		position: relative;
		right: 70.83333%
	}

	.el-col-lg-push-17 {
		position: relative;
		left: 70.83333%
	}

	.el-col-lg-18 {
		width: 75%
	}

	.el-col-lg-offset-18 {
		margin-left: 75%
	}

	.el-col-lg-pull-18 {
		position: relative;
		right: 75%
	}

	.el-col-lg-push-18 {
		position: relative;
		left: 75%
	}

	.el-col-lg-19 {
		width: 79.16667%
	}

	.el-col-lg-offset-19 {
		margin-left: 79.16667%
	}

	.el-col-lg-pull-19 {
		position: relative;
		right: 79.16667%
	}

	.el-col-lg-push-19 {
		position: relative;
		left: 79.16667%
	}

	.el-col-lg-20 {
		width: 83.33333%
	}

	.el-col-lg-offset-20 {
		margin-left: 83.33333%
	}

	.el-col-lg-pull-20 {
		position: relative;
		right: 83.33333%
	}

	.el-col-lg-push-20 {
		position: relative;
		left: 83.33333%
	}

	.el-col-lg-21 {
		width: 87.5%
	}

	.el-col-lg-offset-21 {
		margin-left: 87.5%
	}

	.el-col-lg-pull-21 {
		position: relative;
		right: 87.5%
	}

	.el-col-lg-push-21 {
		position: relative;
		left: 87.5%
	}

	.el-col-lg-22 {
		width: 91.66667%
	}

	.el-col-lg-offset-22 {
		margin-left: 91.66667%
	}

	.el-col-lg-pull-22 {
		position: relative;
		right: 91.66667%
	}

	.el-col-lg-push-22 {
		position: relative;
		left: 91.66667%
	}

	.el-col-lg-23 {
		width: 95.83333%
	}

	.el-col-lg-offset-23 {
		margin-left: 95.83333%
	}

	.el-col-lg-pull-23 {
		position: relative;
		right: 95.83333%
	}

	.el-col-lg-push-23 {
		position: relative;
		left: 95.83333%
	}

	.el-col-lg-24 {
		width: 100%
	}

	.el-col-lg-offset-24 {
		margin-left: 100%
	}

	.el-col-lg-pull-24 {
		position: relative;
		right: 100%
	}

	.el-col-lg-push-24 {
		position: relative;
		left: 100%
	}
}

@media only screen and (min-width:1920px) {
	.el-col-xl-0 {
		display: none;
		width: 0
	}

	.el-col-xl-offset-0 {
		margin-left: 0
	}

	.el-col-xl-pull-0 {
		position: relative;
		right: 0
	}

	.el-col-xl-push-0 {
		position: relative;
		left: 0
	}

	.el-col-xl-1 {
		width: 4.16667%
	}

	.el-col-xl-offset-1 {
		margin-left: 4.16667%
	}

	.el-col-xl-pull-1 {
		position: relative;
		right: 4.16667%
	}

	.el-col-xl-push-1 {
		position: relative;
		left: 4.16667%
	}

	.el-col-xl-2 {
		width: 8.33333%
	}

	.el-col-xl-offset-2 {
		margin-left: 8.33333%
	}

	.el-col-xl-pull-2 {
		position: relative;
		right: 8.33333%
	}

	.el-col-xl-push-2 {
		position: relative;
		left: 8.33333%
	}

	.el-col-xl-3 {
		width: 12.5%
	}

	.el-col-xl-offset-3 {
		margin-left: 12.5%
	}

	.el-col-xl-pull-3 {
		position: relative;
		right: 12.5%
	}

	.el-col-xl-push-3 {
		position: relative;
		left: 12.5%
	}

	.el-col-xl-4 {
		width: 16.66667%
	}

	.el-col-xl-offset-4 {
		margin-left: 16.66667%
	}

	.el-col-xl-pull-4 {
		position: relative;
		right: 16.66667%
	}

	.el-col-xl-push-4 {
		position: relative;
		left: 16.66667%
	}

	.el-col-xl-5 {
		width: 20.83333%
	}

	.el-col-xl-offset-5 {
		margin-left: 20.83333%
	}

	.el-col-xl-pull-5 {
		position: relative;
		right: 20.83333%
	}

	.el-col-xl-push-5 {
		position: relative;
		left: 20.83333%
	}

	.el-col-xl-6 {
		width: 25%
	}

	.el-col-xl-offset-6 {
		margin-left: 25%
	}

	.el-col-xl-pull-6 {
		position: relative;
		right: 25%
	}

	.el-col-xl-push-6 {
		position: relative;
		left: 25%
	}

	.el-col-xl-7 {
		width: 29.16667%
	}

	.el-col-xl-offset-7 {
		margin-left: 29.16667%
	}

	.el-col-xl-pull-7 {
		position: relative;
		right: 29.16667%
	}

	.el-col-xl-push-7 {
		position: relative;
		left: 29.16667%
	}

	.el-col-xl-8 {
		width: 33.33333%
	}

	.el-col-xl-offset-8 {
		margin-left: 33.33333%
	}

	.el-col-xl-pull-8 {
		position: relative;
		right: 33.33333%
	}

	.el-col-xl-push-8 {
		position: relative;
		left: 33.33333%
	}

	.el-col-xl-9 {
		width: 37.5%
	}

	.el-col-xl-offset-9 {
		margin-left: 37.5%
	}

	.el-col-xl-pull-9 {
		position: relative;
		right: 37.5%
	}

	.el-col-xl-push-9 {
		position: relative;
		left: 37.5%
	}

	.el-col-xl-10 {
		width: 41.66667%
	}

	.el-col-xl-offset-10 {
		margin-left: 41.66667%
	}

	.el-col-xl-pull-10 {
		position: relative;
		right: 41.66667%
	}

	.el-col-xl-push-10 {
		position: relative;
		left: 41.66667%
	}

	.el-col-xl-11 {
		width: 45.83333%
	}

	.el-col-xl-offset-11 {
		margin-left: 45.83333%
	}

	.el-col-xl-pull-11 {
		position: relative;
		right: 45.83333%
	}

	.el-col-xl-push-11 {
		position: relative;
		left: 45.83333%
	}

	.el-col-xl-12 {
		width: 50%
	}

	.el-col-xl-offset-12 {
		margin-left: 50%
	}

	.el-col-xl-pull-12 {
		position: relative;
		right: 50%
	}

	.el-col-xl-push-12 {
		position: relative;
		left: 50%
	}

	.el-col-xl-13 {
		width: 54.16667%
	}

	.el-col-xl-offset-13 {
		margin-left: 54.16667%
	}

	.el-col-xl-pull-13 {
		position: relative;
		right: 54.16667%
	}

	.el-col-xl-push-13 {
		position: relative;
		left: 54.16667%
	}

	.el-col-xl-14 {
		width: 58.33333%
	}

	.el-col-xl-offset-14 {
		margin-left: 58.33333%
	}

	.el-col-xl-pull-14 {
		position: relative;
		right: 58.33333%
	}

	.el-col-xl-push-14 {
		position: relative;
		left: 58.33333%
	}

	.el-col-xl-15 {
		width: 62.5%
	}

	.el-col-xl-offset-15 {
		margin-left: 62.5%
	}

	.el-col-xl-pull-15 {
		position: relative;
		right: 62.5%
	}

	.el-col-xl-push-15 {
		position: relative;
		left: 62.5%
	}

	.el-col-xl-16 {
		width: 66.66667%
	}

	.el-col-xl-offset-16 {
		margin-left: 66.66667%
	}

	.el-col-xl-pull-16 {
		position: relative;
		right: 66.66667%
	}

	.el-col-xl-push-16 {
		position: relative;
		left: 66.66667%
	}

	.el-col-xl-17 {
		width: 70.83333%
	}

	.el-col-xl-offset-17 {
		margin-left: 70.83333%
	}

	.el-col-xl-pull-17 {
		position: relative;
		right: 70.83333%
	}

	.el-col-xl-push-17 {
		position: relative;
		left: 70.83333%
	}

	.el-col-xl-18 {
		width: 75%
	}

	.el-col-xl-offset-18 {
		margin-left: 75%
	}

	.el-col-xl-pull-18 {
		position: relative;
		right: 75%
	}

	.el-col-xl-push-18 {
		position: relative;
		left: 75%
	}

	.el-col-xl-19 {
		width: 79.16667%
	}

	.el-col-xl-offset-19 {
		margin-left: 79.16667%
	}

	.el-col-xl-pull-19 {
		position: relative;
		right: 79.16667%
	}

	.el-col-xl-push-19 {
		position: relative;
		left: 79.16667%
	}

	.el-col-xl-20 {
		width: 83.33333%
	}

	.el-col-xl-offset-20 {
		margin-left: 83.33333%
	}

	.el-col-xl-pull-20 {
		position: relative;
		right: 83.33333%
	}

	.el-col-xl-push-20 {
		position: relative;
		left: 83.33333%
	}

	.el-col-xl-21 {
		width: 87.5%
	}

	.el-col-xl-offset-21 {
		margin-left: 87.5%
	}

	.el-col-xl-pull-21 {
		position: relative;
		right: 87.5%
	}

	.el-col-xl-push-21 {
		position: relative;
		left: 87.5%
	}

	.el-col-xl-22 {
		width: 91.66667%
	}

	.el-col-xl-offset-22 {
		margin-left: 91.66667%
	}

	.el-col-xl-pull-22 {
		position: relative;
		right: 91.66667%
	}

	.el-col-xl-push-22 {
		position: relative;
		left: 91.66667%
	}

	.el-col-xl-23 {
		width: 95.83333%
	}

	.el-col-xl-offset-23 {
		margin-left: 95.83333%
	}

	.el-col-xl-pull-23 {
		position: relative;
		right: 95.83333%
	}

	.el-col-xl-push-23 {
		position: relative;
		left: 95.83333%
	}

	.el-col-xl-24 {
		width: 100%
	}

	.el-col-xl-offset-24 {
		margin-left: 100%
	}

	.el-col-xl-pull-24 {
		position: relative;
		right: 100%
	}

	.el-col-xl-push-24 {
		position: relative;
		left: 100%
	}
}

.el-row {
	position: relative;
	box-sizing: border-box
}

.el-row:after,
.el-row:before {
	display: table;
	content: ""
}

.el-row:after {
	clear: both
}

.el-row--flex {
	display: flex
}

.el-row--flex:after,
.el-row--flex:before {
	display: none
}

.el-row--flex.is-justify-center {
	justify-content: center
}

.el-row--flex.is-justify-end {
	justify-content: flex-end
}

.el-row--flex.is-justify-space-between {
	justify-content: space-between
}

.el-row--flex.is-justify-space-around {
	justify-content: space-around
}

.el-row--flex.is-align-middle {
	align-items: center
}

.el-row--flex.is-align-bottom {
	align-items: flex-end
}

/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
:root {
	--animate-duration: 1s;
	--animate-delay: 1s;
	--animate-repeat: 1
}

.animate__animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-duration: var(--animate-duration);
	animation-duration: var(--animate-duration);
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both
}

.animate__animated.animate__infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite
}

.animate__animated.animate__repeat-1 {
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-iteration-count: var(--animate-repeat);
	animation-iteration-count: var(--animate-repeat)
}

.animate__animated.animate__repeat-2 {
	-webkit-animation-iteration-count: 2;
	animation-iteration-count: 2;
	-webkit-animation-iteration-count: calc(var(--animate-repeat)*2);
	animation-iteration-count: calc(var(--animate-repeat)*2)
}

.animate__animated.animate__repeat-3 {
	-webkit-animation-iteration-count: 3;
	animation-iteration-count: 3;
	-webkit-animation-iteration-count: calc(var(--animate-repeat)*3);
	animation-iteration-count: calc(var(--animate-repeat)*3)
}

.animate__animated.animate__delay-1s {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	-webkit-animation-delay: var(--animate-delay);
	animation-delay: var(--animate-delay)
}

.animate__animated.animate__delay-2s {
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
	-webkit-animation-delay: calc(var(--animate-delay)*2);
	animation-delay: calc(var(--animate-delay)*2)
}

.animate__animated.animate__delay-3s {
	-webkit-animation-delay: 3s;
	animation-delay: 3s;
	-webkit-animation-delay: calc(var(--animate-delay)*3);
	animation-delay: calc(var(--animate-delay)*3)
}

.animate__animated.animate__delay-4s {
	-webkit-animation-delay: 4s;
	animation-delay: 4s;
	-webkit-animation-delay: calc(var(--animate-delay)*4);
	animation-delay: calc(var(--animate-delay)*4)
}

.animate__animated.animate__delay-5s {
	-webkit-animation-delay: 5s;
	animation-delay: 5s;
	-webkit-animation-delay: calc(var(--animate-delay)*5);
	animation-delay: calc(var(--animate-delay)*5)
}

.animate__animated.animate__faster {
	-webkit-animation-duration: .5s;
	animation-duration: .5s;
	-webkit-animation-duration: calc(var(--animate-duration)/2);
	animation-duration: calc(var(--animate-duration)/2)
}

.animate__animated.animate__fast {
	-webkit-animation-duration: .8s;
	animation-duration: .8s;
	-webkit-animation-duration: calc(var(--animate-duration)*0.8);
	animation-duration: calc(var(--animate-duration)*0.8)
}

.animate__animated.animate__slow {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-duration: calc(var(--animate-duration)*2);
	animation-duration: calc(var(--animate-duration)*2)
}

.animate__animated.animate__slower {
	-webkit-animation-duration: 3s;
	animation-duration: 3s;
	-webkit-animation-duration: calc(var(--animate-duration)*3);
	animation-duration: calc(var(--animate-duration)*3)
}
table{
border-collapse:collapse;}

.contactUs-bd {
  padding: 30px;
  background-color: #ecedef;
  margin-top: 20px;
}

.contactUs-bd .tt {
  margin-bottom: 20px;
}

.contactUs-bd .ct form {
  justify-content: space-between;
}

.contactUs-bd .ct form > div {
  min-height:50px;
}

.contactUs-bd .ct .select-item {
  width: 32.76119%;
  margin-right: 0.89552%;
  margin-bottom: 10px;
  background-color: #F7F7F7;
  position: relative;
}

.contactUs-bd .ct .select-item span {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 15px;
  cursor: pointer;
}

.contactUs-bd .ct .select-item span:after {
  content: "\e8c8";
  display: block;
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.contactUs-bd .ct .select-item ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #F7F7F7;
  display: none;
}

.contactUs-bd .ct .select-item ul li a {
  display: block;
  padding: 6px 15px;
  font-size: 16px;
}

.contactUs-bd .ct .select-item ul li a:hover {
  background-color: #307BC0;
  color: #fff;
}

.contactUs-bd .ct .ippt {
  width: 32.54438%;
  background-color: #F7F7F7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}

.contactUs-bd .ct .ippt input {
  background-color: transparent;
  width: 100%;
}

.contactUs-bd .ct .ippt2 {
  width: 26.11243%;
  background-color: #F7F7F7;
  display: flex;
  align-items: center;
  padding: 0 15px;
}

.contactUs-bd .ct .ippt2 b {
  font-size: 16px;
  color: #FF0000;
  margin-right: 15px;
}

.contactUs-bd .ct .ippt2 input {
  background-color: transparent;
  width: 100%;
}


.contactUs-bd .ct .ippt4 {
  width: 18%;
  background-color: #F7F7F7;
  display: flex;
  align-items: center;
  padding: 0 15px;
}

.contactUs-bd .ct .ippt4 b {
  font-size: 16px;
  color: #FF0000;
  margin-right: 15px;
}

.contactUs-bd .ct .ippt4 input {
  background-color: transparent;
  width: 100%;
}
.contactUs-bd .ct .ippt3 {
  width: 99%;
  background-color: #F7F7F7;
  display: flex;
  align-items: center;
  padding: 0 15px;
  margin-top: 20px;
}
.contactUs-bd .ct .ippt3 b {
  font-size: 16px;
  color: #FF0000;
  margin-right: 15px;
}
.contactUs-bd .ct .ippt3 textarea {
  background-color: transparent;
  width: 100%;
}
.contactUs-bd .ct .btn {
  width: 100%;
  margin-top: 10px;
}

.contactUs-bd .ct .btn button {
  width: 100%;
  height: 65px;
  background: #D32027;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: all .5s;
}

.contactUs-bd .ct .btn button:hover {
  opacity: .9;
}
@media screen and (max-width: 1024px) {
  
  .contactUs-bd .ct .select-item ul li a {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
 
  .contactUs-bd {
    padding: 20px;
  }
  .contactUs-bd .ct .btn button {
    height: 45px;
  }
  .scrumbs .subnav .swiper-slide {
    margin-left: 0;
  }
  .contactUs-hd .lt dl dt {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }
  .contactUs-bd .ct form > div {
    height: 40px;
  }
  .contactUs-bd .ct .select-item {
    width: 100%;
    margin-right: 0;
  }
  .contactUs-bd .ct .ippt {
    width: 100%;
  }
  .contactUs-bd .ct .ippt2 {
    width: 100%;
    margin-top: 10px;
    font-size: 12px;
  }
  .contactUs-bd .ct .ippt4 {
    width: 100%;
    margin-top: 10px;
  }
}