.site-root,
.site-root * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.site-root {
    font-family: 'Microsoft YaHei', sans-serif;
    font-size: 18px;
    color: #333;
    background-color: #f5f5f5;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}


.page-wrapper {
    width: 1400px;
    max-width: 100%;
    display: block;
    margin-left: auto !important;
    margin-right: auto !important;
    float: none;
}





.site-title {
    background-color: #e74c3c;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
}


.navbar {
    background-color:#8f0303 !important; 
    padding: 15px 0;
    position: static;
    top: 0;
    z-index: 1000;
}

.navbar ul {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
    white-space: nowrap; 
}

.navbar li {
    margin: 0 20px;
    display: inline-block !important; 
    float: none !important;
    vertical-align: middle;
    white-space: nowrap;
}

.navbar a {
    color:#ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    display: inline-block !important; 
    width: auto !important;
    transition: color 0.3s;
}


.site-root .navbar ul {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center !important;
}

.site-root .navbar ul > li {
    display: inline-flex !important;
    float: none !important;
}

.site-root .navbar ul > li > a {
    display: inline-flex !important;
    align-items: center;
}

.navbar a:hover {
    color: #fadbd8;
}


.navbar a.active {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 4px;
}


.banner {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.banner-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s;
}

.banner-slide.active {
    opacity: 1;
}

.banner img {
    width: 100%;
    height: 100%;
    
}


.fixed-banner {
    width: 100%;
    height: 300px;
    background-color: #e74c3c;
    position: relative;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    overflow: hidden;
}


.fixed-banner img {
    width: 100%;
    height: 100%;
    
    display: block;
}



.fixed-banner h1 {
    position: relative;
    z-index: 1;
}


.section {
    padding: 40px 0;
}

.section-title {
    font-size: 24px;
    color: #e74c3c;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e74c3c;
    position: relative;
}


.section-title a {
    color: inherit;
    text-decoration: none;
}

.section-title a:hover {
    color: #c0392b;
}


.section-title img[src$=".png"] {
    position: relative;
    top: 4px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #e74c3c;
}


.two-column {
    overflow: hidden; 
}

.two-column > div {
    float: left;
    width: 50%;
    padding-right: 15px;
    box-sizing: border-box;
}
.two-column > div:last-child {
    padding-right: 0;
}


.focus-carousel {
    position: relative;
    height: 300px;
    overflow: hidden;
    margin-bottom: 20px;
}

.focus-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s;
}

.focus-slide.active {
    opacity: 1;
}

.focus-slide img {
    width: 100%;
    height: 100%;
    
}


.article-list {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.article-item {
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    transition: background-color 0.3s;
}

.article-item:last-child {
    border-bottom: none;
}

.article-item:hover {
    background-color: #fadbd8;
}

.article-item .date {
    display: inline-block;
    vertical-align: middle;
    color: #e74c3c;
    margin-right: 15px;
    font-size: 16px;
}

.article-item a {
    display: inline-block;
    vertical-align: middle;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.article-item a:hover {
    color: #e74c3c;
}


.latest-articles {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}


.scroll-images {
    position: relative;
    overflow: hidden;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.scroll-container {
    white-space: nowrap; 
}

.scroll-item {
    display: inline-block;
    width: 220px;
    margin-right: 20px;
    text-align: center;
    vertical-align: top;
}

.scroll-item img {
    width: 100%;
    height: 160px;
    
    border-radius: 5px;
    margin-bottom: 10px;
}

.scroll-item p {
    font-size: 16px;
    color: #333;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.scroll-item a {
    color: inherit;
    text-decoration: none;
}

.scroll-item a:hover {
    color: #e74c3c;
}




.footer {
    background-color: #a93226 !important; 
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer a:hover {
    color: #fadbd8;
}

.footer p {
    margin: 10px 0;
}


.card {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 20px;
}


.content-page {
    background-color: #fff;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin: 30px 0;
}

.content-title {
    font-size: 28px;
    color: #e74c3c;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.content-meta {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

.content-body {
    font-size: 18px;
    line-height: 1.8;
}

.content-body p {
    margin-bottom: 20px;
}


.pagination {
    text-align: center;
    margin: 30px 0;
}



.fenye {
    text-align: center;
    margin: 30px 0;
font-size: 18px;
   color: #fa0516;


}


.fenye a {
    text-align: center;
    margin: 30px 0;
font-size: 18px;
   color: #fa0516;


}



.pagination a {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 5px;
    background-color: #fff;
    color: #e74c3c;
    text-decoration: none;
    border: 1px solid #e74c3c;
    border-radius: 4px;
    transition: all 0.3s;
}

.pagination a:hover,
.pagination a.active {
    background-color: #e74c3c;
    color: #fff;
}



.tubiao01 {
 


}
.site-root nav.navbar .container > ul,
.site-root div.navbar .container > ul,
.site-root [role="navigation"] .container > ul {
    display: flex !important;
    flex-wrap: nowrap !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
}

.site-root nav.navbar .container > ul > li,
.site-root div.navbar .container > ul > li,
.site-root [role="navigation"] .container > ul > li {
    display: inline-flex !important;
    float: none !important;
    width: auto !important;
    flex: 0 0 auto !important;
    white-space: nowrap !important;
}

.site-root nav.navbar .container > ul > li > a,
.site-root div.navbar .container > ul > li > a,
.site-root [role="navigation"] .container > ul > li > a {
    display: inline-flex !important;
    align-items: center !important;
    flex: 0 0 auto !important;
    white-space: nowrap !important;
}


.site-root .navbar li { display: inline-block !important; width: auto !important; float: none !important; }
.site-root .navbar a { display: inline-flex !important; width: auto !important; }
.site-root .navbar br { display: none !important; }


.site-root .navbar a img { border: 0 !important; outline: none !important; box-shadow: none !important; vertical-align: middle; margin-right: 6px; }