@import 'reset.css';
@import 'component.css';

.theme-color {
  color: #032884;
  color: rgb(3, 40, 132);
  color: #118ccf;
}

.zx-bg-black-main-img {
  background-size: 100%;
}

.zx-bg-black-other-img {
  margin: 40px 0px;
}

.zx-page {
  width: 100%;
}

/* scroll */
.zx-scroll-hide::-webkit-scrollbar {
  display: none;
}

.zx-scroll-x {
  overflow-x: scroll;
  /* firefox 火狐滚动条透明隐藏 */
  scrollbar-color: transparent transparent;
  scrollbar-track-color: transparent;
  -ms-scrollbar-track-color: transparent;
}

/* 修改竖向滚动条样式 */
.zx-scroll-y {
  overflow-y: scroll;
  scrollbar-color: transparent transparent;
  scrollbar-track-color: transparent;
  -ms-scrollbar-track-color: transparent;
}

@media screen and (max-width: 768px) {

  .zx-scroll-x::-webkit-scrollbar,
  .zx-scroll-y::-webkit-scrollbar {
    display: none;
  }
}

/*滚动条整体样式 高宽分别对应横竖滚动条的尺寸*/
/* width 表示垂直滚动条的宽度, height 表示水平滚动条的高度*/
.zx-scroll-x::-webkit-scrollbar {
  width: 1px;
  height: 6px;
}

.zx-scroll-y::-webkit-scrollbar {
  width: 6px;
  height: 1px;
}

/*正常情况下滑块的样式*/
.zx-scroll-x::-webkit-scrollbar-thumb,
.zx-scroll-y::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 10px;
  background-color: rgba(200, 200, 200, 0.9);
  /* -webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, .1); */
}

/*鼠标悬浮在该类指向的控件上时滑块的样式*/
.zx-scroll-x:hover::-webkit-scrollbar-thumb,
.zx-scroll-y:hover::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgba(180, 180, 180, 0.9);
}

/*鼠标悬浮在滑块上时滑块的样式*/
.zx-scroll-x::-webkit-scrollbar-thumb:hover,
.zx-scroll-y::-webkit-scrollbar-thumb:hover {
  background-color: rgb(153, 153, 153);
  -webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.1);
}

/*滚动条里面轨道*/
.zx-scroll-x::-webkit-scrollbar-track,
.zx-scroll-y::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #020000;
}

.zx-bg-grey {
  /* background: rgba(0, 0, 0, 0.02); */
}

.zx-bg-black {
  /* background: #020000; */
  /* background-color: #aaa; */
}

.zx-bg-light-grey {
  background: #2b2929;
}

.zx-form-padding {
  padding: 48px 0;
}

.zx-img-w100 {
  width: 100%;
}

.zx-section-title {
  width: 100%;
  margin: 0 auto;
  padding: 100px 0 48px;
  box-sizing: border-box;
  text-align: center;
  cursor: default;
  font-weight: 600;
}

.zx-section-title span {
  position: relative;
  display: block;
  font-size: 30px;
  color: #333;
  letter-spacing: 0.12px;
  text-align: center;
  line-height: 30px;
}

.zx-section-title i {
  display: inline-block;
  vertical-align: top;
  width: 48px;
  height: 4px;
  margin-top: 24px;
  background: rgb(3, 40, 132);
}

/* 搜索栏 */
.search-section {
  padding: 32px 0;
}

.search-box {
  position: relative;
  width: 100%;
  font-size: 0;
  padding: 16px 16px;
  box-sizing: border-box;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 3px 19px 0px rgba(0, 0, 0, 0.2);
  border: 1px solid #dedede;
  z-index: 99;
  text-align: center;
}

.search-result-background {
  display: none;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.search-result-box {
  position: absolute;
  top: 100px;
  left: 15%;
  width: 70%;
  height: 80%;
  padding: 80px 40px 40px 50px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 3px 19px 0px rgba(0, 0, 0, 0.2);
  z-index: 10000;
}

.search-result-box-title {
  position: absolute;
  top: 20px;
  left: 40px;
  display: block;
  font-size: 26px;
  font-weight: 600;
}

.search-result-box-close {
  position: absolute;
  top: 30px;
  right: 30px;
  display: block;
  width: 20px;
  height: 20px;
  background-image: url('../../portal/images/ic_close.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.search-result-box-close:hover {
  background-image: url('../../portal/images/ic_close_1.png');
}

.search-label {
  display: inline-block;
  vertical-align: middle;
  font-size: 20px;
  color: #333;
  line-height: 1.5;
}

.search-bar {
  display: inline-block;
  vertical-align: middle;
  width: 60%;
  min-width: 280px;
}

.search-input {
  display: block;
  width: 100%;
  font-size: 16px;
  color: #666;
  padding: 12px 16px;
  box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.search-action {
  display: inline-block;
  vertical-align: middle;
}

.search-action #btn-search {
  width: 160px;
  height: 48px;
  line-height: 48px;
  font-size: 16px;
  color: #fff;
  border-radius: 8px;
  background: rgb(3, 40, 132);
  margin-left: 24px;
  outline: none;
}

.search-result-other-info {
  height: 0%;
  font-size: 18px;
  border: 1px solid #f6f6f6;
  border-radius: 10px;
  padding: 14px 20px;
  margin-bottom: 20px;
  /* box-shadow: 0px 5px 10px 2px #ccc; */
  text-align: center;
}

.other-info-list {
  display: inline-block;
  width: 30%;
}

.search-result-list {
  text-align: left;
  overflow-y: scroll;
  height: 100%;
  list-style: none;
}

.search-result-list .search-result-item {
  position: relative;
  width: 100%;
  font-size: 0;
  margin: 0;
}

.search-result-list .search-result-date {
  display: inline-block;
  vertical-align: top;
  width: 10%;
  padding-bottom: 16px;
  font-size: 16px;
  color: #666;
  font-weight: 500;
}

.search-result-list .search-result-icon {
  position: absolute;
  top: 6%;
  left: 10%;
  display: block;
  width: 10%;
  height: 100%;
  padding-bottom: 16px;
}

.search-result-list .search-result-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  display: block;
  width: 1px;
  height: 100%;
  background: #d8d8d8;
}

.search-result-list .search-result-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  display: block;
  width: 20px;
  height: 20px;
  background-image: url('../../portal/images/ic_up.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-color: #fff;
}

.search-result-list .search-result-item:nth-last-child(1) .search-result-icon::before {
  display: none;
}

.search-result-list .search-result-text {
  display: inline-block;
  vertical-align: top;
  width: 80%;
  margin-left: 10%;
  padding-bottom: 16px;
  font-size: 16px;
  color: #666;
  font-weight: 500;
}

.search-result-list .search-result-item-ok .search-result-date,
.search-result-list .search-result-item-ok .search-result-text {
  color: #032884;
}

.search-result-list .search-result-item-ok .search-result-icon::after {
  content: '';
  background-image: url('../../portal/images/ic_ok.png');
  background-color: #fff;
}

.zx-tutor-section-title {
  width: 100%;
  margin-bottom: 16px;
}

.zx-tutor-section-title>p {
  font-size: 24px;
  font-weight: 500;
  color: #000;
  line-height: 32px;
}

.zx-tutor-section-descr {
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
  margin-bottom: 60px;
  text-align: justify;
}

.zx-tutor-section-descr>span {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 24px;
}

.zx-home-teacher-wrap {
  position: relative;
  width: 100%;
}

#zx-teacher-belt {
  position: absolute;
  top: 15%;
  left: 0;
  z-index: 0;
  width: 100%;
  padding-top: 16%;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-transform: skewY(-6deg);
  -moz-transform: skewY(-6deg);
  -o-transform: skewY(-6deg);
  -ms-transform: skewY(-6deg);
  transform: skewY(-6deg);
}

#zx-teacher-belt .zx-teacher-belt-pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 0;
  -webkit-transform: skewY(6deg);
  -moz-transform: skewY(6deg);
  -o-transform: skewY(6deg);
  -ms-transform: skewY(6deg);
  transform: skewY(6deg);
}

.zx-teacher-belt-pic>img {
  display: inline-block;
  vertical-align: middle;
  width: 12%;
  object-fit: contain;
  margin-top: -0.6%;
  opacity: 0.4;
}

.zx-home-teacher-cell {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  font-size: 0;
  padding: 0 10px;
  box-sizing: border-box;
}

.zx-home-teacher-cell-left {
  display: inline-block;
  vertical-align: top;
  width: 33.8%;
  margin-right: 30%;
}

.zx-home-teacher-cell-left .zx-teacher-photo {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 122%;
  overflow: hidden;
  background-color: #4d4d4d;
}

.zx-home-teacher-cell-left .zx-teacher-photo>img {
  position: absolute;
  top: 6%;
  left: 50%;
  display: block;
  width: 70%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.zx-home-teacher-cell-right {
  display: inline-block;
  vertical-align: top;
  width: 35%;
}

.zx-teacher-info {
  position: relative;
  /* margin-top: 16%; */
  margin-top: 18%;
  margin-bottom: 10%;
}

.zx-teacher-title {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  line-height: 32px;
  margin-bottom: 20px;
}

.zx-teacher-subtitle {
  font-size: 0;
}

.zx-teacher-subtitle span {
  display: inline-block;
  vertical-align: middle;
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  line-height: 32px;
}

.zx-teacher-subtitle>.zx-teacher-brackets:nth-child(1) {
  vertical-align: top;
  font-size: 16px;
  padding-right: 4px;
}

.zx-teacher-subtitle>.zx-teacher-brackets:nth-last-child(1) {
  vertical-align: bottom;
  font-size: 16px;
  padding-left: 4px;
}

.zx-teacher-info-li {
  position: relative;
  padding-left: 24px;
  box-sizing: border-box;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: 28px;
  margin-bottom: 16px;
}

.zx-teacher-info-li::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  background: #118ccf;
  border-radius: 50%;
}

.zx-teacher-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #118ccf;
  margin-right: 8px;
}

.zx-home-teacher-indicators {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
}

#zx-teacher-indicators {
  width: 100%;
  font-size: 0;
  margin-top: 60px;
  position: relative;
}

.zx-teacher-indicator {
  display: inline-block;
  vertical-align: top;
  width: 120px;
  margin-right: calc((100% - 720px) / 5);
}

#zx-teacher-indicators>.zx-teacher-indicator:nth-last-child(1) {
  margin-right: 0;
}

.zx-teacher-indicator .zx-teacher-indicator-pic {
  position: relative;
  width: 100%;
  padding-top: 125%;
  cursor: pointer;
  overflow: hidden;
  background-color: #2c2827;
}

.zx-teacher-indicator:hover .zx-teacher-indicator-pic {
  background-color: #989898;
}

.zx-teacher-indicator:hover .zx-teacher-indicator-pic::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #118ccf;
}

.zx-teacher-indicator .zx-teacher-indicator-pic>img {
  position: absolute;
  top: 6%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  display: block;
  width: 90%;
}

.zx-school-left {
  padding: 20px 24px;
  padding-right: 40px;
  /* background: rgba(204, 34, 28, 0.68); */
}

.zx-school-video {
  width: 100%;
  height: 100%;
  /* margin-left: 20px; */
  outline: none;
  object-fit: contain;
  overflow: hidden;
}

.zx-school-title {
  font-size: 24px;
  font-weight: 400;
  color: #333333;
  line-height: 32px;
  margin-bottom: 16px;
}

.zx-title-pc {
  display: block;
}

.zx-title-mobile {
  display: none;
}

.zx-school-content {
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  line-height: 32px;
  margin-bottom: 48px;
  text-align: justify;
  margin-bottom: 10px;
}

.zx-school-content-more {
  padding-top: 12px;
}

.zx-btn-more {
  width: 100px;
  height: 44px;
  cursor: pointer;
  background: url('../../portal/images/more-normal.png') no-repeat;
  background-size: 100% 100%;
}

.zx-btn-more:hover {
  opacity: 0.8;
}

/* .zx-btn-more:hover {
  display: inline-block;
  background: #118ccf;
  text-align: center;
  cursor: pointer;
  color: #ffffff;
  line-height: 56px;
  text-decoration: none;
  background: url('../../portal/images/../images/icon/more-hover.png') no-repeat;
  background-size: 100% 100%;
} */
/* .zx-btn-more:hover a {
  color: #ffffff;
} */
/* .zx-btn-more-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: top;
  background: url('../../portal/images/../images/icon/more-grey.png') no-repeat;
  background-size: 100% 100%;
  margin-top: 20px;
  margin-left: 2px;
} */
/* .zx-btn-more:hover .zx-btn-more-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: top;
  background: url('../../portal/images/../images/icon/more.png') no-repeat;
  background-size: 100% 100%;
  margin-top: 20px;
  margin-left: 2px;
} */

.zx-contact-item {
  display: inline-block;
  vertical-align: top;
  width: 228px;
  height: 300px;
  background: #2b2929;
  padding: 40px;
}

.zx-contact-item-img {
  position: relative;
  background: #ffffff;
  cursor: pointer;
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border: 1px solid #e6e6e6;
}

.zx-contact-img {
  padding: 8px;
  width: 100%;
}

.zx-contact-item-title {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  line-height: 26px;
  margin-top: 16px;
  margin-bottom: 8px;
}

.zx-contact-item-text {
  font-size: 14px;
  font-weight: 400;
  color: #cccccc;
  line-height: 22px;
  white-space: nowrap;
  text-align: center;
}

.zx-course-container {
  padding: 120px 0px 40px 0px;
}

.zx-course-item {
  background: #fff;
  cursor: pointer;
  position: relative;
  margin-bottom: 12px;
}

.zx-course-item img {
  border-radius: 0;
  height: 200px;
  width: 100%;
  object-fit: fill;
}

.zx-course-item-info {
  width: 100%;
  min-height: 156px;
  padding: 24px;
  box-sizing: border-box;
}

.zx-course-item-text {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 10px;
  color: #333;
}

.zx-course-item:hover .zx-course-item-text {
  color: #118ccf;
}

.zx-course-item-intro {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  color: #666;
  line-height: 24px;
  text-align: justify;
}

.zx-home-about-descr {
  padding: 20px 24px;
  box-sizing: border-box;
}

.zx-home-search-card {
  font-size: 20px;
  padding: 74px 60px 60px 60px;
  line-height: 40px;
  text-align: justify;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin-top: 80px;
  position: relative;
}

.search-card-icon {
  position: absolute;
  top: -10px;
  left: -16px;
  width: 220px;
  height: 70px;
  background: #032884;
  padding: 0px 10px;
}

.search-card-icon::after {
  position: absolute;
  bottom: -16px;
  left: -16px;
  content: '';
  width: 0;
  height: 0;
  border-right: 16px solid #032884;
  border-left: 16px solid transparent;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
}

.home-descr-pic img {
  display: block;
  width: 100%;
}

.zx-home-course-row {
  width: 100%;
  font-size: 0;
  margin-bottom: 60px;
}

.zx-home-course-row .zx-home-course-row-part {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  box-sizing: border-box;
  text-align: right;
  font-size: 0;
}

.zx-home-course-row>.zx-home-course-row-part:nth-child(1) {
  padding-right: 0.75%;
  text-align: right;
}

.zx-home-course-row>.zx-home-course-row-part:nth-child(2) {
  padding-left: 0.75%;
  text-align: left;
}

.zx-home-course-row-part>a {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: 100%;
  font-size: 0;
}

.zx-home-course-row-part a img {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: 100%;
  max-width: 650px;
  object-fit: cover;
}

.zx-home-course-item {
  position: relative;
  display: inline-block;
  vertical-align: top;
  max-width: 370px;
  height: 100%;
  padding: 40px 24px;
  cursor: pointer;
  background: #2b2929;
}

.zx-home-course-item:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: #118ccf;
}

.zx-home-course-item-img {
  padding: 0;
  cursor: pointer;
}

.zx-home-course-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zx-home-course-item-text {
  color: #ffffff;
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  line-height: 28px;
  text-align: center;
  margin-bottom: 24px;
}

.zx-home-course-item-intro {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 28px;
  text-align: justify;
}

.zx-home-course-item:hover .zx-home-course-item-intro {
  color: rgba(255, 255, 255, 1);
}

.zx-class-point {
  background-image: url('../../portal/images/https://www.xygj1012.com/images/background-img/point.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 100px 0px;
}

.zx-class-point-item {
  width: 20%;
  padding: 0px 20px;
}

.zx-class-point-icon img {
  width: 40px;
  margin-bottom: 24px;
}

.zx-class-point-title {
  font-size: 18px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.85);
  line-height: 26px;
  margin-bottom: 8px !important;
}

.zx-class-point-text {
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.65);
  line-height: 22px;
  width: 90%;
  margin: 0 auto;
}

/* 课程亮点 start */
.zx-home-course-point-list {
  position: relative;
  width: 100%;
  font-size: 0;
}

.zx-home-course-point-list .zx-home-course-point {
  display: inline-block;
  vertical-align: top;
  width: 20%;
  min-height: 360px;
  box-sizing: border-box;
  cursor: default;
}

.zx-home-course-point-list>.zx-home-course-point:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.zx-home-course-point-list>.zx-home-course-point:nth-child(2) {
  position: absolute;
  top: 0;
  left: 20%;
  height: 100%;
}

.zx-home-course-point-list>.zx-home-course-point:nth-child(3) {
  position: absolute;
  top: 0;
  left: 40%;
  height: 100%;
}

.zx-home-course-point-list>.zx-home-course-point:nth-child(4) {
  /* position: absolute;
  top: 0;
  left: 60%; */
  margin-left: 60%;
}

.zx-home-course-point-list>.zx-home-course-point:nth-child(5) {
  position: absolute;
  top: 0;
  left: 80%;
  height: 100%;
}

.zx-home-course-point-list>.zx-home-course-point:nth-of-type(2n) .zx-home-course-point-num {
  position: absolute;
  bottom: 0;
  left: 0;
}

.zx-home-course-point-list>.zx-home-course-point:nth-of-type(2n + 1) .zx-home-course-point-pic {
  position: absolute;
  bottom: 0;
  left: 0;
}

.zx-home-course-point-list>.zx-home-course-point:nth-child(4) .zx-home-course-point-num {
  position: relative;
  bottom: auto;
  left: auto;
}

.zx-home-course-point-list>.zx-home-course-point:nth-child(5) .zx-home-course-point-pic,
.zx-home-course-point-list>.zx-home-course-point:nth-child(5) .zx-home-course-point-cover,
.zx-home-course-point-list>.zx-home-course-point:nth-child(5) .zx-home-course-point-num {
  padding-right: 0 !important;
}

.zx-home-course-point:hover .zx-home-course-point-num::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 100%;
  height: 4px;
  background: #118ccf;
}

.zx-home-course-point-pic {
  display: block;
  width: 100%;
  padding-right: 4px;
  box-sizing: border-box;
}

.zx-home-course-point-pic img {
  display: block;
  width: 100%;
}

.zx-home-course-point-num {
  position: relative;
  width: 100%;
  height: 160px;
  padding-right: 4px;
  box-sizing: border-box;
  line-height: 160px;
  text-align: center;
  overflow: hidden;
}

.zx-home-course-point-num span {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 88px;
  color: rgba(255, 255, 255, 0.5);
  background: #2b2929;
}

.zx-home-course-point-info {
  position: relative;
  width: 100%;
  padding-right: 4px;
  box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  /* background-color: #ccc; */
}

.zx-home-course-point-descr {
  opacity: 0;
  /* opacity: 0.5; */
  width: 100%;
  padding: 16px 24px;
  box-sizing: border-box;
}

.zx-home-course-point-descr p {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: #ffffff;
  padding: 0;
  margin: 0 0 8px 0;
}

.zx-home-course-point-descr span {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 28px;
}

.zx-home-course-point-cover {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding-right: 4px;
  box-sizing: border-box;
  text-align: center;
}

.zx-home-course-point-cover p {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 0;
  margin: 0;
  /* background-color: #aaa; */
}

.zx-home-course-point-cover img {
  display: block;
  width: 40px;
  margin: 0 auto 16px auto;
}

.zx-home-course-point-cover span {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  line-height: 28px;
}

.zx-home-course-point:hover .zx-home-course-point-cover {
  display: none;
}

.zx-home-course-point:hover .zx-home-course-point-descr {
  opacity: 1;
}

/* 课程亮点 end */
.zx-parent-read {
  background-image: url('../../portal/images/https://www.xygj1012.com/images/background-img/info.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 100px 0px;
}

.zx-school-env-list {
  width: 100%;
  font-size: 0;
}

.zx-school-env-item {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  font-size: 0;
  /* min-height: 200px; */
}

.zx-school-env-col {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 50%;
  height: 100%;
  padding: 0 2px;
  box-sizing: border-box;
}

.zx-school-env-item .zx-img-scale2 {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.zx-school-env-item .zx-img-scale2 img {
  /* position: relative;
  top: 0;
  left: 0; */
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: default;
  -webkit-transition: -webkit-transform 1s;
  -moz-transition: -moz-transform 1s;
  -o-transition: -o-transform 1s;
  transition: transform 1s;
}

.zx-school-env-item .zx-img-scale2:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.zx-school-env-list>.zx-school-env-item:nth-child(1) {
  position: relative;
}

.zx-school-env-item .zx-school-env-1,
.zx-school-env-item .zx-school-env-7 {
  height: 100%;
}

.zx-school-env-item .zx-school-env-2 {
  height: 50%;
  padding-bottom: 2px;
  box-sizing: border-box;
}

.zx-school-env-item .zx-school-env-3 {
  height: 50%;
  padding-top: 2px;
  box-sizing: border-box;
}

.zx-school-env-item .zx-school-env-4 {
  height: 25%;
  padding-bottom: 2px;
  box-sizing: border-box;
}

.zx-school-env-item .zx-school-env-5 {
  height: 25%;
  padding-top: 2px;
  padding-bottom: 2px;
  box-sizing: border-box;
}

.zx-school-env-item .zx-school-env-6 {
  height: 50%;
  padding-top: 2px;
  box-sizing: border-box;
}

.zx-home-news {
  width: 100%;
  font-size: 0;
  overflow: hidden;
}

.zx-home-news-menu {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  min-height: 640px;
  padding-right: 44px;
  box-sizing: border-box;
  /* background-color: #aaa; */
}

.zx-home-news-menu .zx-home-news-head {
  height: 48px;
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  line-height: 48px;
  border-bottom: 1px solid #fff;
}

.zx-home-news-list .zx-home-news-item {
  position: relative;
  display: block;
  padding-left: 80px;
  box-sizing: border-box;
  margin: 24px 0 32px 0;
}

.zx-home-news-list .zx-home-news-item:hover .zx-home-news-item-info>p {
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
  color: #118ccf;
}

.zx-home-news-list .zx-home-news-item .zx-home-news-item-date {
  position: absolute;
  top: 0;
  left: 0;
  /* padding-top: 28px; */
  text-align: center;
}

.zx-home-news-item .zx-home-news-item-date p {
  font-size: 24px;
  font-weight: 400;
  color: #333;
  line-height: 34px;
  margin: 0 0 8px 0;
}

.zx-home-news-item .zx-home-news-item-date span {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 22px;
}

.zx-home-news-item .zx-home-news-item-info>p {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  line-height: 28px;
  margin: 0 0 8px 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  cursor: default;
}

.zx-home-news-item .zx-home-news-item-info>span {
  font-size: 16px;
  font-weight: 400;
  color: #666;
  line-height: 24px;
  margin-bottom: 16px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  white-space: normal !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 8px;
}

.zx-home-news-item .zx-home-news-item-info em {
  display: block;
  height: 20px;
  line-height: 20px;
  font-size: 0;
  font-style: normal;
}

.zx-home-news-item .zx-home-news-item-info em>i {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  background-image: url('../../portal/images/eye.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.zx-home-news-item .zx-home-news-item-info em>span {
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
  font-weight: 400;
  padding-left: 8px;
  color: #cccccc;
}

.zx-home-news-gallery {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  font-size: 0;
  margin-top: 88px;
  box-sizing: border-box;
}

.zx-home-news-gallery>a {
  display: inline-block;
  vertical-align: top;
  width: 48%;
  margin-right: 4%;
  margin-bottom: 56px;
  text-align: center;
  position: relative;
}

.zx-home-news-gallery>a:nth-of-type(2n) {
  margin-right: 0;
}

.zx-home-news-gallery>a>div {
  position: relative;
  margin-bottom: 16px;
}

.zx-home-news-gallery>a>div img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
}

.zx-home-news-gallery>a>span {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  display: inline-block;
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.zx-home-news-gallery a:hover>div::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: #118ccf;
}

.zx-news-item {
  display: block;
  padding: 20px;
  margin: 20px 10px;
  border-radius: 8px;
  box-shadow: 0px 3px 19px 0px rgba(0, 0, 0, 0.2);
}

.zx-news-item .zx-news-item-cover {
  display: block;
  width: 100%;
  border-style: none;
  /* border-radius: 8px; */
  margin-bottom: 20px;
  height: 200px;
  object-fit: cover;
}

.zx-news-item .zx-news-item-title {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #333;
  line-height: 28px;
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: 8px;
}

.zx-news-item .zx-news-item-descr {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #666;
  line-height: 22px;
  height: 44px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
  white-space: normal !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 16px;
}

.zx-news-item .zx-news-item-record {
  position: relative;
  display: block;
  height: 16px;
  line-height: 16px;
}

.zx-news-item .zx-news-item-time {
  font-size: 12px;
  font-weight: 400;
  color: #999;
  line-height: 20px;
}

.zx-news-item .zx-news-item-preview {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  font-size: 0;
  height: 16px;
  line-height: 16px;
}

.zx-news-item .zx-news-item-preview>i {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  background-image: url('../../portal/images/eye.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.zx-news-item .zx-news-item-preview>span {
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
  font-weight: 400;
  padding-left: 7px;
  color: #cccccc;
  line-height: 20px;
}

.zx-news-more {
  text-align: center;
}

.zx-news-more a {
  display: inline-block;
  width: 160px;
  font-size: 16px;
  cursor: pointer;
  padding: 10px;
  background: darkblue;
  color: #fff;
  border-radius: 4px;
}

.zx-tutor-wrap {
  padding: 0 30px;
  box-sizing: border-box;
}

.row>.zx-tutor-wrap:nth-child(1) {
  padding-left: 10px;
}

.row>.zx-tutor-wrap:nth-child(2) {
  padding: 0 20px;
}

.row>.zx-tutor-wrap:nth-last-child(1) {
  padding-right: 10px;
}

#zx-address {
  width: 100%;
  height: 100%;
}

#zx-address canvas {
  /* border-radius: 8px; */
  overflow: hidden;
}

/* logo */
#zx-address>div:nth-of-type(1)>div:nth-of-type(2)>div:nth-of-type(1) {
  margin-bottom: 14px;
  margin-left: 2px;
}

/* steering */
#zx-address>div:nth-of-type(1)>div:nth-of-type(2)>div:nth-of-type(2) {
  margin-top: -12px;
  margin-right: -10px;
}

/* copyright */
#zx-address>div:nth-of-type(1)>div:nth-of-type(2)>div:nth-of-type(1)>div:nth-of-type(2)>div:nth-of-type(1) {
  margin-bottom: -4px;
  margin-left: 4px;
}

.zx-address-text {
  font-size: 18px;
  font-weight: 400;
  color: #999;
  line-height: 32px;
  margin: 24px auto;
}

.zx-more-button-mid {
  width: 100%;
  text-align: center;
  margin-top: 48px;
}

.zx-more-button-mid a {
  display: inline-block;
}

.zx-contact-way .zx-contact-way-item {
  width: 25%;
  text-align: center;
  padding: 0 10px;
}

/* 课程更多 start */
.zx-course-more-text {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 24px;
  padding: 72px;
  text-align: center;
}

.zx-class-more-banner .zx-class-more-banner-item {
  padding: 0px;
  position: relative;
}

.zx-class-more-banner .zx-class-more-banner-item::after {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
}

.zx-class-more-banner .zx-class-more-banner-item:hover::after {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  position: absolute;
  top: 0;
  left: 0;
}

.zx-class-more-banner .zx-class-more-banner-item:hover .zx-banner-text {
  opacity: 0;
}

.zx-class-more-banner .zx-class-more-banner-item .zx-banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 36px;
  font-weight: 500;
  color: #ffffff;
  line-height: 44px;
  z-index: 10;
}

.zx-class-more-banner .zx-class-more-banner-item:hover .zx-banner-img {
  opacity: 0;
}

.zx-class-more-banner .zx-class-more-banner-item .zx-banner-img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  font-weight: 500;
  color: #ffffff;
  z-index: 1;
}

.zx-class-more-banner .zx-class-more-banner-item img {
  width: 100%;
}

/* 课程更多 end */
/* 课程详情 start */
.zx-class-detail-title {
  font-size: 24px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.85);
  line-height: 32px;
  text-align: center;
  margin-bottom: 16px;
}

.zx-class-detail-text {
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.65);
  text-align: center;
  line-height: 24px;
}

.zx-class-detail-left-text {
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.65);
  line-height: 32px;
  margin-left: 150px;
}

/* 课程详情 end */

/* 上移动画 start */
@keyframes scrolltop {
  0% {
    left: 0px;
    top: 0px;
  }

  100% {
    left: 0px;
    top: -16px;
  }
}

@-webkit-keyframes scrolltop

/* Safari and Chrome */
  {
  0% {
    left: 0px;
    top: 0px;
  }

  100% {
    left: 0px;
    top: -16px;
  }
}

/* 上移动画 end */

/* 背景图片 start */
/* 背景图片 end */

/* 具体响应式 pc端*/
@media screen and (min-width: 1024px) {
  .zx-mobile-show-inline {
    display: none;
  }

  .zx-pc-show-inline {
    display: inline-block;
  }

  .zx-pc-show {
    display: block;
  }

  .zx-mobile-show {
    display: none;
  }

  .zx-mobile-opacity-show {
    opacity: 0;
  }
}

@media screen and (max-width: 1200px) {
  .search-bar {
    width: 60%;
  }

  .zx-course-item .zx-course-item-info {
    min-height: 182px;
  }

  .zx-home-news-gallery>a>span {
    font-size: 18px;
  }

  .zx-home-about-descr {
    padding: 16px 20px;
  }

  .zx-school-title {
    font-size: 22px;
    font-weight: 600;
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .zx-school-content {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .zx-school-content-more {
    padding-top: 10px;
  }

  .zx-section-title-bg {
    padding: 80px 0 40px 0;
  }

  .zx-btn-more {
    width: 96px;
    height: 42px;
  }

  .zx-home-course-point-descr {
    padding: 12px 18px;
  }

  .zx-home-course-point-descr p,
  .zx-home-course-point-cover span {
    font-size: 18px;
    line-height: 26px;
  }

  .zx-home-course-point-descr span {
    font-size: 14px;
    line-height: 24px;
  }

  .zx-company-item-info .zx-company-img img,
  .zx-school-item-info .zx-school-img img {
    width: 44%;
    left: 27.4%;
  }
}

@media screen and (max-width: 1024px) {
  .row {
    margin: 0px;
  }

  .row .col-md-6 {
    padding: 0px;
  }

  .zx-more-button-mid {
    width: 100%;
    text-align: center;
    margin-top: 12px;
  }

  .zx-more-button-mid a {
    display: inline-block;
  }

  /* 首页移动端适配 start */
  .zx-pc-show {
    display: none;
  }

  .zx-mobile-show {
    display: block;
  }

  .zx-mobile-show-inline {
    display: inline-block;
  }

  .zx-pc-show-inline {
    display: none;
  }

  .zx-mobile-opacity-show {
    opacity: 1;
  }

  .col-md-4 {
    padding: 0px;
  }

  .zx-section-title-bg {
    /* padding: 20px 0; */
    padding: 30px 0 20px 0;
    box-sizing: border-box;
  }

  .zx-section-title-bg img {
    display: block;
    width: 265px;
  }

  .zx-school-left {
    padding: 0px 16px;
  }

  .zx-school-title {
    font-size: 16px;
    text-align: left;
    font-weight: 400;
    color: #333;
    margin-bottom: 12px;
  }

  .zx-title-pc {
    display: none;
  }

  .zx-title-mobile {
    display: block;
  }

  .zx-school-content {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #666;
    line-height: 20px;
  }

  .zx-school-video {
    width: 100%;
    padding: 0px 0px;
    outline: none;
    margin-top: 10px;
  }

  .zx-contact-item {
    width: 100% !important;
    height: auto;
    min-height: 210px;
    background: #2b2929;
    padding: 20px 30px !important;
    margin-bottom: 20px;
  }

  .zx-contact-item-img {
    background: #ffffff;
    cursor: pointer;
    position: relative;
    width: 100%;
    height: auto;
    margin: 0 auto;
    border: 1px solid #e6e6e6;
  }

  .zx-contact-img {
    padding: 4px;
    width: 100%;
  }

  .zx-contact-item-title {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    line-height: 26px;
    margin-top: 16px;
    margin-bottom: 8px;
  }

  .zx-contact-item-text {
    font-size: 14px;
    font-weight: 400;
    color: #cccccc;
    line-height: 22px;
    word-break: break-all;
  }

  .zx-mobile-learn-more {
    text-align: center;
    margin-bottom: 20px;
    font-size: 13px;
    color: #999;
  }

  .zx-course-container {
    padding: 30px 0px 10px 0px;
  }

  .zx-course-item {
    margin: 0 12px 24px 12px;
  }

  .zx-course-item .zx-course-item-info {
    min-height: 180px;
    padding: 12px 10px;
    box-sizing: border-box;
  }

  .zx-course-item-text {
    font-size: 16px;
    line-height: 22px;
  }

  .zx-course-item-intro {
    font-size: 14px;
    text-align: justify;
  }

  .zx-QA-question .zx-QA-text-red,
  .zx-QA-question .zx-QA-text-black,
  .zx-QA-answer .zx-QA-answer-title {
    font-size: 16px;
  }

  .zx-QA-answer .zx-QA-answer-content {
    padding: 0;
    font-size: 14px;
  }

  .zx-QA-answer:hover .zx-QA-answer-content {
    padding: 0;
    background: #020000;
  }

  .zx-news-item .zx-news-item-title {
    font-size: 16px;
  }

  .zx-news-item:hover .zx-news-item-title {
    color: #ffffff !important;
  }

  .zx-news-item .zx-news-item-descr {
    font-size: 14px;
  }

  .zx-btn-more {
    width: 90px;
    height: 30px;
    cursor: pointer;
    background: url('../../portal/images/more-mobile.png') no-repeat;
    background-size: 100% 100%;
  }

  .zx-home-point-list-mobile>.zx-home-point-mobile:nth-last-child(1) {
    margin-bottom: 0;
  }

  .zx-home-point-mobile {
    position: relative;
    width: 100%;
    min-height: 128px;
    padding: 10px 10px 10px 128px;
    box-sizing: border-box;
    background: #2b2929;
    margin-bottom: 12px;
    overflow: hidden;
  }

  .zx-home-point-mobile-num {
    position: absolute;
    top: 2px;
    left: 4px;
    color: #ffffff;
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    z-index: 4;
  }

  .zx-home-point-mobile::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0px;
    height: 0px;
    border-top: 15px solid #118ccf;
    border-left: 15px solid #118ccf;
    border-right: 15px solid transparent;
    border-bottom: 15px solid transparent;
  }

  .zx-home-point-mobile-pic {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 118px;
    height: 100%;
    object-fit: cover;
  }

  .zx-home-point-mobile-title {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 22px;
    margin-bottom: 8px;
  }

  .zx-home-point-mobile-text {
    font-size: 14px;
    font-weight: 400;
    color: #cccccc;
    line-height: 20px;
    text-align: justify;
  }

  .zx-home-teacher-mobile {
    font-size: 0;
    padding-bottom: 16px;
    box-sizing: border-box;
    margin-bottom: 16px;
    white-space: nowrap;
    overflow-x: scroll;
  }

  .zx-home-teacher-mobile>.zx-teacher-mobile-item:nth-last-child(1) {
    margin-right: 0;
  }

  .zx-teacher-mobile-item {
    display: inline-block;
    vertical-align: top;
    width: 80vw;
    max-width: 320px;
    margin-right: 12px;
    height: 442px;
    padding: 16px;
    box-sizing: border-box;
    background: #2b2929;
  }

  .zx-teacher-mobile-item .zx-teacher-mobile-photo {
    position: relative;
    width: 150px;
    height: 180px;
    padding-top: 14px;
    box-sizing: border-box;
    margin: 0 auto;
    background-color: #4d4d4d;
    overflow: hidden;
  }

  .zx-teacher-mobile-item .zx-teacher-mobile-photo>img {
    display: block;
    width: 114px;
    margin: 0 auto;
  }

  .zx-teacher-mobile-item .zx-teacher-mobile-title {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: #ffffff;
    line-height: 24px;
    white-space: normal;
    margin: 12px 0 6px 0;
  }

  .zx-teacher-mobile-item .zx-teacher-mobile-subtitle {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: #ffffff;
    line-height: 24px;
    white-space: normal;
    margin: 6px 0 12px 0;
  }

  .zx-teacher-mobile-item .zx-teacher-mobile-li {
    position: relative;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 20px;
    white-space: normal;
    margin-bottom: 8px;
    margin-left: 20px;
  }

  .zx-teacher-mobile-item .zx-teacher-mobile-li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: -14px;
    background: #118ccf;
  }

  .zx-home-news-mobile {
    font-size: 0;
    padding-bottom: 16px;
    box-sizing: border-box;
    /* margin-bottom: 16px; */
    white-space: nowrap;
    overflow-x: scroll;
  }

  .zx-home-news-mobile>.zx-home-news-mobile:nth-last-child(1) {
    margin-right: 0;
  }

  .zx-home-news-mobile .zx-news-mobile-item {
    display: inline-block;
    vertical-align: top;
    width: 80vw;
    max-width: 320px;
    padding: 10px;
    margin-right: 12px;
  }

  .zx-school-item-text,
  .zx-company-item-text {
    margin-top: 14%;
    font-size: 16px;
    line-height: 22px;
  }

  /* 首页移动端适配 end */

  /* 其他页面 start */

  .zx-advantage-list .zx-advantage-item {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 263px !important;
    padding: 0;
    height: auto;
    background-color: #2b2929;
    margin-right: 0 !important;
    margin-bottom: 12px !important;
  }

  .zx-advantage-item:hover .zx-advantage-title {
    color: #fff;
  }

  .zx-advantage-item-right {
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
  }

  .zx-advantage-item-right .zx-advantage-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    line-height: 24px;
    text-align: center;
    margin-bottom: 10px;
  }

  .zx-advantage-item-right .zx-advantage-text {
    font-size: 14px;
    font-weight: 400;
    color: #cccccc;
    line-height: 20px;
    text-align: left;
  }

  .zx-advantage-pic-list {
    width: 100%;
    font-size: 0;
    padding-bottom: 16px;
  }

  .zx-advantage-pic-list>.zx-advantage-pic {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 48.5%;
    padding-top: 60%;
    margin-right: 3%;
    margin-bottom: 10px;
  }

  .zx-advantage-pic-list>.zx-advantage-pic img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .zx-advantage-pic-list>.zx-advantage-pic:nth-of-type(2n) {
    margin-right: 0;
  }

  .zx-address-text {
    font-size: 14px;
  }

  .zx-contact-way .zx-contact-way-item,
  .zx-class-more-banner .zx-class-more-banner-item {
    width: 50%;
  }

  .zx-class-more-banner {
    width: 100%;
    margin: 0;
  }

  .zx-class-detail-title {
    font-size: 20px;
  }

  .zx-class-detail-left-text {
    font-size: 14px;
    margin-left: 0px;
  }

  .zx-news-page .site-section {
    /* padding: 24px 0; */
    padding: 30px 0;
  }

  .zx-news-page .zx-news-item {
    padding: 0px;
    margin-right: 24px;
    margin-bottom: 24px;
  }

  .zx-news-item .zx-news-item-cover {
    margin-bottom: 16px;
  }

  .zx-news-item .zx-news-item-descr {
    margin-bottom: 12px;
  }

  .zx-course-more-text {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 22px;
    padding: 24px 16px;
    text-align: center;
  }

  .zx-form-padding {
    padding: 24px 0;
  }

  /* 其他页面 end */

  /* 师资介绍  start*/
  .zx-tutor-section-descr {
    padding: 0;
    box-sizing: border-box;
    margin-top: 20px;
  }

  .zx-tutor-mobile-item {
    /* border-radius: 8px; */
    background: #2b2929;
    text-align: center;
    padding: 16px;
    margin-bottom: 16px;
  }

  .zx-tutor-mobile-item .zx-tutor-mobile-item-img-wrap {
    width: 50%;
    margin: 0 auto;
  }

  .zx-tutor-mobile-item .zx-tutor-mobile-item-img {
    position: relative;
    display: block;
    width: 100%;
    padding-top: 122%;
    overflow: hidden;
    background-color: #4d4d4d;
  }

  .zx-tutor-mobile-item .zx-tutor-mobile-item-img>img {
    position: absolute;
    top: 6%;
    left: 50%;
    display: block;
    width: 70%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }

  .zx-tutor-mobile-item .zx-tutor-mobile-item-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    line-height: 26px;
    margin-top: 14px;
  }

  .zx-tutor-mobile-item .zx-tutor-mobile-item-job {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 22px;
    margin-top: 8px;
  }

  .zx-tutor-mobile-item .zx-tutor-mobile-item-job p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 4px;
  }

  .zx-tutor-mobile-item .zx-tutor-mobile-item-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    line-height: 26px;
    margin-top: 14px;
  }

  .zx-tutor-mobile-item .zx-tutor-mobile-item-text {
    font-size: 14px;
    font-weight: 400;
    color: #cccccc;
    line-height: 22px;
    margin-top: 8px;
    text-align: justify;
  }

  .zx-tutor-section-descr {
    margin-bottom: 22px;
  }

  /* 师资介绍  end*/

  @keyframes scrolltop {
    0% {
      left: 0px;
      top: 0px;
    }

    100% {
      left: 0px;
      top: 0px;
    }
  }

  @-webkit-keyframes scrolltop

  /* Safari and Chrome */
    {
    0% {
      left: 0px;
      top: 0px;
    }

    100% {
      left: 0px;
      top: 0px;
    }
  }
}

/* 平板*/
@media screen and (max-width: 992px) {
  .search-label {
    font-size: 16px;
  }

  .search-bar {
    width: 55%;
    min-width: auto;
  }

  .zx-school-item-text,
  .zx-company-item-text {
    margin-top: 10%;
    font-size: 14px;
    line-height: 20px;
  }
}

/* 手机 */
@media screen and (max-width: 768px) {
  .zx-section-title span {
    font-size: 24px;
  }

  .search-bar {
    width: 50%;
  }

  .search-section {
    padding: 0;
  }

  .search-section .search-box {
    border-radius: 0;
    border: none;
    box-shadow: none;
  }

  .search-section .search-box .search-label,
  .search-section .search-box .search-bar,
  .search-section .search-box .search-action {
    width: 100%;
    margin-bottom: 16px;
  }

  .search-action #btn-search {
    width: 100%;
    margin-left: 0px;
  }

  .search-result-box {
    top: 50px;
    padding: 40px 20px;
  }

  .search-result-box-title {
    font-size: 20px;
    top: 14px;
    left: 20px;
  }

  .search-result-other-info {
    padding: 0px 10px;
    margin-top: 10px;
    overflow-y: scroll;
    border: 1px solid #ccc;
  }

  .search-result-box-close {
    top: 18px;
    right: 18px;
  }

  .other-info-list {
    width: 100%;
    text-align: left;
    font-size: 14px;
  }


  .search-result-list .search-result-icon {
    left: 0;
  }

  .search-result-list .search-result-date {
    width: 85%;
    margin-left: 15%;
  }

  .search-result-list .search-result-text {
    width: 85%;
    margin-left: 15%;
  }

  .zx-section-title {
    /* padding: 24px 0; */
    padding: 72px 0 48px 0;
  }

  .zx-news-page .zx-news-item {
    margin-right: 0;
    /* margin-bottom: 32px; */
    margin-bottom: 24px;
  }

  .zx-news-item .zx-news-item-cover {
    /* margin-bottom: 16px; */
    margin-bottom: 12px;
  }

  .zx-news-item .zx-news-item-descr {
    /* margin-bottom: 12px; */
    margin-bottom: 10px;
  }

  .zx-tutor-section-descr {
    margin-top: 0;
  }

  .zx-tutor-section-descr>span {
    font-size: 14px;
  }

  .zx-course-item .zx-course-item-info {
    min-height: 118px;
  }

  .zx-course-item {
    margin: 0 0 12px 0;
  }

  .zx-school-env-item {
    width: 100%;
    /* max-height: 228px; */
    height: 228px;
    margin-bottom: 4px;
  }

  .zx-school-env-item .zx-img-scale2:hover img {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }

  .zx-school-env-item .zx-school-env-col {
    /* min-height: 228px; */
  }

  .zx-school-env-item .zx-school-env-4 {
    height: 50%;
  }

  .zx-school-env-item .zx-school-env-5 {
    height: 50%;
    padding-bottom: 0;
  }

  .zx-school-env-item .zx-school-env-6 {
    position: absolute;
    left: 100%;
    top: 0;
    width: 100%;
    height: 50%;
    padding: 0 2px 2px 2px;
    box-sizing: border-box;
  }

  .zx-school-env-item .zx-school-env-7 {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 50%;
    padding: 2px 2px 0 2px;
    box-sizing: border-box;
  }

  .zx-school-item-text,
  .zx-company-item-text {
    margin-top: 16%;
    font-size: 14px;
    line-height: 18px;
  }
}

/** -------- enroll form start -------- **/
.zx-enroll-form {}

.zx-enroll-form .zx-enroll-form-title {
  font-size: 24px;
  /* font-weight: 600; */
  color: rgba(255, 255, 255, 0.85);
  line-height: 32px;
  text-align: center;
  margin-bottom: 40px;
}

.zx-enroll-form .zx-enroll-form-row {
  width: 100%;
  font-size: 0;
  /* padding: 0px 10%; */
}

.zx-enroll-form-item {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 22%;
  margin-right: 4%;
  font-size: 14px;
  margin-bottom: 40px;
  transition: width 0.2s;
}

.zx-enroll-form-notice {
  /* display: none; */
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  width: 100%;
  padding: 4px 26px;
  box-sizing: border-box;
  font-size: 14px;
  color: #118ccf;
  white-space: nowrap;
}

.zx-enroll-form-message {
  width: 74%;
}

.zx-enroll-form-submit,
.zx-enroll-form-courseId {
  margin-right: 0;
}

.zx-enroll-required::before {
  content: '*';
  position: absolute;
  top: 14px;
  left: 16px;
  display: block;
  font-size: 14px;
  color: #118ccf;
  z-index: 99;
}

.zx-enroll-form-row input,
.zx-enroll-form-row select {
  position: relative;
  width: 100%;
  height: 48px;
  color: #e5e5e5;
  font-size: 16px;
  padding: 12px 24px;
  box-sizing: border-box;
  outline: none;
  border-radius: 8px;
  background-color: #4d4d4d;
  border: 1px solid rgba(0, 0, 0, 0.15);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

input {
  -moz-appearance: textfield !important;
}

.zx-enroll-form-row select::-ms-expand {
  display: none;
}

.zx-enroll-form-select::after {
  content: '';
  position: absolute;
  top: 16px;
  right: 14px;
  display: block;
  width: 16px;
  height: 16px;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABKklEQVRYhe3UyytEYRjH8c+4FBYjG2KhXLKRZCspK0mxlWQtlBXJFtlNk+SycMkwf6fFeU/nFWnmzAyl812dTs/vct7e81BQUFDwlSvU8YKZNvitBb86dhsRjOM1CK4x0EL4FGrBq4K+RoWrstZHOcP7UQ0eNUw2a3AclVjJUeAg0q/n0CvjNhg8Y6wJ7VIUfopSngIwi/dgdIXeBjQjeAqaewzmDU/Z0vgt7sFFND/fajh04zwyXfhhdjua22lHeMowHoPxA4a+mZmLwi8lp9FWFqOAM58vVhl3sgs72u7wlL2oxEZ4V8JJ9H65U+Ekm6wiWy7TPq/aw06Gp0zI1utN9FzV2tpuinXZV9fxJjmNX6Mk2XBpgc3fDE8ZlPxu++j6iwIFBQX/gw95+DoRj58SmwAAAABJRU5ErkJggg==');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 99;
}

.zx-enroll-form-row input::-webkit-input-placeholder,
.zx-enroll-form-row textarea::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #e5e5e5;
}

.zx-enroll-form-row input:-moz-placeholder,
.zx-enroll-form-row textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #e5e5e5;
}

.zx-enroll-form-row input::-moz-placeholder,
.zx-enroll-form-row textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #e5e5e5;
}

.zx-enroll-form-row input:-ms-input-placeholder,
.zx-enroll-form-row textarea:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #e5e5e5;
}

.zx-enroll-form-row button {
  background: #118ccf;
  outline: none;
  width: 100%;
  text-align: center;
  border: none;
  color: #ffffff;
  height: 48px;
  line-height: 48px;
  border-radius: 8px;
  font-size: 16px;
}

.zx-enroll-form-row textarea {
  outline: none;
  width: 100%;
  margin-bottom: 40px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 10px 20px;
  resize: none;
  background-color: transparent;
}

.zx-enroll-form-dialog {
  background: #2b2929;
}

.zx-enroll-form-dialog .zx-enroll-form-submit {
  margin-bottom: 0;
}

@media screen and (max-width: 960px) {
  .zx-enroll-form .zx-enroll-form-title {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .zx-enroll-form .zx-enroll-form-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .zx-enroll-form .zx-enroll-form-submit {
    margin-bottom: 16px;
  }
}

/** -------- enroll form end -------- **/

/** -------- alert enroll start -------- **/
#maskEnroll {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.3);
}

#alertEnroll {
  position: fixed;
  display: block;
  background-color: #2b2929;
  border-radius: 8px;
  z-index: 1002;
}

#alertEnroll {
  /* scroll */
  /* overflow-y: scroll; */
  scrollbar-color: transparent transparent;
  scrollbar-track-color: transparent;
  -ms-scrollbar-track-color: transparent;
}

#alertEnroll::-webkit-scrollbar {
  width: 4px;
  height: 1px;
  display: none;
}

#alertEnroll::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgba(200, 200, 200, 0.9);
}

#alertEnroll::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgba(180, 180, 180, 0.9);
}

#alertEnroll::-webkit-scrollbar-thumb:hover {
  border-radius: 10px;
  background-color: #fff;
}

#alertEnroll::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #fff;
}

#alertEnroll #closeEnroll {
  position: absolute;
  /* top: 16px; */
  top: 19px;
  right: 16px;
  width: 24px;
  height: 24px;
  z-index: 1002;
  /* opacity: 0; */
  animation: zxFadeIn 0.5s ease 0.1 s forwards;
}

@keyframes zxFadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes zxFadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

#closeEnroll::before,
#closeEnroll::after {
  content: ' ';
  position: absolute;
  top: 0;
  left: 12px;
  display: block;
  width: 2px;
  height: 24px;
  border-radius: 2px;
  transform-origin: center;
  background-color: #118ccf;
}

#closeEnroll::before {
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

#closeEnroll::after {
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}

#closeEnroll:hover {
  cursor: pointer;
  opacity: 0.8;
}

#dialogEnroll {
  /* position: absolute; */
  /* top: 6px; */
  width: 100%;
  height: 100%;
  padding: 24px 128px;
  box-sizing: border-box;
  border-radius: 8px;
  border: none !important;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
}

#dialogEnroll::-webkit-scrollbar {
  display: none;
}

.zx-enroll-form-dialog .aos-init {
  opacity: 1 !important;
  transition: none !important;
  transform: none !important;
}

.zx-enroll-form-dialog .zx-enroll-form-item {
  width: 100% !important;
  margin-right: 0 !important;
}

.zx-enroll-form-dialog .zx-enroll-form .zx-enroll-form-title {
  /* margin-bottom: 0 !important; */
}

.zx-enroll-form-homer-swiper {
  position: absolute;
  top: 54%;
  left: 5%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 360px;
  padding: 24px 32px;
  box-sizing: border-box;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.7);
  z-index: 99;
}

.zx-enroll-form-homer-swiper .zx-enroll-form-row {
  width: 100%;
  font-size: 0;
}

.zx-enroll-form-homer-swiper .zx-enroll-form-title {
  margin-bottom: 16px !important;
}

.zx-enroll-form-homer-swiper .zx-enroll-form-row .zx-enroll-form-item {
  width: 100% !important;
  margin-right: 0 !important;
  margin-bottom: 24px !important;
}

.zx-enroll-form-homer-swiper .zx-enroll-form-row .zx-enroll-form-submit {
  margin-bottom: 4px !important;
}

.zx-enroll-form-homer-swiper .zx-enroll-form-row .zx-enroll-form-name,
.zx-enroll-form-homer-swiper .zx-enroll-form-row .zx-enroll-form-message {
  display: none !important;
}

.zx-enroll-form-row .zx-enroll-form-qq {
  position: relative;
}

.zx-enroll-form-row .zx-enroll-form-qq .zx-enroll-form-smscode {
  position: absolute;
  top: 15%;
  right: 10px;
  cursor: pointer;
  color: #fff;
  padding: 6px 8px;
}

.zx-enroll-form-homer-swiper .zx-enroll-form-notice {
  font-size: 12px;
  text-align: right;
}

.zx-enroll-form-homer-swiper .zx-enroll-form-row input,
.zx-enroll-form-homer-swiper .zx-enroll-form-row select {
  border: 1px solid rgba(255, 255, 255, 0.7) !important;
  background-color: transparent !important;
}

.zx-enroll-form-homer-swiper .zx-enroll-form-row option {
  background-color: #4d4d4d !important;
}

.zx-enroll-form-homer-swiper .zx-enroll-form-select::after {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAE8SURBVFhH7ZS9TgJREIU3FlY2hthhb2wN8ADEJyD2BH0AQmlDKAklVmhjDD7mruck35KJBrnLX3W/ZMLdM3POhOWGIpPJZH5TluVE9a36UvWQ98YZZDlzgrydqqquNbjC8KG6odUYe8lw1srZtP5Hgw+YXDM9X9BKxh576xxn0kpDhmEwPyEnY0/wD5HTkelS5jkha9U9rZ14Fo+9c2fRaobMbdUnQW8KuqK1Fc94Fo+9bVr7oYA+Ya6dt9gzYb6PfBgKGofQR+Q/uBfmxsiHw2tdEuzXektrgzV6nlmm/FyNUOCdguuLtdDz5mL5bI3e2rO0jovCByxxjZCtj4I+QD4++mb+c5mGZR2qfp56hvHToCUt1TsL/RnPLcZOixZ1WRqrS/s8aOFLWP6MfD64+a8un5EzmUymIUXxA/I7w0mzLzLIAAAAAElFTkSuQmCC');
}

.zx-home-course-title {
  font-size: 18px;
  text-align: left;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.zx-home-course-mobile-title {
  font-size: 16px;
  text-align: left;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 10px;
  margin-top: 30px;
}

.zx-header-lang {
  cursor: pointer;
}

.whole-img-1 {
  background: url('../../portal/images/bg-1.png');
}

.whole-img-2 {
  background: url('../../portal/images/bg-2.png');
}

.whole-img-3 {
  background: url('../../portal/images/bg-3.png');
}

.zx-bg-whole-img {
  background-size: 100%;
  position: relative;
  height: calc(100vw / 2.3);
  margin-top: 60px;
}

.zx-bg-whole-img .zx-bg-whole-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.zx-bg-whole-img.zx-pc-show .zx-section-title span,
.zx-bg-whole-img.zx-pc-show p {
  color: #fff;
  text-align: justify;
}

.zx-bg-whole-img.zx-pc-show .zx-section-title i {
  background: #118ccf;
}

.zx-bg-whole-img.zx-pc-show .zx-school-content {
  font-size: 18px;
  line-height: 48px;
}

.zx-form-title {
  color: #fff;
  text-align: center;
  font-size: 20px;
}

.zx-form-item {
  margin-top: 40px;
}

.zx-form-label {
  color: #fff;
  font-size: 18px;
  display: inline-block;
  width: 140px;
  vertical-align: top;
  text-align: right;
  line-height: 32px;
}

.zx-form-input {
  margin-left: 20px;
  width: 300px;
  font-size: 18px;
  display: inline-block;
  vertical-align: top;
  background: #fff;
  padding: 4px 10px;
  border-radius: 4px;
}

.zx-form-button {
  padding: 8px 20px;
  font-size: 18px;
  border-radius: 4px;
  width: 380px;
  text-align: center;
  background: #cc221c;
  color: #fff;
  outline: none;
}

.zx-form-button:focus {
  outline: none;
}

@media screen and (max-width: 1600px) {
  .zx-enroll-form-homer-swiper {
    /* top: 60%; */
    padding: 20px 28px;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 1520px) {
  .zx-enroll-form-homer-swiper {
    width: 320px;
    padding: 16px 24px;
    box-sizing: border-box;
  }

  .zx-enroll-form-homer-swiper .zx-enroll-form-row .zx-enroll-form-item {
    margin-bottom: 20px !important;
  }

  .zx-enroll-form-homer-swiper .zx-enroll-form-row .zx-enroll-form-submit {
    margin-bottom: 2px !important;
  }

  .zx-enroll-required::before {
    top: 12px;
  }

  .zx-enroll-form-select::after {
    top: 12px;
  }

  .zx-enroll-form .zx-enroll-form-title {
    font-size: 22px;
  }

  .zx-enroll-form-homer-swiper .zx-enroll-form-notice {
    padding: 2px 24px;
  }

  .zx-enroll-form-row input,
  .zx-enroll-form-row select {
    height: 40px;
    padding: 8px 24px;
  }

  .zx-enroll-form-row button {
    height: 40px;
    line-height: 40px;
  }
}

@media screen and (max-width: 1400px) {
  .zx-enroll-form-homer-swiper {
    top: 58%;
    width: 300px;
    padding: 12px 20px;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 1350px) {
  .zx-enroll-form-homer-swiper {
    top: 58%;
  }
}

@media screen and (max-width: 1250px) {
  .zx-enroll-form-homer-swiper {
    top: 58%;
    width: 280px;
    padding: 10px 16px;
    box-sizing: border-box;
  }

  .zx-enroll-form-homer-swiper .zx-enroll-form-title {
    font-size: 20px;
    margin-bottom: 12px !important;
  }

  .zx-enroll-required::before {
    top: 10px;
  }

  .zx-enroll-form-select::after {
    top: 10px;
  }
}

@media screen and (max-width: 1200px) {
  .zx-enroll-form-homer-swiper {
    top: 58%;
    width: 260px;
    padding: 8px 16px;
    box-sizing: border-box;
  }

  .zx-enroll-form-row input,
  .zx-enroll-form-row select {
    height: 36px;
    padding: 6px 24px;
  }

  .zx-enroll-form-homer-swiper .zx-enroll-form-title {
    font-size: 18px;
  }

  .zx-enroll-form-row button {
    height: 36px;
    line-height: 36px;
  }
}

@media screen and (max-width: 1024px) {
  #alertEnroll {
    position: fixed;
    display: block;
    box-sizing: content-box;
  }

  #alertEnroll::after {
    display: none;
  }

  #dialogEnroll {
    padding: 24px 100px;
  }

  .zx-enroll-form-item {
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 768px) {
  #dialogEnroll {
    padding: 20px 16px;
  }

  .zx-form-title {
    color: #333;
    text-align: center;
    font-size: 16px;
  }

  .zx-form-item {
    margin-top: 20px;
  }

  .zx-form-label {
    color: #333;
    font-size: 14px;
    display: block;
    text-align: left;
    line-height: 32px;
  }

  .zx-form-input {
    margin-left: 0px;
    font-size: 14px;
    display: block;
    background: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid #bbb;
    border-radius: 4px;
  }

  .zx-form-button {
    width: 200px;
    margin: 8px auto;
    font-size: 14px;
    border-radius: 4px;
    text-align: center;
    background: #cc221c;
    color: #fff;
    outline: none;
  }

  .zx-form-button:focus {
    outline: none;
  }
}

/** -------- alert enroll end -------- **/