.head {
  padding-top: 80px;
  min-height: 880px;
  min-width: 1200px;
  margin: 0 auto;
  color: #000000;
  background-image: url(/assets/image/head-banner.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.head-box {
  display: flex;
  justify-content: space-between;
}

/* 内容公共样式 */
.content {
  min-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}
.content-box {
  display: flex;
}
.content-title-box {
  width: 583px;
  text-align: center;
  font-size: 48px;
  font-weight: 500;
  color: #ffdd44;
  line-height: 48px;
  margin: 0 auto 82px;
  position: relative;
}
.content-title-zh {
  font-size: 32px;
  font-weight: 600;
  color: #000000;
  line-height: 32px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 30%);
  z-index: 1;
}
.content-title-line {
  width: 70px;
  height: 4px;
  background: #ffdd44;
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
}

/* 公司简介 */
.company-profile-detail {
  position: relative;
}
.company-profile-lft {
  position: relative;
  height: 390px;
  width: 50%;
  background-color: #ffdd44;
}
.company-profile-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: -10px;
  left: 10px;
  background-image: url(/assets/image/company-profile.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.company-profile-rgt {
  width: 680px;
  height: 300px;
  background: #ffffff;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  position: absolute;
  top: calc(50% - 10px);
  right: 0;
  transform: translateY(-50%);
  padding: 40px 40px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  line-height: 20px;
  box-sizing: border-box;
}
.company-profile-rgt ul {
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.company-profile-rgt-btn {
  width: 80px;
  height: 32px;
  background: #ffdd44;
  border-radius: 4px;
  border: 1px solid #ffdd44;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 400;
  color: #000000;
  line-height: 12px;
}

/* 校区 */
.campus {
  background-image: url(/assets/image/campuses-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.swiper-box {
  height: 400px;
  position: relative;
}
#certify {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 40px;
}
#certify .swiper-slide {
  width: 400px;
  height: 400px;
  max-width: 400px;
  max-height: 400px;
  background-repeat: no-repeat;
  background-size: cover;
}
.swiper-container {
  max-width: 760px;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  transition: 300ms;
  transform: scale(0.8);
}
.swiper-slide-active,
.swiper-slide-duplicate-active {
  -webkit-transform: scale(1);
  transform: scale(1);
  z-index: 99;
  position: relative;
}
.swiper-slide-1 {
  background-image: url(/assets/image/swiper-1.png);
}
.swiper-slide-2 {
  background-image: url(/assets/image/swiper-2.png);
}
.swiper-slide-3 {
  background-image: url(/assets/image/swiper-3.png);
}
.swiper-slide .swiper-text {
  display: none;
}
.swiper-slide-active .swiper-text {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.6);
}

.swiper-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 24px;
}
.swiper-content {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  padding: 0 105px;
}
.input-box {
  padding: 0 150px;
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 25px;
  box-sizing: border-box;
  position: relative;
}
.input-line {
  position: absolute;
  width: calc(100% - 40px);
  height: 1px;
  top: 50%;
  left: 50%;
  z-index: 2;
  background-color: #000000;
  transform: translate(-50%, -50%);
}
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  margin: 0 auto;
  height: 50px;
  border-radius: 25px;
}
input[type="range" i]::-webkit-slider-thumb {
  position: relative;
  z-index: 3;
  /*::-webkit-slider-thumb是代表给滑块的样式进行变更*/
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; /*//这三个是去掉滑块原有的默认样式，划重点！！*/
  -webkit-box-shadow: 0 0 2px; /*设置滑块的阴影*/
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-image: url(/assets/image/center-btn.png) !important;
  background-size: cover; /*//这几个是设置滑块的样式*/
}

/* 优势 */
.advantage-box {
  display: flex;
  justify-content: space-between;
}
.advantage-item {
  padding: 40px;
  width: 380px;
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  box-sizing: border-box;
}
.advantage-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 40px;
  background-repeat: no-repeat;
  background-size: cover;
}
.advantage-item:nth-child(1) .advantage-icon {
  background-image: url(/assets/image/advantage-1.png);
}
.advantage-item:nth-child(2) .advantage-icon {
  background-image: url(/assets/image/advantage-2.png);
}
.advantage-item:nth-child(3) .advantage-icon {
  background-image: url(/assets/image/advantage-3.png);
}
.advantage-title {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 500;
  color: #f7b500;
  line-height: 24px;
}
.advantage-content {
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  line-height: 26px;
}

/* 12大维度 */
.dimensionality {
  background-color: #fffdf5;
}
.dimensionality-box {
  display: flex;
  flex-wrap: wrap;
}
.dimensionality-item {
  padding: 20px;
  width: 285px;
  min-height: 200px;
  background: #ffffff;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 20px;
  margin-bottom: 20px;
  box-sizing: border-box;
}
.dimensionality-item:nth-child(4n + 4) {
  margin-right: 0;
}
.dimensionality-icon {
  width: 64px;
  height: 64px;
  background-repeat: no-repeat;
  background-size: cover;
}
.dimensionality-item:nth-child(1) .dimensionality-icon {
  background-image: url(/assets/image/dimensionality-1.png);
}
.dimensionality-item:nth-child(2) .dimensionality-icon {
  background-image: url(/assets/image/dimensionality-2.png);
}
.dimensionality-item:nth-child(3) .dimensionality-icon {
  background-image: url(/assets/image/dimensionality-3.png);
}
.dimensionality-item:nth-child(4) .dimensionality-icon {
  background-image: url(/assets/image/dimensionality-4.png);
}
.dimensionality-item:nth-child(5) .dimensionality-icon {
  background-image: url(/assets/image/dimensionality-5.png);
}
.dimensionality-item:nth-child(6) .dimensionality-icon {
  background-image: url(/assets/image/dimensionality-6.png);
}
.dimensionality-item:nth-child(7) .dimensionality-icon {
  background-image: url(/assets/image/dimensionality-7.png);
}
.dimensionality-item:nth-child(8) .dimensionality-icon {
  background-image: url(/assets/image/dimensionality-8.png);
}
.dimensionality-item:nth-child(9) .dimensionality-icon {
  background-image: url(/assets/image/dimensionality-9.png);
}
.dimensionality-item:nth-child(10) .dimensionality-icon {
  background-image: url(/assets/image/dimensionality-10.png);
}
.dimensionality-item:nth-child(11) .dimensionality-icon {
  background-image: url(/assets/image/dimensionality-11.png);
}
.dimensionality-item:nth-child(12) .dimensionality-icon {
  background-image: url(/assets/image/dimensionality-12.png);
}

.dimensionality-title {
  font-size: 18px;
  font-weight: 500;
  color: #333333;
  line-height: 18px;
  padding: 20px 0;
}
.dimensionality-content {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: #999999;
  line-height: 28px;
}

/* 合作伙伴 */
.partner {
  position: relative;
  padding-bottom:0 ;
}
.partner-box {
  display: flex;
  flex-wrap: wrap;
}
.partner-item-box {
  width: 100%;
  display: flex;
  margin-bottom: 20px;
  justify-content: center;
}
.partner-item-box:nth-child(2) {
  transform: translateY(-50%);
}
.partner-item-box:nth-child(3) {
  transform: translateY(-100%);
}
.partner-item {
  width: 280px;
  height: 280px;
  margin-right: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-item:last-child {
  margin-right: 0;
}
.partner-item-img {
  transform: rotate(45deg);
  width: 198px;
  height: 198px;
  background: #ffffff;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
}
/* 底部 */
.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 154px;
  background-color: #333333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.footer-info span:nth-child(1) {
  margin-right: 16px;
}
.footer div {
  margin-bottom: 16px;
}
.footer a {
  text-decoration: none;
  color: #fff;
}
