/* ------导航栏 - 轮播图------ */
body {
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent !important;
}

/* 移除所有元素的点击高亮 */
* {
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
}

/* 覆盖 Swiper 的默认蓝色 */
:root {
    --swiper-theme-color: transparent !important;
    --swiper-navigation-color: transparent !important;
}

/* 核心：彻底干掉 Swiper 按钮所有蓝色状态 */
.swiper-button-next,
.swiper-button-prev,
.swiper-button-next:focus,
.swiper-button-prev:focus,
.swiper-button-next:focus-visible,
.swiper-button-prev:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    -webkit-tap-highlight-color: transparent !important;
}



header {
    position: relative;
    background-color: #e73636;
    height: 100vh;
    width: 100%;
}

/* ------导航栏------ */
header nav {
    position: absolute;
    z-index: 3;
    top: 0;
    height: 130px;
    width: 100%;
    background-color: transparent;
}

/* ------导航栏 - 滚动定位------ */
header nav.scrolled {
    position: fixed;
    z-index: 111;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: transparent;
    transform: translateY(-100%) scale(0.8);
    opacity: 0;
}

header nav.scrolled.visible {
    background-color: #036c6c;
    transform: translateY(0) scale(1);
    opacity: 1;
}

header .nav {
    position: relative;
}

header .nav .logo {
    position: absolute;
    height: 75px;
    top: 30px;
    left: 0;
}

header .nav .nav_top {
    position: absolute;
    height: 19px;
    top: 42px;
    right: 0;
    font-size: 16px;
}

header .nav .nav_top ul {
    display: flex;
}

header .nav .nav_top li {
    margin-left: 22px;
}

header .nav .nav_top li span {
    font-size: 19px;
    color: #fff;
    line-height: 19px;
}

header .nav .nav_top li a {
    color: #fff;
}

header .nav .nav_bottom {
    position: absolute;
    height: auto;
    top: 75px;
    right: 0;
    font-size: 18px;
}

header .nav .nav_bottom>ul {
    display: flex;
}

header .nav .nav_bottom>ul>li {
    position: relative;
    margin-left: 22px;
}

header .nav .nav_bottom li a {
    color: #fff;
}

.nav .nav_bottom .xian .xian_left,
.nav .nav_bottom .xian .xian_right {
    position: absolute;
    width: 2px;
    height: 1px;
    background-color: #fff;
    left: 50%;
    transform: translateX(-50%) translateY(25px);
    top: 9px;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1002;
    pointer-events: none;
}






/* 子菜单 区域 */
.nav li .subnav {
    position: absolute;
    z-index: 999;
    padding-top: 10px;
    display: block;
    width: 110px;
    height: auto;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* 添加透明连接区域 */
.nav li .subnav::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
}

.nav .nav_bottom>ul>li .subnav.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}

.nav .nav_bottom li .dao1,
.nav .nav_bottom li .dao2 {
    transform: translateX(-50%) !important;
}

/* 确保 active 状态的 transform 优先级最高 */
.nav .nav_bottom>ul>li .subnav.active.dao1,
.nav .nav_bottom>ul>li .subnav.active.dao2 {
    transform: translateX(-50%) translateY(0) !important;
}

.nav li .subnav .Sub {
    padding: 10px 0;
    width: 110px;
    min-width: 110px;
    background-color: rgba(3, 108, 108, 0.9);
    border-radius: 8px;
    transition: none;
    position: relative;
    z-index: 1001;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* 确保装饰线在二级菜单上面 */
.nav .nav_bottom>ul>li:hover .xian .xian_left,
.nav .nav_bottom>ul>li:hover .xian .xian_right {
    z-index: 1002;
}



.nav .subnav .submenu {
    padding: 0;
    display: flex;
    flex-direction: column;
    width: 110px;
}

.nav .subnav .submenu li {
    padding: 0;
    height: 40px;
    text-align: center;
    line-height: 40px;
    width: 100%;
    display: block;
}

.nav .subnav .submenu li a {
    font-size: 15px;
    color: #ffffff;
    padding: 0;
    display: block;
    height: 40px;
    line-height: 40px;
}

.nav .subnav .submenu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav .subnav .submenu li a i {
    display: none;
}


/* ------轮播图------ */
header .banner {
    position: relative;
    height: 100%;
    width: 100%;
    background-color: #fff;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
}

.swiper {
    margin-left: auto;
    margin-right: auto;
}


/* ------轮播图 - 分页器------ */

.banner .button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1500px;
    height: 100px;
    z-index: 11;
    pointer-events: none;
}

.banner .button .swiper-button-prev,
.banner .button .swiper-button-next {
    pointer-events: auto;
}

.banner .button .swiper-button-prev,
.banner .button .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 2px solid rgba(230, 230, 230, 0.5);
    background-color: transparent !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    -webkit-focus-ring-color: transparent;
    user-select: none !important;
        -webkit-user-select: none !important;
}



.banner .button .swiper-button-prev {
    left: 0;
}

.banner .button .swiper-button-next {
    right: 0;
}

.banner .button .swiper-button-prev:hover,
.banner .button .swiper-button-next:hover {
    border-color: #ffffff;
}

.banner .button .swiper-button-prev:hover svg,
.banner .button .swiper-button-next:hover svg {
    fill: #ffffff !important;
    opacity: 1;
}

.banner .button .swiper-button-prev svg,
.banner .button .swiper-button-next svg {
    width: 32px;
    height: auto;
}

/* 隐藏 Swiper 默认的箭头 */
.banner .swiper-button-prev::after,
.banner .swiper-button-next::after {
    content: none;
}

/* 强制移除 Swiper 默认背景 */
.banner .swiper-button-prev,
.banner .swiper-button-next {
    background: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* SVG 箭头悬停效果 */
.banner .button .swiper-button-prev:hover .icon path,
.banner .button .swiper-button-next:hover .icon path {
    fill: #ffffff !important;
}

.banner .swiper-pagination {
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.banner .swiper-pagination .swiper-pagination-bullet {
    background-color: #ffffff;
    opacity: 1;
    width: 10px;
    height: 10px;
    cursor: pointer;
}

.banner .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #2d8281;
}

.banner .more span {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translate3d(56px, 27px, 0);
    z-index: 11;
    font-size: 12px;
    color: #fff !important;
    line-height: 12px;
}

.banner .more a {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translate3d(68px, 30px, 0);
    z-index: 11;
    font-size: 12px;
    color: #fff !important;
}

/* ------轮播图-阴影------ */
header .header_shadow_top img {
    position: absolute !important;
    z-index: 2;
    top: 0;
    width: 100%;
}

header .header_shadow_bottom img {
    position: absolute;
    z-index: 2;
    bottom: 0;
    width: 100%;
    pointer-events: none;
}

/* ----学院新闻---- */
.section1 {
    background: url(../images/news_background.png) no-repeat left center rgba(75, 160, 159, 0.05);
}

.xueyuan_news {
    padding-top: 30px;
    height: 755px;
    width: 100%;
}

/* 学院新闻-标题 */
.xueyuan_news .news_title {
    position: relative;
    height: 55px;
}

.xueyuan_news .news_title .news_title_left i {
    position: absolute;
    top: 0;
    left: 0;
    padding-left: 8px;
    border-left: 1px solid #999;
    height: 20px;
    font-size: 18px;
    line-height: 20px;
    color: #999;
}

.xueyuan_news .news_title .news_title_left h2 {
    position: absolute;
    bottom: 0;
    left: 0;
    padding-left: 8px;
    border-left: 1px solid #036c6c;
    height: 35px;
    font-size: 30px;
    line-height: 35px;
    color: #036c6c;
}



.xueyuan_news .news_title .news_title_right {
    position: absolute;
    bottom: 14px;
    right: 25px;
    border: 1px solid #999;
    height: 30px;
    width: 100px;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
}

.xueyuan_news .news_title .news_title_right span {
    position: absolute;
    bottom: 14px;
    right: 13px;
    color: #999;
}



.xueyuan_news .news_title .news_title_right span .arrow-icon {
    position: absolute;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    fill: #999;
}


/* 学院新闻-内容 */
.xueyuan_news .news_content {
    position: relative;
    margin-top: 30px;
    height: 640px;
}

/* 学院新闻 - 内容 - 左 */
.xueyuan_news .news_content .news_content_left {
    position: relative;
    float: left;
    width: 730px;
    height: 640px;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(-300px);
    opacity: 0;
}

.xueyuan_news .news_content .news_content_left_img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 730px;
    height: 530px;
}

.xueyuan_news .swiper-pagination .swiper-pagination-bullet {
    position: relative;
    bottom: 30px;
    right: -300px;
    z-index: 10;
    pointer-events: auto;
    background-color: #ffffff;
    opacity: 1;
    width: 10px;
    height: 10px;
    cursor: pointer;
}

.xueyuan_news .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #2d8281;
    width: 10px !important;
    height: 10px !important;
}

.xueyuan_news .news_content .news_content_left_text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 600px;
    height: 175px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    background-color: #ffffff;
    border-radius: 0 0 0 65px;
}

.xueyuan_news .news_content .news_content_left_text span {
    position: absolute;
    top: 25px;
    left: 30px;
    font-size: 14px;
    color: #036c6c;
}

.xueyuan_news .news_content .news_content_left_text i {
    position: absolute;
    top: 42px;
    left: 30px;
    font-size: 22px;
    font-weight: bold;
    color: #036c6c;
}

.xueyuan_news .news_content .news_content_left_text a {
    position: absolute;
    top: 100px;
    left: 30px;
    font-size: 14px;
    color: #666;
}

.xueyuan_news .news_content .news_content_left_text h3 {
    position: absolute;
    top: 25px;
    left: 135px;
    width: 410px;
    font-size: 20px;
}

.xueyuan_news .news_content .news_content_left_text p {
    position: absolute;
    top: 100px;
    width: 410px;
    left: 135px;
    font-size: 14px;
    color: #666;
}

.xueyuan_news .news_content .news_content_right {
    float: right;
    width: 730px;
}

.xueyuan_news .news_content .news_content_right ul {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 640px;
}

.xueyuan_news .news_content .news_content_right ul li {
    height: 200px;
    box-shadow: 0px 5px 10px 1px rgba(170, 170, 170, 0.523);
    width: 100%;
    transform: translateX(300px);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
}

.xueyuan_news .news_content .news_content_right ul .yuanjiao {
    border-radius: 0 65px 0 0;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
}

.xueyuan_news .news_content .news_content_right ul li a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.xueyuan_news .news_content .news_content_right ul li a div p,
.xueyuan_news .news_content .news_content_right ul li a div i,
.xueyuan_news .news_content .news_content_right ul li a div span,
.xueyuan_news .news_content .news_content_right ul li a div h4 {
    transition: all 0.4s ease-in-out;
}

.xueyuan_news .news_content .news_content_right ul li a div {
    position: relative;
    width: 420px;
    height: 100%;
    transition: all 0.4s ease-in-out;
    background-color: #ffffff;
}

.xueyuan_news .news_content .news_content_right ul li>a>div>h4 {
    position: absolute;
    left: 34px;
    top: 27px;
    height: 23px;
    font-size: 20px;
    line-height: 23px;
    color: #000;
}

.xueyuan_news .news_content .news_content_right ul li a div p {
    position: absolute;
    left: 34px;
    top: 70px;
    height: 29px;
    width: 360px;
    font-size: 14px;
    line-height: 29px;
    color: #666;
}

.xueyuan_news .news_content .news_content_right ul li a div i {
    position: absolute;
    bottom: 30px;
    left: 34px;
    font-size: 14px;
    color: #036c6c;
}

.xueyuan_news .news_content .news_content_right ul li a div span {
    position: absolute;
    bottom: 30px;
    right: 16px;
    font-size: 16px;
    line-height: 16px;
    color: #666666;
}

.xueyuan_news .news_content .news_content_right ul li a .new_img2 {
    position: absolute;
    right: 0;
    top: 0;
    width: 310px;
    height: 200px;
    overflow: hidden;
}

.xueyuan_news .news_content .news_content_right ul li a img {
    float: right;
    width: 100%;
    height: 100%;
    transition: all 0.4s ease-in-out;

}

/* ----关注通知---- */
.section2 {
    background: url(../images/notice_background.png) no-repeat right center rgba(75, 160, 159, 0.05);
}

.attention_notice {
    padding-top: 60px;
    height: 600px;
    width: 100%;
}

/* ------最近关注------ */
.attention_notice .recent_attention {
    position: relative;
    float: right;
    height: 480px;
    width: 730px;
    transform: translateX(300px);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ------最近关注标题------ */
.recent_attention .recent_title {
    position: relative;
    height: 55px;
}

.recent_attention .recent_title .recent_title_left i {
    position: absolute;
    top: 0;
    left: 0;
    padding-left: 8px;
    border-left: 1px solid #999;
    height: 20px;
    font-size: 18px;
    line-height: 20px;
    color: #999;
}

.recent_attention .recent_title .recent_title_left h2 {
    position: absolute;
    bottom: 0;
    left: 0;
    padding-left: 8px;
    border-left: 1px solid #036c6c;
    height: 35px;
    font-size: 30px;
    line-height: 35px;
    color: #036c6c;
}

.recent_attention .recent_title .recent_title_right {
    position: absolute;
    bottom: 15px;
    right: 25px;
    border: 1px solid #999;
    height: 30px;
    width: 100px;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
}

.recent_attention .recent_title .recent_title_right span {
    position: absolute;
    bottom: 14px;
    right: 13px;
    color: #999;
}

.recent_attention .recent_title .recent_title_right span .arrow-icon {
    position: absolute;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    fill: #999;
}


/* ------最近关注内容------ */
.recent_attention .recent_content {
    position: relative;
    margin-top: 30px;
    height: 400px;
    width: 100%;
    background-color: #ffffff;
}

.recent_attention .recent_content_xian {
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #036c6c 50%, #7fd7d8 100%);
}

.recent_attention .recent_content ul li {
    margin-left: 35px;
    border-bottom: 1px solid #999;
    height: 61px;
    width: 660px;
}

.recent_attention .recent_content ul li a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.recent_attention .recent_content ul li a .day {
    position: absolute;
    top: 3px;
    left: 40px;
    width: 37px;
    text-align: center;
    font-family: "Noto Serif SC";
    font-weight: bold;
    color: #036c6c;
    font-size: 24px;
}

.recent_attention .recent_content ul li a .month {
    position: absolute;
    top: 35px;
    left: 40px;
    font-size: 10px;
    color: #036c6c;
}

.recent_attention .recent_content ul li a .xian {
    position: absolute;
    bottom: 0;
    left: 40px;
    width: 37px;
    height: 4px;
    background-color: #036c6c;
}

.recent_attention .recent_content ul li a h4 {
    position: absolute;
    left: 110px;
    height: 60px;
    font-size: 16px;
    line-height: 60px;
}

.recent_attention .recent_content ul li a .jianto {
    position: absolute;
    top: 12.5px;
    right: 17px;
    border-radius: 17px;
    width: 35px;
    height: 35px;
    background-color: #036c6c;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.recent_attention .recent_content ul li a .jianto img {
    left: 5px;
    top: 5px;
    position: absolute;
    width: 25px;
}

/* ------通知公告------ */
.attention_notice .notice_announcement {
    position: relative;
    float: left;
    height: 480px;
    width: 730px;
    transform: translateX(-300px);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ------通知公告标题------ */
.notice_announcement .notice_title {
    position: relative;
    height: 55px;
}

.notice_announcement .notice_title .notice_title_left i {
    position: absolute;
    top: 0;
    left: 0;
    padding-left: 8px;
    border-left: 1px solid #999;
    height: 20px;
    font-size: 18px;
    line-height: 20px;
    color: #999;
}

.notice_announcement .notice_title .notice_title_left h2 {
    position: absolute;
    bottom: 0;
    left: 0;
    padding-left: 8px;
    border-left: 1px solid #036c6c;
    height: 35px;
    font-size: 30px;
    line-height: 35px;
    color: #036c6c;
}

.notice_announcement .notice_title .notice_title_right {
    position: absolute;
    bottom: 15px;
    right: 25px;
    border: 1px solid #999;
    height: 30px;
    width: 100px;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
}

.notice_announcement .notice_title .notice_title_right span {
    position: absolute;
    bottom: 14px;
    right: 13px;
    color: #999;
}

.notice_announcement .notice_title .notice_title_right span .arrow-icon {
    position: absolute;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    fill: #999;
}

/* ------通知公告内容------ */
.notice_announcement .notice_content {
    position: relative;
    margin-top: 30px;
    height: 400px;
    width: 100%;
    background-color: #ffffff;
}

.notice_announcement .notice_content_xian {
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #036c6c 50%, #7fd7d8 100%);
}

.notice_announcement .notice_content ul li {
    margin-left: 35px;
    border-bottom: 1px solid #999;
    height: 61px;
    width: 660px;
}

.notice_announcement .notice_content ul li a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.notice_announcement .notice_content ul li a .day {
    position: absolute;
    top: 3px;
    left: 40px;
    width: 37px;
    text-align: center;
    font-family: "Noto Serif SC";
    font-weight: bold;
    color: #036c6c;
    font-size: 24px;
}

.notice_announcement .notice_content ul li a .month {
    position: absolute;
    top: 35px;
    left: 40px;
    font-size: 10px;
    color: #036c6c;
}

.notice_announcement .notice_content ul li a .xian {
    position: absolute;
    bottom: 0;
    left: 40px;
    width: 37px;
    height: 4px;
    background-color: #036c6c;
}

.notice_announcement .notice_content ul li a h4 {
    position: absolute;
    left: 110px;
    height: 60px;
    font-size: 16px;
    line-height: 60px;
}

.notice_announcement .notice_content ul li a .jianto {
    position: absolute;
    top: 12.5px;
    right: 17px;
    border-radius: 17px;
    width: 35px;
    height: 35px;
    background-color: #036c6c;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.notice_announcement .notice_content ul li a .jianto img {
    left: 5px;
    top: 5px;
    position: absolute;
    width: 25px;
}

/* ------快速链接内容------ */
.section3 {
    background: url(../images/links_background.png) no-repeat center center rgba(75, 160, 159, 0.05);
}


/* ------快速链接------ */
.links {
    padding-top: 20px;
    height: 360px;
    width: 100%;
}

/* ------快速链接标题------ */
.links .links_title {
    position: relative;
    height: 55px;
}

.links .links_title i {
    position: absolute;
    top: 0;
    left: 0;
    padding-left: 8px;
    border-left: 1px solid #999;
    height: 20px;
    font-size: 18px;
    line-height: 20px;
    color: #999;
}

.links .links_title h2 {
    position: absolute;
    bottom: 0;
    left: 0;
    padding-left: 8px;
    border-left: 1px solid #036c6c;
    height: 35px;
    font-size: 30px;
    line-height: 35px;
    color: #036c6c;
}

/* ------快速链接内容------ */
.links .links_content {
    position: relative;
    margin-top: 65px;
    height: 210px;
    width: 100%;
}

.links .links_content ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
    padding: 0 75px;
}

.links .links_content ul li {
    flex: 0 0 auto;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 105px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.links .links_content ul li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -52.5px;
    top: 0;
    width: 1px;
    height: 105px;
    background-color: #999;
}

.links .links_content ul li a {
    display: block;
    position: relative;
    width: 105px;
    height: 105px;
    border-radius: 50%;
    background-color: #036c6c;
}

.links .links_content ul li a::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 2px dashed #ddd;
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.4s ease;
    transform: rotate(0deg) scale(1);
}



.links .links_content ul li a img {
    display: block;
    width: 63px;
    height: 63px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.links .links_content ul li span {
    display: block;
    font-size: 18px;
    color: #333;
    text-align: center;
    margin-top: 20px;
    white-space: nowrap;
}

/* ------页尾------ */
footer {
    background: linear-gradient(rgba(3, 108, 108, 0.85), rgba(3, 108, 108, 0.85)), url(../images/footer_background.png) no-repeat center center;
    background-size: cover;
}

.footer {
    width: 100%;
    height: 275px;
}

.footer .footer_content {
    position: relative;
    border-bottom: 1px solid #fff;
    height: 210px;
    padding: 0 80px;
}

.footer .footer_content_left {
    position: absolute;
    top: 60px;
    left: 0;
    padding: 20px 0 0 80px;
    border-right: 1px solid #fff;
    height: 150px;
    width: 375px;
}

.footer .footer_content_left p {
    font-size: 12px;
    color: #fff;
    line-height: 21px;
    margin: 0;
}

.footer .footer_content_center {
    position: absolute;
    top: 60px;
    left: 375px;
    padding-top: 20px;
    height: 150px;
    width: 750px;
}

.footer .footer_content_center img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 440px;
    height: 75px;
}

.footer .footer_content_right {
    position: absolute;
    top: 60px;
    right: 0;
    border-left: 1px solid #fff;
    padding-top: 20px;
    height: 150px;
    width: 375px;
}

.footer .footer_content_right p {
    position: absolute;
    left: 80px;
    font-size: 12px;
    color: #fff;
    line-height: 21px;
}

.footer .footer_content_right p:first-child {
    margin-top: 20px;
}


.footer .footer_content_right h3 {
    position: absolute;
    right: 0;
    bottom: 10px;
    font-size: 40px;
    font-family: '华文行楷', 'STXingkai', cursive;
    color: #bbbbbb;
    line-height: 21px;
}

.footer .footer_content_center img {
    width: 440px;
    height: 75px;
}

.copyright {
    width: 100%;
    height: 40px;
    background-color: #0a7070;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copyright p {
    font-size: 12px;
    color: #fff;
    margin: 0;
}

/* ------移动端菜单------ */
.ml {
    position: fixed;
    z-index: 9998;
    width: 100vw;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}

.ml.phml {
    display: none;
}

.phml {
    display: none;
}

.no {
    display: none;
}

/* ---------悬停效果--------- */
@media (hover: hover) and (pointer: fine) {
    .nav .nav_bottom>ul>li:hover .xian_bottom {
        height: 12px;
        opacity: 1;
        transition-delay: 0s;
    }


    .nav .nav_bottom>ul>li:hover .xian_right {
        width: 72px;
        opacity: 1;
        transition-delay: 0s;
    }

    .nav .subnav .submenu>li:hover>a {
        color: #fff;
    }

    .xueyuan_news .news_title .news_title_right:hover {
        box-shadow: 0px 5px 10px 1px rgba(170, 170, 170, 0.523);
        background-color: #036c6c;
    }

    .xueyuan_news .news_title .news_title_right:hover a {
        color: #fff;
    }

    .xueyuan_news .news_title .news_title_right:hover span {
        right: 0px;
        transition: all 0.3s ease-in-out;
        color: #036c6c;
    }

    .xueyuan_news .news_title .news_title_right:hover span .arrow-icon {
        fill: #036c6c;
    }

    .xueyuan_news .news_content .news_content_right ul li a:hover img {
        transform: scale(1.2);
    }

    .xueyuan_news .news_content .news_content_right ul li a:hover div {
        background-color: #036c6c;
    }

    .xueyuan_news .news_content .news_content_right ul li a:hover div p,
    .xueyuan_news .news_content .news_content_right ul li a:hover div i,
    .xueyuan_news .news_content .news_content_right ul li a:hover div span,
    .xueyuan_news .news_content .news_content_right ul li a:hover div h4 {
        color: #fff !important;
    }

    .xueyuan_news .news_content .news_content_right ul .yuanjiao:hover {
        border-radius: 0;
        overflow: hidden;
    }


    .recent_attention .recent_title .recent_title_right:hover {
        box-shadow: 0px 5px 10px 1px rgba(170, 170, 170, 0.523);
        background-color: #036c6c;
    }

    .recent_attention .recent_title .recent_title_right:hover a {
        color: #fff;
    }

    .recent_attention .recent_title .recent_title_right:hover span {
        right: 0px;
        transition: all 0.3s ease-in-out;
        color: #036c6c;
    }

    .recent_attention .recent_title .recent_title_right:hover span .arrow-icon {
        fill: #036c6c;
    }

    .recent_attention .recent_content ul li a:hover .jianto {
        opacity: 1;
        visibility: visible;
        right: -17px;
    }

    .recent_attention .recent_content ul li a:hover {
        background: linear-gradient(to right, #036c6c 50%, #7fd7d8 100%);
        color: #fff;
    }

    .recent_attention .recent_content ul li a:hover :is(h4, .day, .month) {
        color: #fff;
    }

    .notice_announcement .notice_title .notice_title_right:hover {
        box-shadow: 0px 5px 10px 1px rgba(170, 170, 170, 0.523);
        background-color: #036c6c;
    }

    .notice_announcement .notice_title .notice_title_right:hover a {
        color: #fff;
    }

    .notice_announcement .notice_title .notice_title_right:hover span {
        right: 0px;
        transition: all 0.3s ease-in-out;
        color: #036c6c;
    }

    .notice_announcement .notice_title .notice_title_right:hover span .arrow-icon {
        fill: #036c6c;
    }

    .notice_announcement .notice_content ul li a:hover .jianto {
        opacity: 1;
        visibility: visible;
        right: -17px;
    }

    .notice_announcement .notice_content ul li a:hover {
        background: linear-gradient(to right, #036c6c 50%, #7fd7d8 100%);
        color: #fff;
    }

    .notice_announcement .notice_content ul li a:hover :is(h4, .day, .month) {
        color: #fff;
    }

    .links .links_content ul li:hover a::before {
        transform: rotate(360deg) scale(1.3);
        border-color: #036c6c;
    }
}