/* Index common section */
.sectionTitle {
  width: 100%;
  height: 54px;
}

.sectionTitle h2 {
  display: flex;
  flex: 0 0 auto;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  font-family: "Microsoft YaHei", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
  text-align: left;
  font-weight: bold;
  font-weight: 700;
  padding: 0;
  margin: 0;
  color: #4576b1;
}

/* .sectionTitle h2::before {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  padding: 0;
  margin: 0 10px 0 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.sectionTitle h2.newsIcon::before {
  background-image: url(../images/icon-news.png);
}

.sectionTitle h2.academicIcon::before {
  background-image: url(../images/icon-academic.png);
}

.sectionTitle h2.linkIcon::before {
  background-image: url(../images/icon-link.png);
}

.sectionTitle h2.announcementIcon::before {
  background-image: url(../images/icon-announcement.png);
}

.sectionTitle h2.newsIcon::before {
  background-image: url(../images/icon-news.png);
} */

.sectionTitle .more {
  display: block;
  color: #4576b1;
  float: right;
  margin: -14px 0 0 0;
  font-size: 14px;
  line-height: 1;
  height: 14px;
}

.sectionTitle .more::after {
  content: "";
  display: block;
  float: right;
  width: 6px;
  height: 14px;
  padding: 0;
  margin: 0 0 0 6px;
  background-color: transparent;
  background-image: url('../images/more-arrow.png');
  background-position: center;
  background-repeat: no-repeat;
}

.sectionTitle.white h2,
.sectionTitle.white .more {
  color: #fff;
}

.news ul,
.news ul,
.activity ul {
  list-style: none;
  margin-block-start: 0px;
  margin-block-end: 0px;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0px;
}

.resources ul {
  list-style: none;
  margin-block-start: -8px;
  margin-block-end: 0px;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0px;
}


@media (max-width: 1239px) {

}

@media (max-width: 991px) {

}

@media (max-width: 779px) {
  .sectionTitle {
    height: 96px;
  }

  .sectionTitle h2 {
    font-size: 48px;
  }

  .sectionTitle h2::before {
    width: 64px;
    height: 64px;
    margin: 0 20px 0 0;
  }

  .sectionTitle .more {
    margin: -28px 0 0 0;
    font-size: 22px;
    line-height: 1;
    height: 22px;
  }
  
  .sectionTitle .more::after {
    width: 12px;
    height: 28px;
    margin: 0 0 0 12px;
  }
}

@media (max-width: 600px) {
  .sectionTitle {
    height: 72px;
  }

  .sectionTitle h2 {
    font-size: 36px;
  }

  .sectionTitle h2::before {
    width: 48px;
    height: 48px;
    margin: 0 15px 0 0;
  }

  .sectionTitle .more {
    margin: -22px 0 0 0;
    font-size: 18px;
    line-height: 1;
    height: 18px;
  }
}

@media (max-width: 432px) {
  .sectionTitle {
    height: 48px;
  }

  .sectionTitle h2 {
    font-size: 24px;
  }

  .sectionTitle h2::before {
    width: 32px;
    height: 32px;
    margin: 0 10px 0 0;
  }

  .sectionTitle .more {
    margin: -16px 0 0 0;
    font-size: 12px;
    line-height: 1;
    height: 12px;
  }

  .sectionTitle .more::after {
    width: 6px;
    height: 12px;
  }
}

/* Index list */
.indexList {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
}

.indexItem {
  display: flex;
  flex: 0 0 auto;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  width: 100%;
  height: 44px;
  padding: 0;
  margin: 0;
  border-bottom: 1px dashed #9e9e9e;
}

/* .indexItem::before {
  content: "•";
  color: #4576b1;
  margin: 0 0.7rem 0 0.3rem;
} */

.indexItem .title, .indexItem .column, .indexItem .titleColumn {
  font-size: 14px;
  line-height: 40px;
  color: #333;
  height: 40px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  /* line-clamp: 1; */
}

.indexItem .title {
  width: calc(100% - 108px);
}

.indexItem .column {
  width: 72px;
}

.indexItem .titleColumn {
  width: calc(100% - 180px);
}

.indexItem .date {
  display: block;
  float: right;
  font-size: 14px;
  line-height: 40px;
  color: #969696;
  text-align: right;
  width: 90px;
  height: 40px;
  margin-left: 18px;
}

@media (max-width: 1239px) {

}

@media (max-width: 991px) {
  .indexItem .title, .indexItem .column, .indexItem .titleColumn {
    font-size: 12px;
    line-height: 34px;
    height: 34px;
  }

  .indexItem .date {
    display: none;
  }

  .indexItem .column {
    width: 64px;
  }

  .indexItem .title {
    width: calc(100% - 0px);
  }

  .indexItem .titleColumn {
    width: calc(100% - 64px);
  }
}

@media (max-width: 779px) {
  .indexItem {
    height: 80px;
  }

  .indexItem .title, .indexItem .column, .indexItem .titleColumn {
    font-size: 24px;
    line-height: 72px;
    height: 72px;
  }

  .indexItem .column {
    width: 128px;
  }

  .indexItem .titleColumn {
    width: calc(100% - 128px);
  }

}

@media (max-width: 600px) {
  .indexItem {
    height: 60px;
  }

  .indexItem .title, .indexItem .column, .indexItem .titleColumn {
    font-size: 20px;
    line-height: 60px;
    width: 100%;
    height: 60px;
  }

  .indexItem .column {
    width: 108px;
  }

  .indexItem .titleColumn {
    width: calc(100% - 108px);
  }
}

@media (max-width: 432px) {
  .indexItem {
    height: 40px;
  }

  .indexItem .title, .indexItem .column, .indexItem .titleColumn {
    font-size: 14px;
    line-height: 40px;
    height: 40px;
  }

  .indexItem .column {
    width: 72px;
  }

  .indexItem .titleColumn {
    width: calc(100% - 72px);
  }
}


/* Main section */
.mainSection {
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  align-content: center;
  align-items: flex-start;
  width: 100%;
  padding: 40px 0;
  margin: 0;
}

.mainSection .container {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}

@media (max-width: 1239px) {

}

@media (max-width: 991px) {

}

@media (max-width: 779px) {
  .mainSection {
    align-items: center;
    padding: 0;
  }

  .mainSection .container {
    width: 100%;
    flex-flow: row wrap;
    justify-content: flex-start;
    padding: 0;
  }
}

@media (max-width: 600px) {

}

@media (max-width: 432px) {

}

/* Main slider */
.mainSlider {
  display: flex;
  flex: 0 0 auto;
  justify-content: flex-start;
  width: 840px;
  height: 320px;
  margin: 0;
}

.mainSlider .container {
  width: 100%;
}

.mainSlider .swiper-wrapper {
  width: 100%;
}

.mainSlider .swiper-slide {
  box-sizing: border-box;
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  align-content: center;
  position: relative;
}

.mainSliderImg {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
}

.mainSliderImg img {
  display: block;
  width: 100%;
  height: auto;
  max-width: fit-content;
}

.mainSliderTitle {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(0deg, rgba(0,0,0,0.667), rgba(0,0,0,0));
  padding: 9px 20px; 
}

.mainSliderTitle .titleText {
  height: 42px;
  font-size: 20px;
  font-family: "Microsoft YaHei", sans-serif;
  font-weight: normal;
  font-weight: 500;
  color: #fff;
  line-height: 42px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.mainSliderNav {
  z-index: 30;
}

.mainSliderNavPrev, .mainSliderNavNext {
  display: block;
  position: absolute;
  top: calc(50% - 58.5px);
  z-index: 30;
  width: 45px;
  height: 77px;
  background-color: rgba(0, 0, 0, 0.6);
  background-position: center;
  background-repeat: no-repeat;
}

.mainSliderNavPrev {
  left: 0;
  background-image: url('../images/prev.png');
}

.mainSliderNavNext {
  right: 0;
  background-image: url('../images/next.png');
}

@media (max-width: 1239px) {
  .mainSlider {
    width: 640px;
    height: 320px;
  }

  .mainSliderImg {
    height: 320px;
  }

  .mainSliderNavPrev, .mainSliderNavNext {
    top: calc(50% - 50px);
    width: 42px;
    height: 70px;
  }

  .mainSliderTitle {
    height: 54px;
  }

  .mainSliderTitle .titleText {
    height: 36px;
    font-size: 18px;
    line-height: 36px;
  }
}

@media (max-width: 991px) {
  .mainSlider {
    width: calc(70% - 30px);
    height: 240px;
  }

  .mainSliderImg {
    height: 240px;
  }

  .mainSliderNavPrev, .mainSliderNavNext {
    top: calc(50% - 50px);
    width: 40px;
    height: 64px;
  }

  .mainSliderTitle {
    height: 48px;
  }

  .mainSliderTitle .titleText {
    height: 32px;
    font-size: 16px;
    line-height: 32px;
  }
}

@media (max-width: 779px) {
  .mainSlider {
    width: 100%;
    height: 56vw;
  }

  .mainSliderImg {
    height: 56vw; 
  }

  .mainSliderImg img {
    width: auto;
    height: 100%;
  }

  .mainSliderTitle {
    height: 80px;
    padding: 16px 32px;
  }
  
  .mainSliderTitle .titleText {
    height: 48px;
    font-size: 32px;
    line-height: 48px;
  }

  .mainSliderNavPrev, .mainSliderNavNext {
    display: none;
  }
}

@media (max-width: 600px) {
  /* .mainSlider {
    height: 260px;
  }

  .mainSliderImg {
    height: 260px;
  } */

  .mainSliderTitle {
    height: 60px;
    padding: 12px 24px;
  }
  
  .mainSliderTitle .titleText {
    height: 36px;
    font-size: 24px;
    line-height: 36px;
  }
}

@media (max-width: 432px) {
  /* .mainSlider {
    height: 200px;
  }

  .mainSliderImg {
    height: 200px;
  } */

  .mainSliderTitle {
    height: 40px;
    padding: 8px 16px;
  }
  
  .mainSliderTitle .titleText {
    height: 24px;
    font-size: 16px;
    line-height: 24px;
  }
}


/* Function dial */
.functionDial {
  display: flex;
  flex: 0 0 auto;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  width: 320px;
  height: 320px;
  border: 1px solid #e4e4e4;
  border-bottom: none;
  margin: 0;
}

.loginStatus {
  display: flex;
  flex: 0 0 auto;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 100%;
  height: 80px;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #e4e4e4;
}

.dialIcon {
  display: flex;
  flex: 0 0 auto;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 50%;
  height: 80px;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #e4e4e4;
}

.dialIcon:nth-child(2n+2) {
  border-right: 1px solid #e4e4e4;
}

.loginStatus .icon, .dialIcon .icon {
  display: block;
  height: 28px;
  padding: 0;
  margin: 0 8px 0 0;
}

.loginStatus .iconTitle, .dialIcon .iconTitle {
  font-size: 16px;
  line-height: 1;
  color: #333;
}

@media (max-width: 1239px) {
  .functionDial {
    width: 220px;
  }

  .loginStatus .icon, .dialIcon .icon {
    height: 24px;
    margin: 0 6px 0 0;
  }
  
  .loginStatus .iconTitle, .dialIcon .iconTitle {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .functionDial {
    display: none;
  }

  /* .functionDial {
    width: calc(30% - 0px);
    height: 240px;
  }

  .loginStatus {
    height: 60px;
  }
  
  .dialIcon {
    height: 60px;
  }

  .loginStatus .icon, .dialIcon .icon {
    height: 18px;
    margin: 0 6px 0 0;
  }
  
  .loginStatus .iconTitle, .dialIcon .iconTitle {
    font-size: 12px;
  } */
}

@media (max-width: 779px) {
  /* .functionDial {
    display: none;
  } */

  /* .functionDial {
    width: 100%;
    height: 360px;
  }

  .loginStatus {
    height: 90px;
  }
  
  .dialIcon {
    height: 90px;
  }

  .loginStatus .icon, .dialIcon .icon {
    height: 36px;
    margin: 0 12px 0 0;
  }
  
  .loginStatus .iconTitle, .dialIcon .iconTitle {
    font-size: 24px;
  } */
}

@media (max-width: 600px) {
  /* .functionDial {
    height: 288px;
  }

  .loginStatus {
    height: 72px;
  }
  
  .dialIcon {
    height: 72px;
  }

  .loginStatus .icon, .dialIcon .icon {
    height: 26px;
    margin: 0 10px 0 0;
  }
  
  .loginStatus .iconTitle, .dialIcon .iconTitle {
    font-size: 18px;
  } */
}

@media (max-width: 432px) {
  .functionDial {
    height: 216px;
  }

  .loginStatus {
    height: 54px;
  }
  
  .dialIcon {
    height: 54px;
  }

  .loginStatus .icon, .dialIcon .icon {
    height: 18px;
    margin: 0 6px 0 0;
  }
  
  .loginStatus .iconTitle, .dialIcon .iconTitle {
    font-size: 12px;
  }
}


/* Middle section */
.middleSection {
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding: 40px 0;
  margin: 0;
}

.middleSection .container {
  display: flex;
  justify-content: space-between;
}

.middleSection .container {
  flex-flow: row nowrap;
}

@media (max-width: 991px) {
  
}

@media (max-width: 779px) {
  .middleSection .container {
    flex-flow: row wrap;
    justify-content: flex-start;
  }

  .middleSection {
    padding: 80px 0;
  }
}

@media (max-width: 600px) {
  .middleSection {
    padding: 60px 0;
  }
}

@media (max-width: 432px) {
  .middleSection {
    padding: 40px 0;
  }
}


/* Announcement & news */
.announcement, .news {
  display: block;
  width: 400px;
  padding: 0;
  margin: 0;
}

.announcement .container, .news .container {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  padding: 0;
  margin: 0;
}

@media (max-width: 1239px) {
  .announcement, .news {
    width: 300px;
  }
}

@media (max-width: 991px) {
  .announcement, .news {
    width: calc(35% - 30px);
  }
}

@media (max-width: 779px) {
  .announcement, .news {
    width: 100%;
    margin-bottom: 80px;
  }
}

@media (max-width: 600px) {
  .announcement, .news {
    margin-bottom: 60px;
  }
}

@media (max-width: 432px) {
  .announcement, .news {
    margin-bottom: 40px;
  }
}

/* Shared information */
.sharedInformation {
  display: block;
  width: 320px;
  /* width: 100%; */
  padding: 0;
  margin: 0;
}

.sharedInformation .container {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  padding: 0;
  margin: 0;
}

.buttonList {
  display: flex;
  flex: 0 0 auto;
  flex-flow: row wrap;
  justify-content: center;
  align-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 0;
  margin: 0;
}

.buttonList .button {
  display: flex;
  flex: 0 0 auto;
  flex-flow: row nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100%;
  height: 54px;
  padding: 0;
  margin: 0 0 18px 0;
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
}

.buttonList .button:last-child {
  margin: 0;
}

.buttonList .button:hover, .buttonList .button:active, 
.buttonList .button:focus, .buttonList .button:focus-within,
.buttonList a[href]:hover, .buttonList a[href]:active, 
.buttonList a[href]:focus, .buttonList a[href]:focus-within {
  color: #fff !important;
}

.buttonList .button.blue {
  background-color: #4576b1;
}

.buttonList .button.orange {
  background-color: #f28542;
}

.buttonList .button.green {
  background-color: #45b16b;
}

.buttonList .button.blue, .buttonList .button.blue:hover, .buttonList .button.blue:hover,
.buttonList .button.orange, .buttonList .button.orange:hover, .buttonList .button.orange:hover,
.buttonList .button.green, .buttonList .button.green:hover, .buttonList .button.green:hover {
  color: #fff;
}
/* IE 11 hacks */

@media (max-width: 1239px) {
  .sharedInformation {
    width: 220px;
  }

  .buttonList .button {
    height: 48px;
    margin: 0 0 16px 0;
    border-radius: 4px;
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .sharedInformation {
    width: 100%;
  }

  .buttonList {
    flex-flow: row nowrap;
    justify-content: space-between;
    align-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .buttonList .button {
    width: 30%;
    height: 42px;
    margin: 0 0 14px 0;
    border-radius: 4px;
    font-size: 14px;
  }
}

@media (max-width: 779px) {
  .sharedInformation {
    width: 100%;
  }

  .buttonList {
    flex-flow: row nowrap;
    justify-content: space-between;
    margin: 20px 0 0 0;
  }

  .buttonList .button {
    width: 30%;
    height: 80px;
    padding: 0;
    margin: 0;
    border-radius: 6px;
    font-size: 20px;
    color: #fff;
  }
}

@media (max-width: 600px) {
  .buttonList {
    margin: 16px 0 0 0;
  }

  .buttonList .button {
    height: 60px;
    border-radius: 5px;
    font-size: 16px;
  }
}

@media (max-width: 432px) {
  .buttonList {
    margin: 10px 0 0 0;
  }

  .buttonList .button {
    height: 48px;
    border-radius: 4px;
    font-size: 14px;
  }
}

@media (max-width: 348px) {
  .buttonList .button {
    height: 40px;
    border-radius: 3px;
    font-size: 12px;
  }
}

.layout--onecol .block-region-content {
  width: 100%;
  max-width: 1200px;
  padding: 0;
  margin: 0 auto;
}

@media (max-width: 1239px) {
  .layout--onecol .block-region-content {
    max-width: 900px;
  }
}

@media (max-width: 991px) {
  .layout--onecol .block-region-content {
    max-width: auto;
    padding: 0 30px;
  }
}