html,
body {
  margin: 0;
  padding: 0;
  background-color: #fff;
  height: 100%;
  width: 100%;
  min-width: 1180px;
  min-height: 800px;
}
/* 小屏幕设备 */
@media (max-width: 768px) {
    .container {
        width: 100%; /* 小屏幕使用百分比 */
    }
}

/* 中等屏幕设备 */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        width: 80%; /* 适当调整宽度 */
    }
}

/* 大屏幕设备 */
@media (min-width: 1025px) {
    .container {
        width: 800px; /* 固定宽度，或者使用百分比/视口单位 */
    }
}

/* 超大屏幕设备 */
@media (min-width: 1440px) {
    .container {
        width: 1200px; /* 或者使用百分比/视口单位 */
    }
}

.container {
  width: 100%;
}

.header-container {
  width: 100%;
  background-color: #BFDAF2;
}

.header-box {
  box-sizing: border-box;
    width: 94%;
    min-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
}

.header-box .header-nav {
 
    width: 100%;
    height: 60px;
    margin-left: 48px;
    position: relative;

}

.aw{
	position: absolute;
	top:-20px;
	opacity: 0.16;
	width: 100%;
}


.tabs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: end;
  height: 60px;
}

.tab {
  width: 64px;
  margin: 0 0 0 auto;
  color: #333333;
  cursor: pointer;
  position: relative;
  transition: color 0.3s, border-bottom 0.3s;
}

.tab>a {
  text-decoration: none;
  display: inline-block;
  color: #333333;
  font-size: 0.83vw;
  font-weight: 540;
}

.tab>a:hover {
  color: #375EAD;
}

.tab::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #375EAD;
  transition: width 0.3s;
}

.tab .active::after {
  width: 100%;
}

.tab .active {
  padding-bottom: 6px;
  color: #375EAD;
}

/* 新闻-通知-教学*/
.news-container {
  width: 100%;
  min-width: 1180px;
  background-image: url("/jzghxy/images/center_banner.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  object-fit: cover;
  padding-top: 6px;
}

.news-box {
  width: 1200px;
  margin: auto;
}

.news-tit-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px auto 36px;
}

.news-tit-box .news-tit {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.05rem;
  color: #375EAD;
  font-style: italic;
}

.news-tit-box .news-more {
  text-decoration: none;
  display: flex;
  align-items: center;
  color: #333333;
  font-size: 16px;
  font-weight: 530;
  letter-spacing: 0.03rem;
}

.news-tit-box .news-more>img {
  width: 16px;
  height: 16px;
  margin-left: 2px;
}

.news-info-box {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  box-sizing: border-box;
}

.news-info-box .news-info-left {
  box-sizing: border-box;
  text-decoration: none;
  width: 55%;
  background-color: #fff;
  height: 664px;
  box-shadow: 0px 0px 10px rgba(113, 113, 113, 0.3);
}

.news-info-box .news-info-left .news-big-img {
  position: relative;
}

.news-info-box .news-info-left .news-big-img>img {
  width: 100%;
  aspect-ratio: 3 / 2;
}

.news-info-box .news-info-left .news-big-img .news-time-box {
  position: absolute;
  right: 0;
  bottom: -42px;
  background: linear-gradient(to bottom, #6AADE9, #4A7BC3, #375EAD);
  padding: 8px 10px 10px;
  border-radius: 4px;
  color: #fff;
}

.news-info-box .news-info-left .news-big-img .news-time-box .news-day {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.05rem;
  padding-bottom: 2px;
  border-bottom: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-info-box .news-info-left .news-big-img .news-time-box .news-year {
  margin-top: 4px;
  font-size: 16px;
  font-weight: 540;
  letter-spacing: 0.04rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-info-box .news-info-left .news-big-tit {
  font-size: 20px;
  font-weight: 540;
  color: #101010;
  letter-spacing: 0.05rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  margin: 14px 100px 12px 12px;
}

.news-info-box .news-info-left .ellipsis_7 {
  overflow: hidden;
  font-size: 16px;
  font-weight: 500;
  color: #6C6C6C;
  word-break: break-all;
  letter-spacing: 0.05rem;
  margin: 2px 12px 16px;
}

.news-info-box .news-info-right {
  width: 43%;
  height: 664px;
  box-sizing: border-box;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
  flex-wrap: wrap;
}

.news-info-box .news-info-right .news-small-box {
  box-sizing: border-box;
  text-decoration: none;
  width: 100%;
}

.news-info-box .news-info-right .news-small-img {
  position: relative;
  width: 100%;
}


.news-info-box .news-info-right .news-small-img>img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.news-info-box .news-info-right .news-small-img .news-time-box {
  position: absolute;
  right: 0;
  bottom: -42px;
  background: linear-gradient(to bottom, #6AADE9, #4A7BC3, #375EAD);
  padding: 8px 10px 10px;
  border-radius: 4px;
  color: #fff;
}

.news-info-box .news-info-right .news-small-img .news-time-box .news-day {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.05rem;
  padding-bottom: 2px;
  border-bottom: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-info-box .news-info-right .news-small-img .news-time-box .news-year {
  margin-top: 4px;
  font-size: 16px;
  font-weight: 540;
  letter-spacing: 0.04rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-info-box .news-info-right .news-small-tit {
  font-size: 20px;
  font-weight: 540;
  color: #101010;
  letter-spacing: 0.05rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  margin: 10px 100px 0 10px;
}

/* 通知公告 */
.tzgg-box {
  width: 1200px;
  margin: auto;
}

.tzgg-box .tzgg-tit-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 36px auto;
}

.tzgg-box .tzgg-tit-box .tzgg-tit {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.05rem;
  color: #375EAD;
  font-style: italic;
}

.tzgg-box .tzgg-tit-box .tzgg-more {
  text-decoration: none;
  display: flex;
  align-items: center;
  color: #333333;
  font-size: 16px;
  font-weight: 530;
  letter-spacing: 0.03rem;
}

.tzgg-box .tzgg-tit-box .tzgg-more>img {
  width: 16px;
  height: 16px;
  margin-left: 2px;
}

.tzgg-box .tzgg-info-box {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.tzgg-box .tzgg-info-box .tzgg-info-left {
  width: 43%;
}

.tzgg-box .tzgg-info-box .tzgg-info-left>img {
  height: 348px;
  width: 100%;
  object-fit: fill;
}

.tzgg-box .tzgg-info-box .tzgg-info-right {
  width: 55%;
}

.tzgg-box .tzgg-info-box .tzgg-info-right .tzgg-item-box {
  box-sizing: border-box;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #333333;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05rem;
  line-height: 38px;
  margin: auto;
}

.tzgg-box .tzgg-info-box .tzgg-info-right .tzgg-item-box:hover {
      font-weight: bold;
    position: relative;
    z-index: 1;
    box-shadow: 0 1px 2px -2px rgba(0, 0, 0, 0.16), 0 3px 6px 0 rgba(0, 0, 0, 0.12), 0 5px 12px 4px rgba(0, 0, 0, 0.09);
}

.tzgg-box .tzgg-info-box .tzgg-info-right .tzgg-item-box>img {
  width: 24px;
}

.tzgg-box .tzgg-info-box .tzgg-info-right .tzgg-item-box .tzgg-item-val {
  flex: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin: auto 8px auto 24px;
}

.tzgg-box .tzgg-info-box .tzgg-info-right .tzgg-item-box .tzgg-item-time {
  margin-left: 16px;
}

/* 教学科研 */
.jxky-box {
  width: 1200px;
  margin: auto;
}

.jxky-box .jxky-tit-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 36px auto 36px;
}

.jxky-box .jxky-tit-box .jxky-tit {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.05rem;
  color: #375EAD;
  font-style: italic;
}

.jxky-box .jxky-tit-box .jxky-more {
  text-decoration: none;
  display: flex;
  align-items: center;
  color: #333333;
  font-size: 16px;
  font-weight: 530;
  letter-spacing: 0.03rem;
}

.jxky-box .jxky-tit-box .jxky-more>img {
  width: 16px;
  height: 16px;
  margin-left: 2px;
}

.jxky-box .jxky-info-box {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.jxky-box .jxky-info-box .jxky-item-box {
  box-sizing: border-box;
  text-decoration: none;
  width: 30%;
  position: relative;
}

.jxky-box .jxky-info-box .jxky-item-box>img {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.jxky-box .jxky-info-box .jxky-item-box .jxky-item-tit {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 110px;
  background: linear-gradient(to bottom, #d378b700, #8893a980, #5B4E8B);
}

.jxky-box .jxky-info-box .jxky-item-box .jxky-item-tit .jxky-tit-val {
     
    font-size: 20px;
    letter-spacing: 0.05rem;
    color: #fff;
    font-weight: bold;
    margin-top: 50px;
    margin-left: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

/* 澳门银银河手机版-作品-系统*/
.common-container {
  width: 100%;
  min-width: 1180px;
  background-image: url("/jzghxy/images/footer_banner.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  object-fit: cover;
  padding-top: 6px;
  padding-bottom: 36px;
}

/* 澳门银银河手机版青年 */
.xsqn-box {
  width: 1200px;
  margin: auto;
}

.xsqn-box .xsqn-tit-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px auto 36px;
}

.xsqn-box .xsqn-tit-box .xsqn-tit {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.05rem;
  color: #375EAD;
  font-style: italic;
}

.xsqn-box .xsqn-tit-box .xsqn-more {
  text-decoration: none;
  display: flex;
  align-items: center;
  color: #333333;
  font-size: 16px;
  font-weight: 530;
  letter-spacing: 0.03rem;
}

.xsqn-box .xsqn-tit-box .xsqn-more>img {
  width: 16px;
  height: 16px;
  margin-left: 2px;
}

.xsqn-box .xsqn-info-box {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.xsqn-box .xsqn-info-box .xsqn-item-box {
  width: 48.8%;
  box-sizing: border-box;
  text-decoration: none;
  display: flex;
  align-items: start;
  justify-content: space-between;
  background-color: #fff;
  padding: 16px;
  margin-bottom: 28px;
  box-shadow: 0px 0px 10px rgba(113, 113, 113, 0.1);
}

.xsqn-box .xsqn-info-box .xsqn-item-box .xsqn-item-left {
  width: 54%;
}

.xsqn-box .xsqn-info-box .xsqn-item-box .xsqn-item-left .ellipsis_2 {
 
  font-size: 16px;
  font-weight: 540;
  color: #375EAD;
  word-break: break-all;
  letter-spacing: 0.05rem;
  margin-bottom: 32px;
  overflow: hidden;
  display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.xsqn-box .xsqn-info-box .xsqn-item-box .xsqn-item-left .ellipsis_4 {
  overflow: hidden;
  font-size: 14px;
  font-weight: 500;
  color: #686870;
  word-break: break-all;
  letter-spacing: 0.03rem;
  overflow: hidden;
  display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.xsqn-box .xsqn-info-box .xsqn-item-box .xsqn-item-right {
  width: 43%;
}

.xsqn-box .xsqn-info-box .xsqn-item-box .xsqn-item-right>img {
  width: 100%;
  aspect-ratio: 3 / 2;
 
}

/* 作品展览 */
.zpzl-box {
  width: 1200px;
  margin: auto;
}

.zpzl-box .zpzl-tit-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 13px auto 36px;
}

.zpzl-box .zpzl-tit-box .zpzl-tit {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.05rem;
  color: #375EAD;
  font-style: italic;
}

.zpzl-box .zpzl-tit-box .zpzl-more {
  text-decoration: none;
  display: flex;
  align-items: center;
  color: #333333;
  font-size: 16px;
  font-weight: 530;
  letter-spacing: 0.03rem;
}

.zpzl-box .zpzl-tit-box .zpzl-more>img {
  width: 16px;
  height: 16px;
  margin-left: 2px;
}

.zpzl-box .zpzl-info-box {
  margin-bottom: 60px;
  height:600px

}

.zpzl-box .zpzl-info-box .zpzl-item-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.zpzl-box .zpzl-info-box .zpzl-item-box .zpzl-item-left {
  width: 20%;
  height: 534px;
  position: absolute;
}

.zpzl-box .zpzl-info-box .zpzl-item-box .zpzl-item-left .zpzl-nav-box {
  position: absolute;
  left: 0;
  bottom: 24px;
  width: 112%;
  display: inline-block;
  text-decoration: none;
  background-color: #fff;
  box-sizing: border-box;
  padding: 32px 10px;
  z-index: 999;
  box-shadow: 0px 0px 10px rgba(113, 113, 113, 0.1);
  height: 400px;
}

.zpzl-box .zpzl-info-box .zpzl-item-box .zpzl-item-left .zpzl-nav-box .ellipsis_2 {
 
  font-size: 16px;
  font-weight: bold;
  color: #375EAD;
  word-break: break-all;
  letter-spacing: 0.05rem;
  margin-bottom: 28px;
   overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.zpzl-box .zpzl-info-box .zpzl-item-box .zpzl-item-left .zpzl-nav-box .ellipsis_8 {
  font-size: 14px;
  font-weight: 500;
  color: #686870;
  word-break: break-all;
  letter-spacing: 0.05rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
}

.zpzl-box .zpzl-info-box .zpzl-item-box .zpzl-item-left .zpzl-nav-box .zpzl-page-box {
  width: 100%;
  box-sizing: border-box;
  margin-top: 36px;
  font-size: 24px;
  font-weight: 540;
  letter-spacing: 0.05rem;
  color: #375EAD;
  text-align: center;
}

.zpzl-box .zpzl-info-box .zpzl-item-box .zpzl-item-right {
      position: relative;
      left: 20%;
      bottom: 0px;
}


.zpzl-box .zpzl-info-box .zpzl-item-box .zpzl-item-right>img {
    width: 80%;
    object-fit: fill;
    height: 576px;
    min-height: 576px;
}

.zpzl-box .xt-link-box {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.zpzl-box .xt-link-box .xt-link-item {
  width: 48.4%;
  position: relative;
  text-decoration: none;
}

.zpzl-box .xt-link-box .xt-link-item>img {
  width: 100%;
  height: 234px;
  object-fit: fill;
}

.zpzl-box .xt-link-box .xt-link-item .xt-link-tit {
  position: absolute;
  left: 28px;
  bottom: 22%;
}

.zpzl-box .xt-link-box .xt-link-item .xt-link-tit .xt-link-tit-val {
  font-size: 48px;
  font-weight: 1000;
  color: #fff;
  letter-spacing: 0.2rem;
}

/* 底部 */
.footer-container {
  box-sizing: border-box;
  width: 100%;
  min-width: 1180px;
  background-color: #BFDAF2;
  padding: 64px 0 24px;
}

.footer-box {
    width: 1200px;
    min-width: 1152px;
    margin: auto;
    box-sizing: border-box;
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding-bottom: 36px;

}

.footer-box .footer-left {
  width: 55%;
}

.footer-box .footer-left .footer-logo {
  margin-bottom: 32px;
}

.footer-box .footer-left .footer-info-box {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-box .footer-left .footer-info-box .footer-info-left {
  width: 45%;
  box-sizing: border-box;
}

.footer-box .footer-left .footer-info-box .footer-info-left .footer-info-item {
  font-size: 16px;
  color: #333333;
  font-weight: 400;
  letter-spacing: 0.04rem;
  margin: 8px 0;
  width: 365px;
  min-width: 365px;

}

.footer-box .footer-left .footer-info-box .footer-info-right {
  width: 45%;
  box-sizing: border-box;
}

.footer-box .footer-left .footer-info-box .footer-info-right .footer-info-item {
  font-size: 16px;
  color: #333333;
  font-weight: 400;
  letter-spacing: 0.04rem;
  margin: 8px 0;
  width: 365px;
  min-width: 365px;
}

.footer-box .footer-right {
  padding: 0 32px;
}

.footer-box .footer-right>img {
  width: 215px;
  height: 215px;
  object-fit: fill;
}

.footer-bqsy {
  width: 80%;
  min-width: 1152px;
  margin: auto;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #9ECBF2;
  padding-top: 24px;
  font-size: 12px;
  color: #333333;
  font-weight: 540;
  letter-spacing: 0.03rem;
}

.ellipsis_2 {
  display: block;
  overflow: hidden;
  white-space: normal;
  line-height: 1.5em;
  max-height: 3em;
  text-overflow: ellipsis;
  position: relative;
}

.ellipsis_3 {
  display: block;
  overflow: hidden;
  white-space: normal;
  line-height: 1.5em;
  max-height: 4.5em;
  text-overflow: ellipsis;
  position: relative;
}


.ellipsis_4 {
  display: block;
  overflow: hidden;
  white-space: normal;
  line-height: 1.5em;
  max-height: 6em;
  text-overflow: ellipsis;
  position: relative;
}


.ellipsis_6 {
  display: block;
  overflow: hidden;
  white-space: normal;
  line-height: 1.5em;
  max-height: 9em;
  text-overflow: ellipsis;
  position: relative;
}

.ellipsis_7 {
  display: block;
  overflow: hidden;
  white-space: normal;
  line-height: 1.5em;
  max-height: 10.5em;
  text-overflow: ellipsis;
  position: relative;
}

.ellipsis_8 {
  display: block;
  overflow: hidden;
  white-space: normal;
  line-height: 1.5em;
  max-height: 12em;
  text-overflow: ellipsis;
  position: relative;
}