.commonListBox ul li {
  line-height: 1;
  margin-bottom: 25px;
}
.commonListBox ul li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e76e00;
  float: left;
  margin: 6px 10px 0 0;
}
.commonListBox ul li a {
  font-size: 18px;
  color: #333;
  background: linear-gradient(to right, #e76e00, #e76e00) no-repeat;
  background-size: 0 2px;
  background-position: right bottom;
  transition: background-size 1.5s;
  line-height: 1.3;
}
.commonListBox ul li .tit:hover a {
  background-size: 100% 2px;
  background-position: left bottom;
  font-weight: bold;
  color: #e76e00;
}
.commonListBox ul li.divider {
  border-bottom: 1px #e3e3e3 dashed;
}
.commonListBox ul li.divider::before {
  display: none;
}
.commonListBox .bomLine {
  width: 0;
  transition: width 2.5s ease;
  height: 2px;
  border-bottom: 1px #e76e00 solid;
  margin-top: 35px;
  width: 100%;
}
.listContent {
  background: #fafafa;
}
.listContent .topBox {
  background: none;
}
.picListBox {
  margin-top: 25px;
}
.picListBox .wrap {
  overflow: inherit;
}
.picListBox .waterfall-container {
  margin-top: 45px;
  width: 100%;
  position: relative;
}
.picListBox .waterfall-container .item {
  position: absolute;
  border-radius: 34px;
  background: #fff;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.picListBox .waterfall-container .item .pic {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}
.picListBox .waterfall-container .item .pic img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease-in-out;
}
.picListBox .waterfall-container .item .pic::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
  z-index: 6;
}
.picListBox .waterfall-container .item .tit {
  padding: 32px;
  font-size: 18px;
  color: #242424;
}
.picListBox .waterfall-container .item:hover {
  background: #ff5400;
  box-shadow: 0px 19px 43px 0px rgba(255, 66, 0, 0.68);
}
.picListBox .waterfall-container .item:hover .pic::before {
  left: 100%;
}
.picListBox .waterfall-container .item:hover .pic img {
  transform: scale(1.1);
}
.picListBox .waterfall-container .item:hover .tit {
  font-weight: bold;
}
.picListBox .waterfall-container .show {
  animation: fadeInUp 1s forwards;
}
.picListBox.videoListBox .waterfall-container .item .pic::after {
  content: '';
  background: url(../images/icon_video_play.png) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 9;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
}
.picListBox .page {
  margin-top: 20px;
}
.containerBox .crumbsBox {
  margin-top: 25px;
}
.containerBox .line {
  margin-top: 25px;
  border-top: 1px #e8e8e8 solid;
}
.containerBox .commonListBox {
  margin-top: 25px;
}
.containerBox .commonListBox li {
  overflow: hidden;
}
.containerBox .commonListBox li .tit {
  width: 86%;
  float: left;
}
.containerBox .commonListBox li .tit:hover {
  color: #ff7900;
}
.containerBox .commonListBox li .tit:hover ~ span {
  color: #ff7900;
}
.containerBox .commonListBox li span {
  float: right;
  color: #cacbcc;
  font-size: 16px;
  margin-top: 4px;
}
.containerBox .commonListBox li.notime .tit {
  width: calc(100% - 18px);
}
.commonMainBox {
  background: #fff;
  padding: 48px 45px 70px;
}
.commonMainBox .title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}
.commonMainBox .sourceBox {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #666666;
  padding-bottom: 62px;
  border-bottom: 1px solid #dadada;
}
.commonMainBox .sourceBox .line {
  height: 15px;
  width: 1px;
  background: #e76e00;
  margin: 0 28px;
}
.commonMainBox .contentMain {
  padding-top: 40px;
  font-size: 18px;
  color: #333;
  line-height: 1.6 !important;
  word-break: break-word;
  font-family: 'enCon';
}
.commonMainBox .contentMain img {
  display: inline;
}
.commonMainBox .contentMain table {
  max-width: 100%;
}
.commonMainBox .contentMain table td {
  border: 1px solid #000;
  padding: 1em;
}
.commonMainBox .contentMain div,
.commonMainBox .contentMain p {
  margin-bottom: 25px;
}
.page {
  margin: 50px 0 110px;
  display: flex;
  justify-content: center;
}
.page a {
  display: block;
  padding: 0 19px;
  height: 46px;
  font-size: 16px;
  color: #443f33;
  line-height: 46px;
  border: 1px solid #e8e8e8;
  background: #fff;
  border-radius: 5px;
  margin-right: 8px;
  transition: all 0.5s ease-in;
  opacity: 0;
  transform: translateY(40px);
}
.page a:last-child {
  margin-right: 0;
}
.page a.on {
  border-color: #ff7900;
  background: #ff7900;
  color: #fff;
}
.page a:hover {
  border-color: #ff7900;
  background: #ff7900;
  color: #fff;
}
.crumbsBox {
  display: flex;
}
.crumbsBox .icon {
  display: block;
  width: 26px;
  height: 26px;
  background: url(../images/icon_home.png) center center no-repeat;
}
.crumbsBox p {
  font-size: 18px;
  color: #242424;
  opacity: 0.5;
  margin-left: 15px;
}
.picTextListBox {
  margin-top: 25px;
}
.picTextListBox .picTextList li {
  position: relative;
  margin-top: 25px;
}
.picTextListBox .picTextList li a {
  display: block;
  width: 100%;
  height: 100%;
}
.picTextListBox .picTextList li a .textBox {
  padding: 48px 65px 45px 32px;
  background: #fff;
  transition: all 0.5s ease-in;
}
.picTextListBox .picTextList li a .textBox .tit {
  font-size: 18px;
  color: #000000;
  font-weight: bold;
  line-height: 1.2;
}
.picTextListBox .picTextList li a .textBox .source {
  display: flex;
  color: #999;
  margin-top: 32px;
  font-size: 16px;
}
.picTextListBox .picTextList li a .textBox .source .time {
  flex: none;
  margin-right: 25px;
}
.picTextListBox .picTextList li a .textBox .source .by {
  max-width: 80%;
  flex: none;
}
.picTextListBox .picTextList li a:hover .textBox {
  background: #fdbf01;
}
.picTextListBox .picTextList li a:hover .source {
  color: #222222;
}
.picTextListBox .picTextList li.hasPic::before {
  display: none;
}
.picTextListBox .picTextList li.hasPic a {
  padding-left: 32px;
  padding-bottom: 35px;
}
.picTextListBox .picTextList li.hasPic a .pic {
  width: 540px;
  height: 304px;
  position: relative;
  z-index: 3;
  background: #ccc;
  overflow: hidden;
}
.picTextListBox .picTextList li.hasPic a .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
}
.picTextListBox .picTextList li.hasPic a .pic::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
  z-index: 6;
}
.picTextListBox .picTextList li.hasPic a .textBox {
  padding: 55px 65px 101px 614px;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
}
.picTextListBox .picTextList li.hasPic a:hover .pic img {
  transform: scale(1.1);
}
.picTextListBox .picTextList li.hasPic a:hover .pic::before {
  left: 100%;
}
/* school start */
.schoolListContent {
  background-color: #fafafa;
}
.schoolListContent .school_header {
  background: url(../images/header_school.jpg) no-repeat;
  background-size: cover;
  height: 280px;
  position: relative;
}
.schoolListContent .school_header .topBox {
  background: none;
}
.schoolListContent .school_header .topBox .navBox .nav .item {
  color: #333;
}
.schoolListContent .school_header .topBox .navBox .nav .item:hover {
  color: #ff7e00;
}
.schoolListContent .school_header .topBox .navBox .dropDownBox .dropDownTxt {
  color: #333;
}
.schoolListContent .school_header .topBox .search .mask {
  background-color: #0056cc;
  opacity: 0.1;
}
.schoolListContent .school_header .topBox .search .line .searchTxt {
  color: #333;
}
.schoolListContent .containerBox .line {
  border: none;
}
.schoolListContent .schoolListBox {
  display: flex;
  flex-wrap: wrap;
}
.schoolListContent .schoolListBox .item {
  display: block;
  width: 31.51%;
  border: solid 2px transparent;
  background-color: #FFF;
  padding: 20px;
  margin: 0 1.5% 30px 0;
  position: relative;
}
.schoolListContent .schoolListBox .item:nth-child(3n) {
  margin-right: 0;
}
.schoolListContent .schoolListBox .item:hover {
  border-color: #ff7e00;
  box-shadow: 0 0 10px #999;
}
.schoolListContent .schoolListBox .item:hover .schoolMore span {
  background-color: #ff7e00;
  color: #FFF;
}
.schoolListContent .schoolListBox .item .pic {
  width: 100%;
  aspect-ratio: 481 / 172;
}
.schoolListContent .schoolListBox .item .pic img {
  width: 100%;
  height: 100%;
}
.schoolListContent .schoolListBox .item .tit {
  font-size: 18px;
  font-family: 'DINPROBoldPro', Arial, sans-serif;
  text-align: center;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  padding: 0 10px;
  color: #333;
  margin-bottom: 25px;
  margin-top: 90px;
}
.schoolListContent .schoolListBox .item .schoolMore {
  padding-top: 25px;
  border-top: solid 1px #fafafa;
  display: flex;
  justify-content: center;
}
.schoolListContent .schoolListBox .item .schoolMore span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 340px;
  height: 40px;
  background-color: #ffebeb;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 600;
  color: #ff7e00;
}
.schoolListContent .schoolListBox .item .icon {
  width: 110px;
  height: 110px;
  border: solid 5px #FFF;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 136px;
  z-index: 9;
  transform: translateX(-50%);
  box-shadow: 0 5px 10px #EDEDED;
  overflow: hidden;
}
.schoolListContent .schoolListBox .item .icon img {
  width: 100%;
  height: 100%;
}
html[dir="rtl"] .commonMainBox .title {
  text-align: center !important;
}
html[dir="rtl"] .commonListBox ul li::before {
  margin: 6px 0 0 10px;
  float: right;
}
html[dir="rtl"] .commonListBox ul li .tit {
  float: right;
}
html[dir="rtl"] .commonListBox ul li span {
  float: left;
  text-align: left !important;
}
html[dir="rtl"] .crumbsBox p {
  margin-left: 0;
  margin-right: 15px;
}
html[dir="rtl"] .picTextListBox .picTextList li.hasPic .textBox {
  padding: 55px 614px 101px 65px;
}
/* school end */
@media screen and (max-width: 750px) {
  .commonListBox {
    margin-top: 0.44rem;
  }
  .commonListBox ul li {
    margin-bottom: 0.46666667rem;
    display: flex;
    flex-wrap: wrap;
  }
  .commonListBox ul li::before {
    width: 0.13333333rem;
    height: 0.13333333rem;
    margin: 0.13333333rem 0.2rem 0 0rem;
  }
  .commonListBox ul li .tit {
    width: calc(100% - 0.333333rem) !important;
  }
  .commonListBox ul li a {
    font-size: 0.42666667rem;
  }
  .commonListBox .bomLine {
    border-bottom-style: dashed;
  }
  .crumbsBox .icon {
    width: 0.46666667rem;
    height: 0.42666667rem;
    background-size: 100% 100%;
  }
  .crumbsBox p {
    font-size: 0.34666667rem;
    margin-left: 0.26666667rem;
  }
  .picListBox {
    margin-top: 0.48rem;
  }
  .picListBox .waterfall-container {
    margin-top: 0.90666667rem;
  }
  .picListBox .waterfall-container .item {
    border-radius: 0.45333333rem;
  }
  .picListBox .waterfall-container .item .tit {
    padding: 0.29333333rem;
    font-size: 0.4rem;
  }
  .picListBox.videoListBox .waterfall-container .item .pic::after {
    width: 1.06666667rem;
    height: 1.06666667rem;
  }
  .page {
    margin: 1.29333333rem 0 1.66666667rem;
  }
  .page a {
    font-size: 0.24rem;
    height: 0.53333333rem;
    line-height: 0.53333333rem;
    border-radius: 0;
    margin-right: 0.24rem;
    padding: 0 0.24rem;
  }
  .containerBox .crumbsBox {
    margin-top: 0.46666667rem;
  }
  .containerBox .line {
    margin-top: 0.46666667rem;
  }
  .containerBox .commonListBox ul li .tit {
    width: calc(100% - 0.333333rem);
    white-space: wrap;
  }
  .containerBox .commonListBox ul li span {
    font-size: 0.4rem;
    margin-top: 0.26666667rem;
    display: block;
    width: 100%;
    text-align: right;
  }
  .commonMainBox {
    padding: 0.66666667rem 0.37333333rem 1.37333333rem;
  }
  .commonMainBox .common_header .title {
    font-size: 0.48rem;
    text-align: left;
  }
  .commonMainBox .common_header .sourceBox {
    margin-top: 0.32rem;
    font-size: 0.34666667rem;
    color: #adadad;
    justify-content: space-between;
    padding-bottom: 0.32rem;
  }
  .commonMainBox .common_header .sourceBox .line {
    display: none;
  }
  .commonMainBox .contentMain {
    padding-top: 0.53333333rem;
    font-size: 0.4rem;
  }
  .commonMainBox .contentMain video {
    max-width: 100% !important;
    height: auto;
  }
  .commonMainBox .contentMain iframe {
    max-width: 100% !important;
    height: auto;
  }
  .commonMainBox .contentMain div,
  .commonMainBox .contentMain p {
    margin-bottom: 0.4rem;
  }
  .picTextListBox {
    margin-top: 0.48rem;
  }
  .picTextListBox .picTextList li {
    margin-top: 0.53333333rem;
  }
  .picTextListBox .picTextList li::before {
    width: 1.41333333rem;
    height: 1.14666667rem;
    background-size: 100% 100%;
    top: -0.36rem;
    left: 0.25333333rem;
  }
  .picTextListBox .picTextList li a .textBox {
    padding: 0.68rem 0.25333333rem 0.68rem 0.25333333rem;
  }
  .picTextListBox .picTextList li a .textBox .tit {
    font-size: 0.4rem;
  }
  .picTextListBox .picTextList li a .textBox .source {
    margin-top: 0.26666667rem;
    font-size: 0.34666667rem;
  }
  .picTextListBox .picTextList li a .textBox .source .time {
    margin-right: 0.33333333rem;
  }
  .picTextListBox .picTextList li.hasPic a {
    padding: 0;
  }
  .picTextListBox .picTextList li.hasPic a .pic {
    width: 100%;
    height: auto;
  }
  .picTextListBox .picTextList li.hasPic a .pic img {
    width: 100%;
    height: auto;
  }
  .picTextListBox .picTextList li.hasPic a .textBox {
    position: static;
    margin-top: -2.66666667rem;
    padding: 3.13333333rem 0.25333333rem 0.68rem 0.25333333rem;
  }
  /* school start */
  .schoolListContent .school_header {
    background: url(../images/header_school.jpg) no-repeat;
    background-size: 100% 100%;
    height: 3.73333333rem;
  }
  .schoolListContent .schoolListBox {
    padding: 0 0.26666667rem;
  }
  .schoolListContent .schoolListBox .item {
    width: 100%;
    height: auto;
    padding: 0.26666667rem;
    margin: 0 0 0.4rem 0;
  }
  .schoolListContent .schoolListBox .item:hover {
    box-shadow: 0 0 0.13333333rem #999;
  }
  .schoolListContent .schoolListBox .item .pic {
    width: 100%;
    min-height: 2.4rem;
  }
  .schoolListContent .schoolListBox .item .tit {
    font-size: 0.45333333rem;
    padding: 0 0.13333333rem;
    margin-bottom: 0.26666667rem;
    margin-top: 1.2rem;
  }
  .schoolListContent .schoolListBox .item .schoolMore {
    padding-top: 0.33333333rem;
  }
  .schoolListContent .schoolListBox .item .schoolMore span {
    width: 5.33333333rem;
    height: 0.53333333rem;
    border-radius: 0.26666667rem;
    font-size: 0.34666667rem;
  }
  .schoolListContent .schoolListBox .item .icon {
    width: 1.46666667rem;
    height: 1.46666667rem;
    border: solid 0.13333333rem #FFF;
    top: 1.86666667rem;
    box-shadow: 0 5px 10px #EDEDED;
  }
  /* school end */
  html[dir="rtl"] .picTextListBox .picTextList li.hasPic .textBox {
    padding: 3.13333333rem 0.25333333rem 0.68rem 0.25333333rem;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
