/* common */
html {
  min-width: 1200px;
}
.container {
  width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  html {
    min-width: 750px;
  }
  .container {
    width: 750px;
    margin: 0 auto;
  }
}
.flex-0 {
  display: flex;
  align-items: center;
}
.flex-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex-2 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-3 {
  display: flex;
  justify-content: space-between;
}
.flex-4 {
  display: flex;
  flex-wrap: wrap;
}
.flex-5 {
  display: flex;
  justify-content: flex-start;
}
.flex-6 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}


/* header */
header {
  width: 100%;
  height: 190px;
  background: url('/_upload/tpl/00/26/38/template38/htmlRes/common_res/header-bg.png') no-repeat 0 0;
  background-size: 100% 100%;
}
.header-top {
  height: 136px;
  border-bottom: 1px #0f54b3 solid;
}
.header-top .container {
  height: 100%;
}
.header-top .logo {
  width: 728px;
  height: 100px;
  background-image: url('/_upload/tpl/00/26/38/template38/htmlRes/common_res/logo.png');
  background-size: 100% 100%;
}
.header-top .college-name {
  font-size: 40px;
  color: #fff;
  line-height: 100px;
  padding-left: 15px;
}
.nav {
  height: 53px;
  font-size: 19px;
}
.nav a {
  display: block;
  height: 100%;
  font-size: 18px;
  color: #fff;
  line-height: 53px;
  padding: 0 18px;
}
.nav-item {
  position: relative;
  height: 100%;
}
.nav-item-active {
  background-color: #014cb0;
}
.nav-item__second {
  z-index: 9;
  position: absolute;
  left: -20px;
  width: 100%;
  padding: 0 20px;
  background-color: rgba(31, 98, 184, 0.5);
}
.nav-item__second a {
  font-size: 16px;
  line-height: 52px;
  text-align: center;
  width: 100%;
  height: 0;
  padding: 0 20px;
  overflow: hidden;
  transition: height 0.5s ease-in;
  margin-left: -20px;
}
.nav-item:hover {
  background-color: #014cb0;
}
.nav-item:hover .nav-item__second a {
  height: 52px;
}
.nav-item__second a:hover {
  background-color: #03439c;
}


.header-m {
  display: none;
  height: 120px;
  background-color: #084699;
  padding: 0 20px;
  box-sizing: border-box;
}
.header-m .logo {
  width: 550px;
  height: 90px;
}
.header-m .logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header-m .menu-open {
  width: 70px;
  height: 50px;
}
.header-m .menu-close {
  display: none;
  width: 70px;
  height: 70px;
}

@media screen and (max-width: 1200px) {
  .header-pc {
    display: none;
  }
  .header-m {
    display: flex;
  }
}

/* menu */
.menu-wrap {
  display: none;
  z-index: 999;
  position: fixed;
  top: 120px;
  right: -100%;
  width: 100%;
  height: 100%;
  transition: right 0.5s ease-out;
}
.menu-list {
  height: calc(100% - 140px);
  padding-bottom: 92px;
  background-color: #fff;
  overflow-y: scroll;
}
.menu-item {
  position: relative;
  border-bottom: 1px #e5e5e5 solid;
}
.menu-item a {
  display: inline-block;
  font-size: 36px;
  color: #333;
  line-height: 92px;
  padding-left: 20px;
  width: 100%;
}
.menu-item__icon-wrap-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
}
.menu-item__icon-wrap-1 .menu-item__icon {
  position: absolute;
  right: 20px;
  border: solid #afafaf;
  border-width: 0 4px 4px 0;
  display: inline-block;
  padding: 10px;
}
.menu-item__icon-wrap-1 .menu-item__icon--up {
  display: none;
  top: 25px;
  transform: rotate(-135deg);
}
.menu-item__icon-wrap-1 .menu-item__icon--down {
  top: 25px;
  transform: rotate(45deg);
}
.menu-item__second-item {
  position: relative;
}
.menu-item__icon-wrap-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 83px;
  display: none;
}
.menu-item__icon-wrap-2 .menu-item__icon {
  position: absolute;
  right: 20px;
  border: solid #afafaf;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 7px;
}
.menu-item__icon-wrap-2 .menu-item__icon--up {
  display: none;
  top: 25px;
  transform: rotate(-135deg);
}
.menu-item__icon-wrap-2 .menu-item__icon--down {
  top: 25px;
  transform: rotate(45deg);
}
.menu-item .menu-item__second {
  width: 100%;
}
.menu-item .menu-item__third {
  margin: 0 20px 0 83px;
}
.menu-item .menu-item__second-item>a,
.menu-item .menu-item__third>a {
  display: block;
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: height 0.3s linear;
  font-size: 30px;
}
.menu-item .menu-item__second-item>a {
  color: #666;
  line-height: 83px;
  padding-left: 53px;
}
.menu-item .menu-item__third>a {
  color: #999;
  line-height: 72px;
  padding-left: 0;
}
@media screen and (max-width: 1200px) {
  .menu-wrap {
    display: block;
  }
}


/* friend-links */
.friend-links {
  background-color: #f7f7f7;
  padding-top: 24px;
}
.friend-links-title {
  padding-bottom: 18px;
}
.friend-links-icon {
  width: 31px;
  height: 30px;
}
.friend-links-icon img {
  width: 100%;
  height: 100%;
  vertical-align: top;
}
.friend-links-text {
  font-size: 22px;
  color: #004097;
  font-weight: bold;
  padding-left: 7px;
}
.links-item {
  display: block;
  background-color: #fff;
  border: 1px #e8e8e8 solid;
  padding: 0 9px;
  margin-right: 22px;
  margin-bottom: 24px;
  font-size: 14px;
  color: #666;
  line-height: 35px;
}
.links-item:hover {
  background-color: #014cb0;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  .friend-links {
    padding: 28px 20px 0 20px;
    box-sizing: border-box;
  }
  .links-item {
    font-size: 20px;
    line-height: 42px;
    padding: 0 10px;
  }
  .friend-links .container {
    width: 710px;
  }
  .friend-links-text {
    font-size: 26px;
  }
  .friend-links-icon {
    width: 35px;
    height: 33px;
  }
}


/* footer */
footer {
  width: 100%;
  height: 178px;
  background-color: #03439c;
}
footer .container {
  height: 100%;
}
.footer-info {
  font-size: 14px;
}
.footer-info span {
  color: #fff;
  line-height: 33px;
  padding-right: 15px;
}
.footer-info a {
  color: #fff;
  line-height: 33px;
}
.footer-info a:hover {
  opacity: 0.8;
}
.footer-r {
  display: flex;
}
.footer-ewm {
  width: 100px;
  margin-left: 20px;
}
.footer-ewm:first-child {
/*  margin-right: 20px;*/
margin-left: 0;
}

.footer-ewm-img {
  width: 100%;
  height: 100px;
}
.footer-ewm-text {
  font-size: 14px;
  color: #fff;
  padding-top: 16px;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  footer {
    height: auto;
    padding: 20px;
    box-sizing: border-box;
  }
  footer .container {
    display: block;
    width: 710px;
  }
  .footer-l {
    padding-bottom: 20px;
  }
  .footer-info .icp {
    display: block;
  }
  .footer-info a {
    display: none;
  }
  .footer-r {
    justify-content: center;
  }
  .footer-info {
    font-size: 20px;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .footer-info span {
    line-height: 42px;
  }
}


/* common-title */
.common-title {
  height: 50px;
  border-bottom: 1px #e7e7e4 solid;
}
.common-title-l {
  height: 100%;
  border-bottom: 3px #014198 solid;
}
.common-title-icon {
  width: 30px;
  height: 24px;
}
.common-title-icon img {
  width: 100%;
  height: 100%;
  vertical-align: top;
}
.common-title-text {
  font-size: 22px;
  color: #004097;
  font-weight: bold;
  padding-left: 7px;
}
.common-title-more:hover {
  color: #004097;
  font-weight: bold;
}
.common-title-more_text {
  font-size: 14px;
  color: #004098;
  padding-right: 5px;
}
.common-title-more_icon {
  width: 15px;
  height: 15px;
}
.common-title-more_icon img {
  width: 100%;
  height: 100%;
  vertical-align: top;
}
@media screen and (max-width: 1200px) {
  .common-title-text {
    font-size: 26px;
  }
  .common-title-icon {
    width: 36px;
    height: 28px;
  }
  .news-right .common-title-icon {
    width: 32px;
    height: 26px;
  }
  .common-title-more_text {
    font-size: 18px;
  }
  .common-title-more_icon {
    width: 18px;
    height: 18px;
  }
  .common-title-more_icon img {
    border-radius: 50%;
  }
}


/* news */
.news-list {
  width: 375px;
}
.news-first {
  font-size: 20px;
  color: #004097;
  line-height: 1;
  font-weight: bold;
  border-bottom: 1px #acacac dashed;
  padding: 15px 0;
  margin-bottom: 10px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.news-item {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  line-height: 32px;
  padding-left: 15px;
}
.news-item::before {
  position: absolute;
  left: 0;
  content: '';
  width: 7px;
  height: 7px;
  border: 1px #8c8c8c solid;
  border-radius: 50%;
}
.news-item a {
  display: block;
  flex: 1;
  color: #333;
  padding-right: 15px;
  white-space:nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-item span {
  flex: none;
  color: #999;
}
.news-item:hover a {
  color: #004097;
}
.news-item:hover::before {
  border-color: #004097;
}
@media screen and (max-width: 1200px) {
  .news-list {
    width: 710px;
  }
  .news-first {
    font-size: 28px;
    padding: 22px 0;
    border-bottom: 1px #c8c8c8 dashed;
  }
  .news-item {
    font-size: 22px;
    line-height: 48px;
  }
}


/* common-banner */
.common-banner {
  width: 100%;
  height: 280px;
  display: inline-block;
  vertical-align: middle;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.common-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media screen and (max-width: 1200px) {
  .common-banner {
    height: 270px;
  }
}


/* common-slide */
.common-slide {
  flex: none;
  width: 250px;
}
.common-slide .slide-title {
  width: 100%;
  height: 120px;
  background-color: #003f96;
  border-bottom: 6px #f2cc59 solid;
  font-size: 36px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 120px;
}
.common-slide .slide-list {
  min-height: 764px;
  background-color: #f2f3f7;
  padding: 18px 0;
  box-sizing: border-box;
  background-image: url('/_upload/tpl/00/26/38/template38/htmlRes/common_res/slide-bg.png');
  background-position: 85px 577px;
  background-repeat: no-repeat;
}
.common-slide .slide-item {
  font-size: 24px;
  color: #333;
  line-height: 64px;
  text-align: center;
}
.common-slide .slide-item-active {
  background-color: #f2cc59;
  color: #fff;
}
.common-slide .slide-item_second {
  font-size: 16px;
  background: #f2f3f7;
}
.common-slide .slide-item_second-item {
  font-size: 14px;
}
.common-slide .slide-item a:hover {
  color: #003f96;
}
.common-slide .slide-item-active a:hover {
  color: #fff;
}
@media screen and (max-width: 1200px) {
  .common-slide {
    display: none;
  }
}


/* common-content */
.common-content {
  width: 950px;
  border-left: 6px #f2f3f7 solid;
  padding-bottom: 100px;
  padding-left: 45px;
  box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  .common-content {
    width: 750px;
    border-left: 0;
    padding-left: 0;
    padding: 0 20px;
    box-sizing: border-box;
  }
}


/* common-position */
.common-position {
  overflow: hidden;
  border-bottom: 4px #f2f3f7 solid;
}
.common-position-icon {
  width: 24px;
  height: 24px;
  margin-right: 13px;
}
.common-position-icon img {
  width: 100%;
  height: 100%;
  vertical-align: top;
}
.common-position-cur {
  font-size: 16px;
  color: #333;
  line-height: 90px;
}
.common-position-cur span:last-child {
  color: #666;
}
.icon-home-m {
  display: none;
}
@media screen and (max-width: 1200px) {
  .icon-home-pc {
    display: none;
  }
  .icon-home-m {
    display: block;
  }
  .common-position-icon {
    width: 30px;
    height: 30px;
  }
  .common-position-cur {
    font-size: 22px;
  }
}


/*Ã§Â¿Â»Ã©Â¡Âµ*/
.pageNum{width:100%;height: 50px;margin: 50px auto;}
.pageNum a,.pageNum i,.pageNum em,.pageNum span{height: 37px; line-height: 37px; padding: 0 15px; display: inline-block; border: 1px #e8e8e8 solid; background-color: #fff;  margin: 0 3px;color:#515151; }
.pageNum i{background-color: #fff;}
.pageNum a:hover,.pageNum .pative,.pageNum span{color:#fff;background-color:#d30b15;}

/* news-detail */
.news-title {
  font-size: 24px;
  color: #333;
  line-height: 36px;
  padding: 35px 18px 26px 18px;
  box-sizing: border-box;
  text-align: center;
}
.news-info {
  font-size: 14px;
  color: #686868;
  text-align: center;
  padding-bottom: 26px;
  border-bottom: 1px #e4e4e4 solid;
}
.news-info span {
  padding-right: 24px;
}
@media screen and (max-width: 1200px) {
  .news-title {
    font-size: 28px;
  }
  .news-info {
    font-size: 18px;
  }
}


/* common-desc */
.common-desc {
  padding: 10px 0;
}
.common-desc,
.common-desc p,
.common-desc p span,
.common-desc span {
  font-size: 16px;
  color: #333;
  line-height: 36px;
}


/* single-detail */
.single-detail {
  padding: 40px 18px 57px 18px;
}
.single-title {
  font-size: 30px;
  color: #333;
  line-height: 36px;
  text-align: center;
}