header {
  width: 100%;
  height: 124px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-image: linear-gradient(180deg, rgba(22, 22, 22, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
}

@media screen and (max-width: 750px) {
  header {
    height: 0.87rem;
    padding: 0.24rem;
    background: #793e12;
  }
}

header .logo {
  width: 430px;
  height: 40px;
  flex-shrink: 0;
  background: url("../img/logo.png") no-repeat;
  background-size: 100% 100%;
}

@media screen and (max-width: 750px) {
  header .logo {
    width: 5.38rem;
    height: 0.5rem;
  }
}

header .header-right {
  flex: 1;
  margin-left: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@media screen and (max-width: 750px) {
  header .header-right {
    position: relative;
    margin-left: 0;
    width: 0.3rem;
    height: 0.3rem;
    top: 0;
    display: block;
  }
  header .header-right .mb-menu {
    width: 0.3rem;
    height: 0.3rem;
    position: absolute;
    top: 0;
    right: 0.05rem;
    background: url("../img/menu.png") no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
  }
  header .header-right.on .menus {
    display: block;
  }
}

header .header-right > div {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 750px) {
  header .header-right > div {
    position: absolute;
    right: 0.58rem;
    font-size: 0;
    height: 100%;
  }
}

header .header-right > div a {
  font-size: 16px;
  color: #fff;
  padding-left: 0.12rem;
  margin-left: 0.12rem;
  position: relative;
}

@media screen and (max-width: 750px) {
  header .header-right > div a {
    padding-left: 0;
    display: none;
    font-size: 0.16rem;
  }
}

header .header-right > div a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 0.12rem;
  background-color: #fff;
}

header .header-right > div a:first-child::before {
  content: none;
}

@media screen and (max-width: 750px) {
  header .header-right > div a:last-child {
    flex-shrink: 0;
    display: inline-block;
  }
  header .header-right > div a:last-child img {
    vertical-align: middle;
    width: 0.3rem;
    height: 0.3rem;
  }
  header .header-right > div a:last-child::before {
    content: none;
  }
}

header .header-right .menus {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 750px) {
  header .header-right .menus {
    display: none;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0.87rem;
    width: 100%;
    background: #fff;
    height: 100vh;
    z-index: 10;
    padding: 0.3rem;
  }
}

header .header-right .menus .menu-item {
  font-size: 16px;
  position: relative;
}

@media screen and (max-width: 750px) {
  header .header-right .menus .menu-item {
    border-bottom: 1px solid #ddd;
  }
  header .header-right .menus .menu-item.expand::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0.1rem;
    font-size: 0.3rem;
    color: #793e12;
    transform: rotate(0deg);
    transition: transform 0.3s;
  }
  header .header-right .menus .menu-item.expand.on::after {
    transform: rotate(45deg);
    transition: transform 0.3s;
  }
}

header .header-right .menus .menu-item > a {
  color: #fff;
}

@media screen and (max-width: 750px) {
  header .header-right .menus .menu-item > a {
    display: inline-block;
    width: 100%;
    padding: 0.16rem 0;
    font-size: 0.28rem;
    color: #333;
    font-weight: bold;
  }
}

header .header-right .menus .menu-item .submenu {
  display: none;
  position: absolute;
  padding: 0.08rem;
  background: #fff;
}

@media screen and (max-width: 750px) {
  header .header-right .menus .menu-item .submenu {
    position: static;
    padding-left: 0.24rem;
  }
  header .header-right .menus .menu-item .submenu.on {
    display: block;
  }
}

header .header-right .menus .menu-item .submenu .submenu-item {
  white-space: nowrap;
  padding: 4px;
}

header .header-right .menus .menu-item .submenu .submenu-item > a {
  font-size: 16px;
  color: #333;
  padding: 4px;
}

header .header-right .menus .menu-item .submenu .submenu-item:hover > a {
  color: #fff;
  background-color: #793e12;
}

@media screen and (max-width: 750px) {
  header .header-right .menus .menu-item .submenu .submenu-item {
    padding: 0.08rem 0;
  }
  header .header-right .menus .menu-item .submenu .submenu-item > a {
    font-size: 0.24rem;
  }
}

header .header-right .menus .menu-item:hover > a {
  font-weight: bold;
}

header .header-right .menus .menu-item:hover .submenu {
  display: block;
}

footer {
  width: 100%;
  height: 46px;
  background-color: #793e12;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 750px) {
  footer {
    height: 1.5rem;
    flex-direction: column;
  }
}

footer p {
  font-size: 14px;
  color: #fff;
}

@media screen and (max-width: 750px) {
  footer p {
    font-size: 0.24rem;
  }
}

.search-box {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
}

.search-box .search-container {
  width: 80%;
  height: 120px;
  background: #fff;
  position: absolute;
  border-radius: 4px;
  left: 50%;
  top: 30%;
  transform: translateX(-50%);
  padding: 40px;
}

@media screen and (max-width: 750px) {
  .search-box .search-container {
    height: 1.2rem;
    padding: 0.4rem;
    border-radius: 0.04rem;
  }
}

.search-box .search-container .close {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 24px;
  height: 24px;
  background: url("../img/close.png") no-repeat;
  background-size: 100% 100%;
  cursor: pointer;
}

@media screen and (max-width: 750px) {
  .search-box .search-container {
    right: 0.08rem;
    top: 0.08rem;
    width: 0.24rem;
    height: 0.24rem;
  }
}

.search-box .search-container input {
  width: 100%;
  vertical-align: top;
  height: 40px;
  padding: 0 16px;
  font-size: 20px;
  color: #333;
  border: 1px solid #666;
  border-radius: 4px;
}

@media screen and (max-width: 750px) {
  .search-box .search-container input {
    height: 0.4rem;
    padding: 0 0.16rem;
    font-size: 0.2rem;
    border-radius: 0.04rem;
  }
}

.search-box .search-container input:focus-visible {
  outline: none;
  border: 1px solid #666;
}

.main .banner {
  width: 100%;
  height: 600px;
  position: relative;
}

@media screen and (max-width: 750px) {
  .main .banner {
    height: 2.8rem;
    margin-top: 0.87rem;
  }
}

.main .banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main .banner:hover .swiper-button-next,
.main .banner:hover .swiper-button-prev {
  display: block;
}

.main .banner .swiper-button-prev {
  display: none;
  width: 0.8rem;
  height: 0.8rem;
  background: url("../img/banner-jt-lt.png") no-repeat;
  background-size: 0.8rem 0.8rem;
}

.main .banner .swiper-button-next {
  display: none;
  width: 0.8rem;
  height: 0.8rem;
  background: url("../img/banner-jt-rt.png") no-repeat;
  background-size: 0.8rem 0.8rem;
}

.main .banner .swiper-pagination-bullet {
  margin: 0 0.1rem;
  background: #fff;
  opacity: 1;
}

.main .banner .swiper-pagination-bullet-active {
  position: relative;
}

.main .banner .swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.4rem;
  height: 0.4rem;
  background: url("../img/dot-active.png") no-repeat;
  background-size: 100% 100%;
}

.main .block {
  width: 1200px;
  margin: 60px auto 40px;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 750px) {
  .main .block {
    width: 100%;
    margin: 0;
    flex-direction: column;
  }
}

.main .field {
  background: url("../img/field.png") no-repeat;
  background-size: 100% 100%;
  overflow: hidden;
}

.main .news {
  width: 100%;
  padding: 16px;
  padding-top: 0;
  background: url("../img/news-bg.png") no-repeat left top;
  background-size: 100% 100%;
}

.main .news > .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  padding-bottom: 14px;
  font-size: 0;
}

@media screen and (max-width: 750px) {
  .main .news > .title {
    padding-top: 0.32rem;
    padding-bottom: 0.14rem;
  }
}

.main .news > .title .title-name {
  display: flex;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 3px solid #793e12;
  padding-right: 8px;
}

@media screen and (max-width: 750px) {
  .main .news > .title .title-name {
    padding-bottom: 0.08rem;
    padding-right: 0.08rem;
  }
}

.main .news > .title .title-name img {
  width: 40px;
  height: 40px;
  margin-right: 12px;
}

@media screen and (max-width: 750px) {
  .main .news > .title .title-name img {
    width: 0.4rem;
    height: 0.4rem;
    margin-right: 0.12rem;
  }
}

.main .news > .title .title-name span:first-child {
  font-size: 24px;
  color: #000;
}

@media screen and (max-width: 750px) {
  .main .news > .title .title-name span:first-child {
    font-size: 0.24rem;
  }
}

.main .news > .title .title-name span:last-child {
  font-size: 14px;
  color: #000;
  display: block;
}

@media screen and (max-width: 750px) {
  .main .news > .title .title-name span:last-child {
    font-size: 0.14rem;
  }
}

.main .news > .title .more {
  font-size: 18px;
  color: #666;
}

@media screen and (max-width: 750px) {
  .main .news > .title .more {
    font-size: 0.18rem;
  }
}

.main .news .body {
  display: flex;
}

@media screen and (max-width: 750px) {
  .main .news .body {
    flex-direction: column;
  }
}

.main .news .body .news-banner {
  width: 620px;
  flex-shrink: 0;
  background-color: #f8f8f8;
  padding: 24px;
  border-radius: 8px;
}

@media screen and (max-width: 750px) {
  .main .news .body .news-banner {
    padding: 0.24rem;
    border-radius: 0.08rem;
    width: 100%;
  }
}

.main .news .body .news-banner .swiper-pagination {
  font-size: 0;
  top: 396px;
}

@media screen and (max-width: 750px) {
  .main .news .body .news-banner .swiper-pagination {
    top: 3.96rem;
  }
}

.main .news .body .news-banner .banner-box {
  position: relative;
  height: 360px;
}

@media screen and (max-width: 750px) {
  .main .news .body .news-banner .banner-box {
    height: 3.6rem;
  }
}

.main .news .body .news-banner .banner-box img {
  width: 100%;
  height: 360px;
}

@media screen and (max-width: 750px) {
  .main .news .body .news-banner .banner-box img {
    height: 3.6rem;
  }
}

.main .news .body .news-banner .banner-box span {
  position: absolute;
  left: 24px;
  bottom: 24px;
  font-size: 20px;
  color: #fff;
}

@media screen and (max-width: 750px) {
  .main .news .body .news-banner .banner-box span {
    left: 0.24rem;
    bottom: 0.24rem;
    font-size: 0.2rem;
  }
}

.main .news .body .news-banner .info {
  margin-top: 30px;
}

@media screen and (max-width: 750px) {
  .main .news .body .news-banner .info {
    margin-top: 0.3rem;
  }
}

.main .news .body .news-banner .info .info-title {
  position: relative;
  padding-left: 16px;
  font-size: 18px;
  color: #793e12;
}

@media screen and (max-width: 750px) {
  .main .news .body .news-banner .info .info-title {
    padding-left: 0.16rem;
  }
}

.main .news .body .news-banner .info .info-title::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 16px;
  background-color: #793e12;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 750px) {
  .main .news .body .news-banner .info .info-title::before {
    width: 0.04rem;
    height: 0.16rem;
  }
}

.main .news .body .news-banner .info .brief {
  font-size: 16px;
  color: #666;
}

@media screen and (max-width: 750px) {
  .main .news .body .news-banner .info .brief {
    font-size: 0.16rem;
  }
}

.main .news .body .news-column {
  flex: 1;
  margin-left: 24px;
  overflow: hidden;
}

@media screen and (max-width: 750px) {
  .main .news .body .news-column {
    margin: 0;
    padding: 0.24rem;
    background-color: #fff;
  }
}

.main .news .body .news-column .news-item {
  max-width: 490px;
  height: 85px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid #ddd;
  padding-left: 6px;
}

.main .news .body .news-column .news-item:hover {
  background: url("../img/news-item.png") no-repeat;
  background-size: 100% 100%;
}

.main .news .body .news-column .news-item span {
  font-size: 14px;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main .news .body .news-column .news-item .title {
  font-size: 18px;
  color: #000;
}

.main .teaching {
  flex-shrink: 0;
  width: 580px;
  background: #fff url("../img/teaching-bg.png") no-repeat left top;
  background-size: 100% 100%;
  padding: 16px;
  padding-top: 0;
}

@media screen and (max-width: 750px) {
  .main .teaching {
    width: 100%;
    padding: 0.24rem;
    padding-top: 0;
  }
}

.main .teaching .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  padding-bottom: 14px;
  font-size: 0;
}

@media screen and (max-width: 750px) {
  .main .teaching .title {
    padding-top: 0.32rem;
    padding-bottom: 0.14rem;
  }
}

.main .teaching .title .title-name {
  display: flex;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 3px solid #793e12;
  padding-right: 8px;
}

@media screen and (max-width: 750px) {
  .main .teaching .title .title-name {
    padding-bottom: 0.08rem;
    padding-right: 0.08rem;
  }
}

.main .teaching .title .title-name img {
  width: 40px;
  height: 40px;
  margin-right: 12px;
}

@media screen and (max-width: 750px) {
  .main .teaching .title .title-name img {
    width: 0.4rem;
    height: 0.4rem;
    margin-right: 0.12rem;
  }
}

.main .teaching .title .title-name span:first-child {
  font-size: 24px;
  color: #000;
}

@media screen and (max-width: 750px) {
  .main .teaching .title .title-name span:first-child {
    font-size: 0.24rem;
  }
}

.main .teaching .title .title-name span:last-child {
  font-size: 14px;
  color: #000;
  display: block;
}

@media screen and (max-width: 750px) {
  .main .teaching .title .title-name span:last-child {
    font-size: 0.14rem;
  }
}

.main .teaching .title .more {
  font-size: 18px;
  color: #666;
}

@media screen and (max-width: 750px) {
  .main .teaching .title .more {
    font-size: 0.18rem;
  }
}

.main .teaching .teaching-banner {
  display: flex;
}

.main .teaching .teaching-banner img {
  width: 336px;
  height: 246px;
  flex-shrink: 0;
}

@media screen and (max-width: 750px) {
  .main .teaching .teaching-banner img {
    width: 3.36rem;
    height: 2.46rem;
  }
}

.main .teaching .teaching-banner .info {
  flex: 1;
  background-color: #fdf8ed;
  padding: 12px;
}

@media screen and (max-width: 750px) {
  .main .teaching .teaching-banner .info {
    padding: 0.12rem;
  }
}

.main .teaching .teaching-banner .info .title {
  font-size: 18px;
  color: #333;
  max-height: 86px;
  overflow: hidden;
}

@media screen and (max-width: 750px) {
  .main .teaching .teaching-banner .info .title {
    font-size: 0.18rem;
    max-height: 0.86rem;
  }
}

.main .teaching .teaching-banner .info .brief {
  font-size: 14px;
  color: #666;
  margin-top: 6px;
}

@media screen and (max-width: 750px) {
  .main .teaching .teaching-banner .info .brief {
    margin-top: 0.06rem;
  }
}

.main .teaching .teaching-column .teaching-item {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  padding-left: 24px;
  position: relative;
}

@media screen and (max-width: 750px) {
  .main .teaching .teaching-column .teaching-item {
    height: 0.58rem;
  }
}

.main .teaching .teaching-column .teaching-item::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #793e12;
  border-radius: 50%;
}

@media screen and (max-width: 750px) {
  .main .teaching .teaching-column .teaching-item::before {
    left: 0.06rem;
    width: 0.06rem;
    height: 0.06rem;
  }
}

.main .teaching .teaching-column .teaching-item .brief {
  font-size: 16px;
  color: #000;
  margin-right: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 750px) {
  .main .teaching .teaching-column .teaching-item .brief {
    font-size: 0.16rem;
  }
}

.main .teaching .teaching-column .teaching-item .date {
  font-size: 16px;
  color: #000;
  flex-shrink: 0;
  white-space: nowrap;
}

@media screen and (max-width: 750px) {
  .main .teaching .teaching-column .teaching-item .date {
    font-size: 0.16rem;
  }
}

.main .notice {
  width: 580px;
  flex-shrink: 0;
  background: #fff url("../img/teaching-bg.png") no-repeat left top;
  background-size: 100% 100%;
  padding: 16px;
  padding-top: 0;
}

@media screen and (max-width: 750px) {
  .main .notice {
    width: 100%;
    padding: 0.24rem;
    padding-top: 0;
    margin-top: 0.32rem;
  }
}

.main .notice .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  padding-bottom: 14px;
  font-size: 0;
}

@media screen and (max-width: 750px) {
  .main .notice .title {
    padding-top: 0.32rem;
    padding-bottom: 0.14rem;
  }
}

.main .notice .title .title-name {
  display: flex;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 3px solid #793e12;
  padding-right: 8px;
}

@media screen and (max-width: 750px) {
  .main .notice .title .title-name {
    padding-bottom: 0.08rem;
    padding-right: 0.08rem;
  }
}

.main .notice .title .title-name img {
  width: 40px;
  height: 40px;
  margin-right: 12px;
}

@media screen and (max-width: 750px) {
  .main .notice .title .title-name img {
    width: 0.4rem;
    height: 0.4rem;
    margin-right: 0.12rem;
  }
}

.main .notice .title .title-name span:first-child {
  font-size: 24px;
  color: #000;
}

@media screen and (max-width: 750px) {
  .main .notice .title .title-name span:first-child {
    font-size: 0.24rem;
  }
}

.main .notice .title .title-name span:last-child {
  font-size: 14px;
  color: #000;
  display: block;
}

@media screen and (max-width: 750px) {
  .main .notice .title .title-name span:last-child {
    font-size: 0.14rem;
  }
}

.main .notice .title .more {
  font-size: 18px;
  color: #666;
}

@media screen and (max-width: 750px) {
  .main .notice .title .more {
    font-size: 0.18rem;
  }
}

.main .notice .body .notice-item {
  display: flex;
  align-items: center;
  height: 98px;
  border-bottom: 1px solid #ddd;
  position: relative;
}

@media screen and (max-width: 750px) {
  .main .notice .body .notice-item {
    height: 0.98rem;
  }
}

.main .notice .body .notice-item .date {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 6px;
  position: relative;
}

@media screen and (max-width: 750px) {
  .main .notice .body .notice-item .date {
    padding-left: 0.06rem;
  }
}

.main .notice .body .notice-item .date span:first-child {
  font-size: 16px;
  color: #793e12;
  border-bottom: 1px solid #793e12;
}

@media screen and (max-width: 750px) {
  .main .notice .body .notice-item .date span:first-child {
    font-size: 0.16rem;
  }
}

.main .notice .body .notice-item .date span:last-child {
  font-size: 24px;
  color: #793e12;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
  .main .notice .body .notice-item .date span:last-child {
    font-size: 0.24rem;
  }
}

.main .notice .body .notice-item .brief {
  flex: 1;
  font-size: 16px;
  color: #000;
  margin-left: 18px;
  position: relative;
}

@media screen and (max-width: 750px) {
  .main .notice .body .notice-item .brief {
    font-size: 0.16rem;
  }
}

.main .notice .body .notice-item:hover .date > span,
.main .notice .body .notice-item:hover .brief {
  color: #fff;
}

.main .notice .body .notice-item:hover .date > span:first-child {
  border-bottom-color: #fff;
}

.main .notice .body .notice-item:hover::before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 20px);
  top: 10px;
  left: 0;
  background-color: #793e12;
}

@media screen and (max-width: 750px) {
  .main .notice .body .notice-item:hover::before {
    height: calc(100% - 0.2rem);
  }
}

.main .party {
  width: 394px;
  flex-shrink: 0;
}

@media screen and (max-width: 750px) {
  .main .party {
    width: 100%;
    padding: 0.24rem;
    padding-top: 0;
    margin-top: 0.32rem;
  }
}

.main .party .party-banner {
  width: 100%;
  height: 276px;
  font-size: 0;
  padding: 16px;
  position: relative;
  border: 1px solid #ddd;
}

@media screen and (max-width: 750px) {
  .main .party .party-banner {
    height: auto;
    padding: 0.16rem;
    padding-bottom: 0.9rem;
  }
}

.main .party .party-banner img {
  width: 100%;
  height: 205px;
}

@media screen and (max-width: 750px) {
  .main .party .party-banner img {
    height: 100%;
  }
}

.main .party .party-banner .brief {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 42px;
  line-height: 42px;
  background-color: #793e12;
  color: #fff;
  font-size: 18px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 750px) {
  .main .party .party-banner .brief {
    height: 0.72rem;
    line-height: 0.72rem;
    font-size: 0.18rem;
  }
}

.main .party .body {
  margin-top: 16px;
  background: #fff url("../img/teaching-bg.png") no-repeat left top;
  background-size: 100% 100%;
  padding: 16px;
  padding-top: 0;
}

@media screen and (max-width: 750px) {
  .main .party .body {
    padding: 0.16rem;
    padding-top: 0;
    margin-top: 0.16rem;
  }
}

.main .party .body .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  padding-bottom: 14px;
  font-size: 0;
}

@media screen and (max-width: 750px) {
  .main .party .body .title {
    padding-top: 0.32rem;
    padding-bottom: 0.14rem;
  }
}

.main .party .body .title .title-name {
  display: flex;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 3px solid #793e12;
  padding-right: 8px;
}

@media screen and (max-width: 750px) {
  .main .party .body .title .title-name {
    padding-bottom: 0.08rem;
    padding-right: 0.08rem;
  }
}

.main .party .body .title .title-name img {
  width: 40px;
  height: 40px;
  margin-right: 12px;
}

@media screen and (max-width: 750px) {
  .main .party .body .title .title-name img {
    width: 0.4rem;
    height: 0.4rem;
    margin-right: 0.12rem;
  }
}

.main .party .body .title .title-name span:first-child {
  font-size: 24px;
  color: #000;
}

@media screen and (max-width: 750px) {
  .main .party .body .title .title-name span:first-child {
    font-size: 0.24rem;
  }
}

.main .party .body .title .title-name span:last-child {
  font-size: 14px;
  color: #000;
  display: block;
}

@media screen and (max-width: 750px) {
  .main .party .body .title .title-name span:last-child {
    font-size: 0.14rem;
  }
}

.main .party .body .title .more {
  font-size: 18px;
  color: #666;
}

@media screen and (max-width: 750px) {
  .main .party .body .title .more {
    font-size: 0.18rem;
  }
}

.main .party .body .party-column .party-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 750px) {
  .main .party .body .party-column .party-item {
    margin-bottom: 0.2rem;
  }
}

.main .party .body .party-column .party-item .brief {
  flex: 1;
  font-size: 16px;
  color: #000;
  margin-right: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 750px) {
  .main .party .body .party-column .party-item .brief {
    font-size: 0.16rem;
  }
}

.main .party .body .party-column .party-item .date {
  font-size: 16px;
  color: #000;
  flex-shrink: 0;
}

@media screen and (max-width: 750px) {
  .main .party .body .party-column .party-item .date {
    font-size: 0.16rem;
  }
}

.main .student {
  width: 394px;
  flex-shrink: 0;
}

@media screen and (max-width: 750px) {
  .main .student {
    width: 100%;
    padding: 0.24rem;
    padding-top: 0;
    margin-top: 0.16rem;
  }
}

.main .student .student-banner {
  width: 100%;
  height: 276px;
  font-size: 0;
  padding: 16px;
  position: relative;
  border: 1px solid #ddd;
}

@media screen and (max-width: 750px) {
  .main .student .student-banner {
    height: auto;
    padding: 0.16rem;
    padding-bottom: 0.9rem;
  }
}

.main .student .student-banner img {
  width: 100%;
  height: 205px;
}

@media screen and (max-width: 750px) {
  .main .student .student-banner img {
    height: 100%;
  }
}

.main .student .student-banner .brief {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 42px;
  line-height: 42px;
  background-color: #793e12;
  color: #fff;
  font-size: 18px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 750px) {
  .main .student .student-banner .brief {
    height: 0.72rem;
    line-height: 0.72rem;
    font-size: 0.18rem;
  }
}

.main .student .body {
  margin-top: 16px;
  background: #fff url("../img/teaching-bg.png") no-repeat left top;
  background-size: 100% 100%;
  padding: 16px;
  padding-top: 0;
}

.main .student .body .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  padding-bottom: 14px;
  font-size: 0;
}

@media screen and (max-width: 750px) {
  .main .student .body .title {
    padding-top: 0.32rem;
    padding-bottom: 0.14rem;
  }
}

.main .student .body .title .title-name {
  display: flex;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 3px solid #793e12;
  padding-right: 8px;
}

@media screen and (max-width: 750px) {
  .main .student .body .title .title-name {
    padding-bottom: 0.08rem;
    padding-right: 0.08rem;
  }
}

.main .student .body .title .title-name img {
  width: 40px;
  height: 40px;
  margin-right: 12px;
}

@media screen and (max-width: 750px) {
  .main .student .body .title .title-name img {
    width: 0.4rem;
    height: 0.4rem;
    margin-right: 0.12rem;
  }
}

.main .student .body .title .title-name span:first-child {
  font-size: 24px;
  color: #000;
}

@media screen and (max-width: 750px) {
  .main .student .body .title .title-name span:first-child {
    font-size: 0.24rem;
  }
}

.main .student .body .title .title-name span:last-child {
  font-size: 14px;
  color: #000;
  display: block;
}

@media screen and (max-width: 750px) {
  .main .student .body .title .title-name span:last-child {
    font-size: 0.14rem;
  }
}

.main .student .body .title .more {
  font-size: 18px;
  color: #666;
}

@media screen and (max-width: 750px) {
  .main .student .body .title .more {
    font-size: 0.18rem;
  }
}

.main .student .body .student-column .student-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 750px) {
  .main .student .body .student-column .student-item {
    margin-bottom: 0.2rem;
  }
}

.main .student .body .student-column .student-item .brief {
  flex: 1;
  font-size: 16px;
  color: #000;
  margin-right: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 750px) {
  .main .student .body .student-column .student-item .brief {
    font-size: 0.16rem;
  }
}

.main .student .body .student-column .student-item .date {
  font-size: 16px;
  color: #000;
  flex-shrink: 0;
}

@media screen and (max-width: 750px) {
  .main .student .body .student-column .student-item .date {
    font-size: 0.16rem;
  }
}

.main .alumni {
  width: 394px;
  flex-shrink: 0;
}

@media screen and (max-width: 750px) {
  .main .alumni {
    width: 100%;
    padding: 0.24rem;
    padding-top: 0;
    margin-top: 0.16rem;
  }
}

.main .alumni .alumni-banner {
  width: 100%;
  height: 276px;
  font-size: 0;
  padding: 16px;
  position: relative;
  border: 1px solid #ddd;
}

@media screen and (max-width: 750px) {
  .main .alumni .alumni-banner {
    height: auto;
    padding: 0.16rem;
    padding-bottom: 0.9rem;
  }
}

.main .alumni .alumni-banner img {
  width: 100%;
  height: 205px;
}

@media screen and (max-width: 750px) {
  .main .alumni .alumni-banner img {
    height: 100%;
  }
}

.main .alumni .alumni-banner .brief {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 42px;
  line-height: 42px;
  background-color: #793e12;
  color: #fff;
  font-size: 18px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 750px) {
  .main .alumni .alumni-banner .brief {
    height: 0.72rem;
    line-height: 0.72rem;
    font-size: 0.18rem;
  }
}

.main .alumni .body {
  margin-top: 16px;
  background: #fff url("../img/teaching-bg.png") no-repeat left top;
  background-size: 100% 100%;
  padding: 16px;
  padding-top: 0;
}

.main .alumni .body .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  padding-bottom: 14px;
  font-size: 0;
}

@media screen and (max-width: 750px) {
  .main .alumni .body .title {
    padding-top: 0.32rem;
    padding-bottom: 0.14rem;
  }
}

.main .alumni .body .title .title-name {
  display: flex;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 3px solid #793e12;
  padding-right: 8px;
}

@media screen and (max-width: 750px) {
  .main .alumni .body .title .title-name {
    padding-bottom: 0.08rem;
    padding-right: 0.08rem;
  }
}

.main .alumni .body .title .title-name img {
  width: 40px;
  height: 40px;
  margin-right: 12px;
}

@media screen and (max-width: 750px) {
  .main .alumni .body .title .title-name img {
    width: 0.4rem;
    height: 0.4rem;
    margin-right: 0.12rem;
  }
}

.main .alumni .body .title .title-name span:first-child {
  font-size: 24px;
  color: #000;
}

@media screen and (max-width: 750px) {
  .main .alumni .body .title .title-name span:first-child {
    font-size: 0.24rem;
  }
}

.main .alumni .body .title .title-name span:last-child {
  font-size: 14px;
  color: #000;
  display: block;
}

@media screen and (max-width: 750px) {
  .main .alumni .body .title .title-name span:last-child {
    font-size: 0.14rem;
  }
}

.main .alumni .body .title .more {
  font-size: 18px;
  color: #666;
}

@media screen and (max-width: 750px) {
  .main .alumni .body .title .more {
    font-size: 0.18rem;
  }
}

.main .alumni .body .alumni-column .alumni-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 750px) {
  .main .alumni .body .alumni-column .alumni-item {
    margin-bottom: 0.2rem;
  }
}

.main .alumni .body .alumni-column .alumni-item .brief {
  flex: 1;
  font-size: 16px;
  color: #000;
  margin-right: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 750px) {
  .main .alumni .body .alumni-column .alumni-item .brief {
    font-size: 0.16rem;
  }
}

.main .alumni .body .alumni-column .alumni-item .date {
  font-size: 16px;
  color: #000;
  flex-shrink: 0;
}

@media screen and (max-width: 750px) {
  .main .alumni .body .alumni-column .alumni-item .date {
    font-size: 0.16rem;
  }
}

.main .field1 {
  background: url("../img/field1.png") no-repeat;
  background-size: 100% 100%;
  overflow: hidden;
}

.main .quick {
  width: 347px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  margin-right: 32px;
}

@media screen and (max-width: 750px) {
  .main .quick {
    width: 100%;
    padding: 0.24rem;
    margin: 0;
    justify-content: space-between;
  }
}

.main .quick .quick-item {
  width: 348px;
  height: 90px;
  margin-bottom: 8px;
  margin-right: 8px;
}

@media screen and (max-width: 750px) {
  .main .quick .quick-item {
    width: 100%;
    height: auto;
    margin: 0;
    margin-bottom: 0.08rem;
  }
}

.main .quick .quick-item > img {
  width: 100%;
  height: 100%;
  vertical-align: top;
}

.main .qrcode {
  font-size: 0;
  flex: 1;
  text-align: center;
}

.main .qrcode img {
  width: 210px;
  height: 210px;
}

@media screen and (max-width: 750px) {
  .main .qrcode img {
    width: 2.1rem;
    height: 2.1rem;
  }
}

.main .qrcode p {
  font-size: 20px;
  text-align: center;
  margin-top: 20px;
}

@media screen and (max-width: 750px) {
  .main .qrcode p {
    font-size: 0.2rem;
    margin-top: 0.2rem;
  }
}

.main .links {
  flex: 1;
}

@media screen and (max-width: 750px) {
  .main .links {
    width: 100%;
    padding: 0.24rem;
  }
}

.main .links .link-title {
  position: relative;
  font-size: 0;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 750px) {
  .main .links .link-title {
    margin-bottom: 0.32rem;
  }
}

.main .links .link-title .line {
  position: relative;
  width: 30px;
  height: 100%;
}

@media screen and (max-width: 750px) {
  .main .links .link-title .line {
    width: 0.3rem;
  }
}

.main .links .link-title .line::before, .main .links .link-title .line::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 42px;
  top: 50%;
  border-radius: 8px;
  transform: translateY(-50%) rotate(30deg);
  background: rgba(121, 62, 18, 0.4);
}

@media screen and (max-width: 750px) {
  .main .links .link-title .line::before, .main .links .link-title .line::after {
    width: 0.08rem;
    height: 0.42rem;
    border-radius: 0.08rem;
  }
}

.main .links .link-title .line::before {
  left: 0;
}

.main .links .link-title .line::after {
  right: 0;
}

.main .links .link-title .title-name {
  margin: 0 16px;
}

@media screen and (max-width: 750px) {
  .main .links .link-title .title-name {
    margin: 0 0.16rem;
  }
}

.main .links .link-title .title-name .cn {
  font-size: 24px;
  color: #793e12;
}

@media screen and (max-width: 750px) {
  .main .links .link-title .title-name .cn {
    font-size: 0.24rem;
  }
}

.main .links .link-title .title-name .en {
  font-size: 14px;
  color: #793e12;
  display: block;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .main .links .link-title .title-name .en {
    font-size: 0.14rem;
  }
}

.main .links .link-column {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media screen and (max-width: 750px) {
  .main .links .link-column {
    justify-content: center;
  }
}

.main .links .link-column .link-item {
  font-size: 20px;
  color: #793e12;
  margin-bottom: 16px;
  margin-right: 12px;
}

@media screen and (max-width: 750px) {
  .main .links .link-column .link-item {
    margin-right: 0;
    padding: 0 0.24rem;
    font-size: 0.2rem;
  }
}
