.navbar{
 position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
}

.container{
    max-width: 1440px!important;
}
.nav .font-semibold{
    color: #000000;
    position: relative;
}
.nav .font-semibold::after{
    content: '';
    display: inline-block;
    border-bottom: 2px solid #fc0000;
    width: 70%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 3px;
}

.bg-gray-50{
 border:1px solid #ff9898;
}
/* 新闻列表样式 */
.news-list {
    margin: 20px 0;
}

.news-item {
    padding: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.news-item:hover {
    background: #f9f9f9;
}

.news-item h2 {
    margin: 0 0 10px;
    font-size: 1.2em;
}

.news-item h2 a {
    color: #333;
    text-decoration: none;
}

.news-item h2 a:hover {
    color: #0066cc;
}

.news-summary {
    color: #666;
    margin: 10px 0;
}

time {
    color: #999;
    font-size: 0.9em;
}

/* 新闻详情样式 */
.news-detail-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: #0066cc;
    text-decoration: none;
}

.news-meta {
    color: #666;
    margin: 15px 0;
    font-size: 0.9em;
}

.news-content {
    line-height: 1.6;
    margin: 20px 0;
}

.news-content img {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
}

/* 分页样式 */
.pagination {
    text-align: center;
    margin: 30px 0;
}

.pagination a {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 5px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
}

.pagination a.active {
    background: #0066cc;
    color: white;
    border-color: #0066cc;
}

.carousel-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
}

.carousel-dot.active {
    background: #a6bfe6;
}

.btn-common{
 border:1px solid  #fc0000;
 background: rgba(255,255,255,0.3);
 color: #fc0000;
}

.btn-common:hover{
 border:1px solid  #0066cc;
 color: #0066cc;
}

/* 轮播图 */
.swiper-button-next:after, 
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after, 
.swiper-rtl .swiper-button-next:after{
    content: '';
}
.swiper-button-next, .swiper-button-prev{
    color: #000;
}
.swiper-pagination-bullet-active{
    border: 0;
}
.swiper-pagination-bullet{
    border:2px solid #fc0000;
    background-color: #fff;
}


.space-x-8 > :not([hidden]) ~ :not([hidden]){
    margin-right: calc(1rem * var(--tw-space-x-reverse))!important;
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)))!important;
}