@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    min-height: 100vh;
    font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    background: #f4f4f4;
    color: #333;
}

body {
    display: flex;
    flex-direction: column;
}

ul, li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/*顶部导航栏*/
.top_nav {
    display: none;
}

/*头部导航框架*/
.headFrame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 70px;
}

/*头部区域*/
.header {
    height: 70px;
    width: 100%;
    background: linear-gradient(to bottom, rgba(200, 55, 30, 1) 0%, rgba(205, 70, 45, 0.95) 40%, rgba(210, 95, 75, 0.6) 70%, rgba(219, 155, 145, 0) 100%);
}

.header .container {
  
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .logo {
    width: 180px;
    flex-shrink: 0;
}

.header .logo img {
    width: 85%;
    height: auto;
    margin-left:20px;
}

.header .header-right {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.header .menu-bg {
    position: absolute;
    top: 0;
    right: 0;
    height: 70px;
    width: auto;
    object-fit: contain;
    object-position: right center;
    z-index: -1;
}

.header .menu-btn {
    width: 60px;
    height: 70px;
    cursor: pointer;
    transition: opacity 0.3s;
    margin-left: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 999;
}

.header .menu-btn img {
    width: auto;
    height: 38%;
    margin-right: 50px;
}

/*导航菜单*/
#nav {
    background: transparent;
}

#nav .inner {
    width: auto;
    margin: 0;
    height: auto;
}

#nav .wp-menu {
    display: flex;
    height: 70px;
    align-items: center;
    justify-content: flex-end;
}

#nav .wp-menu .menu-item {
    margin: 0 5px;
    position: relative;
}

#nav .wp-menu .menu-item a.menu-link {
    display: block;
    height: 70px;
    line-height: 70px;
    color: #fff;
    font-size: 15px;
    padding: 0 18px;
    transition: all 0.3s;
}

#nav .wp-menu .menu-item a.menu-link:hover,
#nav .wp-menu .menu-item.selected a.menu-link {
    background: rgba(255,255,255,0.15);
}

#nav .wp-menu .menu-item .sub-menu {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    min-width: 150px;
    background: #fff;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

#nav .wp-menu .menu-item .sub-menu li {
    height: 38px;
    line-height: 38px;
}

#nav .wp-menu .menu-item .sub-menu li a {
    display: block;
    width: 100%;
    height: 100%;
    color: #333;
    font-size: 14px;
    padding: 0 15px;
    transition: background 0.3s;
}

#nav .wp-menu .menu-item .sub-menu li a:hover {
    background: #f5f5f5;
    color: #ba2e2f;
}

/*轮播图区域*/
.banner-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.banner-container .swiper-container {
    width: 100%;
    height: auto;
}

.banner-container .swiper-slide {
    width: 100%;
    height: auto;
}

.banner-container .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-container .banner-overlay {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.banner-container .banner-tags-row1,
.banner-container .banner-tags-row2 {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.banner-container .banner-tags-row1 span,
.banner-container .banner-tags-row2 span {
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.banner-container .banner-tags-row1 span:hover,
.banner-container .banner-tags-row2 span:hover {
    color: #ffd700;
}

.banner-container .swiper-pagination {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
}

.banner-container .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    margin: 0 12px;
    transition: all 0.3s;
}

.banner-container .swiper-pagination-bullet-active {
    background: #ba2e2f;
}

.banner-container .swiper-button-prev,
.banner-container .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.banner-container .swiper-button-prev:hover,
.banner-container .swiper-button-next:hover {
    background: rgba(140, 29, 34, 0.8);
}

.banner-container .swiper-button-prev {
    left: 30px;
}

.banner-container .swiper-button-next {
    right: 30px;
}

.banner-container .swiper-button-prev::before,
.banner-container .swiper-button-next::after {
    content: '';
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-135deg);
}

.banner-container .swiper-button-next::after {
    transform: rotate(45deg);
}

/*主体内容区域*/
.theContentWidth {
    width: calc(100% - 50px);
    margin: 0 auto;
    padding: 30px 0;
}

/*区域标题*/
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
    position: relative;
}

.section-header .section-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    position: relative;
}

.section-header .section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 2px;
    background: #000;
    z-index: 1;
}

.section-header .section-more {
    font-size: 14px;
    color: #ff0000;
}

/*新闻区域*/
.news-section {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 20px;
}

.news-section .news-left,
.news-section .news-right {
    padding: 0;
    background: transparent;
}

.news-section .news-left {
    flex: 1.3;
    display: flex;
    flex-direction: column;
}

.news-section .news-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-section .news-left .news-main,
.news-section .news-left .news-list,
.news-section .news-right .news-list {
    background: #fff;
    padding: 20px;
    flex: 1;
}

/*新闻大图*/
.news-main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
    flex: 1;
}

.news-main-img {
    width: 45%;
    height: 340px;
    overflow: hidden;
}

.news-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-main-content {
    width: 52%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-item-big {
    margin-bottom: 8px;
    cursor: pointer;
}

.news-item-big:hover .news-item-title {
    color: #ff0000;
}

.news-item-big .news-item-title {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin-right: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
}

.news-item-big .news-item-date {
    font-size: 11px;
    color: #999;
    margin-top: 2px;
}

/*新闻列表*/
.news-list ul {
    padding-top: 5px;
}

.news-list li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
    cursor: pointer;
}

.news-list li:hover .news-item-title {
    color: #ff0000;
}

.news-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #ccc;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
}

.news-tag {
    background: #ba2e2f;
    color: #fff;
    font-size: 11px;
    padding: 2px 8px;
    margin-right: 12px;
    flex-shrink: 0;
}

.news-item-title {
    flex: 1;
    font-size: 14px;
    color: #555;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-right: 15px;
}

.news-item-date {
    font-size: 13px;
    color: #999;
    flex-shrink: 0;
}

/*通知公告和招生信息区域*/
.info-section {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 20px;
}

.info-section .info-left,
.info-section .info-right {
    padding: 0;
    background: transparent;
}

.info-section .info-left {
    flex: 1.3;
}

.info-section .info-right {
    flex: 1;
}

.info-section .info-left .news-list,
.info-section .info-right .news-list {
    background: #fff;
    padding: 20px;
}

/*网上云展厅区域*/
.cloud-exhibition {
    margin-bottom: 20px;
    background: transparent;
    padding: 0;
}

.cloud-exhibition .section-header {
    justify-content: center;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 25px;
}

.cloud-exhibition .section-header .section-title {
    font-size: 22px;
}

.cloud-exhibition .section-header .section-more {
    position: absolute;
    right: 0;
}

.cloud-exhibition .section-header .section-more-dots {
    font-size: 36px;
    letter-spacing: 6px;
    line-height: 1;
    cursor: pointer;
    font-weight: bold;
    color: #ff0000;
}

.cloud-exhibition .exhibition-list {
    display: flex;
    justify-content: flex-start;
    margin-top: 0;
    gap: 15px;
}

.cloud-exhibition .exhibition-item {
    flex: 0 0 calc((100% - 75px) / 6);
    cursor: pointer;
    text-align: center;
}

.cloud-exhibition .exhibition-img {
    width: 100%;
    height: 420px;
    overflow: hidden;
    margin-bottom: 15px;
}

.cloud-exhibition .exhibition-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cloud-exhibition .exhibition-title {
    font-size: 14px;
    color: #333;
    text-align: center;
}

/*页脚*/
.footerBigBox {
    width: 100%;
    height: 140px;
    background: #ba2e2f;
    display: flex;
    align-items: center;
    padding: 20px 0;
    margin-top: auto;
    flex-shrink: 0;
}

.footerContent {
    width: calc(100% - 50px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-left {
    display: flex;
    align-items: center;
}

.footer-logo {
    height: 80px;
    margin-right: 20px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
}

.footer-school-info {
    color: #fff;
}

.school-name-cn {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.3;
}

.school-name-en {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 5px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #fff;
    font-size: 14px;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-right {
    color: #fff;
    font-size: 15px;
    opacity: 0.9;
    text-align: left;
    line-height: 1.8;
}

.footer-bottom {
    background: #7f0100;
    padding: 10px 0;
    text-align: center;
    color: #fff;
    font-size: 12px;
    opacity: 0.8;
}

/*翻页样式*/
#wp_paging_w16 {
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: center;
}

#wp_paging_w16 .wp_paging {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
    font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
    color: #666;
    float: none;
    flex-wrap: wrap;
}

/*每页/总共记录数*/
#wp_paging_w16 .wp_paging .pages_count {
    height: auto;
    line-height: 34px;
    margin-top: 0;
    float: none;
}

#wp_paging_w16 .wp_paging .pages_count span {
    margin-left: 0;
    float: none;
    color: #999;
    font-size: 13px;
}

#wp_paging_w16 .wp_paging .pages_count em {
    font-style: normal;
    color: #ba2e2f;
    font-weight: bold;
}

/*翻页按钮区域*/
#wp_paging_w16 .wp_paging .page_nav {
    height: auto;
    line-height: normal;
    margin-top: 0;
    float: none;
    display: flex;
    gap: 0;
}

#wp_paging_w16 .wp_paging .page_nav a {
    display: inline-block;
    height: 34px;
    line-height: 34px;
    padding: 0 14px;
    margin-left: 0;
    float: none;
    color: #666;
    font-size: 13px;
    background: #fff;
    border: 1px solid #ddd;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

#wp_paging_w16 .wp_paging .page_nav a:not(:last-child) {
    border-right: none;
}

#wp_paging_w16 .wp_paging .page_nav a.first {
    border-radius: 4px 0 0 4px;
}

#wp_paging_w16 .wp_paging .page_nav a.last {
    border-radius: 0 4px 4px 0;
}

#wp_paging_w16 .wp_paging .page_nav a:hover {
    color: #fff;
    background: #ba2e2f;
    border-color: #ba2e2f;
}

#wp_paging_w16 .wp_paging .page_nav a span {
    margin-left: 0;
    float: none;
}

/*页码信息 + 跳转*/
#wp_paging_w16 .wp_paging .page_jump {
    height: auto;
    line-height: 34px;
    margin-top: 0;
    float: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

#wp_paging_w16 .wp_paging .page_jump .pages {
    margin-left: 0;
    float: none;
    color: #999;
    font-size: 13px;
}

#wp_paging_w16 .wp_paging .page_jump .pages em {
    font-style: normal;
    color: #ba2e2f;
}

#wp_paging_w16 .wp_paging .page_jump .pageNum {
    width: 40px;
    height: 28px;
    line-height: 28px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background: #fff;
    text-align: center;
    font-size: 13px;
    margin-top: 0;
    color: #333;
}

#wp_paging_w16 .wp_paging .page_jump .pageNum:focus {
    outline: none;
    border-color: #ba2e2f;
}

#wp_paging_w16 .wp_paging .page_jump .pagingJump {
    display: inline-block;
    height: 28px;
    line-height: 28px;
    padding: 0 12px;
    background: #ba2e2f;
    color: #fff;
    font-size: 13px;
    border-radius: 3px;
    margin-left: 0;
    float: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}

#wp_paging_w16 .wp_paging .page_jump .pagingJump:hover {
    background: #a0292a;
}
