* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.black_overlay{display:none;position: fixed;top:0%;left:0%;width:100%;height:100%;background-color:black;z-index:1001;-moz-opacity:0.6;opacity:.60;filter:alpha(opacity=60);}
			.blank_content{display:none;position:fixed;top:35%;left:40%;width:50%;height:270px;z-index:1002;width:470px;border-radius:5px;padding:5px; background: #FFFFFF; }
			.blank_content h2{height:40px;line-height:40px;clear:both;font-size:18px;padding:0px 5px 0px 10px;font-weight:normal}
			.blank_content h2 span{float:right}
			.blank_content h3{height:40px;line-height:40px;clear:both;font-size:18px}
			.blank_content h3 a{color:#ee2e2c}
			.blank_content .open{padding:10px 15px 20px 15px;overflow:hidden;}
			.blank_content .open img{width: 100%;}

.mtb-30{
	margin: 30px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo h1 {
    color: #3498db;
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #3498db;
}

.banner {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.banner-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin: 3rem 0;
    color: #333;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.category-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.latest-info {
    background: white;
    padding: 3rem 0;
}

.info-section {
    margin-bottom: 3rem;
}

.info-section-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #333;
    border-left: 4px solid #3498db;
    padding-left: 1rem;
}

.info-list {
    display: grid;
    gap: 1rem;
}

.info-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    cursor: pointer;
    transition: all 0.3s;
}


.info-item .fl{
	float: left;
	width: 200px;
	margin-right: 50px;
}

.info-item .fl img{
	width: 200px;
	height: 160px;
}


.info-item .fr{
	float: left;
	width: 800px;
}


.info-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.info-item h3,
.info-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #666;
    margin-bottom: 1rem;
}

.info-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #888;
}

.publisher {
    color: #3498db;
}

.date {
    color: #666;
}

.salary {
    color: #e74c3c;
    font-weight: bold;
}

.contact-hidden {
    color: #666;
}

.hidden-text {
    color: #3498db;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.3s;
}

.hidden-text:hover {
    color: #2980b9;
}

.contact-visible {
    color: #e74c3c !important;
    font-weight: bold;
}

.view-more {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
}

.view-more:hover {
    text-decoration: underline;
}

.publish-notice {
    background: #f8f9fa;
    padding: 3rem 0;
    text-align: center;
}

.notice-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.notice-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #666;
}

.notice-content strong {
    color: #e74c3c;
    font-size: 1.2rem;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #3498db;
    color: white;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary {
    background-color: #95a5a6;
    color: white;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

.info-list-section {
    padding: 3rem 0;
}

.info-detail-section {
    padding: 3rem 0;
}

.detail-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.detail-header {
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.detail-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.detail-meta {
    display: flex;
    gap: 2rem;
    color: #666;
}

.detail-body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.info-content {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.info-content h3 {
    color: #333;
    margin-bottom: 1rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.5rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.contact-info h3 {
    color: #333;
    margin-bottom: 1rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.5rem;
}

.contact-details p {
    margin-bottom: 1rem;
    color: #666;
}

.contact-details strong {
    color: #333;
}

.detail-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.publish-section {
    padding: 3rem 0;
}

.pricing-notice {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: inline-block;
    max-width: 400px;
}

.pricing-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 1rem;
}

.features {
    list-style: none;
    text-align: left;
}

.features li {
    margin-bottom: 0.5rem;
    color: #666;
}

.features i {
    color: #27ae60;
    margin-right: 0.5rem;
}

.publish-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.form-section h3 {
    color: #333;
    margin-bottom: 1rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: normal;
}

.terms-link {
    color: #3498db;
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.auth-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}

.auth-form-container {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.forgot-password {
    color: #3498db;
    text-decoration: none;
}

.auth-switch {
    text-align: center;
    margin-top: 1.5rem;
}

.auth-switch a {
    color: #3498db;
    text-decoration: none;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

footer a{
	color: #FFFFFF;
	display: block;
	line-height: 40px;
	text-decoration: none;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .banner-content h2 {
        font-size: 2rem;
    }
    
    .detail-body {
        grid-template-columns: 1fr;
    }
    
    .detail-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .detail-actions {
        flex-direction: column;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .info-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}