﻿@charset "UTF-8";

:root {
    --varColor: #04A485;
}

body, p, h1, h2, h3, h4, h5, h6, ul, li, dl, dt, dd, pre {
    margin: 0;
    padding: 0;
    border: none;
    list-style: none;
    box-sizing: border-box;
}

body {
    font-family: "microsoft yahei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    min-width: 1200px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: #333;
    text-decoration: none;
    transition: .3s;
}

a:hover {
    color: var(--varColor);
    text-decoration: none;
}

input, button {
    outline: 0;
}

img {
    vertical-align: middle;
    border: 0;
    max-width: 100%;
    transition: .3s;
}

.img {
    display: block;
    overflow: hidden;
}

.img:hover img {
    transform: scale(1.1);
}

.img img {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
}

table {
    max-width: 100%;
    border-collapse: collapse;
}

table tr th, table tr td {
    padding: 5px 10px;
    border: 1px solid gray;
}

video {
    max-width: 100%;
    object-fit: cover;
}

.lf {
    float: left;
}

.rt {
    float: right;
}

.container {
    width: 1400px;
    margin: 0 auto;
    position: relative;
}

.container:before,
.container:after {
    content: '';
    display: table;
    clear: both;
}

.ellipsis {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.ellipsis-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.blur {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

@font-face {
    font-family: SourceHanSerifCN-Bold;
    src: url("../fonts/SourceHanSerifCN-Bold.otf");
}

@font-face {
    font-family: Barlow;
    src: url("../fonts/Barlow-Bold.ttf");
}

/*头部*/
.header {
    position: relative;
}

.header .top {
    /*height: 180px;*/
    background: url(../images/header.jpg) no-repeat center;
}

.header .logo {
    float: left;
    padding: 45px 0;
}

.header .logo img {
    height: 90px;
}

.header .search {
    float: right;
    margin-top: 50px;
}

.header .search p {
    text-align: right;
    margin-bottom: 10px;
}

.header .search p a {
    color: #fff;
    padding-left: 25px;
    background: url(../images/home.png) no-repeat left center;
    background-size: 16px;
}

.header .search form {
    position: relative;
    font-size: 16px;
}

.header .search input[type='text'] {
    width: 300px;
    height: 36px;
    background: #FEFDFD;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.99);
    padding: 0 36px 0 10px;
    box-sizing: border-box;
}

.header .search input[type='text']::placeholder {
    font-size: 16px;
    color: #9E9A9A;
}

.header .search input[type='submit'] {
    position: absolute;
    top: 0;
    right: 0;
    width: 36px;
    height: 36px;
    border: none;
    background: url(../images/search.png) no-repeat center;
    background-size: 20px;
}

.header .toggle {
    display: none;
}

/*导航栏*/
.nav {
    height: 60px;
    background: #107855;
}

.menu {
    display: flex;
}

.menu > li {
    position: relative;
    flex-grow: 1;
    font-size: 18px;
}

.menu > li > a {
    display: block;
    height: 60px;
    line-height: 60px;
    color: #fff;
    text-align: center;
}

.menu > li > a.on,
.menu > li > a:hover {
    background-color: rgba(0, 0, 0, .4);
}

.menu .second-menu {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    min-width: 100%;
    width: max-content;
    background-color: rgba(0, 0, 0, .8);
    display: none;
    z-index: 999;
}

.menu .second-menu a {
    display: block;
    line-height: 50px;
    color: #fff;
    text-align: center;
    padding: 0 15px;
}

.menu .second-menu a:hover {
    background: rgba(4, 164, 133, .6);
}

/*轮播图*/
#slide {
    width: 100%;
    text-align: center;
}

#slide .swiper-pagination {
    bottom: 5%;
}

#slide .swiper-pagination-bullet {
    width: 30px;
    height: 5px;
    background: #E6E6E6;
    border-radius: 0;
    opacity: 1;
}

#slide .swiper-pagination-bullet-active {
    background: var(--varColor);
}

/*主体*/
.section {
    position: relative;
    flex-grow: 1;
}

#enter {
    margin: 22px 0 10px;
}

#enter .swiper-slide a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 150px;
    background: url("../images/mask-bg.jpg") no-repeat center;
    background-size: 100%;
}

#enter .swiper-slide img {
    height: 50px;
}

#enter .swiper-slide p {
    color: #fff;
    font-size: 18px;
    margin-top: 1em;
}

#enter .swiper-slide a:hover {
    background-size: 110%;
    border-top-right-radius: 36px;
    border-bottom-left-radius: 36px;
}

#enter .swiper-slide a:hover img {
    transform: rotateY(180deg);
}

#enter .swiper-slide a:hover p {
    font-weight: bold;
}

.title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: SourceHanSerifCN-Bold;
    margin: 25px 0;
}

.title h2 a {
    font-size: 36px;
    color: var(--varColor);
}

.title > a {
    color: var(--varColor);
    font-weight: bold;
    font-size: 18px;
    position: relative;
    padding-left: 42px;
}

.title > a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    background: #ECECEC;
    border-radius: 50%;
}

.title > a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 22px;
    transform: translateY(-50%);
    width: 14px;
    height: 4px;
    background: var(--varColor);
    opacity: 0.5;
}

/*新闻动态*/
.news .title {
    padding-bottom: 10px;
    border-bottom: 1px solid #F5F7F9;
}

#news {
    float: left;
    width: 45%;
    border: 1px solid #E7E7E7;
}

#news .swiper-slide .img {
    height: 335px;
}

#news .swiper-slide .txt {
    position: relative;
    padding: 10px 20px;
}

#news .swiper-slide .date {
    position: absolute;
    top: 0;
    right: 20px;
    width: 100px;
    height: 100px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    font-family: Barlow;
    background: linear-gradient(-30deg, #04A485, #14CBA8);
    transform: translateY(-50%);
}

#news .swiper-slide .date h3 {
    font-size: 32px;
    line-height: 1em;
}

#news .swiper-slide .date p {
    font-weight: normal;
}

#news .swiper-slide .txt h2 {
    font-size: 24px;
    font-weight: normal;
    margin-right: 120px;
}

#news .swiper-slide .txt > p {
    font-size: 16px;
    color: #A3A3A3;
    text-align: justify;
    margin: 10px 0;
}

#news .swiper-pagination {
    transform: translateY(-124px);
}

#news .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 8px;
    background: #FFFFFF;
    border-radius: 50%;
    opacity: 0.6;
}

#news .swiper-pagination-bullet-active {
    opacity: 1;
}

.news ul {
    float: right;
    width: 53%;
    font-size: 16px;
}

.news ul li:not(:last-of-type) {
    margin-bottom: 30px;
}

.news ul li .rt {
    color: #999;
}

.news ul li p {
    position: relative;
    padding: 0 20px 0 15px;
}

.news ul li p::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 5px;
    height: 5px;
    background: var(--varColor);
    transform: translateY(-50%);
}

.news ul li a:hover {
    text-decoration: underline;
}

/*通知公告*/
.notice {
    height: 522px;
    margin-top: 40px;
    background: url("../images/tzgg-bg.jpg") no-repeat center;
    background-size: cover;
}

.notice .flex {
    display: flex;
    align-items: center;
    height: 100%;
}

.notice .flex::before, .notice .flex::after {
    display: none;
}

.notice .title {
    min-width: max-content;
    display: inline-flex;
    flex-direction: column;
    margin-right: 50px;
}

.notice .title a {
    color: #fff;
}

.notice .title > a {
    margin-top: 15px;
}

.notice ul {
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.notice ul li {
    display: flex;
    align-items: center;
    width: 32%;
    height: 115px;
    margin: 10px 0;
    background: #fff;
    border: 1px solid #E1E1E1;
}

.notice ul li:hover {
    box-shadow: 0 5px 10px 0 #eee;
}

.notice ul li div {
    min-width: max-content;
    font-family: Barlow;
    color: var(--varColor);
    text-align: center;
    padding: 0 18px;
    border-right: 1px solid #E1E1E1;
}

.notice ul li div h3 {
    font-size: 36px;
}

.notice ul li p {
    font-size: 18px;
    padding: 0 18px;
    text-align: justify;
}

.notice ul li p:hover {
    color: var(--varColor);
}

.notice ul li p a:hover {
    font-weight: bold;
}

/*快捷通道*/
.fast-list {
    margin: -11px;
    overflow: hidden;
}

.fast-list li {
    float: left;
    width: calc(1 / 6 * 100%);
    padding: 11px;
}

.fast-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 125px;
    color: #fff;
    font-size: 18px;
    background: url("../images/fast1.png") no-repeat center;
    background-size: 100%;
}

.fast-list li a:hover {
    color: orangered;
    font-weight: bold;
    background-size: 110%;
    border-radius: 6px;
}

.fast-list li:nth-of-type(2) a {
    background-image: url("../images/fast2.png");
}

.fast-list li:nth-of-type(3) a {
    background-image: url("../images/fast3.png");
}

.fast-list li:nth-of-type(4) a {
    background-image: url("../images/fast4.png");
}

.fast-list li:nth-of-type(5) a {
    background-image: url("../images/fast5.png");
}

.fast-list li:nth-of-type(6) a {
    background-image: url("../images/fast6.png");
}

.fast-list li:nth-of-type(7) a {
    background-image: url("../images/fast7.png");
}

.fast-list li:nth-of-type(8) a {
    background-image: url("../images/fast8.png");
}

.fast-list li:nth-of-type(9) a {
    background-image: url("../images/fast9.png");
}

.fast-list li:nth-of-type(10) a {
    background-image: url("../images/fast10.png");
}

.fast-list li:nth-of-type(11) a {
    background-image: url("../images/fast11.png");
}

.fast-list li:nth-of-type(12) a {
    background-image: url("../images/fast12.png");
}

/*信息中心*/
#infos .swiper-slide a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    background: url("../images/xxzx-bg.jpg") no-repeat center;
    background-size: 100%;
}

#infos .swiper-slide img {
    height: 45px;
}

#infos .swiper-slide p {
    color: #fff;
    font-size: 18px;
    text-align: center;
    margin-top: 1em;
}

#infos .swiper-slide a:hover {
    background-size: 110%;
}

#infos .swiper-slide a:hover img {
    transform: scale(1.1);
}

#infos .swiper-slide a:hover p {
    font-weight: bold;
}

/*尾部*/
.footer {
    margin-top: 40px;
    /*height: 327px;*/
    color: #fff;
    font-size: 16px;
    background: url("../images/footer.jpg") no-repeat center;
    background-size: cover;
}

.footer ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
    overflow: hidden;
}

.footer ul li h3 {
    font-size: 18px;
    margin-right: 20px;
}

.footer ul li a {
    color: #fff;
}

.footer ul li a:hover {
    color: orangered;
}

.footer ul li span {
    margin: 0 20px;
}

.footer ul li:last-of-type span {
    display: none;
}

.footer .lf {
    margin-top: 45px;
}

.footer .lf img {
    height: 90px;
}

.footer .copyright {
    float: left;
    margin: 45px 0 0 30px;
    line-height: 2em;
    padding-left: 25px;
    border-left: 1px solid #fff;
}

.footer .code {
    float: right;
    margin: 30px 0 0 40px;
    line-height: 2.5em;
    text-align: center;
}

.footer .code img {
    width: 120px;
}

.footer .bottom {
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.footer .bottom .container {
    line-height: 65px;
    text-align: center;
}

.side {
    float: left;
    width: 278px;
    margin-top: 30px;
}

.side p {
    height: 68px;
    line-height: 68px;
    padding-left: 40px;
    color: #fff;
    font-size: 24px;
    background: var(--varColor);
}

.side p span {
    display: none;
}

.side li {
    position: relative;
}

.side li a {
    position: relative;
    display: block;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    padding-left: 40px;
}

.side > ul > li > a {
    background: #E7E7E7;
    border-bottom: 1px solid #D4D4D4;
}

.side > ul > li span {
    position: absolute;
    top: 14px;
    right: 20px;
    color: #9D9696;
    font: 20px '宋体';
    font-weight: bolder;
    transition: .3s;
}

.side > ul > li span.on {
    transform: rotate(90deg);
}

.side .sub-menu li a {
    color: #666;
    background: #F6F6F6;
}

.side .sub-menu li a:hover,
.side .sub-menu li.on a {
    color: var(--varColor);
}

.side .sub-menu {
    display: none;
}

.side ul .active .sub-menu {
    display: block;
}

.side ul .active > a {
    background: #fff;
    border-bottom-color: #fff;
}

.side ul .active > a:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    background: var(--varColor);
}

.column {
    margin: 30px 0 0 310px;
}

.bread {
    height: 67px;
    line-height: 67px;
    border-bottom: 1px solid #D6D6D6;
}

.bread h1 {
    font-size: 24px;
    font-weight: normal;
}

.bread .rt {
    position: relative;
    color: #9A9A9A;
    font-size: 16px;
}

.bread .rt a {
    color: #9A9A9A;
}

.bread .rt a:hover {
    color: var(--varColor);
}

.common-list li {
    height: 50px;
    line-height: 50px;
    padding: 0 10px;
    font-size: 18px;
    border-bottom: 1px dotted #8C8C8C;
}

.common-list li:hover {
    background: #F6F6F6;
}

.common-list li span {
    float: right;
    color: #666;
}

.common-list li p {
    margin-right: 120px;
}

.common-list li a {
    position: relative;
    padding-left: 20px;
    text-decoration: none;
}

.common-list li a:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 5px;
    height: 5px;
    background: #999;
    border-radius: 50%;
}

.common-list li a:hover:before {
    background: var(--varColor);
}

.detail {
    margin-top: 20px;
}

.caption {
    text-align: center;
}

.caption h3 {
    line-height: 30px;
    font-size: 22px;
    font-weight: normal;
    margin: 30px 0 10px;
}

.caption p span {
    color: #999;
    margin: 0 8px;
}

.content {
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #F0F0F0;
    line-height: 1.75em;
    font-size: 16px;
}

.profile {
    margin-top: 20px;
    min-height: 300px;
    line-height: 1.75em;
    font-size: 16px;
}

/*学院领导*/
.leader-list {
    margin: 10px;
    overflow: hidden;
}

.leader-list li {
    float: left;
    width: 50%;
    padding: 15px;
    background-color: #eee;
    border: 10px solid #fff;
    box-sizing: border-box;
}

.leader-list li > a {
    float: left;
    width: 120px;
    height: 168px;
    overflow: hidden;
}

.leader-list li > a img {
    width: 100%;
    height: 100%;
}

.leader-list li div {
    margin-left: 140px;
    height: 168px;
    overflow: hidden;
}

.leader-list li h3 {
    line-height: 1.75em;
    margin-bottom: 8px;
}

.leader-list li h3 a {
    color: var(--varColor);
    font-size: 20px;
}

.leader-list li p {
    line-height: 1.75em;
    margin-top: 5px;
    color: #666;
    font-size: 16px;
    text-align: justify;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

/*返回顶部*/
.toTop {
    position: fixed;
    right: 15px;
    bottom: -100px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    font-size: 24px;
    font-weight: bolder;
    font-family: '黑体';
    background: rgba(0, 0, 0, .6);
    border-radius: 5px;
    transform: rotate(90deg);
    cursor: pointer;
    transition: .3s;
    z-index: 99;
}
