@charset "utf-8";
/* CSS Document */


body{
    background-color: white;
    width: 1900px;
    margin: 0 auto;
}

.logos {
    display: flex;
    justify-content: space-between;
    align-items: center;    
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}
.logo-left {
    position: absolute;
    top: 70px;
    left: 110px;
    display: flex;
    gap: 50px;
    z-index: 10;
}

.logo-left a {
    display: block;
}

.logo-left img {
    height: auto;
    max-height: 60px;
}

.zhengw{
    width: 1290px;
    margin: -500px auto;
    text-align: center; /* 水平居中 */
    z-index: 10;
    position: relative;
}

/* 2026以旧换新-2 */
/* 导航栏 */
.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.breadcrumb {
    margin-bottom: 30px;
    color: #666;
    font-size: 14px;
}
.breadcrumb a {
    color: #2E9AD6;
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}

/* 页码设置 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    padding: 20px 0;
}
.page-info {
    color: #666;
    margin-right: 10px;
}
.page-btn {
    padding: 8px 15px;
    border: 1px solid #ddd;
    background: white;
    color: #333;
    cursor: pointer;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
}
.page-btn:hover {
    background: #f5f5f5;
    border-color: #2E9AD6;
    color: #2E9AD6;
}
.page-btn.active {
    background: #2E9AD6;
    color: white;
    border-color: #2E9AD6;
}
.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.page-input {
    width: 50px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
}

/* 以上页面2 */

.content-section {
    background: white;
    border-radius: 10px;
    padding: 50px 60px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: left;
}
.article-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}
.article-meta {
    text-align: center;
    color: #999;
    font-size: 14px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.article-content {
    color: #333;
    font-size: 16px;
 
}
.article-content p {
    margin-bottom: 20px;
    text-indent: 2em;
}
.article-content h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 30px 0 15px;
    color: #333;
}
.article-content ul {
    margin: 15px 0;
    padding-left: 2em;
}
.article-content li {
    margin: 10px 0;
}
.article-footer {
    text-align: right;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    color: #666;
}
/* 以上页面3 */
.entry-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}
.entry-card {
    background: linear-gradient(135deg, #4DA6D6, #2E9AD6);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.entry-card:hover {
    transform: translateY(-5px);
}
.entry-card.info {
    background: linear-gradient(135deg, #6DB8E8, #4DA6D6);
}
.entry-icon {
    font-size: 60px;
    margin-bottom: 20px;
}
.entry-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}
.entry-button {
    background: rgba(255,255,255,0.9);
    color: #2E9AD6;
    border: none;
    padding: 12px 40px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 15px;
}
.section {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}
.section-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, #4DA6D6, #2E9AD6);
}
.section-title .highlight {
    color: #2E9AD6;
    font-weight: bold;
}
.list-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    transition: background 0.3s;
}
.list-item:hover {
    cursor: pointer;
    background: #f9f9f9;
    
}
.list-item:last-child {
    border-bottom: none;
}
.list-title {
    color: #333;
    font-size: 15px;
}
.list-title:hover {
    color: #2671EE;
    
    font-size: 15px;
}
.list-date {
    color: #999;
    font-size: 14px;
}
.more-link {
    text-align: right;
    margin-top: 20px;
}
.more-link a {  
    color: #2E9AD6;
    text-decoration: none;
    font-size: 16px;
}
.contact-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.contact-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.contact-icon {
    font-size: 50px;
    color: #4DA6D6;
}
.contact-text {
    flex: 1;
}
.contact-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}
.contact-link {
    color: #2E9AD6;
    font-size: 16px;
}


.zixun-qiche{
    padding: 0px 560px 0px 0px;

}
.zixun-jiadian{
    padding: 0px 0px 0px 0px;

}
.footer-left {
    float: left;
    display: flex;
    gap: 30px;
    padding-top: 50px;
    padding-left: 300px;
    align-items: center;
}
.footer-text {
    float: left;
    gap: 30px;
    width: 600px;
    text-align: left;
    padding-top: 60px;
    padding-left: 70px;
}
.footer-text div {
    float: left;
}
.footer-text div:nth-child(2) {
    margin-top: 5px;
    float: left;
}
.footer-right {
    padding-top: 60px;
    padding-right: 300px;
    float: right;
    display: flex;
}
.footer-right div {
    float: right;
    width: 100px;
}
.footer-right div:first-child {
    border-right: white 1px solid;
}
.footer-right div:nth-child(2) {
    border-right: white 1px solid;
}
.footer-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 14px;
}
.footer-icon {
    font-size: 24px;
    margin-bottom: 5px;
}

.footer{
    color: #fff;
    text-align: center; /* 文字居中 */
    font-size: 18px;/* 文字大小 */
    margin-top: 40px;/* 文字距离顶部 */
    width: 100%;/* 宽度 */   
    height: 160px;
    background-color: #1553B8;
    bottom: -500px;
    position: relative;
 }
 a{ text-decoration: none;}
.footer a{ font-size: 18px; color:#fff;}
.banner {
    position: relative;
    width: 100%;
    height: 1036px;
    background-image: url('head-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.zhengw {
    position: relative;
    z-index: 20;
}

.top-links {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.top-links a {
    display: block;
}

.top-links img {
    display: block;
}


.breadcrumb {
    margin-bottom: 30px;
    color: #666;
    font-size: 14px;

}
.breadcrumb a {
    color: #2E9AD6;
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}