/*
*这里的值严格按照UI设计图标注值来进行设置
*/
/*
*颜色
*/
/*
*页面的边距
*/
/*
*字体
*/
/*
*头像
*/
/*
 * 按钮
 */
/*
*对常见的多行样式进行了方法封装，方便调用，加快开发效率
*/
html,
body {
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  background-color: #fff;
  margin: 0;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  flex-direction: column;
  font-weight: initial !important;
  font-size: 14px !important;
  color: #333 !important;
}
html *,
body * {
  outline: none;
  text-decoration: none !important;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0;
  font-style: normal;
}
ul,
p {
  margin: 0;
  padding: 0;
}
.e {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}
.f {
  display: flex;
}
.f-c {
  display: flex;
  flex-direction: column;
}
.a-c {
  display: flex;
  align-items: center;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  font-weight: initial;
  font-size: 12px;
  color: #999;
  resize: none;
}
*::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
/*定义滚动条轨道 内阴影+圆角*/
*::-webkit-scrollbar-track {
  border-radius: 10px;
  /*滚动条的背景区域的圆角*/
  background-color: transparent;
  /*滚动条的背景颜色*/
}
/*定义滑块 内阴影+圆角*/
*::-webkit-scrollbar-thumb {
  border-radius: 10px;
  /*滚动条的圆角*/
  background-color: #ddd;
  /*滚动条的背景颜色*/
}
.h {
  cursor: pointer;
}
.h:hover {
  color: #DD1111;
  border-color: #DD1111;
}
input {
  -webkit-user-select: auto;
}
.base-banner {
  position: relative;
}
.base-banner img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: flex;
}
.base-banner div {
  position: absolute;
  top: 56px;
  width: 100%;
  left: 0;
  right: 0;
  width: 1200px;
  margin: 0 auto;
}
.base-banner div h1 {
  font-weight: 800;
  font-weight: initial;
  font-size: 34px;
  color: #fff;
  line-height: 28px;
}
.base-banner div em {
  margin: 21px 0 24px 0;
  display: block;
  width: 61px;
  height: 3px;
  background: #fff;
}
.base-banner div span {
  height: 14px;
  font-size: 14px;
  font-family: PingFang-SC-Medium;
  font-weight: 500;
  color: #ffffff;
  line-height: 14px;
}
.base-nav {
  width: 1200px;
  margin: 0 auto;
  padding: 22px 0;
  font-weight: initial;
  font-size: 14px;
  color: #999;
}
.base-nav a {
  color: #999;
  cursor: pointer;
}
.base-nav a:hover {
  color: #DD1111;
  border-color: #DD1111;
}
.base-nav .active {
  color: #DD1111;
}
.base-nav em {
  margin: 0 10px;
}
.base-content {
  width: 1200px;
  margin: 0 auto;
}
.base-content .menu {
  vertical-align: top;
  display: inline-block !important;
  width: 280px;
  min-width: 280px;
  border: 1px solid #e6e6e6;
}
.base-content .menu h2 {
  width: 100%;
  background: #DD1111;
  padding: 12px 16px;
  font-weight: bold;
  font-weight: initial;
  font-size: 16px;
  color: #fff;
}
.base-content .menu a {
  display: block !important;
  cursor: pointer;
  font-weight: initial;
  font-size: 14px;
  color: #666;
  font-weight: 400;
  margin: 0 26px;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}
.base-content .menu a:last-child {
  border-bottom: none;
}
.base-content .menu a:hover {
  color: #DD1111;
}
.base-content .menu a:hover i {
  color: #DD1111;
  width: auto;
}
.base-content .menu a i {
  width: 0;
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
  margin-right: 5px;
}
.base-content .menu .active {
  color: #DD1111;
}
.base-content .menu .active i {
  vertical-align: text-top;
  color: #DD1111;
  width: initial;
}
.base-page {
  width: 100%;
  display: block !important;
  margin-bottom: 40px;
  padding: 0 320px;
}
.base-page a {
  font-weight: initial;
  font-size: 14px;
  color: #999;
  margin: 0;
  padding: 10px;
  line-height: 1;
  border: 1px solid #ccc;
  cursor: pointer;
}
.base-page a:hover {
  background: #DD1111;
  color: #fff;
  border-color: #DD1111;
}
.base-page a:first-child {
  border-radius: 6px 0 0 6px;
}
.base-page a:last-child {
  border-right: 1px solid #ccc;
  border-radius: 0 6px 6px 0;
}
.fr {
  float: right !important;
}
.center {
  width: 1200px;
  margin: 0 auto;
}
.swiper-pagination {
  position: absolute;
  z-index: 20;
  bottom: 10px;
  width: 100%;
  text-align: center;
}
.swiper-pagination-switch {
  display: inline-block;
  width: 20px;
  height: 4px;
  background: #fff;
  opacity: 1;
  border-radius: 0px;
  cursor: pointer;
  margin: 0 5px;
}
.swiper-active-switch {
  background: #DD1111;
}
.d-h {
  cursor: pointer;
  transition: all 0.3s linear;
}
.d-h:hover {
  opacity: 0.9;
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}
.el-dropdown-menu__item:focus,
.el-dropdown-menu__item:not(.is-disabled):hover {
  background-color: #ffecec !important;
  color: #DD1111 !important;
}
@media screen and (max-width:1024px) {
  .base-banner img {
    height: 190px !important;
  }
  .base-banner div {
    width: 100% !important;
    top: 20px;
    left: 20px;
  }
  .base-banner div em {
    margin: 20px 0;
  }
  .base-nav {
    padding: 20px;
    width: 100% !important;
  }
  .base-content {
    width: 100% !important;
    flex-direction: column;
  }
  .base-content .menu {
    width: 100%;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }
  .base-content .menu a {
    height: 60px;
    line-height: 20px;
    display: inline-block !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    width: 25%;
    margin: 0;
    padding: 20px 5px;
    border: 1px solid #eee;
    border-bottom: 1px solid #eee !important;
    border-top: none;
    border-left: none;
    float: left;
    text-align: center;
  }
  .base-page {
    padding: 0 !important;
    text-align: center;
    display: inline-block;
  }
}
.ie8-ico {
  display: none !important;
}
.base-about {
  padding: 50px 0;
}
.base-about h1 {
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1;
}
.base-about > span {
  text-align: center;
  display: block;
  font-weight: initial;
  font-size: 16px;
  color: #999;
  margin-bottom: 40px;
}
.base-about .about-us {
  width: 1200px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.8;
}
.base-about .about-us img {
  max-width: 100%;
  object-fit: cover;
}
.base-about .book {
  width: 1200px;
  margin: 0 auto;
  display: block;
  margin: -30px auto;
}
.base-about .honor-list {
  width: 1200px;
  margin: 0 auto;
  width: 1150px;
}
.base-about .honor-list .swiper-wrapper {
  justify-content: center;
  align-items: flex-end;
  width: 100% !important;
}
.base-about .honor-list .swiper-wrapper .swiper-slide-1,
.base-about .honor-list .swiper-wrapper .swiper-slide-5 {
  width: 176px !important;
  height: 219px !important;
}
.base-about .honor-list .swiper-wrapper .swiper-slide-2,
.base-about .honor-list .swiper-wrapper .swiper-slide-4 {
  width: 215px !important;
  height: 277px !important;
}
.base-about .honor-list .swiper-wrapper .swiper-slide-3 {
  width: 260px !important;
  height: 335px !important;
}
.base-about .honor-list .swiper-wrapper .swiper-slide-5 {
  margin-right: 0 !important;
}
.base-about .honor-list .swiper-wrapper .swiper-slide {
  width: 215px !important;
  height: 160px !important;
  padding: 0 10px;
  cursor: pointer;
  transition: all 0.3s linear;
}
.base-about .honor-list .swiper-wrapper .swiper-slide:hover {
  opacity: 0.9;
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}
.base-about .honor-list img {
  width: 100%;
  height: 100%;
}
.base-about .culture-list {
  display: flex;
  flex-flow: row wrap;
  max-width: 1225px;
  margin: 0 auto;
  justify-content: space-around;
}
.base-about .culture-list > div {
  display: inline-block;
  width: 590px;
  background: #fff;
  margin: 10px;
  cursor: pointer;
  transition: all 0.3s linear;
}
.base-about .culture-list > div:hover {
  opacity: 0.9;
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}
.base-about .culture-list > div img {
  width: 290px;
  height: 290px;
  object-fit: cover;
  float: left;
}
.base-about .culture-list > div > div {
  float: right;
  width: 300px;
  height:250px;
  padding: 30px 20px;
}
.base-about .culture-list > div > div h3 {
/*   font-size: 24px;
  font-weight: 500; */
  line-height: 32px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.base-about .culture-list > div > div em {
  display: block;
  background: #DD1111;
  margin: 17px 0 17px 0;
  width: 96px;
  height: 3px;
}
.base-about .culture-list > div > div p {
  font-size: 16px;
  line-height: 25px;
  height: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
}
.base-about .course-list {
  position: relative;
  width: 1200px;
  margin: 0 auto;
}
.base-about .course-list .icon {
  line-height: 1;
}
.base-about .course-list .icon i {
  font-weight: initial;
  font-size: 24px;
  color: #DD1111;
}
.base-about .course-list .icon em {
  width: 1px;
  background: #DD1111;
  height: 100%;
}
.base-about .course-list .list {
  padding-left: 22px;
}
.base-about .course-list .list > div:first-child h3 em {
  display: none;
}
.base-about .course-list .list > div h3 {
  position: relative;
  margin-bottom: 5px;
  color: #373D41;
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
}
.base-about .course-list .list > div h3 em {
  position: absolute;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  border: 1px solid #DD1111;
  left: -41px;
  top: 10px;
  background: #fff;
}
.base-about .course-list .list > div ul {
  padding-left: 20px;
  padding-bottom: 15px;
}
.base-about .course-list .list > div ul li {
  width: calc(100% - 79px);
  line-height: 36px;
  color: #373D41;
  font-size: 16px;
  list-style: initial;
  list-style-image: url(../img/list.jpg);
}
.base-about .course-list .icon em {
  height: 90% !important;
  position: absolute;
  left: 12px;
  top: 23px;
}
.base-about .course-list .list {
  padding-left: 46px !important;
}
.base-about .course-list .tab {
  position: absolute;
  right: 0;
  top: 0;
}
.base-about .course-list .tab {
  margin-left: auto;
}
.base-about .course-list .tab li {
  color: #DD1111;
  font-size: 16px;
  height: 25px;
  line-height: 25px;
  margin-bottom: 5px;
  padding: 0 14px;
  cursor: pointer;
}
.base-about .course-list .tab .active {
  background: #DD1111;
  color: #fff;
}
.honor-div {
  background: url(../img/about-honor.jpg) 100% 100%;
}
.bg {
  background: #f2f2f2;
}
@media screen and (max-width:1024px) {
  .about {
    padding-top: 60px;
  }
  .base-about {
    padding: 40px 0;
  }
  .base-about h1 {
    font-size: 22px;
  }
  .base-about h3 {
    font-size: 22px;
  }
  .base-about .about-us {
    width: 100%;
    padding: 0 20px;
  }
  .base-about .about-us img {
    height: initial;
  }
  .base-about .book {
    width: 100%;
    margin: 0 auto;
  }
  .base-about .culture-list {
    padding: 20px;
    padding-top: 0;
    width: 100%;
  }
  .base-about .culture-list>div {
    margin: 10px 0;
    display: flex;
    height: initial;
  }
 
  .base-about .honor-list {
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
    height: 50vw !important;
  }
  .base-about .honor-list .swiper-wrapper {
    justify-content: flex-start;
    padding: 0 30px;
  }
  .base-about .honor-list .swiper-wrapper .swiper-slide {
    width: calc(100vw - 240px) !important;
    height: 43vw !important;
  }
  .base-about .honor-list .swiper-wrapper .swiper-slide-active {
    width: calc(100vw - 150px) !important;
    height: 50vw !important;
  }
  .base-about .course-list {
    width: 100%;
    padding: 0 10px;
    padding-top: 20px;
  }
  .base-about .course-list .icon em {
    left: 22px;
  }
  .base-about .course-list .list {
    padding-left: 5px;
  }
  .base-about .course-list .list > div h3 {
    margin: 0;
  }
  .base-about .course-list .list > div ul li {
    padding: 0 10px 10px 5px;
  }
  .base-about .course-list .tab {
    right: 10px;
    top: 20px;
  }
}
@media screen and (max-width:900px) {
.base-about .culture-list>div{
    flex-flow: row wrap;
    justify-content: space-around;
}
 .base-about .culture-list div img {
  	width:100%;
  	height:auto;
  	max-height: 250px;
  }
.base-about .culture-list > div > div {
	width: 100%;
	height:200px;
}  
}