/* page.css - 页面特定样式文件 */

:root{
	--bg-color: #0849a3;
}

.bg-themes{
	background-color: var(--bg-color)!important;
}

.text-white{
	color: #fff!important;
}

a, a:hover{
	color: #333;
	text-decoration: none;
}

/* 顶部联系信息栏样式 */
.main-topbar {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-bottom: 15px;
  padding-top: 10px;
}
.main-topbar .topbar-left{
    font-size: 18px;
    margin-right: 20px;
}
.main-topbar .fa-phone {
    margin-right: 5px;
    color: #ffffff;
}

.main-topbar .phone{
    color: #ffffff;
}

.main-topbar .top-link {
    color: #ffffff;
    text-decoration: none;
    margin-right: 20px;
    font-size: 18px;
    font-weight: 600;
}

/* 头部导航样式 */
.header {
    /*padding-bottom: 15px;*/
    background: linear-gradient(to bottom, rgb(1, 75, 165, 0.92), rgb(0, 54, 134));
}

.header-on::after{
    background: linear-gradient(to bottom, rgb(1, 75, 165, 0.92), rgb(0, 54, 134));
    transition: 0.4s all;
    height: 100%;
}

.top-title-area{
    font-size: 14px;
    color: #ffffff;
    background-color: #074591;
    overflow: hidden;
}

.top-title-area p{
    padding: 2px 0;
    margin: 0;
}

.header-area{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo样式 */
.logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo-img {
    height: 75px;
}

.logo-text h1 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    color: #008000;
}

.logo-text p {
    font-size: 14px;
    margin: 0;
    color: #666;
}

/* 主导航样式 */
.header-right{
    display: flex;
    justify-content: space-between;
    height:90px;
    z-index: 2;
}
.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
	position: relative;
}

.mobile-nav-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

.nav-list {
	width: 100%;
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
	justify-content: space-evenly;
}

.nav-item {
    margin-left: 20px;
    position: relative;
    z-index: 3;
}

.nav-item > a {
    display: block;
    padding: 10px 0;
    color: #ffffff;
    font-size: 17px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-item > a:hover {
    color: #fac748;
    font-weight: 600;
}

.nav-item > a .fa-angle-down {
    margin-left: 5px;
    font-size: 12px;
}

/* 二级下拉菜单样式 */
.nav-item.dropdown .dropdown-menu {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
    border-top: 2px solid #1579e6;
    border-radius: 0 0 4px 4px;
    text-align: center;
    min-width: 160px;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.nav-item.dropdown .dropdown-menu li {
    position: relative;
}

.nav-item.dropdown .dropdown-menu li a {
    padding: 8px 20px;
    transition: all 0.3s ease;
	font-size: 16px;
}

.nav-item.dropdown .dropdown-menu li a:hover {
    background-color: #b8d1ef;
    color: #1579e6;
    background: linear-gradient(90deg, #007bff, #0056b3);
    color: #fff;
    border-left-color: #fff;
    transform: translateX(8px);
    font-weight: 600;
}

/* 轮播图样式 */
.carousel {
    margin-bottom: 0;
}

.carousel-inner {
    position: relative;
    overflow: hidden;
}

.carousel-inner > .item {
    position: relative;
    display: none;
    transition: 0.7s cubic-bezier(0.33, 1, 0.68, 1) transform;
    transform: translateX(0);
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}

.carousel-inner > .item  a > img {
    position: relative;
    min-width: 100%;
    height: 560px;
    object-fit: cover;
}

.carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev {
    display: block;
}

.carousel-inner > .active {
    transform: translateX(0);
    animation: breath 10s ease-in-out infinite;
    will-change: transform;
}

/* 确保非active状态的轮播图没有呼吸动画 */
.carousel-inner > .next,
.carousel-inner > .prev,
.carousel-inner > .next.left,
.carousel-inner > .prev.right,
.carousel-inner > .active.left,
.carousel-inner > .active.right {
    animation: none;
}

.carousel-inner > .next, .carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%;
}

.carousel-inner > .next {
    transform: translateX(100%);
}

.carousel-inner > .prev {
    transform: translateX(-100%);
}

.carousel-inner > .next.left, .carousel-inner > .prev.right {
    transform: translateX(0);
}

.carousel-inner > .active.left {
    transform: translateX(-100%);
}

.carousel-inner > .active.right {
    transform: translateX(100%);
}

/* 轮播图指示器样式 */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    z-index: 15;
    width: 60%;
    padding-left: 0;
    margin-left: -30%;
    text-align: center;
    list-style: none;
}

.carousel-indicators li {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    text-indent: -999px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0);
    border: 2px solid #fff;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    z-index: 99;
}

.carousel-indicators .active {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: #1579e6;
    border-color: #1579e6;
}

/* 轮播图控制按钮样式 */
.carousel-control {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 15%;
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    background-color: rgba(0, 0, 0, 0);
    filter: alpha(opacity=50);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.carousel-control:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: 0.9;
}

.carousel-control.left {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
}

.carousel-control.right {
    right: 0;
    left: auto;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
}

.carousel-control .fa-chevron-left,
.carousel-control .fa-chevron-right {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-block;
    margin-top: -15px;
    font-size: 30px;
}

.carousel-control .fa-chevron-left {
    left: 50%;
    margin-left: -15px;
}

.carousel-control .fa-chevron-right {
    right: 50%;
    margin-right: -15px;
}

/* 搜索框样式 */
.search-box {
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.search-input {
    width: 200px;
    height: 30px;
    padding: 8px 40px 8px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    background-color: #ffffff;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: #f7c04e;
    box-shadow: 0 0 10px rgba(247, 192, 78, 0.2);
}

.search-input::placeholder {
    color: #999;
    font-size: 13px;
}

.search-btn {
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    height: 32px;
    width: 28px;
    padding: 0;
    border: none;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    /* background-color: #03a9f4; */
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 50px;
}

.search-btn i {
    margin: 0;
    color: #a0a0a0;
}

/* 搜索框焦点动画效果 */
.search-box:focus-within .search-input {
    width: 240px;
}

.search-box:focus-within .search-btn {
    background-color: #f7c04e;
}

.search-box:focus-within .search-btn .fa-search{
    color: #fff;
}

/* 快速链接图标 */
.quick-links-section {
	margin-top: 2em;
}

.quick-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.quick-box .icon-link{
    display: flex;
    width: 100%;
}

.section-title h5 {
    font-weight: bold;
    color: #000000ad;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
    padding-right: 20px;
    padding-left: 15px;
}

.section-title h5::before {
    content: "";
    height: 100%;
    width: 4px;
    background-color: #fac748;
    margin-right: 10px;
    position: absolute;
    left: 0px;
    top: 0;
}

/* 招生信息和视频在线部分样式 */
.article-list-section {
    /*margin-top: 2em;*/
}

.quick-link-item {
    transition: all 0.3s ease;
    flex: 1;
    margin-right: 10px;
}

.quick-link-item:nth-child(1) {
    margin-left: 0;
}

.quick-link-item:nth-child(3) {
    margin-right: 0;
}


/*.quick-link-item:hover {
    transform: translateY(-10px);
}*/

.icon-wrapper {
    background-color: #e6f7ff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    width: 100%;
    border-radius: 4px;
    padding: 16px 0;
}

.icon-wrapper i {
    font-size: 24px;
    color: #007bff;
    transition: all 0.3s ease;
}

/* 为不同快速链接图标设置不同颜色 */
/* 毕业生去向登记 - 主色调 */
.quick-link-item:nth-child(1) .icon-wrapper {
    background-color: #19c9ac;
}
.quick-link-item:nth-child(1) .icon-wrapper:hover {
    background-color: #09b89b;
}
.quick-link-item:nth-child(1) .icon-wrapper i {
    color: #ffffff;
}

/* 教师登录 - 深蓝色 */
.quick-link-item:nth-child(2) .icon-wrapper {
    background-color: #54B2EE;
}
.quick-link-item:nth-child(2) .icon-wrapper:hover {
    background-color: #2399e8;
}
.quick-link-item:nth-child(2) .icon-wrapper i {
    color: #ffffff;
}

.quick-link-item:nth-child(3) .icon-wrapper {
    background-color: #7288F7;
}
.quick-link-item:nth-child(3) .icon-wrapper:hover {
    background-color: #5672e0;
}
.quick-link-item:nth-child(3) .icon-wrapper i {
    color: #ffffff;
}


.quick-link-item:hover .icon-wrapper i {
    color: #fff;
}

.quick-link-item h5 {
    margin: 0;
    font-size: 18px;
    transition: all 0.3s ease;
    font-family: 'FontAwesome';
    color: #ffffff;
    margin-left: 15px;
}


.footer-section {
    background: linear-gradient(to bottom, rgb(2, 69, 151), rgb(3, 41, 99));
    color: white;
    padding: 40px 0 20px 0;
    position: relative;
    background-size: 100% 100%;
    background-position: center;
    /* z-index: -1; */
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgb(2, 69, 151), rgb(3, 41, 99));
    opacity: 0.85;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    width: 100%;
    z-index: 3;
    position: relative;
    color: #fff;
}

.footer-left,
.footer-middle,
.footer-right {
    flex: 1;
    min-width: 0;
	align-self: start;
}

.footer-left {
    display: flex;
    align-items: center;
}

/* 响应式设计 */
@media (max-width: 767px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-left {
        flex-direction: column;
        margin-bottom: 20px;
    }
    
    .footer-logo img {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .footer-middle {
        width: 100%;
    }
    
    .qrcode-container {
        justify-content: center;
    }
}
.footer-logo img {
    margin-right: 20px;
	margin-bottom: 15px;
}

.footer-middle h4,
.footer-right h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.footer-middle p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.footer-middle p i {
    margin-right: 5px;
    font-size: 15px;
}

.qrcode-item {
    text-align: center;
}

.qrcode-img {
    width: 120px;
    height: 120px;
    border: 2px solid white;
    margin-bottom: 10px;
}

.qrcode-text {
    margin: 0;
    font-size: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 15px;
}

.footer-bottom > p {
    padding: 0;
    margin: 0;
}

/* 学院链接样式 */
.college-links {
    padding: 0;
}

.college-link {
    display: block;
    padding: 5px 0;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 5px;
    font-size: 0.9em;
}

.college-link:hover {
    color: #007bff;
    transform: translateX(5px);
}

/* 友情链接样式 */
.friendship-links h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 5px;
    font-weight: 600;
}

.friendship-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.friendship-links li {
    margin-bottom: 10px;
}

.friendship-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.friendship-links a:hover {
    color: #fff;
    padding-left: 5px;
}

/* 二,三级页面css */
.second-banner img,
.third-banner img {
	width: 100%;
	height: 100%;
}

.second-banner, .third-banner{
	margin-bottom: 2em;
}

.article-second {
	min-height: 100px;
}
.article-second .second-article-area .article-list {
	padding-top: 0.5em;
	padding-bottom: 0.15em;
	border-bottom: 0.5px solid #ddd;
	overflow: hidden;
	line-height: 1.8em;
}
.article-second .second-article-area .no-record-tips {
	line-height: 100px;
	border: 0.5px solid #ddd;
	margin-top: 20px;
}
.article-second .second-article-area .article-list:hover {
	border-bottom: 1px solid #0069a0;
}

.article-second .second-article-area .article-title,
.article-second .second-article-area .article-omit {
	width: 100%;
	font-size: 1.2em;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.article-second .second-article-area .article-title {
	font-size: 1.1em;
	color: #1c1818;
}
.article-second .second-article-area .article-omit {
	font-size: 0.8em;
	color: #868282;
}
.article-second .second-article-area .article-date {
	font-size: 0.9em;
	float: right;
	text-align: left;
	color: #514e4e;
}

.article-second .second-article-area .article-date>p{
	margin:0;
	padding:0;
}

/* 新闻动态标签式列表样式 */
.campus-recruitment{
	margin-top: 2em;
}

.news-tabs-section {
    /*margin-bottom: 10px;*/
}

.news-tabs-header {
    border-bottom: 1px solid #e0e0e0;
}

.tabs-row {
    display: flex;
    align-items: center;
    gap: 0;
    border-top: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
}

.tab-item {
    padding: 10px 20px;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-bottom: none;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
    margin-right: -1px;
}

.tab-item:hover {
    background-color: #e8f4ff;
    color: #1890ff;
}

.tab-item.active {
    background-color: #fff;
    border-bottom: 1px solid #fff;
    color: #185DB4;
    font-weight: 600;
    margin-bottom: -1px;
    position: relative;
    z-index: 2;
    border-top: 2px solid #185DB4;
}

.more-link {
    margin-left: auto;
    color: #185DB4;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 10px;
}

.more-link:hover {
    color: #08581d;
}

.more-link i {
    font-size: 12px;
}

.news-tabs-content {
    border: 1px solid #e0e0e0;
    border-top: none;
    background-color: #fff;
    padding: 10px 5px;
    display: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.news-tabs-content.active {
    display: block;
    opacity: 1;
}

.article-list-wrapper {
    display: block;
}


.tabs-row {
    flex-wrap: wrap;
}

.article-column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.article-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 14px;
    width: 49%;
    margin-bottom: 5px;
}
.article-item:nth-child{
    margin-bottom: 0;
}

.article-item:hover {
    border-color: #185DB4;
    background-color: #f2f6fc;
}

.article-item:hover .article-title {
    color: #185DB4;
}

.article-title {
    color: #333;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.2s ease;
    position: relative;
    padding-left: 25px;
	font-size: 15px;
}

.article-title::before {
    content: '';
    position: absolute;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #0265f5;
    box-shadow: 0 0 0 3px rgba(24, 93, 180, 0.3);
}

.article-date {
    color: #999;
    font-size: 13px;
    white-space: nowrap;
    min-width: 90px;
    text-align: right;
}

/* 友情链接样式 */
.friendship-links-box {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 10px;
}

.friendship-link-item {
    color: #333;
    font-size: 14px;
    text-decoration: none;
	transition: all 0.3s ease;
    white-space: nowrap;
}

.friendship-link-item:hover {
    color: #185DB4;
	transform: translateX(5px);
}

/* 最新职位列表样式 */
.jobs-list-section{
	margin-top: 2em;
}

.jobs-section {
	margin-top: 30px;
}

.section-header {
    margin-bottom: 20px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
	margin-top: 0;
    border-bottom: 1px solid #d3d3d3;
    display: block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 73px;
    height: 2px;
    background-color: #185DB4;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    /*margin-bottom: 20px;*/
}

.job-card {
    background-color: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    padding: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.job-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: #185DB4;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.job-title {
    font-size: 16px;
    color: #185DB4;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    margin-right: 10px;
}

.job-salary {
    font-size: 14px;
    color: #ff9500;
    font-weight: 500;
    white-space: nowrap;
}

.job-info {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #e8e8e8;
}

.job-info span {
    font-size: 13px;
    color: #666;
    margin-right: 10px;
}

.job-info::after {
    content: '';
    display: block;
    clear: both;
}

.job-company {
    display: flex;
    align-items: center;
    gap: 10px;
}

.company-logo {
    width: 36px;
    height: 36px;
    border-radius: 5%;
    overflow: hidden;
    flex-shrink: 0;
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-info {
    flex: 1;
    min-width: 0;
}

.company-name {
    font-size: 13px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0;
}

.company-type {
    font-size: 12px;
    color: #999;
    margin: 4px 0 0 0;
}

.more-jobs-btn {
    width: 100%;
    background-color: #1e5eb2;
    text-align: center;
    padding: 6px 0;
    border-radius: 4px;
    transition: background-color 0.3s ease;
	margin-top: 20px;
}

.more-jobs-btn:hover {
    background-color: #0e4da0;
}

.more-jobs-btn a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    display: block;
}

/* 二,三级页面css */
.second-banner, .third-banner{
	height: 150px;
}
.second-banner img, .third-banner img{
	width: 100%;
	height: 100%;
}
.article-second {
	min-height: 100px;
}
/*.article-second .article-slide {
	border: 0.5px solid #ddd;
	border-radius: 10px;
}
.article-second .article-slide .hd {
	text-align: center;
	padding: 0.75em 0;
	color: #084f6b;
}
.article-second .article-slide .hd .iconfont {
	font-size: 2em;

	padding: 0 0.25em;
}
.article-second .article-slide .hd .title {
	font-size: 1.8em;
	padding: 0 0.25em;
}
.article-second .article-slide a {
	width: 100%;
	height: 100%;
}
.article-second .article-slide .article-slide-img {
	width: 100%;
}
.article-second .article-slide .active {
	background-color: #0069a0;
}
.article-second .article-slide .active a {
	color: #ecebe6;
}
.article-second .article-slide ul {
	margin: 0;
}
.article-second .article-slide ul li {
	height: 3em;
	line-height: 3em;
	text-align: center;
	border-top: 0.5px solid #ddd;
}
.article-second .article-slide ul li:hover {
	background-color: #f4f2f2;
}
.article-second .article-slide ul li a {
	display: block;
	color: #4a4949;
}*/
.article-second .second-article-area .article-list {
	padding-top: 0.5em;
	padding-bottom: 0.15em;
	border-bottom: 0.5px solid #ddd;
	overflow: hidden;
	line-height: 1.8em;
}
.article-second .second-article-area .no-record-tips{
	line-height: 100px;
	border: 0.5px solid #ddd;
	margin-top: 20px;
}
.article-second .second-article-area .article-list:hover {
	border-bottom: 1px solid #0069a0;
}

.article-second .second-article-area .article-title,
.article-second .second-article-area .article-omit {
	width: 100%;
	font-size: 1.2em;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.article-second .second-article-area .article-title {
	font-size: 1.1em;
	color: #1c1818;
}
.article-second .second-article-area .article-omit {
	font-size: 0.8em;
	color: #868282;
}
.article-second .second-article-area  .article-date {
	font-size: 0.9em;
	float: right;
	text-align: left;
	color: #817b7b;
}

/** 二三级页面 **/
.second-banner, .third-banner {
	height: 9em;
	margin-bottom: 1em;
}
.second-banner img, .third-banner img{
	height: 100%;
	width: 100%;
}

/*单位列表css*/
.joinunit_search, .job_search {
	position: relative;
	align-self: center;
}
.joinunit_search input, .job_search input  {
	border: 0.1px solid #c6b7b7;
	padding: 0.4em 1em;
	font-size: 0.8em;
	outline: none;
}
.joinunit_search .search-icon, .job_search .search-icon  {
	position: absolute;
	padding: 0.3em 0;
	right: 12px;
	color: #4f4d4d;
	cursor: pointer;
}