/* Index common section */
.sectionTitle {
  width: 100%;
  height: 54px;
}

.sectionTitle h2 {
  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: #0062ac;
}

.sectionTitle .more {
  display: block;
  color: #0062ac;
  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,
.announcement 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: 88px;
  }

  .sectionTitle h2 {
    font-size: 48px;
    margin: 0 0 40px 0;
  }

  .sectionTitle .more {
    margin: -62px 0 0 0;
    font-size: 22px;
    line-height: 1;
    height: 22px;
  }
  
  .sectionTitle .more::after {
    width: 6px;
    height: 14px;
    margin: 0 0 0 6px;
  }
}

@media (max-width: 600px) {
  .sectionTitle {
    height: 66px;
  }

  .sectionTitle h2 {
    font-size: 36px;
    margin: 0 0 30px 0;
  }

  .sectionTitle .more {
    margin: -50px 0 0 0;
    font-size: 18px;
    line-height: 1;
    height: 18px;
  }
}

@media (max-width: 432px) {
  .sectionTitle {
    height: 44px;
  }

  .sectionTitle h2 {
    font-size: 24px;
    margin: 0 0 20px 0;
  }

  .sectionTitle .more {
    margin: -30px 0 0 0;
    font-size: 12px;
    line-height: 1;
    height: 12px;
  }

  .sectionTitle .more::after {
    width: 6px;
    height: 12px;
  }
}

/* Main section */
.mainSection {
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  align-content: center;
  align-items: flex-start;
  width: 100%;
  height: 500px;
  padding: 40px 0 25px 0;
  margin: 0;
}

.mainSection .container {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}

@media (max-width: 1239px) {
  .mainSection {
    height: 390px;
  }
}

@media (max-width: 991px) {
  .mainSection {
    height: 323px;
  }
}

@media (max-width: 779px) {
  .mainSection {
    align-items: center;
    height: 420px;
    padding: 0;
  }

  .mainSection .container {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .mainSection {
    height: 320px;
  }
}

@media (max-width: 432px) {
  .mainSection {
    height: 240px;
  }
}

/* Main slider */
.mainSlider {
  display: flex;
  flex: 0 0 auto;
  justify-content: flex-start;
  width: 790px;
  height: 435px;
  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: auto;
  max-width: none;
  height: 100%;
}

.mainSliderTitle {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
  background-color: rgba(0, 98, 172, 0.8);
  padding: 9px 20px; 
}

.mainSliderTitle .titleText {
  height: 42px;
  font-size: 20px;
  font-family: "Microsoft YaHei", sans-serif;
  font-weight: bold;
  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: 1920px) {
  .mainSliderImg {
    width: 100%;
    height: 520px;
  }

  .mainSliderImg img {
    width: auto;
    max-width: none;
    height: 100%;
  }
} */

@media (max-width: 1239px) {
  .mainSlider {
    width: 590px;
    height: 324px;
  }

  .mainSliderImg {
    height: 324px;
  }

  .mainSliderNavPrev, .mainSliderNavNext {
    top: calc(50% - 54px);
    width: 42px;
    height: 70px;
  }
}

@media (max-width: 991px) {
  .mainSlider {
    width: 470px;
    height: 258px;
  }

  .mainSliderImg {
    height: 258px;
  }

  .mainSliderNavPrev, .mainSliderNavNext {
    top: calc(50% - 50px);
    width: 40px;
    height: 64px;
  }
}

@media (max-width: 779px) {
  .mainSlider {
    width: 100%;
    height: 420px;
  }

  .mainSliderImg {
    height: 420px;
  }

  .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: 320px;
  }

  .mainSliderImg {
    height: 320px;
  }

  .mainSliderTitle {
    height: 60px;
    padding: 12px 24px;
  }
  
  .mainSliderTitle .titleText {
    height: 36px;
    font-size: 24px;
    line-height: 36px;
  }
}

@media (max-width: 432px) {
  .mainSlider {
    height: 240px;
  }

  .mainSliderImg {
    height: 240px;
  }

  .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: flex-end;
  align-items: center;
  width: 380px;
  height: 360px;
  border: 1px solid #e4e4e4;
  border-bottom: none;
  margin: 0;
}

.functionDial .dialIcon {
  display: flex;
  flex: 0 0 auto;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 33.33%;
  height: 120px;
  border-right: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
  background-color: transparent;
}

.functionDial .dialIcon:hover {
  background-color: #0062ac;
}

.functionDial .dialIcon:nth-child(3n+3) {
  border-right: none;
}

.dialIcon .iconSelect {
  display: flex;
  flex: 0 0 auto;
  flex-flow: row wrap;
  width: 100%;
  height: 46px;
  margin: 0 0 14px 0;
}

.dialIcon .iconSelect img {
  max-height: 46px;
}

.dialIcon .iconSelect .normal {
  display: block;
  margin: auto;
}

.dialIcon .iconSelect .active {
  display: none;
}

.dialIcon:hover .iconSelect .normal, .dialIcon:active .iconSelect .normal,
.dialIcon:focus .iconSelect .normal, .dialIcon:focus-within .iconSelect .normal {
  display: none;
}

.dialIcon:hover .iconSelect .active, .dialIcon:active .iconSelect .active,
.dialIcon:focus .iconSelect .active, .dialIcon:focus-within .iconSelect .active {
  display: block;
  margin: auto;
}

.dialIcon .iconTitle {
  font-size: 14px;
  line-height: 1;
  color: #333;
}

.dialIcon:hover .iconTitle, .dialIcon:active .iconTitle,
.dialIcon:focus .iconTitle, .dialIcon:focus-within .iconTitle,
.dialIcon[href]:hover .iconTitle, .dialIcon[href]:active .iconTitle,
.dialIcon[href]:focus .iconTitle, .dialIcon[href]:focus-within .iconTitle {
  color: #fff;
}

@media (max-width: 1239px) {
  .functionDial {
    width: 280px;
  }
  
  .dialIcon .iconSelect {
    height: 30px;
  }

  .dialIcon .iconSelect img {
    max-height: 30px;
  }
}

@media (max-width: 991px) {
  .functionDial {
    width: 220px;
    height: 258px;
  }
  
  .functionDial .dialIcon {
    height: 86px;
  }

  .dialIcon .iconSelect {
    height: 26px;
  }

  .dialIcon .iconSelect img {
    max-height: 26px;
  }
}

@media (max-width: 779px) {
  .functionDial {
    display: none;
  }
}


/* News */
.news {
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  align-content: center;
  align-items: flex-start;
  width: 100%;
  height: 290px;
  padding: 0;
  /* padding: 24px 0 48px 0; */
  margin: 0;
}

.newsList {
  display: flex;
  flex: 0 0 auto;
  width: 100%;
}

.newsItem {
  display: block;
  overflow: hidden;
  width: 380px;
  margin: 0 30px 0 0;
}

.newsItem:nth-child(3n+3) {
  margin-right: 0;
}

.newsImg {
  display: block;
  overflow: hidden;
  width: 380px;
  height: 226px;
}

.newsImg img {
  display: block;
  width: 100%;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.newsImg:hover img {
  -webkit-transform: scale(1.07);
  -moz-transform: scale(1.07);
  -ms-transform: scale(1.07);
  -o-transform: scale(1.07);
  transform: scale(1.07);
}

.newsTitle {
  font-size: 16px;
  line-height: 24px;
  display: block;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  padding: 0;
  margin: 14px 0 0 0;
}

@media (max-width: 1239px) {
  .news {
    height: 224px;
  }

  .newsItem {
    width: 280px;
    margin: 0 30px 0 0;
  }
  
  .newsImg {
    width: 280px;
    height: 166px;
  }

  .newsTitle {
    font-size: 14px;
    line-height: 22px;
  }
}

@media (max-width: 991px) {
  .news {
    height: calc(20vw + 20px);
  }

  .newsItem {
    width: calc(33.33% - 20px);
    margin: 0 30px 0 0;
  }
  
  .newsImg {
    width: 100%;
    height: calc(20vw - 40px);
  }
}

@media (max-width: 779px) {
  .news {
    height: calc(10vw + 384px);
    padding: 0;
  }
  
  .newsList {
    flex-flow: row wrap;
  }
  
  .newsItem {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 126px;
    margin: 0 0 5vw 0;
  }

  .newsItem:last-child {
    margin: 0;
  }

  .newsImg {
    display: block;
    overflow: hidden;
    width: 34%;
    height: 20vw;
    margin: 0 4% 0 0;
  }
  
  .newsImg img {
    display: block;
    width: 100%;
  }
  
  .newsTitle {
    font-size: 28px;
    line-height: 42px;
    width: 62%;
    -webkit-line-clamp: 3;
    margin: 0;
  }
}

@media (max-width: 600px) {
  .news {
    height: calc(10vw + 306px);
  }
  
  .newsItem {
    height: 102px;
  }

  .newsTitle {
    font-size: 22px;
    line-height: 34px;
  }
}

@media (max-width: 432px) {
  .news {
    height: calc(10vw + 198px);
  }
  
  .newsItem {
    height: 66px;
  }

  .newsTitle {
    font-size: 14px;
    line-height: 22px;
  }
}

/* Announcement */
.announcement {
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  align-content: center;
  align-items: flex-start;
  width: 100%;
  height: 256px;
  padding: 0;
  /* padding: 24px 0 48px 0; */
  margin: 0;
  background-image: url('../images/announcement-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.announcementList {
  display: flex;
  flex: 0 0 auto;
  flex-flow: row wrap;
  justify-content: center;
  width: 100%;
  height: 256px;
}

.announcementItem {
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  align-items: center;
  width: 380px;
  height: 114px;
  padding: 0 30px 0 20px;
  margin: 0 30px 28px 0;
  background-color: #fff;
}

.announcementItem:hover {
  background-color: #eff;
}

.announcementItem:nth-child(3n+3) {
  margin-right: 0;
}

.announcementItem:nth-child(n+4) {
  margin-bottom: 0;
}

.announcementItem .date {
  display: block;
  width: 48px;
}

.announcementItem .date .day, .announcementItem .date .month {
  display: block;
  width: 100%;
  text-align: center;
  color: #0062ac;
}

.announcementItem .date .day {
  font-size: 28px;
  line-height: 1;
  margin: 0 0 8px 0;
}

.announcementItem .date .month {
  font-size: 12px;
  line-height: 1;
}

.announcementItem .divider {
  display: block;
  width: 12px;
  font-size: 20px;
  text-align: center;
  margin: 0 20px;
}

.announcementItem .title {
  width: 230px;
  font-size: 16px;
  line-height: 24px;
  max-height: 72px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}


@media (max-width: 1239px) {
  .announcementItem {
    width: 280px;
    padding: 0 20px;
    margin: 0 30px 28px 0;
  }
  
  .announcementItem:nth-child(3n+3) {
    margin-right: 0;
  }
  
  .announcementItem:nth-child(n+4) {
    margin-bottom: 0;
  }

  .announcementItem .date .day {
    font-size: 24px;
    line-height: 1;
    margin: 0 0 8px 0;
  }

  .announcementItem .divider {
    margin: 0 16px;
  }

  .announcementItem .title {
    width: 156px;
    font-size: 14px;
    line-height: 22px;
    max-height: 66px;
  }
}

@media (max-width: 991px) {
  .announcementItem {
    width: calc(33.33% - 20px);
    padding: 0 15px;
    margin: 0 30px 24px 0;
  }
  
  .announcementItem:nth-child(3n+3) {
    margin-right: 0;
  }
  
  .announcementItem:nth-child(n+4) {
    margin-bottom: 0;
  }

  .announcementItem .date {
    width: 40px;
  }
  
  .announcementItem .date .day {
    font-size: 22px;
    line-height: 1;
    margin: 0 0 8px 0;
  }

  .announcementItem .date .month {
    font-size: 10px;
  }

  .announcementItem .divider {
    width: 10px;
    font-size: 18px;
    margin: 0 10px;
  }

  .announcementItem .title {
    width: calc(100% - 70px);
  }
}

@media (max-width: 779px) {
  .announcement {
    height: 570px;
  }

  .announcementList {
    height: 570px;
  }

  .announcementItem {
    display: flex;
    flex: 0 0 auto;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 120px;
    padding: 18px 30px;
    margin: 0 0 30px 0;
    background-color: #fff;
  }
  
  .announcementItem:nth-child(3n+3) {
    margin: 0 0 30px 0;
  }
  
  .announcementItem:nth-child(n+4) {
    margin: 0;
  }

  .announcementItem:nth-child(n+5) {
    display: none;
  }
  
  .announcementItem .date {
    width: 80px;
  }
  
  .announcementItem .date .day, .announcementItem .date .month {
    width: 100%;
    text-align: center;
    color: #0062ac;
  }
  
  .announcementItem .date .day {
    font-size: 36px;
    line-height: 1;
    margin: 0 0 18px 0;
  }
  
  .announcementItem .date .month {
    font-size: 18px;
    line-height: 1;
  }
  
  .announcementItem .divider {
    width: 20px;
    font-size: 32px;
    margin: 0 25px;
  }
  
  .announcementItem .title {
    width: calc(100% - 150px);
    font-size: 26px;
    line-height: 42px;
    max-height: 84px;
    -webkit-line-clamp: 2;
  }
}

@media (max-width: 600px) {
  .announcement {
    height: 448px;
  }

  .announcementList {
    height: 448px;
  }

  .announcementItem {
    height: 90px;
    padding: 16px 24px;
    margin: 0 0 22px 0;
  }
  
  .announcementItem:nth-child(3n+3) {
    margin: 0 0 30px 0;
  }
    
  .announcementItem .date {
    width: 60px;
  }
    
  .announcementItem .date .day {
    font-size: 28px;
    line-height: 1;
    margin: 0 0 12px 0;
  }
  
  .announcementItem .date .month {
    font-size: 14px;
    line-height: 1;
  }
  
  .announcementItem .divider {
    width: 14px;
    font-size: 24px;
    margin: 0 18px;
  }
  
  .announcementItem .title {
    width: calc(100% - 110px);
    font-size: 20px;
    line-height: 30px;
    max-height: 60px;
  }
}

@media (max-width: 432px) {
  .announcement {
    height: 304px;
  }

  .announcementList {
    height: 304px;
  }

  .announcementItem {
    height: 64px;
    padding: 12px 18px;
    margin: 0 0 16px 0;
  }
  
  .announcementItem:nth-child(3n+3) {
    margin: 0 0 16px 0;
  }
  
  .announcementItem .date {
    width: 40px;
  }
  
  .announcementItem .date .day, .announcementItem .date .month {
    width: 100%;
    text-align: center;
    color: #0062ac;
  }
  
  .announcementItem .date .day {
    font-size: 20px;
    line-height: 1;
    margin: 0 0 8px 0;
  }
  
  .announcementItem .date .month {
    font-size: 10px;
    line-height: 1;
  }
  
  .announcementItem .divider {
    width: 10px;
    font-size: 16px;
    margin: 0 12px;
  }
  
  .announcementItem .title {
    width: calc(100% - 74px);
    font-size: 14px;
    line-height: 22px;
    max-height: 44px;
  }
}


/* Lower section */
.lowerSection {
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  width: 100%;
  margin: 0;
}

.lowerSection {
  align-items: center;
  height: 400px;
  padding: 0;
}

.lowerSection .container {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}

@media (max-width: 779px) {
  .lowerSection {
    height: 748px;
  }
}

@media (max-width: 600px) {
  .lowerSection {
    height: 578px;
  }
}

@media (max-width: 432px) {
  .lowerSection {
    height: 424px;
  }
}


/* Activity */
.activity {
  display: flex;
  flex: 0 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  /* width: 790px;
  height: 400px; */
  padding: 0;
  /* padding: 44px 0 48px 0; */
  margin: 0;
}

.activity .container {
  width: 100%;
  flex-flow: row wrap;
  margin: 0 auto;
}

.activity .sectionTitle {
  padding: 0 14px 0 0;
}

.activityList {
  display: flex;
  flex: 0 0 auto;
  flex-flow: row wrap;
  justify-content: center;
  width: 100%;
  height: 246px;
  padding: 0;
  margin: 0;
}

.activityItem {
  display: flex;
  flex: 0 0 auto;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: flex-start;
  width: 380px;
  height: 108px;
  padding: 0;
  margin: 0 30px 30px 0;
  background-color: #fff;
}

.activityItem:nth-child(2n+2) {
  margin-right: 0;
}

.activityItem:nth-child(n+3) {
  margin-bottom: 0;
}

.activityItem .date {
  display: block;
  width: 78px;
  margin: 0 16px 0 0;
}

.activityItem .date .monthDay, .activityItem .date .year {
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 78px;
  height: 36px;
  font-size: 14px;
  line-height: 1;
}

.activityItem .date .monthDay {
  color: #fff;
  background-color: #0062ac;
}

.activityItem .date .year {
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-top: none;
}

.activityItem .detail {
  width: 286px;
  margin: 0;
}

.activityItem .detail .title {
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
  /* color: #000; */
  padding: 0;
  margin: 0;
  max-height: 64px;
  /* padding: 0;
  margin: 0 0 16px 0; */
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.activityItem .detail .title:hover, .activityItem .detail .title:active,
.activityItem .detail .title:focus, .activityItem .detail .title:focus-within,
.activityItem .detail .title[href]:hover, .activityItem .detail .title[href]:active,
.activityItem .detail .title[href]:focus, .activityItem .detail .title[href]:focus-within {
  color: #0062ac;
}

.activityItem .detail .info {
  display: block;
  width: 100%;
  padding: 16px 0 0 0;
  margin: 0;
}

.activityItem .detail .info .time, .activityItem .detail .info .location {
  display: block;
  font-size: 14px;
  line-height: 1;
  color: #7f7f7f;
}

.activityItem .detail .info .time {
  margin: 0 0 12px 0;
}


@media (max-width: 1239px) {
  .activity {
    /* width: 590px; */
  }

  .activityItem {
    width: 280px;
    height: 108px;
    margin: 0 30px 30px 0;
  }

  .activityItem .date {
    width: 70px;
  }
  
  .activityItem .date .monthDay, .activityItem .date .year {
    width: 70px;
    height: 30px;
  }
  
  .activityItem .detail {
    width: 194px;
    margin: 0;
  }
}

@media (max-width: 991px) {
  .activity {
    /* width: 100%; */
    /* padding: 50px 30px 70px 30px; */
  }

  .activity .container {
    width: 100%;
    flex-flow: row wrap;
    margin: 0 30px;
  }

  .activity .sectionTitle {
    padding: 0;
  }

  .activityItem {
    width: calc(50% - 15px);
    height: 108px;
    margin: 0 30px 30px 0;
  }

  .activityItem .date {
    margin: 0 15px 0 0;
  }
  
  .activityItem .detail {
    width: calc(100% - 85px);
    margin: 0;
  }
}

@media (max-width: 779px) {
  .activity {
    /* height: 748px; */
    padding: 0;
    /* padding: 50px 0 70px 0; */
  }

  .activityList {
    width: 100%;
    height: 540px;
  }

  .activityItem {
    width: 100%;
    height: 160px;
    margin: 0 0 30px 0;
  }

  .activityItem:nth-child(n+4) {
    display: none;
  }

  .activityItem .date {
    display: block;
    width: 116px;
    margin: 0 32px 0 0;
  }

  .activityItem .date .monthDay, .activityItem .date .year {
    width: 116px;
    height: 54px;
    font-size: 24px;
    line-height: 1;
  }
  
  .activityItem .detail {
    width: calc(100% - 148px);
    margin: 0;
  }

  .activityItem .detail .title {
    width: 100%;
    font-size: 26px;
    line-height: 38px;
  }

  .activityItem .detail .info .time, .activityItem .detail .info .location {
    font-size: 22px;
    line-height: 1;
  }

  .activityItem .detail .info .time {
    margin: 0 0 16px 0;
  }
}

@media (max-width: 600px) {
  .activity {
    /* height: 578px; */
    /* padding: 36px 0 48px 0; */
  }

  .activityList {
    height: 428px;
  }

  .activityItem {
    height: 128px;
    margin: 0 0 22px 0;
  }

  .activityItem:nth-child(n+4) {
    display: none;
  }

  .activityItem .date {
    display: block;
    width: 88px;
    margin: 0 24px 0 0;
  }

  .activityItem .date .monthDay, .activityItem .date .year {
    width: 88px;
    height: 40px;
    font-size: 18px;
    line-height: 1;
  }
  
  .activityItem .detail {
    width: calc(100% - 112px);
    margin: 0;
  }

  .activityItem .detail .title {
    font-size: 20px;
    line-height: 30px;
  }

  .activityItem .detail .info .time, .activityItem .detail .info .location {
    font-size: 16px;
    line-height: 1;
  }

  .activityItem .detail .info .time {
    margin: 0 0 12px 0;
  }
}

@media (max-width: 432px) {
  .activity {
    /* height: 424px; */
    /* padding: 24px 0 36px 0; */
  }

  .activityList {
    height: 320px;
  }

  .activityItem {
    height: 96px;
    margin: 0 0 16px 0;
  }

  .activityItem:nth-child(n+4) {
    display: none;
  }

  .activityItem .date {
    display: block;
    width: 60px;
    margin: 0 16px 0 0;
  }

  .activityItem .date .monthDay, .activityItem .date .year {
    width: 60px;
    height: 30px;
    font-size: 14px;
    line-height: 1;
  }
  
  .activityItem .detail {
    width: calc(100% - 76px);
    margin: 0;
  }

  .activityItem .detail .title {
    font-size: 14px;
    line-height: 20px;
  }

  .activityItem .detail .info .time, .activityItem .detail .info .location {
    font-size: 12px;
    line-height: 1;
  }

  .activityItem .detail .info .time {
    margin: 0 0 8px 0;
  }
}

/* Resources */
.resources {
  display: flex;
  flex: 0 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
  width: 380px;
  /* height: 400px; */
  padding: 0;
  /* padding: 44px 0 48px 0; */
  margin: 0;
}

.resources .container {
  width: 100%;
  flex-flow: row wrap;
  margin: 0 auto;
}

.resourceList {
  width: 100%;
}

.resourceItem {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 48px;
  border-bottom: 1px dashed #d6d6d6;
  margin: 0;
}

.resourceItem::before {
  content: "\2022";
  color: #0062ac;
  counter-reset: count;
  margin-right: 0.5rem;
}

.resourceItem .title {
  font-size: 16px;
  line-height: 1;
  height: 16px;
  max-height: 16px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}


@media (max-width: 1239px) {
  .resources {
    width: 280px;
  }
}

@media (max-width: 991px) {
  .resources {
    display: none;
  }
}